提交 2e267ce5 authored 作者: 000516's avatar 000516 提交者: Coding

促销系统后台中手动添加一个店铺,完善勤策校验逻辑

Merge Request: 促销系统后台中手动添加一个店铺,完善勤策校验逻辑 Created By: @李秋林 Accepted By: @李秋林 URL: https://g-pkkp8204.coding.net/p/promotion/d/promotion-service/git/merge/150?initial=true
......@@ -50,6 +50,9 @@ public class ActivityPlanInfoCoreServiceImpl implements ActivityPlanInfoCoreServ
if (Objects.isNull(qcStore) || !qcStore.getStoreName().equals(activityPlanInfoVo.getStoreName())) {
throw new ParamException(RCode.QINCE_STORE_CODE_ERROR);
}
if (Objects.isNull(activityPlanInfoVo.getDealerId()) || !activityPlanInfoVo.getDealerId().equals(qcStore.getDealerId())){
throw new ParamException(RCode.QINCE_STORE_DEALER_ID_ERROR);
}
EmployeeActivityPlanInfoDto dto = new EmployeeActivityPlanInfoDto();
BeanUtils.copyProperties(activityPlanInfoVo, dto);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论