ezhizao_zx 2 주 전
부모
커밋
fcf4295d28
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/cn/ezhizao/project/business/controller/BizInboundOrderController.java

+ 1 - 1
src/main/java/cn/ezhizao/project/business/controller/BizInboundOrderController.java

@@ -105,7 +105,7 @@ public class BizInboundOrderController extends BaseController {
         List<BizInboundOrderDetail> details = bizInboundOrderDetailService.query().in("inbound_order_id", list.stream().map( BizInboundOrder::getId).collect(Collectors.toList())).eq("certificate_code", bizInboundOrder.getPackCode()).list();
         if (details.isEmpty()) {
             // 返回合格证不存在错误
-            return error("合格证不存在");
+            return error("入库单对应箱码不存在");
         }
         details.forEach(l ->{
             l.setPalletCode(bizInboundOrder.getPalletCode());