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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
<?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="resourceStoreTimesV1ServiceDaoImpl">
 
    <!-- 保存物品次数信息 add by wuxw 2018-07-03 -->
    <insert id="saveResourceStoreTimesInfo" parameterType="Map">
        insert into resource_store_times(price, apply_order_id, store_id, stock, res_code, times_id, sh_id,
                                         community_id)
        values (#{price}, #{applyOrderId}, #{storeId}, #{stock}, #{resCode}, #{timesId}, #{shId}, #{communityId})
    </insert>
 
    <!-- 查询物品次数信息 add by wuxw 2018-07-03 -->
    <select id="getResourceStoreTimesInfo" parameterType="Map" resultType="Map">
        select t.price,t.apply_order_id,t.apply_order_id applyOrderId,t.status_cd,t.status_cd
        statusCd,t.store_id,t.store_id storeId,t.stock,t.res_code,t.res_code resCode,t.times_id,
        t.times_id timesId,t.create_time createTime,ROUND(t.price * t.stock,2) totalPrice,
        rs.res_name,rs.res_name resName,rs.description,rs.store_id,rs.store_id storeId,
        rs.stock,rs.warning_stock,rs.warning_stock warningStock,rs.res_id,rs.res_id
        resId,rs.out_low_price,rs.rss_id,rs.rss_id rssId,
        rs.out_low_price outLowPrice,rs.out_high_price,rs.out_high_price outHighPrice,
        rs.unit_code,rs.unit_code unitCode,rs.remark,rs.show_mobile,rs.show_mobile showMobile,
        rs.sh_id,rs.sh_id shId,sh.sh_name shName,rs.average_price,rs.average_price
        averagePrice,rss.spec_name rssName,rs.mini_unit_code,rs.mini_unit_code miniUnitCode,rs.mini_stock,rs.mini_stock
        miniStock,rs.mini_unit_stock,rs.mini_unit_stock miniUnitStock,td.name unitCodeName,td1.name
        miniUnitCodeName,rs.parent_rst_id parentRstId,rs.rst_id rstId,rst1.name parentRstName,rst.name
        rstName,
        rs.is_fixed,rs.is_fixed isFixed,td2.name isFixedName,t.community_id communityId
        from resource_store_times t
        inner join resource_store rs on t.res_code = rs.res_code and rs.status_cd = '0' and t.sh_id = rs.sh_id
        left join resource_store_type rst on rs.rst_id = rst.rst_id and rst.status_cd = '0'
        left join resource_store_type rst1 on rs.parent_rst_id = rst1.rst_id and rst1.status_cd = '0'
        left join resource_store_specification rss on rs.rss_id = rss.rss_id and rss.status_cd = '0'
        left join storehouse sh on rs.sh_id = sh.sh_id and rs.store_id = sh.store_id and sh.status_cd = '0'
        left join t_dict td on rs.unit_code = td.status_cd and td.table_name = 'resource_store' and td.table_columns =
        'unit_code'
        left join t_dict td1 on rs.mini_unit_code = td1.status_cd and td1.table_name = 'resource_store' and
        td1.table_columns = 'unit_code'
        left join t_dict td2 on rs.is_fixed = td2.status_cd and td2.table_name='resource_store' and td2.table_columns =
        'is_fixed'
        where 1 =1
        <if test="resName !=null and resName != ''">
            and rs.res_name like concat('%',#{resName},'%')
        </if>
        <if test="name != null and name != ''">
            and rs.res_name = #{name}
        </if>
        <if test="rstId !=null and rstId != ''">
            and rs.rst_id= #{rstId}
        </if>
        <if test="parentRstId !=null and parentRstId != ''">
            and rs.parent_rst_id= #{parentRstId}
        </if>
        <if test="resCode !=null and resCode != ''">
            and t.res_code =#{resCode}
        </if>
        <if test="resCodeLike !=null and resCodeLike != ''">
            and t.res_code like concat('%',#{resCodeLike},'%')
        </if>
        <if test="price !=null and price != ''">
            and t.price= #{price}
        </if>
        <if test="applyOrderId !=null and applyOrderId != ''">
            and t.apply_order_id= #{applyOrderId}
        </if>
        <if test="statusCd !=null and statusCd != ''">
            and t.status_cd= #{statusCd}
        </if>
        <if test="storeId !=null and storeId != ''">
            and t.store_id= #{storeId}
        </if>
        <if test="communityId !=null and communityId != ''">
            and t.community_id= #{communityId}
        </if>
        <if test="stock !=null and stock != ''">
            and t.stock= #{stock}
        </if>
        <if test="hasStock !=null and hasStock != ''">
            and t.stock > 0
        </if>
        <if test="resCodes != null ">
            and t.res_code in
            <foreach collection="resCodes" item="item" open="(" close=")" separator=",">
                #{item}
            </foreach>
        </if>
        <if test="timesId !=null and timesId != ''">
            and t.times_id= #{timesId}
        </if>
        <if test="shId !=null and shId != ''">
            and t.sh_id= #{shId}
        </if>
        order by t.create_time desc
        <if test="page != -1 and page != null ">
            limit #{page}, #{row}
        </if>
    </select>
 
    <!-- 修改物品次数信息 add by wuxw 2018-07-03 -->
    <update id="updateResourceStoreTimesInfo" parameterType="Map">
        update resource_store_times t set t.status_cd = #{statusCd}
        <if test="newBId != null and newBId != ''">
            ,t.b_id = #{newBId}
        </if>
        <if test="price !=null and price != ''">
            , t.price= #{price}
        </if>
        <if test="applyOrderId !=null and applyOrderId != ''">
            , t.apply_order_id= #{applyOrderId}
        </if>
        <if test="stock !=null and stock != ''">
            , t.stock= #{stock}
        </if>
        <if test="resCode !=null and resCode != ''">
            , t.res_code= #{resCode}
        </if>
        where 1=1
        <if test="timesId !=null and timesId != ''">
            and t.times_id= #{timesId}
        </if>
        <if test="storeId !=null and storeId != ''">
            and t.store_id= #{storeId}
        </if>
        <if test="communityId !=null and communityId != ''">
            and t.community_id= #{communityId}
        </if>
    </update>
 
    <!-- 查询物品次数数量 add by wuxw 2018-07-03 -->
    <select id="queryResourceStoreTimessCount" parameterType="Map" resultType="Map">
        select count(1) count
        from resource_store_times t
        inner join resource_store rs on t.res_code = rs.res_code and rs.status_cd = '0'
        left join resource_store_type rst on rs.rst_id = rst.rst_id and rst.status_cd = '0'
        left join resource_store_type rst1 on rs.parent_rst_id = rst1.rst_id and rst1.status_cd = '0'
        left join resource_store_specification rss on rs.rss_id = rss.rss_id and rss.status_cd = '0'
        left join storehouse sh on rs.sh_id = sh.sh_id and rs.store_id = sh.store_id and sh.status_cd = '0'
        left join t_dict td on rs.unit_code = td.status_cd and td.table_name = 'resource_store' and td.table_columns =
        'unit_code'
        left join t_dict td1 on rs.mini_unit_code = td1.status_cd and td1.table_name = 'resource_store' and
        td1.table_columns = 'unit_code'
        left join t_dict td2 on rs.is_fixed = td2.status_cd and td2.table_name='resource_store' and td2.table_columns =
        'is_fixed'
        where 1 =1
        <if test="resName !=null and resName != ''">
            and rs.res_name like concat('%',#{resName},'%')
        </if>
        <if test="name != null and name != ''">
            and rs.res_name = #{name}
        </if>
        <if test="rstId !=null and rstId != ''">
            and rs.rst_id= #{rstId}
        </if>
        <if test="parentRstId !=null and parentRstId != ''">
            and rs.parent_rst_id= #{parentRstId}
        </if>
        <if test="resCode !=null and resCode != ''">
            and t.res_code =#{resCode}
        </if>
        <if test="resCodeLike !=null and resCodeLike != ''">
            and t.res_code like concat('%',#{resCodeLike},'%')
        </if>
        <if test="price !=null and price != ''">
            and t.price= #{price}
        </if>
        <if test="applyOrderId !=null and applyOrderId != ''">
            and t.apply_order_id= #{applyOrderId}
        </if>
        <if test="statusCd !=null and statusCd != ''">
            and t.status_cd= #{statusCd}
        </if>
        <if test="storeId !=null and storeId != ''">
            and t.store_id= #{storeId}
        </if>
        <if test="communityId !=null and communityId != ''">
            and t.community_id= #{communityId}
        </if>
        <if test="stock !=null and stock != ''">
            and t.stock= #{stock}
        </if>
        <if test="hasStock !=null and hasStock != ''">
            and t.stock > 0
        </if>
        <if test="resCodes != null ">
            and t.res_code in
            <foreach collection="resCodes" item="item" open="(" close=")" separator=",">
                #{item}
            </foreach>
        </if>
        <if test="timesId !=null and timesId != ''">
            and t.times_id= #{timesId}
        </if>
        <if test="shId !=null and shId != ''">
            and t.sh_id= #{shId}
        </if>
    </select>
 
    <!-- 查询物品次数数量 add by wuxw 2018-07-03 -->
    <select id="queryResourceStoreTimessCountStock" parameterType="Map" resultType="Map">
        select sum(stock) stock
        from resource_store_times t
        where 1 =1
        <if test="price !=null and price != ''">
            and t.price= #{price}
        </if>
        <if test="applyOrderId !=null and applyOrderId != ''">
            and t.apply_order_id= #{applyOrderId}
        </if>
        <if test="statusCd !=null and statusCd != ''">
            and t.status_cd= #{statusCd}
        </if>
        <if test="storeId !=null and storeId != ''">
            and t.store_id= #{storeId}
        </if>
        <if test="communityId !=null and communityId != ''">
            and t.community_id= #{communityId}
        </if>
        <if test="stock !=null and stock != ''">
            and t.stock= #{stock}
        </if>
        <if test="hasStock !=null and hasStock != ''">
            and t.stock > 0
        </if>
        <if test="resCode !=null and resCode != ''">
            and t.res_code= #{resCode}
        </if>
        <if test="resCodes != null ">
            and t.res_code in
            <foreach collection="resCodes" item="item" open="(" close=")" separator=",">
                #{item}
            </foreach>
        </if>
        <if test="timesId !=null and timesId != ''">
            and t.times_id= #{timesId}
        </if>
        <if test="shId !=null and shId != ''">
            and t.sh_id= #{shId}
        </if>
    </select>
</mapper>