发票修改

ywj_dev
wangwei 2 years ago
parent c18a159f88
commit 2473e562dc

@ -147,6 +147,14 @@ export function filterOrder(query) {
});
}
export function filterOrderList(query) {
return axios({
url: "/udiwms/inout/order/filterList",
method: "get",
params: query
});
}
export function selectNew(query) {
return axios({
url: "/admin/warehouse/inout/order/selectNew",

@ -8,6 +8,15 @@ export function getBizDetailList(params) {
});
}
export function getBizDetailListInv(params) {
return axios({
url: "/udiwms/inout/bizDetail/filterListInv",
method: "get",
params: params
});
}
export function filterListInvoice(params) {
return axios({
url: "/udiwms/inout/bizDetail/filterListInvoice",
@ -19,8 +28,8 @@ export function filterListInvoice(params) {
export function deleteById(params) {
return axios({
url: "/udiwms/inout/biz/deleteById",
method: "get",
params: params
method: "post",
data: params
});
}
@ -40,6 +49,14 @@ export function insertInvoice(params) {
});
}
export function updateorderBiz(params) {
return axios({
url: "/udiwms/inout/biz/updateorderBiz",
method: "post",
data: params
});
}
export function getCheckDetailList(params) {
return axios({

@ -179,6 +179,19 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="登记状态" prop="checkStatus" width="100">
<template slot-scope="scope">
<el-tag type="danger" v-if="scope.row.allCout==0">
未登记
</el-tag>
<el-tag type="warning" v-if="scope.row.partCount>0 && scope.row.allCout>0">
未全部登记
</el-tag>
<el-tag type="success" v-if="scope.row.partCount == 0 && scope.row.allCout>0">
全部登记
</el-tag>
</template>
</el-table-column>
<el-table-column label="操作" width="160" fixed="right">
<template slot-scope="scope">
<el-button type="text" :disabled="scope.row.checkStatus==1" size="small" @click.native.stop="determine(scope.row)">确认</el-button>
@ -259,6 +272,16 @@
prop="certCode"
show-overflow-tooltip
></el-table-column>
<el-table-column label="登记状态" prop="regStatus" width="100">
<template slot-scope="scope">
<el-tag type="danger" v-if="scope.row.regStatus==0">
未登记
</el-tag>
<el-tag type="success" v-if="scope.row.regStatus==1">
全部登记
</el-tag>
</template>
</el-table-column>
<el-table-column label="操作" width="160" fixed="right">
<template slot-scope="scope">
@ -358,7 +381,7 @@
<el-button
type="text"
size="small"
@click.native.stop="deleteInvoice(scope.row.id)"
@click.native.stop="deleteInvoice(scope.row)"
>删除
</el-button
>
@ -379,7 +402,7 @@
:total="invTotal"
:page.sync="bizQuery.page"
:limit.sync="bizQuery.limit"
@pagination="getBizDetailList"
@pagination="getBizDetailListInv"
/>
</el-tab-pane>
</el-tabs>
@ -449,13 +472,13 @@
<script>
import {
deleteByOrderId,
getOrderList, rollUnReceivebackOrder, filterInvoice, filterOrder
getOrderList, rollUnReceivebackOrder, filterInvoice, filterOrder,filterOrderList
} from '../../api/inout/order'
import {getLocalJoinByUser} from "@/api/basic/busType";
import {getInvListByUser} from "@/api/system/invWarehouse";
import {isBlank} from "@/utils/strUtil";
import {selectSysParamByKey} from "@/api/param/systemParamConfig";
import {filterListInvoice, getBizDetailList, deleteById, insertInvoice} from '@/api/inout/orderDetailBiz'
import {filterListInvoice, getBizDetailListInv, deleteById, insertInvoice,updateorderBiz} from '@/api/inout/orderDetailBiz'
import {getCodeList} from "@/api/inout/code";
import AcceptOrder from "@/views/inout/DialogReviewOrder";
import DialogInvoice from "@/views/inout/DialogInvoice";
@ -499,6 +522,8 @@ export default {
determineData:null,
corpLoading: false,
fromOptions: [],
regId:null,
par:[],
formName: 1,
formMap: {
@ -668,7 +693,10 @@ export default {
});
}).catch(() => {
});
//
updateorderBiz(row).then(res =>{
})
},
onSubmit() {
@ -728,7 +756,7 @@ export default {
},
freshen() {
this.Upinvoice = false;
this.getBizDetailList();
this.getBizDetailListInv();
},
printOrder(row) {
this.currentManufacturer = row;
@ -755,11 +783,12 @@ export default {
type: "warning",
})
.then(() => {
let params = {id: row}
deleteById(params)
this.par=row;
this.par.regId=this.regId;
deleteById(row)
.then((response) => {
if (response.code == 20000) {
this.getBizDetailList(this.subRow);
this.getBizDetailListInv(this.subRow);
this.$message({
type: "success",
message: "删除成功!",
@ -804,7 +833,7 @@ export default {
this.currentRow = {billNo: ""};
this.clearDetailList();
this.filterQuery.vueType = "supInvoice";
filterOrder(this.filterQuery)
filterOrderList(this.filterQuery)
.then((response) => {
this.loading = false;
if (response.code === 20000) {
@ -919,7 +948,7 @@ export default {
this.codeQuery.orderIdFk = this.currentRow.billNo;
this.codeDetailLoading = true;
getBizDetailList(this.codeQuery).then((res) => {
getBizDetailListInv(this.codeQuery).then((res) => {
this.codeDetailLoading = false;
if (res.code === 20000) {
this.codeDetailList = res.data.list || [];
@ -943,13 +972,13 @@ export default {
page: 1,
limit: 10
};
this.getBizDetailList();
this.getBizDetailListInv();
},
onBizSubmit() {
this.bizQuery.page = 1;
this.getBizDetailList();
this.getBizDetailListInv();
},
getBizDetailList(row) {
getBizDetailListInv(row) {
if (isBlank(this.currentRow.billNo)) {
this.$message.error("请先选择需要查询的单据!")
return;
@ -980,9 +1009,10 @@ export default {
BizDetail(row) {
this.regId=row.id;
this.bizQuery.page = 1;
this.subRow = row;
this.getBizDetailList(row);
this.getBizDetailListInv(row);
},
determine(row){
this.determineData=row;
@ -1013,12 +1043,12 @@ export default {
//
closeAcceptDialog() {
this.Upinvoice = false;
this.getBizDetailList();
this.getBizDetailListInv();
},
closeInvoice(row) {
this.InvoiceRegisterv = false;
this.getBizDetailList(row);
this.getBizDetailListInv(row);
},
//

Loading…
Cancel
Save