Showing
1 changed file
with
5 additions
and
3 deletions
@@ -564,7 +564,7 @@ webpackJsonp([32],[ | @@ -564,7 +564,7 @@ webpackJsonp([32],[ | ||
564 | code_count ++; // 因为非jit商品,条码可以重复,所以上一行的代码判断就有bug,相同的数目不会增加 | 564 | code_count ++; // 因为非jit商品,条码可以重复,所以上一行的代码判断就有bug,相同的数目不会增加 |
565 | }); | 565 | }); |
566 | var ispass=true; | 566 | var ispass=true; |
567 | - if(common.util.__input("supplierId")){ | 567 | + if((!common.util.__input("sellType") && common.util.__input("supplierId")) || (common.util.__input("sellType") && common.util.__input("sellType") == 3)) { |
568 | if(len==map3.length&&len==Object.keys(__m).length){ | 568 | if(len==map3.length&&len==Object.keys(__m).length){ |
569 | common.util.__ajax2({ | 569 | common.util.__ajax2({ |
570 | url:'/product/checkSkuBarCodeExist', | 570 | url:'/product/checkSkuBarCodeExist', |
@@ -621,8 +621,10 @@ webpackJsonp([32],[ | @@ -621,8 +621,10 @@ webpackJsonp([32],[ | ||
621 | }); | 621 | }); |
622 | 622 | ||
623 | e.on("validate",function(){ | 623 | e.on("validate",function(){ |
624 | - if (($('#sellType').val() == 2 || $('#sellType').val() == 3) && ($('#supplierId').val() == '' || $('#supplierId').val() == -1 )) {// 当经销模式为代销/JIT 供应商字段必填 | ||
625 | - return "当经销模式为代销/JIT 供应商字段必填!"; | 624 | + if (ACTION === 0) { |
625 | + if (($('#sellType').val() == 2 || $('#sellType').val() == 3) && ($('#supplierId').val() == '' || $('#supplierId').val() == -1 )) {// 当经销模式为代销/JIT 供应商字段必填 | ||
626 | + return "当经营模式为代销/JIT 供应商字段必填!"; | ||
627 | + } | ||
626 | } | 628 | } |
627 | }); | 629 | }); |
628 | 630 |
-
Please register or login to post a comment