xiaodai2022 há 2 anos atrás
pai
commit
5e73be9b16

+ 35 - 6
src/views/goodStore/goodsCost/components/baseForm.vue

@@ -753,7 +753,11 @@
                     <div class="img-show-li-div">
                     <div class="img-show-li-div">
                       <img :src="img" class="img-show" alt="" />
                       <img :src="img" class="img-show" alt="" />
                       <i
                       <i
-                        v-if="type == 'add' || type === 'editBase'|| type === 'edit'"
+                        v-if="
+                          type == 'add' ||
+                          type === 'editBase' ||
+                          type === 'edit'
+                        "
                         class="el-icon-close"
                         class="el-icon-close"
                         @click="closeImg(iindex, 'good_img')"
                         @click="closeImg(iindex, 'good_img')"
                       ></i>
                       ></i>
@@ -763,7 +767,7 @@
                     class="img-show-li"
                     class="img-show-li"
                     v-if="
                     v-if="
                       ruleForm.good_img.length < 10 &&
                       ruleForm.good_img.length < 10 &&
-                      (type == 'add' || type === 'editBase'|| type === 'edit')
+                      (type == 'add' || type === 'editBase' || type === 'edit')
                     "
                     "
                   >
                   >
                     <div class="activity-upload">
                     <div class="activity-upload">
@@ -802,7 +806,11 @@
                     <div class="img-show-li-div">
                     <div class="img-show-li-div">
                       <img :src="img" class="img-show" alt="" />
                       <img :src="img" class="img-show" alt="" />
                       <i
                       <i
-                        v-if="type == 'add' || type === 'editBase'|| type === 'edit'"
+                        v-if="
+                          type == 'add' ||
+                          type === 'editBase' ||
+                          type === 'edit'
+                        "
                         class="el-icon-close"
                         class="el-icon-close"
                         @click="closeImg(iindex, 'good_info_img')"
                         @click="closeImg(iindex, 'good_info_img')"
                       ></i>
                       ></i>
@@ -812,7 +820,7 @@
                     class="img-show-li"
                     class="img-show-li"
                     v-if="
                     v-if="
                       ruleForm.good_info_img.length < 10 &&
                       ruleForm.good_info_img.length < 10 &&
-                      (type == 'add' || type === 'editBase'|| type === 'edit')
+                      (type == 'add' || type === 'editBase' || type === 'edit')
                     "
                     "
                   >
                   >
                     <div class="activity-upload">
                     <div class="activity-upload">
@@ -1237,8 +1245,14 @@ export default {
             this.loading = false;
             this.loading = false;
             return;
             return;
           }
           }
-          const { noble_weight, weight, good_type, moq, is_step } =
-            this.ruleForm;
+          const {
+            noble_weight,
+            weight,
+            good_type,
+            moq,
+            is_step,
+            is_gold_price,
+          } = this.ruleForm;
           // if (is_step === "0" && this.ladder_tableData.length > 1) {
           // if (is_step === "0" && this.ladder_tableData.length > 1) {
           //   this.$message.warning("不启用阶梯成本,只能录入一条阶梯成本信息!");
           //   this.$message.warning("不启用阶梯成本,只能录入一条阶梯成本信息!");
           //   this.loading = false;
           //   this.loading = false;
@@ -1251,6 +1265,21 @@ export default {
               return;
               return;
             }
             }
           }
           }
+          if (is_gold_price === "1" && this.is_noble) {
+            let is_p = true;
+            this.ladder_tableData.forEach((v) => {
+              if (v.nake_fee * 1 !== 0) {
+                is_p = false;
+              }
+            });
+            if (!is_p) {
+              this.$message.warning(
+                "启用实时金价的贵金属商品不能填写成本单价!"
+              );
+              this.loading = false;
+              return;
+            }
+          }
           // if (good_type === "1") {
           // if (good_type === "1") {
           //   let set_num = moq * 1;
           //   let set_num = moq * 1;
           //   let isok = true;
           //   let isok = true;

