| | |
| | | <!-- mapper不支持sql语句嵌套时,采用sql片段包含方式,解决xml标签问题 --> |
| | | <sql id="viewStayTimeConditionSql"> |
| | | <if test="loc_no!=null and loc_no!='' "> |
| | | and loc_no like '%' + #{loc_no} + '%' |
| | | and asr_loc_mast.loc_no like '%' + #{loc_no} + '%' |
| | | </if> |
| | | <if test="matnr!=null and matnr!='' "> |
| | | and matnr like '%' + #{matnr} + '%' |
| | |
| | | ]]> |
| | | </if> |
| | | </sql> |
| | | <resultMap id="ViewStayTimeMap" type="com.zy.asrs.entity.ViewStayTimeBean"> |
| | | |
| | | <!-- 分页 / 行号 --> |
| | | <result column="row" property="row"/> |
| | | <result column="stay_time" property="stay_time"/> |
| | | |
| | | <!-- 时间条件 --> |
| | | <result column="begin_date" property="begin_date"/> |
| | | <result column="end_date" property="end_date"/> |
| | | |
| | | <!-- 基础信息 --> |
| | | <result column="loc_no" property="loc_no"/> |
| | | <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="manu_date"/> |
| | | <result column="item_num" property="item_num"/> |
| | | <result column="safe_qty" property="safe_qty"/> |
| | | <result column="weight" property="weight"/> |
| | | <result column="man_length" property="man_length"/> |
| | | <result column="volume" property="volume"/> |
| | | <result column="three_code" property="three_code"/> |
| | | <result column="supp" property="supp"/> |
| | | <result column="supp_code" property="supp_code"/> |
| | | |
| | | <!-- 标志位 --> |
| | | <result column="be_batch" property="be_batch"/> |
| | | <result column="dead_time" property="dead_time"/> |
| | | <result column="dead_warn" property="dead_warn"/> |
| | | <result column="source" property="source"/> |
| | | <result column="inspect" property="inspect"/> |
| | | <result column="danger" property="danger"/> |
| | | |
| | | <!-- 审计字段 --> |
| | | <result column="modi_user" property="modi_user"/> |
| | | <result column="modi_time" property="modi_time"/> |
| | | <result column="appe_user" property="appe_user"/> |
| | | <result column="appe_time" property="appe_time"/> |
| | | <result column="memo" property="memo"/> |
| | | |
| | | </resultMap> |
| | | <!-- 分页查询所有信息 --> |
| | | <select id="queryViewStayTimeList" resultType="com.zy.asrs.entity.ViewStayTimeBean"> |
| | | <select id="queryViewStayTimeList" parameterType="com.zy.asrs.entity.ViewStayTimeBean" resultMap="ViewStayTimeMap"> |
| | | select |
| | | * |
| | | from ( |
| | |
| | | SELECT |
| | | GETDATE() AS today |
| | | , CONVERT(decimal, DATEDIFF(second,asr_loc_detl.appe_time, GETDATE()) / 86400.0, 9) AS stay_time |
| | | , dbo.asr_loc_detl.* |
| | | , asr_loc_detl.* |
| | | FROM asr_loc_detl |
| | | INNER JOIN asr_loc_mast ON asr_loc_detl.loc_no = asr_loc_mast.loc_no |
| | | where 1=1 |
| | |
| | | ) a where a.row between ((#{pageNumber}-1)*#{pageSize}+1) and (#{pageNumber}*#{pageSize}) |
| | | </select> |
| | | |
| | | <select id="getViewStayTimeCount" parameterType="com.zy.asrs.entity.ViewStayTimeBean" resultType="Integer"> |
| | | <select id="getViewStayTimeCount" parameterType="com.zy.asrs.entity.ViewStayTimeBean" resultType="Integer"> |
| | | select |
| | | count(1) |
| | | from ( |