及时库存查询修改;

This commit is contained in:
王奎兴
2026-02-03 13:42:40 +08:00
parent a655870fbe
commit e495aae1a1
3 changed files with 309 additions and 4 deletions
@@ -347,6 +347,18 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="shelvesQuantity" column="shelves_quantity" />
<result property="pickQuantity" column="pick_quantity" />
<result property="checkQuantity" column="check_quantity" />
<result property="extAttr1" column="ext_attr_1" />
<result property="extAttr2" column="ext_attr_2" />
<result property="extAttr3" column="ext_attr_3" />
<result property="extAttr4" column="ext_attr_4" />
<result property="productionDate" column="production_date" />
<result property="expiryDate" column="expiry_date" />
<result property="inventoryDate" column="inventory_date" />
<result property="batchRefNo" column="batch_ref_no" />
<result property="sheetRefNo" column="sheet_ref_no" />
<result property="boxPalletNo" column="box_pallet_no" />
<result property="materialBaseInfoId" column="material_base_info_id" />
<result property="materialInventoryId" column="material_inventory_id" />
</resultMap>
<select id="queryImmediateInventoryList" parameterType="com.mhd.wms.domain.statementStatistics.todo.ImmediateInventoryDO"
resultMap="queryImmediateInventoryListResult">
@@ -429,7 +441,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
AND c.material_base_info_id = a.material_base_info_id
),
0
) CHECK_QUANTITY
) CHECK_QUANTITY,ext_attr_1, ext_attr_2, ext_attr_3, ext_attr_4,
production_date, expiry_date, inventory_date,
batch_ref_no, sheet_ref_no, box_pallet_no,b.material_base_info_id,
a.material_inventory_id
FROM
material_inventory a
left join material_base_info b on a.material_base_info_id=b.material_base_info_id