Browse Source

去掉完工入库前的校验限制

koul 3 years ago
parent
commit
d020bd3f67
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/main/java/com/uas/eis/service/Impl/MESServiceImpl.java

+ 2 - 2
src/main/java/com/uas/eis/service/Impl/MESServiceImpl.java

@@ -244,11 +244,11 @@ public class MESServiceImpl implements MESService {
                 } else {
                     return ApiResponse.failRsp("10077", requestId, "工单在ERP不存在,请核对!");
                 }
-                float fauxqty = json.get("Fauxqty") == null ? 0 : Float.parseFloat(json.get("Fauxqty").toString());
+                /*float fauxqty = json.get("Fauxqty") == null ? 0 : Float.parseFloat(json.get("Fauxqty").toString());
                 String msg = baseDao.callProcedure("USER_WGRKCHECK", new Object[]{ma_id, fauxqty});
                 if (msg != null && !msg.trim().equals("")){
                     return ApiResponse.failRsp("10078",requestId,msg);
-                }
+                }*/
             }
         }
         if ("OS".equals(ma_tasktype)) {