From 4d00e2795836d3af5b45f783bdb969eb59b3131b Mon Sep 17 00:00:00 2001 From: anthonywj Date: Mon, 20 Mar 2023 21:49:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=9A=E5=8A=A1=E6=B5=81=E7=A8=8B,=E8=B5=84?= =?UTF-8?q?=E8=B4=A8=E8=AF=81=E4=B9=A6,=E5=8D=95=E6=8D=AE=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E7=AD=89=E7=9B=B8=E5=85=B3=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/glxp/api/constant/ConstantStatus.java | 13 ++- .../controller/basic/UdiRlSupController.java | 2 +- .../inout/IoOrderDetailBizController.java | 54 ++++++------ .../inout/IoOrderReviewController.java | 14 ++- .../inv/InvPreinOrderController.java | 5 ++ .../purchase/SupCompanyController.java | 2 +- .../purchase/SupManufacturerController.java | 3 +- .../purchase/SupProductController.java | 86 +++++++++---------- .../basic/BasicBussinessTypeEntity.java | 24 +++++- .../req/basic/BussinessTypeSaveRequest.java | 14 ++- .../res/basic/BasicBussinessTypeResponse.java | 13 ++- .../service/inout/IoCheckInoutService.java | 60 ++++++++++++- .../inout/impl/IoOrderServiceImpl.java | 4 +- .../mapper/basic/BasicBussinessTypeDao.xml | 9 +- .../mybatis/mapper/purchase/SupProductDao.xml | 4 +- src/main/resources/schemas/schema_v2.1.sql | 11 ++- 16 files changed, 229 insertions(+), 89 deletions(-) diff --git a/src/main/java/com/glxp/api/constant/ConstantStatus.java b/src/main/java/com/glxp/api/constant/ConstantStatus.java index 51c84962..74cd1b43 100644 --- a/src/main/java/com/glxp/api/constant/ConstantStatus.java +++ b/src/main/java/com/glxp/api/constant/ConstantStatus.java @@ -28,7 +28,7 @@ public class ConstantStatus { public static final Integer ORDER_STATS_ERROR = 4; /** - * 校验成功待审核 + * 校验成功待交接 */ public static final Integer ORDER_STATUS_CHECK_SUCCESS = 5; @@ -37,6 +37,13 @@ public class ConstantStatus { */ public static final Integer ORDER_STATUS_CHECK_FAIL = 6; + + /** + * 已交接待审核 + */ + public static final Integer ORDER_STATUS_CHECK_REW = 10; + + /** * 审核通过 */ @@ -83,9 +90,11 @@ public class ConstantStatus { //订单处理状态 public static final Integer ORDER_DEAL_DRAFT = 1; //草稿 - public static final Integer ORDER_DEAL_POST = 2; //已提交 + public static final Integer ORDER_DEAL_POST = 2; //已提交,待交接 + public static final Integer ORDER_DEAL_REW = 4; //交接中,待审核 public static final Integer ORDER_DEAL_CHECK = 3; //已审核 + //ERP校验状态 public static final Integer ORDER_CHECK_SUCCESS = 2; //校验成功 public static final Integer ORDER_CHECK_FAIL = 1; //校验失败 diff --git a/src/main/java/com/glxp/api/controller/basic/UdiRlSupController.java b/src/main/java/com/glxp/api/controller/basic/UdiRlSupController.java index 01379cba..e257b984 100644 --- a/src/main/java/com/glxp/api/controller/basic/UdiRlSupController.java +++ b/src/main/java/com/glxp/api/controller/basic/UdiRlSupController.java @@ -237,7 +237,7 @@ public class UdiRlSupController extends BaseController { UdiProductEntity udiProductEntity = new UdiProductEntity(); BeanUtils.copyProperties(udiProductEntity, udiInfoExportRequest.getSupplementRequest()); udiProductService.insertUdiInfo(udiProductEntity); - return ResultVOUtils.success("后台正在导入,请稍后刷新查看!"); + return ResultVOUtils.success("选入成功!"); } @AuthRuleAnnotation("") diff --git a/src/main/java/com/glxp/api/controller/inout/IoOrderDetailBizController.java b/src/main/java/com/glxp/api/controller/inout/IoOrderDetailBizController.java index 1ea00e74..d08c6625 100644 --- a/src/main/java/com/glxp/api/controller/inout/IoOrderDetailBizController.java +++ b/src/main/java/com/glxp/api/controller/inout/IoOrderDetailBizController.java @@ -29,6 +29,7 @@ import com.glxp.api.res.inout.IoOrderInvoiceResponse; import com.glxp.api.service.auth.InvWarehouseService; import com.glxp.api.service.basic.*; import com.glxp.api.service.inout.*; +import com.glxp.api.service.purchase.SupProductService; import com.glxp.api.service.thrsys.ThrOrderDetailService; import com.glxp.api.service.thrsys.ThrOrderService; import com.glxp.api.service.thrsys.ThrSystemBusApiService; @@ -79,7 +80,6 @@ public class IoOrderDetailBizController extends BaseController { IoOrderInvoiceService ioOrderInvoiceService; - //获取单据业务详情---临时接口查询 @AuthRuleAnnotation("") @GetMapping("udiwms/inout/order/draft/biz") @@ -90,7 +90,8 @@ public class IoOrderDetailBizController extends BaseController { pageSimpleResponse.setList(orderEntityList); return ResultVOUtils.success(pageSimpleResponse); } - + @Resource + SupProductService supProductService; //录入业务单据详情 @AuthRuleAnnotation("") @@ -137,6 +138,10 @@ public class IoOrderDetailBizController extends BaseController { } for (AddBizProductReqeust item : datas) { UdiRelevanceResponse udiRelevanceResponse = udiRelevanceService.selectGroupById(item.getRelId()); + +// todo 查询产品是否已经通过认证 +// 1111 + IoOrderDetailBizEntity ioOrderDetailBizEntity = new IoOrderDetailBizEntity(); ioOrderDetailBizEntity.setOrderIdFk(orderEntity.getBillNo()); ioOrderDetailBizEntity.setBindRlFk(udiRelevanceResponse.getId()); @@ -162,6 +167,8 @@ public class IoOrderDetailBizController extends BaseController { return ResultVOUtils.success(orderEntity); } + + //修改业务单据详情 @AuthRuleAnnotation("") @PostMapping("/udiwms/inout/order/updateBizProduct") @@ -417,32 +424,32 @@ public class IoOrderDetailBizController extends BaseController { } -/** - * 删除发票表 - * - * @param id - * @return - */ -@GetMapping("/udiwms/inout/biz/deleteById") -public BaseResponse deleteById(Integer id) { + /** + * 删除发票表 + * + * @param id + * @return + */ + @GetMapping("/udiwms/inout/biz/deleteById") + public BaseResponse deleteById(Integer id) { - return ResultVOUtils.success(ioOrderInvoiceService.deleteByInvId(id)); + return ResultVOUtils.success(ioOrderInvoiceService.deleteByInvId(id)); -} + } -/** - * 修改发票表 - * - * @param ioOrderInvoiceRequest - * @return - */ + /** + * 修改发票表 + * + * @param ioOrderInvoiceRequest + * @return + */ -@PostMapping("/udiwms/inout/biz/updateById") -public BaseResponse deleteById(@RequestBody IoOrderInvoiceRequest ioOrderInvoiceRequest) { + @PostMapping("/udiwms/inout/biz/updateById") + public BaseResponse deleteById(@RequestBody IoOrderInvoiceRequest ioOrderInvoiceRequest) { - return ResultVOUtils.success(ioOrderInvoiceService.updateByInvId(ioOrderInvoiceRequest)); + return ResultVOUtils.success(ioOrderInvoiceService.updateByInvId(ioOrderInvoiceRequest)); -} + } @PostMapping("/udiwms/inout/biz/insertInvoice") @@ -453,7 +460,7 @@ public BaseResponse deleteById(@RequestBody IoOrderInvoiceRequest ioOrderInvoice for (IoOrderDetailResultEntity ioOrderDetailResultEntity : list) { IoOrderInvoiceEntity ioOrderInvoiceEntity = new IoOrderInvoiceEntity(); ioOrderInvoiceEntity.setOrderIdFk(ioOrderDetailResultEntity.getOrderIdFk()); - ioOrderInvoiceEntity.setBindRlFk(ioOrderDetailResultEntity.getBindRlFk()+""); + ioOrderInvoiceEntity.setBindRlFk(ioOrderDetailResultEntity.getBindRlFk() + ""); ioOrderInvoiceEntity.setBatchNo(ioOrderDetailResultEntity.getBatchNo()); ioOrderInvoiceEntity.setProductDate(ioOrderDetailResultEntity.getProductDate()); ioOrderInvoiceEntity.setExpireDate(ioOrderDetailResultEntity.getExpireDate()); @@ -461,7 +468,6 @@ public BaseResponse deleteById(@RequestBody IoOrderInvoiceRequest ioOrderInvoice } - return ResultVOUtils.success("成功"); } diff --git a/src/main/java/com/glxp/api/controller/inout/IoOrderReviewController.java b/src/main/java/com/glxp/api/controller/inout/IoOrderReviewController.java index 7784e7f0..920a5516 100644 --- a/src/main/java/com/glxp/api/controller/inout/IoOrderReviewController.java +++ b/src/main/java/com/glxp/api/controller/inout/IoOrderReviewController.java @@ -97,7 +97,16 @@ public class IoOrderReviewController extends BaseController { if (orderEntity == null) { return ResultVOUtils.error(500, "未找到该业务单据"); } - return updateReview(getUser(), orderEntity); + + if (orderEntity.getStatus() == ConstantStatus.ORDER_STATUS_CHECK_REW) { + return updateReview(getUser(), orderEntity); + } else if (orderEntity.getStatus() == ConstantStatus.ORDER_STATUS_CHECK_SUCCESS) { + return thirdUpdateReview(getUser(), orderEntity); + } else { + return ResultVOUtils.error(500, "当前单据状态非处于审核状态!"); + } + + } //前端第三次验收 @@ -366,7 +375,7 @@ public class IoOrderReviewController extends BaseController { //前端第三次验收 public BaseResponse thirdUpdateReview(AuthAdmin authAdmin, IoOrderEntity orderEntity) { - orderEntity.setStatus(ConstantStatus.ORDER_STATUS_AUDITED); + orderEntity.setStatus(ConstantStatus.ORDER_STATUS_CHECK_REW); orderEntity.setReviewUser(authAdmin.getId() + ""); orderEntity.setUpdateTime(new Date()); orderEntity.setAuditTime(new Date()); @@ -375,6 +384,7 @@ public class IoOrderReviewController extends BaseController { redisUtil.del(ConstantStatus.REDIS_BILLNO + orderEntity.getBillNo()); redisUtil.del(ConstantStatus.REDIS_BILLNO_CODES + orderEntity.getBillNo()); //验收完成->进入流程 + ioCheckInoutService.checkThird(orderEntity); return ResultVOUtils.success("更新成功"); } diff --git a/src/main/java/com/glxp/api/controller/inv/InvPreinOrderController.java b/src/main/java/com/glxp/api/controller/inv/InvPreinOrderController.java index 6aaf68c4..1325588a 100644 --- a/src/main/java/com/glxp/api/controller/inv/InvPreinOrderController.java +++ b/src/main/java/com/glxp/api/controller/inv/InvPreinOrderController.java @@ -42,6 +42,11 @@ public class InvPreinOrderController extends BaseController { @GetMapping("/udiwms/inv/prein/filter") public BaseResponse filterOrder(FilterInvPreinRequest filterInvPreinRequest) { + + if (!isHosUser()) { + filterInvPreinRequest.setFromCorp(getCustomerId()); + } + List list = invPreinOrderService.filterList(filterInvPreinRequest); PageInfo pageInfo = new PageInfo<>(list); return ResultVOUtils.page(pageInfo); diff --git a/src/main/java/com/glxp/api/controller/purchase/SupCompanyController.java b/src/main/java/com/glxp/api/controller/purchase/SupCompanyController.java index 802b9afa..35e5a261 100644 --- a/src/main/java/com/glxp/api/controller/purchase/SupCompanyController.java +++ b/src/main/java/com/glxp/api/controller/purchase/SupCompanyController.java @@ -265,7 +265,7 @@ public class SupCompanyController { for (SupCertEntity supCertEntity : supCertEntityList) { msg+=supCertEntity.getName()+","; } - return ResultVOUtils.error(500, "审核失败,还有" + msg.substring(0,msg.length()-1) + "证书还未确认!"); + return ResultVOUtils.error(500, "审核失败,还有必须提交证书未确认(" + msg.substring(0,msg.length()-1) + ")"); } } diff --git a/src/main/java/com/glxp/api/controller/purchase/SupManufacturerController.java b/src/main/java/com/glxp/api/controller/purchase/SupManufacturerController.java index f339811e..d14f0363 100644 --- a/src/main/java/com/glxp/api/controller/purchase/SupManufacturerController.java +++ b/src/main/java/com/glxp/api/controller/purchase/SupManufacturerController.java @@ -364,8 +364,7 @@ public class SupManufacturerController { for (SupCertEntity supCertEntity : supCertEntityList) { msg+=supCertEntity.getName()+","; } - return ResultVOUtils.error(500, "审核失败,还有" + msg.substring(0,msg.length()-1) + "证书还未确认!"); - } + return ResultVOUtils.error(500, "审核失败,还有必须提交证书未确认(" + msg.substring(0,msg.length()-1) + ")"); } } supManufacturerEntity.setUpdateTime(new Date()); diff --git a/src/main/java/com/glxp/api/controller/purchase/SupProductController.java b/src/main/java/com/glxp/api/controller/purchase/SupProductController.java index d59b0961..e621aaf1 100644 --- a/src/main/java/com/glxp/api/controller/purchase/SupProductController.java +++ b/src/main/java/com/glxp/api/controller/purchase/SupProductController.java @@ -153,13 +153,11 @@ public class SupProductController { UdiRelevanceResponse udiRelevanceResponse = udiRelevanceService.selectGroupById(Long.valueOf(selectProductBindRequest.getRelIdFk())); - - SupProductEntity supProductEntity = new SupProductEntity(); BeanUtils.copyProperties(udiRelevanceResponse, supProductEntity); supProductEntity.setProductId(selectProductBindRequest.getProductId()); supProductEntity.setRecordCode(udiRelevanceResponse.getZczbhhzbapzbh()); - supProductEntity.setRelIdFk(selectProductBindRequest.getRelIdFk()); + supProductEntity.setRelIdFk(udiRelevanceResponse.getId() + ""); supProductEntity.setRecordProductName(udiRelevanceResponse.getCpmctymc()); supProductEntity.setProductType(udiRelevanceResponse.getQxlb()); supProductEntity.setProductDirectoryCode(udiRelevanceResponse.getFlbm()); @@ -200,51 +198,51 @@ public class SupProductController { //提交审核 if (supProductEntity.getAuditStatus() == ConstantStatus.AUDIT_CHANGE || supProductEntity.getAuditStatus() == ConstantStatus.AUDIT_UN) { - //判断是否上级供应商是否审核通过 + //判断是否上级供应商是否审核通过 - SupManufacturerEntity supManufacturerEntity = supManufacturerService.findManufacturer(supProductEntity.getManufacturerIdFk()); - if (supManufacturerEntity.getAuditStatus() == ConstantStatus.AUDIT_UN - || supManufacturerEntity.getAuditStatus() == ConstantStatus.AUDIT_DRAFT) { - return ResultVOUtils.error(500, "所属生产企业资质未通过审核,暂时无法提交!"); - } + SupManufacturerEntity supManufacturerEntity = supManufacturerService.findManufacturer(supProductEntity.getManufacturerIdFk()); + if (supManufacturerEntity.getAuditStatus() == ConstantStatus.AUDIT_UN + || supManufacturerEntity.getAuditStatus() == ConstantStatus.AUDIT_DRAFT) { + return ResultVOUtils.error(500, "所属生产企业资质未通过审核,暂时无法提交!"); + } - //验证证书是否齐全 - FilterCertSetsRequest filterCertSetsRequest = new FilterCertSetsRequest(); - filterCertSetsRequest.setType(ConstantStatus.CERT_PRODUCT); - List supCertSetEntities = supCertSetService.filterCertSets(filterCertSetsRequest); - List supCertEntityList = supCertService.findAll(supProductEntity.getCustomerId(), supProductEntity.getManufacturerIdFk(), supProductEntity.getProductId()); - ListIterator iterable = supCertSetEntities.listIterator(); - while (iterable.hasNext()) { - SupCertSetEntity supCertSetEntity = iterable.next(); - - if (supCertSetEntity.getImports() != null && supCertSetEntity.getImports() == 1 || StrUtil.isNotEmpty(supCertSetEntity.getCplx()) && supCertSetEntity.getCplx().equals("全部") - || StrUtil.isNotEmpty(supCertSetEntity.getHchzsb()) && supCertSetEntity.getHchzsb().equals("全部") - || (supCertSetEntity.getImports() != null && supCertSetEntity.getImports() == 2 - && StrUtil.trimToEmpty(supProductEntity.getRecordCode()).contains("进")) - || (supCertSetEntity.getImports() != null && supCertSetEntity.getImports() == 3 && !StrUtil.trimToEmpty(supProductEntity.getRecordCode()).contains("进")) - || (StrUtil.trimToEmpty(supProductEntity.getProductType()).equals(supCertSetEntity.getCplx())) - || (StrUtil.trimToEmpty(supProductEntity.getHchzsb()).equals(supCertSetEntity.getHchzsb())) - || StrUtil.isNotEmpty(supCertSetEntity.getFlbm()) && (supCertSetEntity.getFlbm().contains(StrUtil.trimToEmpty(supProductEntity.getProductDirectoryCode()))) - ) { - for (SupCertEntity supCertEntity : supCertEntityList) { - if (supCertEntity.getName().equals(supCertSetEntity.getName())) { - if (StrUtil.isNotEmpty(supCertEntity.getFilePath())) { - iterable.remove(); - break; + //验证证书是否齐全 + FilterCertSetsRequest filterCertSetsRequest = new FilterCertSetsRequest(); + filterCertSetsRequest.setType(ConstantStatus.CERT_PRODUCT); + List supCertSetEntities = supCertSetService.filterCertSets(filterCertSetsRequest); + List supCertEntityList = supCertService.findAll(supProductEntity.getCustomerId(), supProductEntity.getManufacturerIdFk(), supProductEntity.getProductId()); + ListIterator iterable = supCertSetEntities.listIterator(); + while (iterable.hasNext()) { + SupCertSetEntity supCertSetEntity = iterable.next(); + + if (supCertSetEntity.getImports() != null && supCertSetEntity.getImports() == 1 || StrUtil.isNotEmpty(supCertSetEntity.getCplx()) && supCertSetEntity.getCplx().equals("全部") + || StrUtil.isNotEmpty(supCertSetEntity.getHchzsb()) && supCertSetEntity.getHchzsb().equals("全部") + || (supCertSetEntity.getImports() != null && supCertSetEntity.getImports() == 2 + && StrUtil.trimToEmpty(supProductEntity.getRecordCode()).contains("进")) + || (supCertSetEntity.getImports() != null && supCertSetEntity.getImports() == 3 && !StrUtil.trimToEmpty(supProductEntity.getRecordCode()).contains("进")) + || (StrUtil.trimToEmpty(supProductEntity.getProductType()).equals(supCertSetEntity.getCplx())) + || (StrUtil.trimToEmpty(supProductEntity.getHchzsb()).equals(supCertSetEntity.getHchzsb())) + || StrUtil.isNotEmpty(supCertSetEntity.getFlbm()) && (supCertSetEntity.getFlbm().contains(StrUtil.trimToEmpty(supProductEntity.getProductDirectoryCode()))) + ) { + for (SupCertEntity supCertEntity : supCertEntityList) { + if (supCertEntity.getName().equals(supCertSetEntity.getName())) { + if (StrUtil.isNotEmpty(supCertEntity.getFilePath())) { + iterable.remove(); + break; + } } } + } else { + iterable.remove(); } - } else { - iterable.remove(); } - } - String errMsg = ""; - if (supCertSetEntities.size() > 0) { - for (SupCertSetEntity supCertSetEntity : supCertSetEntities) { - errMsg = errMsg + "," + supCertSetEntity.getName(); + String errMsg = ""; + if (supCertSetEntities.size() > 0) { + for (SupCertSetEntity supCertSetEntity : supCertSetEntities) { + errMsg = errMsg + "," + supCertSetEntity.getName(); + } + return ResultVOUtils.error(500, errMsg.substring(1) + "等证书未上传,无法提交审核!"); } - return ResultVOUtils.error(500, errMsg.substring(1) + "等证书未上传,无法提交审核!"); - } } supProductEntity.setUpdateTime(new Date()); @@ -314,7 +312,7 @@ public class SupProductController { return ResultVOUtils.error(500, "必传证书不齐全"); } } - String msg=""; + String msg = ""; // 查询是否包含审核未通过的证书 if (supProductEntity.getAuditStatus() == ConstantStatus.AUDIT_PASS || supProductEntity.getAuditStatus() == ConstantStatus.AUDIT_CHANGE_PASS) { @@ -327,9 +325,9 @@ public class SupProductController { List supCertEntityList = supCertService.filterCompanyCert(filterSupCertRequest); if (CollUtil.isNotEmpty(supCertEntityList)) { for (SupCertEntity supCertEntity : supCertEntityList) { - msg+=supCertEntity.getName()+","; + msg += supCertEntity.getName() + ","; } - return ResultVOUtils.error(500, "审核失败,还有" + msg.substring(0,msg.length()-1) + "证书还未确认!"); + return ResultVOUtils.error(500, "审核失败,还有必须提交证书未确认(" + msg.substring(0, msg.length() - 1) + ")"); } } diff --git a/src/main/java/com/glxp/api/entity/basic/BasicBussinessTypeEntity.java b/src/main/java/com/glxp/api/entity/basic/BasicBussinessTypeEntity.java index 789b8662..1385bb46 100644 --- a/src/main/java/com/glxp/api/entity/basic/BasicBussinessTypeEntity.java +++ b/src/main/java/com/glxp/api/entity/basic/BasicBussinessTypeEntity.java @@ -363,7 +363,29 @@ public class BasicBussinessTypeEntity { @TableField(value = "actionType") - private Integer actionType; //1:带票(正常);2.预验收。3:寄售 + private int actionType; //1:带票(正常);2.预验收。3:寄售 + + + @TableField(value = "thrCheckEnable") + private boolean thrCheckEnable; + @TableField(value = "thrCheckWebNew") + private boolean thrCheckWebNew; + @TableField(value = "thrCheckPdaUn") + private boolean thrCheckPdaUn; + @TableField(value = "thrCheckPdaEd") + private boolean thrCheckPdaEd; + @TableField(value = "thrCheckUdims") + private boolean thrCheckUdims; + @TableField(value = "thrCheckPc") + private boolean thrCheckPc; + @TableField(value = "thrCheckSp") + private boolean thrCheckSp; + @TableField(value = "thrCheckChange") + private boolean thrCheckChange; + @TableField(value = "thrCheckBalance") + private boolean thrCheckBalance; + @TableField(value = "thrCheckCopy") + private boolean thrCheckCopy; } diff --git a/src/main/java/com/glxp/api/req/basic/BussinessTypeSaveRequest.java b/src/main/java/com/glxp/api/req/basic/BussinessTypeSaveRequest.java index 3f6048c7..7424d603 100644 --- a/src/main/java/com/glxp/api/req/basic/BussinessTypeSaveRequest.java +++ b/src/main/java/com/glxp/api/req/basic/BussinessTypeSaveRequest.java @@ -275,7 +275,19 @@ public class BussinessTypeSaveRequest { private boolean vailDispatch; //校验是否可配送 private int vailGroupBuy; //校验是否集采产品 0:全部,1:只采集集采产品,2:只采集非集采产品 private Integer busType; //1:正常;2:送货;3.到货 - private Integer actionType; + private int actionType; private boolean inStock; + + private boolean thrCheckEnable; + private boolean thrCheckWebNew; + private boolean thrCheckPdaUn; + private boolean thrCheckPdaEd; + private boolean thrCheckUdims; + private boolean thrCheckPc; + private boolean thrCheckSp; + private boolean thrCheckChange; + private boolean thrCheckBalance; + private boolean thrCheckCopy; + } diff --git a/src/main/java/com/glxp/api/res/basic/BasicBussinessTypeResponse.java b/src/main/java/com/glxp/api/res/basic/BasicBussinessTypeResponse.java index a5d122f4..033ef764 100644 --- a/src/main/java/com/glxp/api/res/basic/BasicBussinessTypeResponse.java +++ b/src/main/java/com/glxp/api/res/basic/BasicBussinessTypeResponse.java @@ -1,5 +1,6 @@ package com.glxp.api.res.basic; +import com.baomidou.mybatisplus.annotation.TableField; import lombok.Data; /** @@ -127,8 +128,18 @@ public class BasicBussinessTypeResponse { private int vailGroupBuy; //校验是否集采产品 0:全部,1:只采集集采产品,2:只采集非集采产品 private Integer busType; //1:正常;2:送货;3.到货 - private Integer actionType; + private int actionType; private boolean inStock; + private boolean thrCheckEnable; + private boolean thrCheckWebNew; + private boolean thrCheckPdaUn; + private boolean thrCheckPdaEd; + private boolean thrCheckUdims; + private boolean thrCheckPc; + private boolean thrCheckSp; + private boolean thrCheckChange; + private boolean thrCheckBalance; + private boolean thrCheckCopy; } diff --git a/src/main/java/com/glxp/api/service/inout/IoCheckInoutService.java b/src/main/java/com/glxp/api/service/inout/IoCheckInoutService.java index 35f72cdb..6b4c9088 100644 --- a/src/main/java/com/glxp/api/service/inout/IoCheckInoutService.java +++ b/src/main/java/com/glxp/api/service/inout/IoCheckInoutService.java @@ -96,7 +96,7 @@ public class IoCheckInoutService { } } - //校验流程 + //校验流程 //一次校验 public void check(String orderId) { IoOrderEntity orderEntity = orderService.findByBillNo(orderId); //过滤非未校验或校验异常 @@ -229,9 +229,10 @@ public class IoCheckInoutService { orderEntity.setDealStatus(ConstantStatus.ORDER_DEAL_POST); orderEntity.setUpdateTime(new Date()); orderService.update(orderEntity); - checkSecond(orderEntity); + checkThird(orderEntity); } + //一次校验完成 public void checkFirstFinish(IoOrderEntity orderEntity) { List orderDetailCodeEntities = orderDetailCodeService.findByOrderId(orderEntity.getBillNo()); @@ -332,7 +333,7 @@ public class IoCheckInoutService { orderEntity.setDealStatus(ConstantStatus.ORDER_DEAL_POST); orderEntity.setUpdateTime(new Date()); orderService.update(orderEntity); - checkSecond(orderEntity); + checkThird(orderEntity); } } @@ -536,6 +537,59 @@ public class IoCheckInoutService { } + //三次校验(中间层) + public void checkThird(IoOrderEntity orderEntity) { + BasicBussinessTypeEntity bussinessTypeEntity = basicBussinessTypeService.findByAction(orderEntity.getAction()); + if (orderEntity.getStatus() != ConstantStatus.ORDER_STATUS_AUDITED && orderEntity.getStatus() != ConstantStatus.ORDER_STATUS_CHECK_REW) { + if (bussinessTypeEntity.isThrCheckEnable()) { + if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_UDIMS) { + if (!bussinessTypeEntity.isThrCheckUdims()) { + orderEntity.setStatus(ConstantStatus.ORDER_STATUS_CHECK_REW); + } + } else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_WEBNEW) { + if (!bussinessTypeEntity.isThrCheckWebNew()) { + orderEntity.setStatus(ConstantStatus.ORDER_STATUS_CHECK_REW); + } + } else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_PDAED) { + if (!bussinessTypeEntity.isThrCheckPdaEd()) { + orderEntity.setStatus(ConstantStatus.ORDER_STATUS_CHECK_REW); + } + } else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_PDAUN) { + if (!bussinessTypeEntity.isThrCheckPdaUn()) { + orderEntity.setStatus(ConstantStatus.ORDER_STATUS_CHECK_REW); + } + } else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_PC) { + if (!bussinessTypeEntity.isThrCheckPc()) { + orderEntity.setStatus(ConstantStatus.ORDER_STATUS_CHECK_REW); + } + } else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_CHANGE) { + if (!bussinessTypeEntity.isThrCheckChange()) { + orderEntity.setStatus(ConstantStatus.ORDER_STATUS_CHECK_REW); + } + } else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_PEACE_CHANGE) { + if (!bussinessTypeEntity.isThrCheckBalance()) { + orderEntity.setStatus(ConstantStatus.ORDER_STATUS_CHECK_REW); + } + } else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_COPY) { + if (!bussinessTypeEntity.isThrCheckCopy()) { + orderEntity.setStatus(ConstantStatus.ORDER_STATUS_CHECK_REW); + } + } + } else { + orderEntity.setStatus(ConstantStatus.ORDER_STATUS_CHECK_REW); + } + } + + if (orderEntity.getStatus() == ConstantStatus.ORDER_STATUS_CHECK_REW) { + orderEntity.setDealStatus(ConstantStatus.ORDER_DEAL_REW); + orderEntity.setUpdateTime(new Date()); + orderEntity.setAuditTime(new Date()); + orderService.update(orderEntity); + checkSecond(orderEntity); + } + } + + //二次校验 public void checkSecond(IoOrderEntity orderEntity) { BasicBussinessTypeEntity bussinessTypeEntity = basicBussinessTypeService.findByAction(orderEntity.getAction()); diff --git a/src/main/java/com/glxp/api/service/inout/impl/IoOrderServiceImpl.java b/src/main/java/com/glxp/api/service/inout/impl/IoOrderServiceImpl.java index 5660f1ea..89f99858 100644 --- a/src/main/java/com/glxp/api/service/inout/impl/IoOrderServiceImpl.java +++ b/src/main/java/com/glxp/api/service/inout/impl/IoOrderServiceImpl.java @@ -525,8 +525,8 @@ public class IoOrderServiceImpl implements IoOrderService { filterOrderRequest.setDealStatuses(Arrays.asList(2)); break; case Constant.ORDER_STATUS_AUDITED: - filterOrderRequest.setStatuses(Arrays.asList(7)); - filterOrderRequest.setDealStatuses(Arrays.asList(3)); + filterOrderRequest.setStatuses(Arrays.asList(7,10)); + filterOrderRequest.setDealStatuses(Arrays.asList(3,4)); break; case Constant.ORDER_STATUS_SUP_SEARCH: filterOrderRequest.setStatuses(Arrays.asList(5, 7)); diff --git a/src/main/resources/mybatis/mapper/basic/BasicBussinessTypeDao.xml b/src/main/resources/mybatis/mapper/basic/BasicBussinessTypeDao.xml index 10843214..72a3ed23 100644 --- a/src/main/resources/mybatis/mapper/basic/BasicBussinessTypeDao.xml +++ b/src/main/resources/mybatis/mapper/basic/BasicBussinessTypeDao.xml @@ -68,7 +68,9 @@ entrutSpms, codeFillCheck, defaultSubInv, defaultInv, orderVisibleType, checkCopy, secCheckCopy, originAction, advanceType, changeEnable, spUse, preIn, supplementAll, createUser, createTime, preInBack, vailDispatch, - vailGroupBuy, busType, inStock,actionType) + vailGroupBuy, busType, inStock, actionType + , thrCheckEnable, thrCheckWebNew, thrCheckPdaUn, thrCheckPdaEd, thrCheckUdims, thrCheckPc, thrCheckSp + , thrCheckChange, thrCheckBalance, thrCheckCopy) values (#{mainAction}, #{action}, #{name}, @@ -120,7 +122,10 @@ #{preIn}, #{supplementAll}, #{createUser}, - #{createTime}, #{preInBack}, #{vailDispatch}, #{vailGroupBuy},#{busType}, #{inStock},#{actionType}) + #{createTime}, #{preInBack}, #{vailDispatch}, #{vailGroupBuy}, #{busType}, #{inStock}, #{actionType} + , #{thrCheckEnable}, #{thrCheckWebNew}, #{thrCheckPdaUn}, #{thrCheckPdaEd}, #{thrCheckUdims}, + #{thrCheckPc} + , #{thrCheckSp}, #{thrCheckChange}, #{thrCheckBalance}, #{thrCheckCopy})