feat(wms): 添加创建者和更新者查询条件

- 在WmsMaterialCoilServiceImpl中新增createBy查询条件
- 在WmsMaterialCoilServiceImpl中新增updateBy查询条件
- 实现按创建者和更新者过滤物料卷数据功能
This commit is contained in:
2026-01-10 14:40:02 +08:00
parent 50d248969b
commit 02edf2aaa8

View File

@@ -341,6 +341,8 @@ public class WmsMaterialCoilServiceImpl implements IWmsMaterialCoilService {
qw.eq(bo.getStatus() != null, "mc.status", bo.getStatus());
qw.eq(bo.getActualWarehouseId() != null, "mc.actual_warehouse_id", bo.getActualWarehouseId());
qw.eq(StringUtils.isNotBlank(bo.getItemType()), "mc.item_type", bo.getItemType());
qw.eq(StringUtils.isNotBlank(bo.getCreateBy()), "mc.create_by", bo.getCreateBy());
qw.eq(StringUtils.isNotBlank(bo.getUpdateBy()), "mc.update_by", bo.getUpdateBy());
// 新增长度
qw.eq(bo.getLength() != null, "mc.length", bo.getLength());
// 新增查询逻辑也就是当saleId未空时候