根据SFC找不到StepId

master
赵嘉伟 3 years ago
parent 84193aa065
commit fabb62f5bb

@ -219,7 +219,9 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
//获取当前时间
LocalDateTime now = LocalDateTime.now();
String site = CommonMethods.getSite();
if(StringUtils.isBlank(abnormalBill.getStepId()) && !StringUtil.isBlank(abnormalBill.getSfc())){
if(StringUtils.isBlank(abnormalBill.getSfc())){
abnormalBill.setStepId(null);
}else if(StringUtils.isBlank(abnormalBill.getStepId())){
throw new BaseException("根据SFC找不到StepId");
}
if(!StringUtils.isBlank(abnormalBill.getObjectBo())){

Loading…
Cancel
Save