|
@@ -280,17 +280,17 @@ export default {
|
|
|
if (valid) {
|
|
|
this.loading = true;
|
|
|
let item = JSON.parse(JSON.stringify(this.ruleForm));
|
|
|
- let rnum = parseInt(item.return_num),
|
|
|
- wnum = parseInt(item.wsm_num),
|
|
|
- anum = parseInt(item.send_num);
|
|
|
+ // let rnum = parseInt(item.return_num),
|
|
|
+ // wnum = parseInt(item.wsm_num),
|
|
|
+ // anum = parseInt(item.send_num);
|
|
|
|
|
|
- if (rnum + wnum !== anum) {
|
|
|
- this.$message.warning(
|
|
|
- "正常入库数量 + 异常退货数量 不等于 发货总数!"
|
|
|
- );
|
|
|
- this.loading = false;
|
|
|
- return;
|
|
|
- }
|
|
|
+ // if (rnum + wnum !== anum) {
|
|
|
+ // this.$message.warning(
|
|
|
+ // "正常入库数量 + 异常退货数量 不等于 发货总数!"
|
|
|
+ // );
|
|
|
+ // this.loading = false;
|
|
|
+ // return;
|
|
|
+ // }
|
|
|
|
|
|
delete item["send_num"];
|
|
|
const res = await asyncRequest.orderinreturn(item);
|