+ 21 - 10
src/views/purchaseIn/workbench/components/baseForm.vue

@@ -23,7 +23,11 @@
           >{{ title }}</span
           >{{ title }}</span
         >
         >
         <el-button :size="'mini'" @click="$emit('cancel')">取 消 </el-button>
         <el-button :size="'mini'" @click="$emit('cancel')">取 消 </el-button>
-        <el-button :size="'mini'" type="primary"  v-if="type !== 'view'" @click="submitForm"
+        <el-button
+          :size="'mini'"
+          type="primary"
+          v-if="type !== 'view'"
+          @click="submitForm"
           >保 存
           >保 存
         </el-button>
         </el-button>
       </el-col>
       </el-col>
@@ -420,7 +424,7 @@
             :values="ruleForm.nake_fee"
             :values="ruleForm.nake_fee"
             :placeholder="'裸价'"
             :placeholder="'裸价'"
             :min="0"
             :min="0"
-            :disabled="type === 'view'"
+            :disabled="type === 'view' || is_noble"
             :max="100000000000"
             :max="100000000000"
             :position="'right'"
             :position="'right'"
             :precision="2"
             :precision="2"
@@ -796,7 +800,10 @@ export default {
         };
         };
 
 
         this.status = status;
         this.status = status;
-        console.log(this.ruleForm.origin_place);
+        if (this.is_noble) {
+          this.ruleForm.nake_fee = "0";
+        }
+        // console.log(this.ruleForm.origin_place);
       } else if (code >= 100 && code <= 104) {
       } else if (code >= 100 && code <= 104) {
         await this.logout();
         await this.logout();
       } else {
       } else {
@@ -872,8 +879,10 @@ export default {
           this.is_noble = this.askItem.is_metal;
           this.is_noble = this.askItem.is_metal;
           this.cat_id_name = this.type === "add" ? this.askItem.can_name : "";
           this.cat_id_name = this.type === "add" ? this.askItem.can_name : "";
 
 
-          this.brand_name = this.type === "add" ? this.askItem.brand : "";
-          this.unit_name = this.type === "add" ? this.askItem.unit_name : "";
+          this.brand_name =""
+          // this.type === "add" ? this.askItem.brand : "";
+          this.unit_name = ""
+          //this.type === "add" ? this.askItem.unit_name : "";
           this.ruleForm = {
           this.ruleForm = {
             infoNo: this.id || "",
             infoNo: this.id || "",
             cat_id: this.type === "add" ? [this.askItem.cat_id] : [],
             cat_id: this.type === "add" ? [this.askItem.cat_id] : [],
@@ -882,11 +891,12 @@ export default {
             expire_day: "0", //有效期
             expire_day: "0", //有效期
             delivery_day: "0", //物流时间
             delivery_day: "0", //物流时间
             work_day: "0", //生产工期
             work_day: "0", //生产工期
-            brandid:
-              this.type === "add" && this.askItem.brand_id
-                ? [this.askItem.brand_id]
-                : [],
-            unit_id: this.type === "add" ? [this.askItem.unit] : [],
+            brandid:[],
+              // this.type === "add" && this.askItem.brand_id
+              //   ? [this.askItem.brand_id]
+              //   : [],
+            unit_id: [],
+            //this.type === "add" ? [this.askItem.unit] : [],
             weight: this.type === "add" ? this.askItem.total_weight : "0.000",
             weight: this.type === "add" ? this.askItem.total_weight : "0.000",
             tax: "",
             tax: "",
             supply_area: "",
             supply_area: "",
@@ -957,6 +967,7 @@ export default {
       this.is_noble = pid === "6";
       this.is_noble = pid === "6";
       this.$refs.ruleForm.validateField("cat_id");
       this.$refs.ruleForm.validateField("cat_id");
       this.setrules();
       this.setrules();
+      this.ruleForm.nake_fee = "0";
     },
     },
     setrules() {
     setrules() {
       let list = [
       let list = [