Commit 680c5a15 by LJM

bug

parent 4ea3a9bb
Showing with 25 additions and 0 deletions
...@@ -989,6 +989,8 @@ export default { ...@@ -989,6 +989,8 @@ export default {
return false; return false;
} }
//深圳自营仓
if (this.filter_id_warehouse_id[0] == 9) {
//先判断一下自营货品信息 //先判断一下自营货品信息
this.request(API.getZyGoodsData, 'GET', { stock_in_sn: this.filter_id_stock_in_sn.join(','), is_first_check: 1 }, true).then(res => { this.request(API.getZyGoodsData, 'GET', { stock_in_sn: this.filter_id_stock_in_sn.join(','), is_first_check: 1 }, true).then(res => {
if (res.code === 0) { if (res.code === 0) {
...@@ -1026,6 +1028,29 @@ export default { ...@@ -1026,6 +1028,29 @@ export default {
}); });
} }
}); });
} else {
this.request(API.addStockInRegister, 'POST', { stock_in_id: JSON.stringify(stock_in_id) }, true).then(res => {
if (res.code === 0) {
uni.showToast({
title: '登记成功',
icon: 'success'
});
setTimeout(() => {
this.resetChange();
this.getData();
this.closeDrawer();
this.filter_id = [];
this.filter_id_warehouse_id = [];
}, 2000);
} else {
uni.showModal({
itle: '提示',
content: res.msg,
showCancel: false
});
}
});
}
}, },
/** /**
* @param {Object} stock_in_sn * @param {Object} stock_in_sn
......
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