|
|
|
@ -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);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//验收结束
|
|
|
|
|