Browse Source

关闭按钮刷新

master_hella_20240701
wangyufei 3 months ago
parent
commit
85beb7d524
  1. 3
      src/views/wms/issueManage/repleinsh/repleinshJobMain/index.vue
  2. 3
      src/views/wms/productionManage/productreceipt/productreceiptJobMain/index.vue

3
src/views/wms/issueManage/repleinsh/repleinshJobMain/index.vue

@ -304,7 +304,8 @@ const buttonTableClick = async (val, row) => {
} else if (val == 'mainJobAba') { //
RepleinshJobMainApi.abandonRepleinshMain(row.masterId)
} else if (val == 'mainJobClo') { //
RepleinshJobMainApi.closeRepleinshMain(row.masterId)
await RepleinshJobMainApi.closeRepleinshMain(row.masterId)
getList()
} else if (val == 'mainJobAcc') { //
RepleinshJobMainApi.acceptRepleinshMain(row.masterId)
}

3
src/views/wms/productionManage/productreceipt/productreceiptJobMain/index.vue

@ -323,7 +323,8 @@ const buttonTableClick = async (val, row) => {
} else if (val == 'mainJobAba') { //
ProductreceiptJobMainApi.abandonProductreceiptMain(row.masterId)
} else if (val == 'mainJobClo') { //
ProductreceiptJobMainApi.closeProductreceiptMain(row.masterId)
await ProductreceiptJobMainApi.closeProductreceiptMain(row.masterId)
getList()
} else if (val == 'mainJobAcc') { //
ProductreceiptJobMainApi.acceptProductreceiptMain(row.masterId)
}

Loading…
Cancel
Save