1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| <?xml version="1.0" encoding="UTF-8"?>
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
| <mapper namespace="com.vincent.rsf.server.manager.mapper.WarehouseStockMapper">
| <select id="pageByStock" resultType="com.vincent.rsf.server.manager.entity.ViewStockManage">
| SELECT
| matnr_id,
| MAX(id) as id,
| MAX(loc_code) as loc_code,
| MAX(warehouse) as warehouse,
| MAX(type) as type,
| MAX(maktx) as maktx,
| MAX(matnr_code) as matnr_code,
| MAX(unit) as unit,
| MAX(spec) as spec,
| MAX(model) as model,
| MAX(batch) as batch,
| MAX(fields_index) as fields_index,
| MAX(update_by) as update_by,
| MAX(create_by) as create_by,
| MAX(update_time) as update_time,
| MAX(create_time) as create_time,
| SUM(anfme) as anfme,
| SUM(qty) as qty,
| SUM(work_qty) as work_qty
| FROM view_stock_manage
| ${ew.customSqlSegment}
| </select>
| </mapper>
|
|