Bladeren bron

备库起订量只在库存品验证

xiaodai2022 2 jaren geleden
bovenliggende
commit
bb9cc87ee0

File diff suppressed because it is too large
+ 0 - 0
dist/index.html


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/chunk-0bd1759c.232aa9b4.css


BIN
dist/static/css/chunk-0bd1759c.232aa9b4.css.gz


BIN
dist/static/css/chunk-10f1e6f0.6e68ac68.css.gz


BIN
dist/static/js/app.082bef24.js.gz


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.278a6826.js


BIN
dist/static/js/app.278a6826.js.gz


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-0bd1759c.a5df9a01.js


BIN
dist/static/js/chunk-0bd1759c.a5df9a01.js.gz


BIN
dist/static/js/chunk-10f1e6f0.2f23777d.js.gz


+ 20 - 12
src/views/goodStore/goodsCost/components/baseForm.vue

@@ -165,6 +165,7 @@
                 clearable
                 :disabled="type === 'view' || type === 'editBase' || type === 'editCoin'"
                 style="width: 100%"
+                @change="stock_change"
                 placeholder="是否库存品"
               >
                 <el-option
@@ -394,7 +395,7 @@
               />
             </el-form-item>
           </el-col>
-          <el-col :span="8">
+          <el-col :span="8" v-show="ruleForm.is_stock === '1'">
             <el-form-item label="备库起订量" prop="stock_moq" label-width="95px">
               <digital-input
                 :values="ruleForm.stock_moq"
@@ -1141,12 +1142,16 @@ export default {
       this.ruleForm[key] = e + "" || "0";
       this.$refs.ruleForm.validateField(key);
       await this.get_all_fee();
+      this.stock_change();
     },
     openEdit(index, sitem) {
       this.modelIndex = index;
       this.sitem = sitem;
       this.showModel = true;
     },
+    stock_change() {
+      this.rulesThis.stock_moq[0].required = this.ruleForm.is_stock === "1";
+    },
     openCostEdit(index, sitem) {
       // const { is_step } = this.ruleForm;
       // if (index === -1 && is_step === "0" && this.ladder_tableData.length > 0) {
@@ -1214,18 +1219,21 @@ export default {
               is_step,
               is_gold_price,
               stock_moq,
+              is_stock,
             } = this.ruleForm;
-            let min = parseInt(this.ladder_tableData[0].min_num),
-              smoq = parseInt(stock_moq);
-            this.ladder_tableData.forEach((si) => {
-              let n = parseInt(si.min_num);
-              min = n < min ? n : min;
-            });
-            console.log(smoq, min, smoq < min);
-            if (smoq < min) {
-              this.$message.warning("备库起订量不能低于成本最低起订量!");
-              this.loading = false;
-              return;
+            if (is_stock === "1") {
+              let min = parseInt(this.ladder_tableData[0].min_num),
+                smoq = parseInt(stock_moq);
+              this.ladder_tableData.forEach((si) => {
+                let n = parseInt(si.min_num);
+                min = n < min ? n : min;
+              });
+              console.log(smoq, min, smoq < min);
+              if (smoq < min) {
+                this.$message.warning("备库起订量不能低于成本最低起订量!");
+                this.loading = false;
+                return;
+              }
             }
             // if (is_step === "0" && this.ladder_tableData.length > 1) {
             //   this.$message.warning("不启用阶梯成本,只能录入一条阶梯成本信息!");

Some files were not shown because too many files changed in this diff