| | |
| | | <if test="crnNo!=null and crnNo!='' "> |
| | | and b.crn_no=#{crnNo} |
| | | </if> |
| | | <if test="zpallet!=null and zpallet!='' "> |
| | | and a.zpallet like '%' + #{zpallet} + '%' |
| | | </if> |
| | | </sql> |
| | | |
| | | <select id="getStockOutPage" resultMap="BaseResultMap"> |
| | |
| | | <select id="queryStockTotal" resultType="com.zy.asrs.entity.result.StockVo"> |
| | | select |
| | | matnr, |
| | | maktx, |
| | | specs, |
| | | batch, |
| | | count(anfme) as count |
| | | from asr_loc_detl |
| | | where 1=1 |
| | | group by matnr,batch |
| | | group by matnr,maktx,specs,batch |
| | | </select> |
| | | <select id="sum" resultType="java.lang.Integer"> |
| | | SELECT SUM(anfme) FROM asr_loc_detl |