Commit 84edadb5 authored by zhengyi's avatar zhengyi

跟进结果字段不再校验必填

parent 10db2d58
...@@ -177,9 +177,9 @@ public class CustomerFollowupServiceImpl extends AbstractService<CustomerFollowu ...@@ -177,9 +177,9 @@ public class CustomerFollowupServiceImpl extends AbstractService<CustomerFollowu
if (Objects.isNull(followup.getSaleStage())){ if (Objects.isNull(followup.getSaleStage())){
throw exception(SALE_STAGE_NOT_NULL); throw exception(SALE_STAGE_NOT_NULL);
} }
if (Objects.isNull(followup.getResultType())){ // if (Objects.isNull(followup.getResultType())){
throw exception(FOLLOWUP_RESULT_NOT_NULL); // throw exception(FOLLOWUP_RESULT_NOT_NULL);
} // }
if (StringUtils.isBlank(followup.getPurpose())){ if (StringUtils.isBlank(followup.getPurpose())){
throw exception(FOLLOWUP_PURPOSE_NOT_NULL); throw exception(FOLLOWUP_PURPOSE_NOT_NULL);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment