Compare commits
No commits in common. "59c460f5d44e876e6931f06f125b0e5591a1a699" and "60557060ab5cf74fb79b758555c1350758bd6479" have entirely different histories.
59c460f5d4
...
60557060ab
@ -332,7 +332,7 @@ public class MpsMarketServiceImpl implements IMpsMarketService {
|
||||
*
|
||||
* 公积金缴纳账户,代收交警罚没款,磁条卡更换登记,代收水费,代收电费,允许多次录入,不验重
|
||||
*
|
||||
* 以下业务类型只能有一个:身份证号+年份不能重复
|
||||
* 以下业务类型只能有一个:身份证号+月份不能重复
|
||||
* BIZ010 新开有效银行卡
|
||||
* BIZ011 新开有效社保卡
|
||||
* BIZ012 营销贷款客户社保卡
|
||||
@ -432,10 +432,10 @@ public class MpsMarketServiceImpl implements IMpsMarketService {
|
||||
throw new ServiceException("当月水费户号已存在!");
|
||||
}
|
||||
}else if (set1.contains(entity.getSubcategoryId())) {
|
||||
//在set1中的业务类型,账号+年份不能重复
|
||||
//在set1中的业务类型身份证号+月份不能重复
|
||||
//没有对公业务,不判断custtype
|
||||
// 排除新开有效银行卡可重复的影响
|
||||
mpsMarket.setCustAcctNo(entity.getCustAcctNo());
|
||||
mpsMarket.setCustId(entity.getCustId());
|
||||
LambdaQueryWrapper<MpsMarket> lqw = new LambdaQueryWrapper<>(mpsMarket);
|
||||
lqw.like(MpsMarket::getEntryDate, entity.getEntryDate().substring(0,4));
|
||||
lqw.in(MpsMarket::getSubcategoryId, set1);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user