update 运营商仅可查看本运营商下所有站点订单信息

This commit is contained in:
Lemon
2023-07-04 14:49:50 +08:00
parent ba9c16d34c
commit 31e366b49f
11 changed files with 69 additions and 10 deletions

View File

@@ -10,6 +10,7 @@
<result property="orderStatus" column="order_status"/>
<result property="memberId" column="member_id"/>
<result property="stationId" column="station_id"/>
<result property="merchantId" column="merchant_id"/>
<result property="pileSn" column="pile_sn"/>
<result property="connectorCode" column="connector_code"/>
<result property="pileConnectorCode" column="pile_connector_code"/>
@@ -91,6 +92,7 @@
order_status,
member_id,
station_id,
merchant_id,
pile_sn,
connector_code,
pile_connector_code,
@@ -223,13 +225,16 @@
<if test="endTime != null and endTime != ''">
and t1.create_time <![CDATA[ <= ]]> #{endTime,jdbcType=VARCHAR}
</if>
<if test="merchantId != null and merchantId != ''">
and t1.merchant_id = #{merchantId,jdbcType=VARCHAR}
</if>
<!-- 数据范围过滤 -->
<!--<if test="merchantDeptIds != null and merchantDeptIds.size() != 0">
and t3.dept_id in
<foreach collection="merchantDeptIds" item="merchantDeptId" open="(" separator="," close=")">
#{merchantDeptId}
</foreach>
</if>-->
<!-- <if test="merchantDeptIds != null and merchantDeptIds.size() != 0">-->
<!-- and t3.dept_id in-->
<!-- <foreach collection="merchantDeptIds" item="merchantDeptId" open="(" separator="," close=")">-->
<!-- #{merchantDeptId}-->
<!-- </foreach>-->
<!-- </if>-->
<if test="stationDeptIds != null and stationDeptIds.size() != 0">
and t3.dept_id in
<foreach collection="stationDeptIds" item="stationDeptId" open="(" separator="," close=")">
@@ -305,6 +310,9 @@
<if test="stationId != null">
station_id,
</if>
<if test="merchantId != null">
merchant_id,
</if>
<if test="pileSn != null">
pile_sn,
</if>
@@ -403,6 +411,9 @@
<if test="stationId != null">
#{stationId},
</if>
<if test="merchantId != null">
#{merchantId},
</if>
<if test="pileSn != null">
#{pileSn,jdbcType=VARCHAR},
</if>
@@ -502,6 +513,9 @@
<if test="stationId != null">
station_id = #{stationId},
</if>
<if test="merchantId != null">
merchant_id = #{merchantId},
</if>
<if test="pileSn != null">
pile_sn = #{pileSn},
</if>