|
@@ -29,7 +29,7 @@
|
|
|
<!-- :isDetail="type !== 'add'"-->
|
|
|
<!-- @searchChange="company_idsearchChange"-->
|
|
|
<!-- />-->
|
|
|
- <el-input :value="getCompanyWithCode(ruleForm.companyNo).name" disabled />
|
|
|
+ <el-input :value="type === 'add' ? getCompanyWithCode(ruleForm.companyNo).name : companyName" disabled />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
@@ -1103,6 +1103,7 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ companyName: '',
|
|
|
spec_tableData: [],
|
|
|
is_support_stock: "",
|
|
|
cat_id_name: "",
|
|
@@ -1144,7 +1145,9 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
onCompanyChange(){
|
|
|
+ if(this.type === 'add'){
|
|
|
this.ruleForm.company_id = this.currentCompany
|
|
|
+ }
|
|
|
},
|
|
|
async initForm() {
|
|
|
this.loading = true;
|
|
@@ -1670,7 +1673,7 @@ export default {
|
|
|
good_type: "0",
|
|
|
is_stock: "0",
|
|
|
supplierNo: [],
|
|
|
- company_id: this.currentCompany || "",
|
|
|
+ company_id: "",
|
|
|
is_auth: "",
|
|
|
tax: "",
|
|
|
good_name: "",
|
|
@@ -1727,6 +1730,7 @@ export default {
|
|
|
this.old_ladder_tableData = [];
|
|
|
const {
|
|
|
id,
|
|
|
+ companyName,
|
|
|
spuCode, //string 商品spuCode
|
|
|
// good_code, //string 无
|
|
|
good_name, //string 商品名称
|
|
@@ -1788,6 +1792,9 @@ export default {
|
|
|
stock_moq,
|
|
|
is_support_stock,
|
|
|
} = this.sitem;
|
|
|
+
|
|
|
+ this.companyName = companyName
|
|
|
+
|
|
|
this.is_support_stock = is_support_stock || "1";
|
|
|
let cat_id_name = "";
|
|
|
let cat_id = [];
|
|
@@ -1846,7 +1853,7 @@ export default {
|
|
|
good_type: good_type || "0",
|
|
|
is_stock: is_stock || "0",
|
|
|
supplierNo: supplierNo ? [supplierNo] : [],
|
|
|
- company_id: companyNo || "",
|
|
|
+ company_id: companyNo,
|
|
|
is_auth: is_auth || "",
|
|
|
tax: tax ? tax + "%" : "",
|
|
|
good_name: good_name || "",
|
|
@@ -1900,7 +1907,8 @@ export default {
|
|
|
};
|
|
|
}
|
|
|
|
|
|
- this.ruleForm.company_id = this.currentCompany
|
|
|
+ if(this.type === 'add') this.ruleForm.company_id = this.currentCompany
|
|
|
+ console.log(this.ruleForm)
|
|
|
await this.set_must_spec();
|
|
|
});
|
|
|
},
|