| | |
| | | |
| | | BigDecimal previousCompleteQty = |
| | | previousWorkOrder.getCompleteQuantity() == null ? BigDecimal.ZERO : previousWorkOrder.getCompleteQuantity(); |
| | | if (currentReportedQty.add(reportQty).compareTo(previousCompleteQty) > 0) { |
| | | throw new ServiceException("本次报工数量超过上道工序可流转数量"); |
| | | } |
| | | // if (currentReportedQty.add(reportQty).compareTo(previousCompleteQty) > 0) { |
| | | // throw new ServiceException("本次报工数量超过上道工序可流转数量"); |
| | | // } |
| | | |
| | | List<ProductProcessRouteItem> previousItems = productProcessRouteItemMapper.selectList( |
| | | Wrappers.<ProductProcessRouteItem>lambdaQuery() |
| | |
| | | .filter(Objects::nonNull) |
| | | .reduce(BigDecimal.ZERO, BigDecimal::add); |
| | | } |
| | | if (productWorkOrder.getPlanQuantity() != null |
| | | && currentWorkOrderReportedQty.add(reportQty).compareTo(productWorkOrder.getPlanQuantity()) > 0) { |
| | | throw new ServiceException("本次报工数量超过工单可报数量"); |
| | | } |
| | | // if (productWorkOrder.getPlanQuantity() != null |
| | | // && currentWorkOrderReportedQty.add(reportQty).compareTo(productWorkOrder.getPlanQuantity()) > 0) { |
| | | // throw new ServiceException("本次报工数量超过工单可报数量"); |
| | | // } |
| | | |
| | | // 第五步:生成报工单号并确定报工人信息 |
| | | String productNo; |