修改mapper文件

release
yishiqihuasheng 2 years ago
parent 5754ede70c
commit 468e166aa7
  1. 16
      dxhy-extend/src/main/resources/mapper/index/ExtIndexStatisticsMapper.xml

@ -479,6 +479,10 @@
<if test="paramsData.userName != null">
AND tdi.user_name = #{paramsData.userName}
</if>
and tdi.gf_tax_no in
<foreach collection="paramsData.taxno" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach>
GROUP BY tdi.qs_status
UNION
SELECT COUNT(1) "countNum",'totalCount' AS "qsType"
@ -487,6 +491,10 @@
<if test="paramsData.userName != null">
AND tdi.user_name = #{paramsData.userName}
</if>
and tdi.gf_tax_no in
<foreach collection="paramsData.taxno" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</select>
<select id="getInvoiceScanningSituation"
@ -523,6 +531,10 @@
<if test="paramsData.userName != null">
AND tdc.user_name = #{paramsData.userName}
</if>
and tdc.gf_tax_no in
<foreach collection="paramsData.taxno" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach>
GROUP BY tdc.qs_status
UNION
SELECT COUNT(1) "countNum",'totalCount' AS "qsType"
@ -531,6 +543,10 @@
<if test="paramsData.userName != null">
AND tdc.user_name = #{paramsData.userName}
</if>
and tdc.gf_tax_no in
<foreach collection="paramsData.taxno" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</select>
<select id="getCustomsScanningSituation"

Loading…
Cancel
Save