即时库存
This commit is contained in:
+7
@@ -127,4 +127,11 @@ public class ImmediateInventoryPO {
|
|||||||
@ApiModelProperty("批次号")
|
@ApiModelProperty("批次号")
|
||||||
private String batchNumber;
|
private String batchNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("入库单号")
|
||||||
|
@Excel(name = "入库单号")
|
||||||
|
private String inOrderNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("LOT编号")
|
||||||
|
@Excel(name = "LOT编号")
|
||||||
|
private String lotNumber;
|
||||||
}
|
}
|
||||||
@@ -533,6 +533,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
<result property="organizationId" column="organization_id" />
|
<result property="organizationId" column="organization_id" />
|
||||||
<result property="organizationName" column="organization_name" />
|
<result property="organizationName" column="organization_name" />
|
||||||
<result property="topOrganizationId" column="top_organization_id" />
|
<result property="topOrganizationId" column="top_organization_id" />
|
||||||
|
<result property="inOrderNumber" column="in_order_number" />
|
||||||
|
<result property="lotNumber" column="lot_number" />
|
||||||
</resultMap>
|
</resultMap>
|
||||||
<select id="queryImmediateInventoryList" parameterType="com.mhd.wms.domain.statementStatistics.todo.ImmediateInventoryDO"
|
<select id="queryImmediateInventoryList" parameterType="com.mhd.wms.domain.statementStatistics.todo.ImmediateInventoryDO"
|
||||||
resultMap="queryImmediateInventoryListResult">
|
resultMap="queryImmediateInventoryListResult">
|
||||||
@@ -645,7 +647,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
a.organization_id,
|
a.organization_id,
|
||||||
a.organization_name,
|
a.organization_name,
|
||||||
a.top_organization_id,
|
a.top_organization_id,
|
||||||
a.batch_number
|
a.batch_number,
|
||||||
|
a.in_order_number,a.lot_number
|
||||||
FROM
|
FROM
|
||||||
material_inventory a
|
material_inventory a
|
||||||
left join material_base_info b on a.material_base_info_id=b.material_base_info_id
|
left join material_base_info b on a.material_base_info_id=b.material_base_info_id
|
||||||
|
|||||||
Reference in New Issue
Block a user