| | |
| | | |
| | | <!-- 通用查询映射结果 --> |
| | | <resultMap id="BaseResultMap" type="com.zy.asrs.entity.LocDetl"> |
| | | <result column="loc_no" property="locNo" /> |
| | | <result column="mat_no" property="matNo" /> |
| | | <result column="mat_name" property="matName" /> |
| | | <result column="specs" property="specs" /> |
| | | <result column="size" property="size" /> |
| | | <result column="color" property="color" /> |
| | | <result column="weight" property="weight" /> |
| | | <result column="supplier" property="supplier" /> |
| | | <result column="warehouse" property="warehouse" /> |
| | | <result column="brand" property="brand" /> |
| | | <result column="qty" property="qty" /> |
| | | <result column="unit" property="unit" /> |
| | | <result column="zpallet" property="zpallet" /> |
| | | <result column="bname" property="bname" /> |
| | | <result column="memo" property="memo" /> |
| | | <result column="modi_user" property="modiUser" /> |
| | | <result column="modi_time" property="modiTime" /> |
| | | <result column="appe_user" property="appeUser" /> |
| | | <result column="appe_time" property="appeTime" /> |
| | | <result column="LOC_NO" property="locNo" /> |
| | | <result column="ZPALLET" property="zpallet" /> |
| | | <result column="ANFME" property="anfme" /> |
| | | <result column="MATNR" property="matnr" /> |
| | | <result column="MAKTX" property="maktx" /> |
| | | <result column="BATCH" property="batch" /> |
| | | <result column="ORDER_NO" property="orderNo" /> |
| | | |
| | | <result column="SPECS" property="specs" /> |
| | | <result column="MODEL" property="model" /> |
| | | <result column="COLOR" property="color" /> |
| | | <result column="BRAND" property="brand" /> |
| | | <result column="UNIT" property="unit" /> |
| | | <result column="PRICE" property="price" /> |
| | | <result column="SKU" property="sku" /> |
| | | <result column="UNITS" property="units" /> |
| | | <result column="BARCODE" property="barcode" /> |
| | | <result column="ORIGIN" property="origin" /> |
| | | <result column="MANU" property="manu" /> |
| | | <result column="MANU_DATE" property="manuDate" /> |
| | | <result column="ITEM_NUM" property="itemNum" /> |
| | | <result column="SAFE_QTY" property="safeQty" /> |
| | | <result column="WEIGHT" property="weight" /> |
| | | <result column="MAN_LENGTH" property="manLength" /> |
| | | <result column="VOLUME" property="volume" /> |
| | | <result column="THREE_CODE" property="threeCode" /> |
| | | <result column="SUPP" property="supp" /> |
| | | <result column="SUPP_CODE" property="suppCode" /> |
| | | <result column="BE_BATCH" property="beBatch" /> |
| | | <result column="DEAD_TIME" property="deadTime" /> |
| | | <result column="DEAD_WARN" property="deadWarn" /> |
| | | <result column="SOURCE" property="source" /> |
| | | <result column="INSPECT" property="inspect" /> |
| | | <result column="DANGER" property="danger" /> |
| | | |
| | | <result column="MODI_USER" property="modiUser" /> |
| | | <result column="MODI_TIME" property="modiTime" /> |
| | | <result column="APPE_USER" property="appeUser" /> |
| | | <result column="APPE_TIME" property="appeTime" /> |
| | | <result column="MEMO" property="memo" /> |
| | | </resultMap> |
| | | |
| | | <sql id="stockOutCondition"> |
| | | <if test="loc_no!=null and loc_no!='' "> |
| | | and a.loc_no like '%' + #{loc_no} + '%' |
| | | and a."LOC_NO" like '%' + #{loc_no} + '%' |
| | | </if> |
| | | <if test="matNo!=null and matNo!='' "> |
| | | and a.mat_no like '%' + #{matNo} + '%' |
| | | and a."MATNR" like '%' + #{matNo} + '%' |
| | | </if> |
| | | <if test="matName!=null and matName!='' "> |
| | | and a.mat_name like '%' + #{matName} + '%' |
| | | and a."MAKTX" like '%' + #{matName} + '%' |
| | | </if> |
| | | <if test="anfme!=null and anfme!='' "> |
| | | and a.anfme like '%' + #{anfme} + '%' |
| | | and a."ANFME" like '%' + #{anfme} + '%' |
| | | </if> |
| | | <if test="altme!=null and altme!='' "> |
| | | and a.altme like '%' + #{altme} + '%' |
| | | and a."ALTME" like '%' + #{altme} + '%' |
| | | </if> |
| | | <if test="startTime!=null and endTime!=null"> |
| | | and a.modi_time between #{startTime} and #{endTime} |
| | | and a."MODI_TIME" between #{startTime} and #{endTime} |
| | | </if> |
| | | </sql> |
| | | |
| | |
| | | select * from |
| | | ( |
| | | select |
| | | ROW_NUMBER() over (order by a.appe_time,a.matnr,a.loc_no) as row, |
| | | ROW_NUMBER() over (order by a."appe_time",a."MATNR",a."LOC_NO") as ROW, |
| | | a.* |
| | | from asr_loc_detl a |
| | | left join asr_loc_mast b on a.loc_no = b.loc_no |
| | | from "SOURCE"."asr_loc_detl" a |
| | | left join "SOURCE"."asr_loc_mast" b on a."LOC_NO" = b."LOC_NO" |
| | | where 1=1 |
| | | and b.loc_sts = 'F' |
| | | and b."LOC_STS" = 'F' |
| | | <include refid="stockOutCondition"></include> |
| | | ) t where t.row between ((#{pageNumber}-1)*#{pageSize}+1) and (#{pageNumber}*#{pageSize}) |
| | | ) t where t.ROW between ((#{pageNumber}-1)*#{pageSize}+1) and (#{pageNumber}*#{pageSize}) |
| | | </select> |
| | | |
| | | <select id="getStockOutPageCount" parameterType="java.util.Map" resultType="java.lang.Integer"> |
| | | select |
| | | count(1) |
| | | from asr_loc_detl a |
| | | left join asr_loc_mast b on a.loc_no = b.loc_no |
| | | from "SOURCE"."asr_loc_detl" a |
| | | left join "SOURCE"."asr_loc_mast" b on a."LOC_NO" = b."LOC_NO" |
| | | where 1=1 |
| | | and b.loc_sts = 'F' |
| | | and b."LOC_STS" = 'F' |
| | | <include refid="stockOutCondition"></include> |
| | | </select> |
| | | </mapper> |