diff --git a/src/views/emis/EmisBaseTools/TaxInput.vue b/src/views/emis/EmisBaseTools/TaxInput.vue index 91eceb59..3c61b6bf 100644 --- a/src/views/emis/EmisBaseTools/TaxInput.vue +++ b/src/views/emis/EmisBaseTools/TaxInput.vue @@ -131,6 +131,16 @@ import { debounce } from 'throttle-debounce' "taxRate": "0.00", "withTaxFlag": "1" }, + { + "goodsName": "国际货物运输代理费", + "goodsCode": "30408020102", + "specType": "次", + "unit": "次", + "price": "1", + "num": "1", + "taxRate": "0.00", + "withTaxFlag": "1" + }, { "goodsName": "国际货运代理服务费", "goodsCode": "30408020102", diff --git a/src/views/emis/emisSettleBill/EmisSettleBillQuery.vue b/src/views/emis/emisSettleBill/EmisSettleBillQuery.vue index 2b45cbc7..1258520b 100644 --- a/src/views/emis/emisSettleBill/EmisSettleBillQuery.vue +++ b/src/views/emis/emisSettleBill/EmisSettleBillQuery.vue @@ -218,6 +218,12 @@ + + + + + + diff --git a/src/views/emis/emisSettleInvoiceRecord/panel/CenterInvoiceRecordDealListPanel.vue b/src/views/emis/emisSettleInvoiceRecord/panel/CenterInvoiceRecordDealListPanel.vue index 1d42a7a3..603767a4 100644 --- a/src/views/emis/emisSettleInvoiceRecord/panel/CenterInvoiceRecordDealListPanel.vue +++ b/src/views/emis/emisSettleInvoiceRecord/panel/CenterInvoiceRecordDealListPanel.vue @@ -425,6 +425,17 @@ export default { this.queryParams.isAsc = column.order; this.getList(); }, + calcInvoiceNum(row) { + let qParam = { + pageNum:1, + pageSize:3, + applySeqNo: row.applySeqNo, + openChStatus:'2' + } + listEmisSettleInvoiceChRecord(qParam).then(response => { + row.invoiceChNum = response.total; + }); + }, handleDownPDF(row) { let qParam = { pageNum:1, diff --git a/src/views/emis/emisSettleInvoiceRecord/panel/InvoiceRecordApplyListPanel.vue b/src/views/emis/emisSettleInvoiceRecord/panel/InvoiceRecordApplyListPanel.vue index 56a15efa..d5a43b90 100644 --- a/src/views/emis/emisSettleInvoiceRecord/panel/InvoiceRecordApplyListPanel.vue +++ b/src/views/emis/emisSettleInvoiceRecord/panel/InvoiceRecordApplyListPanel.vue @@ -138,20 +138,28 @@ - + 复制发票地址(存在多张发票) + 复制发票地址 - - + + 未开票 @@ -284,10 +292,6 @@ export default { pageNum: 1, pageSize: 20, - - - - applySeqNo: null, applyDate: null, applyManCode: null, @@ -342,7 +346,6 @@ export default { }, /** 查询开票记录表列表 */ getList() { - // 按运单查询时的处理 if(this.queryOrderType=="1"){ this.queryParams.params.billCode=this.queryParams.queryCode; @@ -360,6 +363,11 @@ export default { this.emisSettleInvoiceRecordList = response.rows; this.total = response.total; this.loading = false; + + this.emisSettleInvoiceRecordList.forEach(item=>{ + this.calcInvoiceNum(item); + }); + }); }, @@ -402,6 +410,17 @@ export default { this.titleForm = "修改"; }, + calcInvoiceNum(row) { + let qParam = { + pageNum:1, + pageSize:3, + applySeqNo: row.applySeqNo, + openChStatus:'2' + } + listEmisSettleInvoiceChRecord(qParam).then(response => { + row.invoiceChNum = response.total; + }); + }, handleDownPDF(row) { let qParam = { pageNum:1, diff --git a/src/views/system/sysDataAuditRecord/index.vue b/src/views/system/sysDataAuditRecord/index.vue index 4f61a2e3..395bde83 100644 --- a/src/views/system/sysDataAuditRecord/index.vue +++ b/src/views/system/sysDataAuditRecord/index.vue @@ -92,7 +92,12 @@ - + + + 修改 + 删除 + +