提交 78ebfb99 authored 作者: 李秋林's avatar 李秋林

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

上级 d67dd775
......@@ -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 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论