南骏 池
2024-10-30 cac13d369f5e1869460ed27a888856dc9dcdd602
js/CangKuManage_js/GS_JCLLD.js
@@ -373,12 +373,20 @@
      mui.alert("请输入正确的数字!")
      return;
   }
   var txtSL = parseFloat($("#txtSL").val());
   var SFSL = parseFloat($("#SFSL").val());
   console.log("txtSL:", txtSL);
   console.log("SFSL:", SFSL);
   // 比较数值大小
   if ($("#txtSL").val() < $("#SFSL").val()) {
   if (txtSL < SFSL) {
      console.log($("#txtSL").val());
      console.log( $("#SFSL").val());
      console.log("1");
      mui.alert("实发数不能大于条码数");
      return;
   };
   if ($("#txtSL").val() > $("#SFSL").val()) {
   if (txtSL > SFSL) {
      // console.log("2");
      PrintSplit();
   };