xiaodai2022 hace 2 años
padre
commit
c9e41cdb6e
Se han modificado 2 ficheros con 6 adiciones y 4 borrados
  1. 0 0
      dist/static/js/0.js
  2. 6 4
      src/views/goodStore/goodsCost/components/baseForm.vue

La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 0
dist/static/js/0.js


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

@@ -1184,10 +1184,7 @@ export default {
     async submitForm() {
     async submitForm() {
       this.sch_is_noble();
       this.sch_is_noble();
       this.good_type_change();
       this.good_type_change();
-      if (this.is_support_stock + "" === "0") {
-        this.$message.warning("该商品为供应商退货业务创建的,不允许改为非库存品!");
-        return;
-      }
+
       await this.$refs.ruleForm.validate(async (valid) => {
       await this.$refs.ruleForm.validate(async (valid) => {
         if (valid) {
         if (valid) {
           if (!this.loading) {
           if (!this.loading) {
@@ -1202,6 +1199,11 @@ export default {
               stock_moq,
               stock_moq,
               is_stock,
               is_stock,
             } = this.ruleForm;
             } = this.ruleForm;
+            if (this.is_support_stock + "" === "0" && is_stock === "0") {
+              this.$message.warning("该商品为供应商退货业务创建的,不允许改为非库存品!");
+              loading = false;
+              return;
+            }
             if (is_stock === "0") {
             if (is_stock === "0") {
               const { scode, sdata, smsg } = await this.getSupplerPower();
               const { scode, sdata, smsg } = await this.getSupplerPower();
               if (scode === 0) {
               if (scode === 0) {

Algunos archivos no se mostraron porque demasiados archivos cambiaron en este cambio