feat(wms): 库存调整记录列表新增按入库单号(inOrderNumber)查询

This commit is contained in:
rcx
2026-09-09 14:16:32 +08:00
parent 7649585715
commit fcc8102d9e
2 changed files with 6 additions and 0 deletions
@@ -164,6 +164,9 @@ public class InventoryAdjustmentRecordDTO extends BaseVOEntity {
@ApiModelProperty("关联单号")
private String relateNo;
@ApiModelProperty("入库单号")
private String inOrderNumber;
@ApiModelProperty(name = "组织ID集合")
private List<Long> organizationIdList;
@@ -111,6 +111,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="relateNo != null and relateNo != ''">
and a.relate_no = #{relateNo}
</if>
<if test="inOrderNumber != null and inOrderNumber != ''">
and b.in_order_number = #{inOrderNumber}
</if>
<if test="materialName != null and materialName != ''">
and a.material_name like concat('%', #{materialName}, '%')
</if>