PurchaseOrderInfoMapper.xml
8.91 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<?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.lframework.xingyun.sc.mappers.PurchaseOrderInfoMapper">
<resultMap id="PurchaseOrderInfo" type="com.lframework.xingyun.sc.entity.PurchaseOrderInfo">
<id column="id" property="id"/>
<result column="contract_id" property="contractId"/>
<result column="order_no" property="orderNo"/>
<result column="supply_unit" property="supplyUnit"/>
<result column="ordering_unit" property="orderingUnit"/>
<result column="ordering_unit_name" property="orderingUnitName"/>
<result column="order_date" property="orderDate"/>
<result column="settlement_terms" property="settlementTerms"/>
<result column="delivery_method" property="deliveryMethod"/>
<result column="price_list_no" property="priceListNo"/>
<result column="execution_standard" property="executionStandard"/>
<result column="execution_standard_remarks" property="executionStandardRemarks"/>
<result column="invoicing_status" property="invoicingStatus"/>
<result column="shipping_cost" property="shippingCost"/>
<result column="piece_weight_header" property="pieceWeightHeader"/>
<result column="surface" property="surface"/>
<result column="tolerance" property="tolerance"/>
<result column="performance" property="performance"/>
<result column="element" property="element"/>
<result column="packaging" property="packaging"/>
<result column="remarks" property="remarks"/>
<result column="status" property="status"/>
<result column="examine_status" property="examineStatus"/>
<result column="revoke_status" property="revokeStatus"/>
<result column="production_process" property="productionProcess"/>
<result column="dept_id" property="deptId"/>
<result column="dept_name" property="deptName"/>
<result column="workshop_id" property="workshopId"/>
<result column="workshop_name" property="workshopName"/>
<result column="customer_credit_id" property="customerCreditId"/>
<result column="customer_tier" property="customerTier"/>
<result column="type" property="type"/>
<result column="total_quantity" property="totalQuantity"/>
<result column="packaging_fee" property="packagingFee"/>
<result column="contract_create_by_id" property="contractCreateById"/>
<result column="contract_create_by_name" property="contractCreateByName"/>
<result column="create_by_id" property="createById"/>
<result column="create_by" property="createBy"/>
<result column="update_by_id" property="updateById"/>
<result column="update_by" property="updateBy"/>
<result column="create_time" property="createTime"/>
<result column="update_time" property="updateTime"/>
</resultMap>
<sql id="PurchaseOrderInfo_sql">
SELECT
tb.id,
tb.contract_id,
tb.order_no,
tb.supply_unit,
tb.ordering_unit,
cu.name AS ordering_unit_name,
tb.order_date,
tb.settlement_terms,
tb.delivery_method,
tb.price_list_no,
tb.execution_standard,
tb.execution_standard_remarks,
tb.invoicing_status,
tb.shipping_cost,
tb.piece_weight_header,
tb.surface,
tb.tolerance,
tb.performance,
tb.element,
tb.packaging,
tb.remarks,
tb.status,
tb.examine_status,
tb.revoke_status,
tb.production_process,
tb.dept_id,
sd.name AS dept_name,
tb.workshop_id,
ws.name AS workshop_name,
tb.customer_credit_id,
cc.company_suggested_category AS customer_tier,
tb.type,
tb.total_quantity,
tb.packaging_fee,
tb.contract_create_by_id,
su.name as contract_create_by_name,
tb.create_by_id,
tb.create_by,
tb.update_by_id,
tb.update_by,
tb.create_time,
tb.update_time
FROM purchase_order_info AS tb
left join base_data_customer as cu on cu.id = tb.ordering_unit
left join sys_dept as sd on sd.id = tb.dept_id
left join base_data_workshop as ws on ws.id = tb.workshop_id
left join customer_credit as cc on cc.id = tb.customer_credit_id
left join sys_user as su on su.id = tb.contract_create_by_id
</sql>
<select id="query" resultMap="PurchaseOrderInfo">
<include refid="PurchaseOrderInfo_sql"/>
<where>
<if test="vo.orderNo != null and vo.orderNo != ''">
AND tb.order_no = #{vo.orderNo}
</if>
<if test="vo.orderingUnitName != null and vo.orderingUnitName != ''">
AND cu.name LIKE CONCAT('%', #{vo.orderingUnitName},'%')
</if>
<if test="vo.orderDateStart != null">
AND tb.order_date >= #{vo.orderDateStart}
</if>
<if test="vo.orderDateEnd != null">
<![CDATA[
AND tb.order_date <= #{vo.orderDateEnd}
]]>
</if>
<if test="vo.status != null and vo.status != ''">
AND tb.status = #{vo.status}
</if>
<if test="vo.examineStatus != null and vo.examineStatus != ''">
AND tb.examine_status = #{vo.examineStatus}
</if>
<if test="vo.revokeStatus != null and vo.revokeStatus != ''">
AND tb.revoke_status = #{vo.revokeStatus}
</if>
<if test="vo.deptId != null and vo.deptId != ''">
AND tb.dept_id = #{vo.deptId}
</if>
<if test="vo.deptName != null and vo.deptName != ''">
AND sd.name LIKE CONCAT('%', #{vo.deptName},'%')
</if>
<if test="vo.workshopId != null and vo.workshopId != ''">
AND tb.workshop_id = #{vo.workshopId}
</if>
<if test="vo.type != null and vo.type != ''">
AND tb.type = #{vo.type}
</if>
</where>
ORDER BY tb.update_time DESC
</select>
<select id="queryCanRevokeOrChangeList" resultMap="PurchaseOrderInfo">
<include refid="PurchaseOrderInfo_sql"/>
<where>
AND tb.type = 'PRODUCTION'
<if test="vo.orderNo != null and vo.orderNo != ''">
AND tb.order_no = #{vo.orderNo}
</if>
<if test="vo.orderingUnitName != null and vo.orderingUnitName != ''">
AND cu.name LIKE CONCAT('%', #{vo.orderingUnitName},'%')
</if>
<if test="vo.orderDateStart != null">
AND tb.order_date >= #{vo.orderDateStart}
</if>
<if test="vo.orderDateEnd != null">
<![CDATA[
AND tb.order_date <= #{vo.orderDateEnd}
]]>
</if>
<if test="vo.status != null and vo.status != ''">
AND tb.status = #{vo.status}
</if>
<if test="vo.examineStatus != null and vo.examineStatus != ''">
AND tb.examine_status = #{vo.examineStatus}
</if>
<if test="vo.revokeStatus != null and vo.revokeStatus != ''">
AND tb.revoke_status = #{vo.revokeStatus}
</if>
<if test="vo.deptId != null and vo.deptId != ''">
AND tb.dept_id = #{vo.deptId}
</if>
<if test="vo.workshopId != null and vo.workshopId != ''">
AND tb.workshop_id = #{vo.workshopId}
</if>
<choose>
<when test="vo.queryType == 'REVOKE'">
AND (tb.revoke_status = '' OR tb.revoke_status = null OR tb.revoke_status='CANCEL' OR
tb.revoke_status='PARTIAL')
AND (tb.status='ISSUED' OR tb.status='WAIT' OR tb.status='TRANSIT')
AND tb.examine_status = 'PASS'
AND tb.spec_change_status != 'IN_PROGRESS'
</when>
<when test="vo.queryType == 'CHANGE'">
AND tb.examine_status = 'PASS'
AND tb.status != 'SHIPPED'
AND (tb.revoke_status != 'UNDOING' OR tb.revoke_status IS NULL)
</when>
<otherwise>
AND 1 = 0 <!-- 确保查询不到任何数据 -->
</otherwise>
</choose>
</where>
ORDER BY tb.update_time DESC
</select>
<select id="findById" resultType="com.lframework.xingyun.sc.entity.PurchaseOrderInfo">
<include refid="PurchaseOrderInfo_sql"/>
<where>
<if test="id != null and id != ''">
AND tb.id = #{id}
</if>
</where>
</select>
</mapper>