|
@@ -795,14 +795,14 @@ export default {
|
|
|
managerid:managerid ? [managerid] : managerid,
|
|
|
buyerid: buyerid ? [buyerid] : [],
|
|
|
addr_code: addr_code ? addr_code.split(",") : [],
|
|
|
- cat_id: cat_id && cat_id.length.length === 3 ? [cat_id[cat_id.length - 1]] : [],
|
|
|
+ cat_id: cat_id && cat_id.length === 3 ? [cat_id[cat_id.length - 1]] : [],
|
|
|
supplierNo: supplierNo ? [supplierNo] : [],
|
|
|
khNo: khNo ? [khNo] : [],
|
|
|
tax: tax ? tax + "%" : "",
|
|
|
goodUnit: goodUnit ? [goodUnit] : ""
|
|
|
};
|
|
|
|
|
|
- this.cat_id_name = cat_id && cat_id.length.length === 3?cat_id.map(({ name }) => name).join("_"):"";
|
|
|
+ this.cat_id_name = cat_id && cat_id.length === 3?cat_id.map(({ name }) => name).join("_"):"";
|
|
|
console.log(this.cat_id_name);
|
|
|
this.unit_name = unitName;
|
|
|
|