Browse Source

完善采购入库单查询--重推接口传参

zhanglei
yunuo970428 2 years ago
parent
commit
4fb704507c
  1. 2
      anrui-scm/anrui-scm-ui/src/api/purchasereceipt/purchasereceipt.js
  2. 2
      anrui-scm/anrui-scm-ui/src/views/purchasereceipt/purchasereceipt.vue

2
anrui-scm/anrui-scm-ui/src/api/purchasereceipt/purchasereceipt.js

@ -30,7 +30,7 @@ export default {
return request({ return request({
url: '/scm/v1/scmapplyinboundquery/ctcgykd', url: '/scm/v1/scmapplyinboundquery/ctcgykd',
method: 'post', method: 'post',
data: data, params: data,
headers: { 'Content-Type': 'application/json' } headers: { 'Content-Type': 'application/json' }
}) })
} }

2
anrui-scm/anrui-scm-ui/src/views/purchasereceipt/purchasereceipt.vue

@ -347,7 +347,7 @@ export default {
this.$message({ showClose: true, type: 'error', message: '请选择一条记录进行重推操作' }) this.$message({ showClose: true, type: 'error', message: '请选择一条记录进行重推操作' })
return return
} else { } else {
req.ctcgykd(this.sids[0]).then((resp) => { req.ctcgykd({ cgrkdSid: this.sids[0] }).then((resp) => {
if (resp.success) { if (resp.success) {
this.$message({ showClose: true, type: 'success', message: '推送成功' }) this.$message({ showClose: true, type: 'success', message: '推送成功' })
this.getList() this.getList()

Loading…
Cancel
Save