diff --git a/src/api/PurchasingCenter/InvoiceSettlementApplication.js b/src/api/PurchasingCenter/InvoiceSettlementApplication.js index 198aeb3b..0d765617 100644 --- a/src/api/PurchasingCenter/InvoiceSettlementApplication.js +++ b/src/api/PurchasingCenter/InvoiceSettlementApplication.js @@ -30,8 +30,8 @@ export function searchTable1(...group) { data: { type: '1', name: '采购管理_发票结算申请单_查询数据', - param: `发票号_check=${group[0]}&发票号=${group[1]}`, - Pagination: group[2] + '&' + group[3] + param: `发票号_check=${group[0]}&发票号=${group[1]}&供应商名称_check=${group[2]}&供应商名称=${group[3]}`, + Pagination: group[4] + '&' + group[5] } }) } diff --git a/src/api/PurchasingCenter/ReceiveCheck.js b/src/api/PurchasingCenter/ReceiveCheck.js index ad68cd63..01b99b33 100644 --- a/src/api/PurchasingCenter/ReceiveCheck.js +++ b/src/api/PurchasingCenter/ReceiveCheck.js @@ -47,3 +47,15 @@ export function searchReceiveCheck(check1, num1, check2, num2, check3, num3) { } }) } +// 机床名称 +export function getMachines() { + return request({ + url: '', + method: 'post', + data: { + type: '1', + name: '车间生产管理工艺_传递后_机床名称_根据机床查询', + param: '是否传递=2=int&考核状态=6=int&工艺任务分配状态=2=int&定额任务分配状态=2=int&单件是否外协=1=int' + } + }) +} diff --git a/src/views/PurchasingCenter/ArrivalStateSearch/index.vue b/src/views/PurchasingCenter/ArrivalStateSearch/index.vue index c0a5f1f5..c7da031a 100644 --- a/src/views/PurchasingCenter/ArrivalStateSearch/index.vue +++ b/src/views/PurchasingCenter/ArrivalStateSearch/index.vue @@ -2,6 +2,8 @@
+ 供应商: + 合同号: {{ item.name }}
- 供应商: -
+ 供应商: + 发票号: - 查询 + 查询 创建 + 追加入库记录
-

发票结算申请单

- +

发票结算申请单

+ - + - + - + - + - + - + - + - + - + - + -
- -
+ + + + + + + + + + +
-

发票结算申请单明细

- 发票号: - - 追加入库记录 + + + - - - + + + + + @@ -164,7 +168,7 @@ export default { } const tr = [] let length = 0 - this.contractDetail.length < 15 ? length = 15 : length = this.contractDetail.length + length = this.contractDetail.length for (let i = 0; i < length; i++) { tr[i] = document.createElement('tr') tr[i].setAttribute('class', 'tableData') @@ -215,7 +219,7 @@ export default {