feat(wms): 添加创建人筛选条件到奖金配置查询

- 在WmsBonusConfigServiceImpl中添加createBy字段的等值查询条件
- 在WmsBonusPoolServiceImpl中添加createBy字段的等值查询条件
- 在WmsPostCoeffConfigServiceImpl中添加createBy字段的等值查询条件
- 使用StringUtils.isNotBlank验证createBy参数非空后进行查询
- 统一了三个服务类中的查询逻辑实现
This commit is contained in:
2026-05-08 16:32:27 +08:00
parent 27f20057eb
commit 2260058c63
3 changed files with 3 additions and 0 deletions

View File

@@ -64,6 +64,7 @@ public class WmsBonusPoolServiceImpl implements IWmsBonusPoolService {
lqw.eq(StringUtils.isNotBlank(bo.getProductionLine()), WmsBonusPool::getProductionLine, bo.getProductionLine());
lqw.eq(bo.getBonusTime() != null, WmsBonusPool::getBonusTime, bo.getBonusTime());
lqw.eq(bo.getTotalBonus() != null, WmsBonusPool::getTotalBonus, bo.getTotalBonus());
lqw.eq(StringUtils.isNotBlank(bo.getCreateBy()), WmsBonusPool::getCreateBy, bo.getCreateBy());
return lqw;
}