From 77f2b381d93176cd13b20e6021414effb61e537b Mon Sep 17 00:00:00 2001 From: xhxu Date: Wed, 26 Apr 2023 12:27:19 +0800 Subject: [PATCH] //spu_sync bug --- .../basic/WxProfitSharingReceiverApplyController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mallinkAdmin/src/main/java/com/iformall/controller/basic/WxProfitSharingReceiverApplyController.java b/mallinkAdmin/src/main/java/com/iformall/controller/basic/WxProfitSharingReceiverApplyController.java index cafa3b16c..939192067 100644 --- a/mallinkAdmin/src/main/java/com/iformall/controller/basic/WxProfitSharingReceiverApplyController.java +++ b/mallinkAdmin/src/main/java/com/iformall/controller/basic/WxProfitSharingReceiverApplyController.java @@ -151,7 +151,7 @@ public class WxProfitSharingReceiverApplyController extends BaseController { if(receiverApply == null){ return new ResultData(ErrorCode.SYS_PARAMETER_ERROR.getCode(), "未找到进件数据"); } - if(!EnumSharingReceiverApplymentState.APPLYMENT_STATE_CANCELED.getCode().equals(receiverApply.getApplymentState())){ + if(EnumSharingReceiverApplymentState.APPLYMENT_STATE_CANCELED.getCode().equals(receiverApply.getApplymentState())){ return new ResultData(ErrorCode.SYS_PARAMETER_ERROR.getCode(), "已作废,才能删除"); } return wxProfitSharingReceiverApplyService.updateDel(delApply);