|
@@ -400,7 +400,7 @@ export default {
|
|
|
let model = {
|
|
|
companyNo: this.parmValue.companyNo,
|
|
|
supplier_code: this.supplier_code,
|
|
|
- stock_code: this.stock_code,
|
|
|
+ wsm_code: this.stock_code,
|
|
|
};
|
|
|
const res = await asyncRequest.getstockwsm(model);
|
|
|
|
|
@@ -450,7 +450,9 @@ export default {
|
|
|
this.loading = true;
|
|
|
let model = JSON.parse(JSON.stringify(this.parmValue));
|
|
|
model.supplier_code = this.supplier_code;
|
|
|
- model.stock_code = this.stock_code;
|
|
|
+ model.wsm_code = Array.isArray(this.stock_code) ? this.stock_code[0] : this.stock_code;
|
|
|
+ delete model['stock_code']
|
|
|
+
|
|
|
const res = await asyncRequest.list({
|
|
|
...model,
|
|
|
needRela: true
|