Commit 22ce2d4b by liangjianmin

fix(tallyReceive): 修正取消理货接口参数名称

- 将取消理货接口参数从tally_id改为tally_ids
- 保持其他参数及逻辑不变,确保接口调用正确
parent 54a3d9db
Showing with 1 additions and 1 deletions
......@@ -870,7 +870,7 @@
showCancel: true,
success: res => {
if (res.confirm) {
this.request(API.cancelTallyReceive, 'POST', { tally_id: tally_id, stock_in_item_id: stock_in_item_id }, true).then(res => {
this.request(API.cancelTallyReceive, 'POST', { tally_ids: tally_id, stock_in_item_id: stock_in_item_id }, true).then(res => {
if (res.code === 0) {
uni.showToast({
title: '取消理货成功',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment