| | |
| | | </if> |
| | | </select> |
| | | |
| | | <!-- 根据条件查询,要求时间条件必须,必须是正常数据 --> |
| | | <select id="listLossOver" resultType="com.ld.igds.models.InoutLossOver" |
| | | parameterType="com.ld.igds.inout.dto.InoutParam"> |
| | | select |
| | | ID_ as id, |
| | | COMPANY_ID_ as companyId, |
| | | DEPT_ID_ as deptId, |
| | | DEPOT_ID_ as depotId, |
| | | TYPE_ as type, |
| | | SUBMIT_TIME_ as submitTime, |
| | | rkjz as rkjz, |
| | | rksj as rksj, |
| | | rksf as rksf, |
| | | rkzz as rkzz, |
| | | cksj as cksj, |
| | | ckjz as ckjz, |
| | | cksf as cksf, |
| | | ckzz as ckzz, |
| | | AMOUNT_ as amount, |
| | | sysfzc as sysfzc, |
| | | syyy as syyy, |
| | | ccshr as ccshr, |
| | | AUDIT_CCSH_ as auditCcsh, |
| | | INFO_CCSH_ as InfoCcsh, |
| | | zjshr as zjshr, |
| | | AUDIT_ZJSH_ as auditZjsh, |
| | | INFO_ZJSH_ as infoZjsh, |
| | | AUDIT_TJSH_ as auditTjsh, |
| | | INFO_TJSH_ as infoTjsh, |
| | | kjshr as kjshr, |
| | | AUDIT_KJSH_ as auditKjsh, |
| | | INFO_KJSH_ as infoKjsh, |
| | | ldshr as ldshr, |
| | | AUDIT_LDSH_ as auditLdsh, |
| | | INFO_LDSH_ as infoLdsh, |
| | | REMARK_ as remark, |
| | | UPDATE_TIME_ as updateTime, |
| | | UPDATE_USER_ as updateUser |
| | | from |
| | | D_INOUT_LOSS_OVER |
| | | <where> |
| | | <if test="param.companyId != null and param.companyId != '' ">AND COMPANY_ID_ = #{param.companyId}</if> |
| | | <if test="param.deptId != null and param.deptId != ''">AND DEPT_ID_ = #{param.deptId}</if> |
| | | <if test="param.depotId != null and param.depotId != '' ">AND DEPOT_ID_ = #{param.depotId}</if> |
| | | <if test="param.type != null and param.type != '' ">AND TYPE_ = #{param.type}</if> |
| | | <if test="param.end != null">AND |
| | | UPDATE_TIME_ <![CDATA[ < ]]>#{param.end,jdbcType=TIMESTAMP} |
| | | </if> |
| | | <if test="param.start != null">AND |
| | | UPDATE_TIME_ <![CDATA[ > ]]>#{param.start,jdbcType=TIMESTAMP} |
| | | </if> |
| | | ORDER BY UPDATE_TIME_ |
| | | </where> |
| | | </select> |
| | | |
| | | <!-- 获取开始周期-截至周期内,出入库入库重量汇总合计 --> |
| | | <select id="sumLossOverWeight" resultType="com.ld.igds.data.CommonData" |
| | | parameterType="com.ld.igds.inout.dto.InoutParam"> |
| | | select SUM(AMOUNT_) as numValue1 |
| | | from D_INOUT_LOSS_OVER |
| | | <where> |
| | | <if test="param.companyId != null and param.companyId != '' ">AND COMPANY_ID_ = #{param.companyId}</if> |
| | | <if test="param.deptId != null and param.deptId != ''">AND DEPT_ID_ = #{param.deptId}</if> |
| | | <if test="param.depotId != null and param.depotId != '' ">AND DEPOT_ID_ = #{param.depotId}</if> |
| | | <if test="param.type != null and param.type != '' ">AND TYPE_ = #{param.type}</if> |
| | | <if test="param.end != null">AND |
| | | UPDATE_TIME_ <![CDATA[ < ]]>#{param.end,jdbcType=TIMESTAMP} |
| | | </if> |
| | | <if test="param.start != null">AND |
| | | UPDATE_TIME_ <![CDATA[ > ]]>#{param.start,jdbcType=TIMESTAMP} |
| | | </if> |
| | | ORDER BY UPDATE_TIME_ |
| | | </where> |
| | | </select> |
| | | |
| | | </mapper> |