feat(wms): 库存调整记录列表新增按入库单号(inOrderNumber)查询
This commit is contained in:
+3
@@ -164,6 +164,9 @@ public class InventoryAdjustmentRecordDTO extends BaseVOEntity {
|
||||
@ApiModelProperty("关联单号")
|
||||
private String relateNo;
|
||||
|
||||
@ApiModelProperty("入库单号")
|
||||
private String inOrderNumber;
|
||||
|
||||
@ApiModelProperty(name = "组织ID集合")
|
||||
private List<Long> organizationIdList;
|
||||
|
||||
|
||||
+3
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user