Commit 14791187 by LJM

产地修复

parent 50eb971f
Showing with 2 additions and 2 deletions
......@@ -421,7 +421,7 @@
this.searchParams.container_id = options.container_id || '';
//快速扫描
this.fastParams.flag = options.flag;
this.fastParams.qty = options.qty;
this.fastParams.qty = Number(options.qty) || '';
this.fastParams.batch = options.batch;
this.fastParams.origin = options.origin;
},
......@@ -650,7 +650,7 @@
this.image_list = [];
}
//DigiKey 供应商快速扫描过来的
if (this.fastParams.flag == 'fast') {
if (this.fastParams.flag == 'fast' && this.fastParams.qty) {
if (this.fastParams.qty) {
this.formParams.tally_qty = this.fastParams.qty; //理货数量
this.is_tips = res.data.list[0].wait_tally_qty != Number(this.formParams.tally_qty);
......
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