feat(wms): 添加质检状态字段并优化库存查询

- 在 WmsInstockPrint、WmsInstockPrintBo 和 WmsInstockPrintVo 中添加质检状态字段 inspectionType
- 在 WmsInventoryMapper.xml 中添加 storeId 的查询条件,优化库存查询功能
master
zangch@mesnac.com 4 months ago
parent 2189c0f53b
commit 5edc0b7966

@ -142,6 +142,11 @@ public class WmsInstockPrint{
*/
private String inspectionRequest;
/**
* (0123
*/
private String inspectionType;
/**
*
*/
@ -150,4 +155,5 @@ public class WmsInstockPrint{
}

@ -126,6 +126,10 @@ public class WmsInstockPrintBo extends BaseEntity {
* (0,1)
*/
private String inspectionRequest;
/**
* (0123
*/
private String inspectionType;
}

@ -161,4 +161,9 @@ public class WmsInstockPrintVo implements Serializable {
// PDA 操作标题
private String title;
/**
* (0123
*/
private String inspectionType;
}

@ -50,6 +50,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="entity.locationCode != null and entity.locationCode != ''">and x.location_code like concat('%',#{entity.locationCode},'%')</if>
<if test="entity.batchCode != null and entity.batchCode != ''">and x.batch_code like concat('%',#{entity.batchCode},'%')</if>
<if test="entity.materialCode != null and entity.materialCode != ''">and x.material_code like concat('%',#{entity.materialCode},'%')</if>
<if test="entity.storeId != null and entity.storeId != ''">and x.store_id = #{entity.storeId}</if>
</where>
group by
x.warehouse_id ,

Loading…
Cancel
Save