FinancialExpenditureMapper.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <!--
  4. 这个文件是自动生成的。
  5. 不要修改此文件。所有改动将在下次重新自动生成时丢失。
  6. -->
  7. <mapper namespace="com.ym.mec.biz.dal.dao.FinancialExpenditureDao">
  8. <resultMap type="com.ym.mec.biz.dal.entity.FinancialExpenditure" id="FinancialExpenditure">
  9. <result column="id_" property="id"/>
  10. <result column="batch_no_" property="batchNo"/>
  11. <result column="financial_process_no_" property="financialProcessNo"/>
  12. <result column="dingtalk_process_no_" property="dingtalkProcessNo"/>
  13. <result column="organ_id_" property="organId"/>
  14. <result column="cooperation_organ_id_" property="cooperationOrganId"/>
  15. <result column="apply_user_" property="applyUser"/>
  16. <result column="student_id_" property="studentId"/>
  17. <result column="type_" property="type" typeHandler="com.ym.mec.common.dal.CustomEnumTypeHandler"/>
  18. <result column="fee_project_" property="feeProject" typeHandler="com.ym.mec.common.dal.CustomEnumTypeHandler"/>
  19. <result column="amount_" property="amount"/>
  20. <result column="item_detail_" property="itemDetail"/>
  21. <result column="payment_time_" property="paymentTime"/>
  22. <result column="effective_time_" property="effectiveTime"/>
  23. <result column="current_amount_" property="currentAmount"/>
  24. <result column="del_flag_" property="delFlag"/>
  25. <result column="cause_" property="cause"/>
  26. <result column="aproval_time_" property="aprovalTime"/>
  27. <result column="create_time_" property="createTime"/>
  28. <result column="update_time_" property="updateTime"/>
  29. <result column="tenant_id_" property="tenantId" />
  30. </resultMap>
  31. <!-- 根据主键查询一条记录 -->
  32. <select id="get" resultMap="FinancialExpenditure">
  33. SELECT *
  34. FROM financial_expenditure
  35. WHERE id_ = #{id}
  36. </select>
  37. <!-- 全查询 -->
  38. <select id="findAll" resultMap="FinancialExpenditure">
  39. SELECT *
  40. FROM financial_expenditure
  41. WHERE del_flag_ = 0 and tenant_id_ = #{tenantId}
  42. ORDER BY id_
  43. </select>
  44. <!-- 向数据库增加一条记录 -->
  45. <insert id="insert" parameterType="com.ym.mec.biz.dal.entity.FinancialExpenditure" useGeneratedKeys="true"
  46. keyColumn="id"
  47. keyProperty="id">
  48. INSERT INTO financial_expenditure (batch_no_, financial_process_no_, dingtalk_process_no_,
  49. process_id_,organ_id_, cooperation_organ_id_, apply_user_, apply_user_id_, amount_, item_detail_,
  50. payment_time_, cause_, create_time_, update_time_, fee_project_, type_,
  51. tenant_id_,student_id_,effective_time_,aproval_time_,current_amount_)
  52. VALUES (#{batchNo}, #{financialProcessNo}, #{dingtalkProcessNo},#{processId}, #{organId}, #{cooperationOrganId},
  53. #{applyUser}, #{applyUserId}, #{amount},
  54. #{itemDetail}, #{paymentTime}, #{cause}, now(), now(),
  55. #{feeProject,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
  56. #{type,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
  57. #{tenantId},#{studentId},#{effectiveTime},#{aprovalTime},#{currentAmount})
  58. </insert>
  59. <insert id="batchInsert" parameterType="com.ym.mec.biz.dal.entity.FinancialExpenditure" useGeneratedKeys="true"
  60. keyColumn="id"
  61. keyProperty="id">
  62. INSERT INTO financial_expenditure (batch_no_,financial_process_no_,dingtalk_process_no_,
  63. process_id_,organ_id_,cooperation_organ_id_,apply_user_,amount_,item_detail_,payment_time_,
  64. cause_,create_time_,update_time_,fee_project_,type_,tenant_id_,
  65. student_id_,effective_time_,aproval_time_,current_amount_)
  66. VALUES
  67. <foreach collection="financialExpenditures" item="item" separator=",">
  68. (#{item.batchNo},#{item.financialProcessNo},#{item.dingtalkProcessNo},#{item.processId},#{item.organId},
  69. #{item.cooperationOrganId},#{item.applyUser},#{item.amount},
  70. #{item.itemDetail},#{item.paymentTime},#{item.cause},now(),now(),
  71. #{item.feeProject,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
  72. #{item.type,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},#{item.tenantId},
  73. #{item.studentId},#{item.effectiveTime},#{item.aprovalTime},#{item.currentAmount})
  74. </foreach>
  75. </insert>
  76. <!-- 根据主键查询一条记录 -->
  77. <update id="update" parameterType="com.ym.mec.biz.dal.entity.FinancialExpenditure">
  78. UPDATE financial_expenditure
  79. <set>
  80. <if test="feeProject != null">
  81. fee_project_ = #{feeProject,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
  82. </if>
  83. <if test="type != null">
  84. type_ = #{type,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
  85. </if>
  86. <if test="batchNo != null">
  87. batch_no_ = #{batchNo},
  88. </if>
  89. <if test="financialProcessNo != null">
  90. financial_process_no_ = #{financialProcessNo},
  91. </if>
  92. <if test="dingtalkProcessNo != null">
  93. dingtalk_process_no_ = #{dingtalkProcessNo},
  94. </if>
  95. <if test="organId != null">
  96. organ_id_ = #{organId},
  97. </if>
  98. <if test="cooperationOrganId != null">
  99. cooperation_organ_id_ = #{cooperationOrganId},
  100. </if>
  101. <if test="applyUser != null">
  102. apply_user_ = #{applyUser},
  103. </if>
  104. <if test="amount != null">
  105. amount_ = #{amount},
  106. </if>
  107. <if test="itemDetail != null">
  108. item_detail_ = #{itemDetail},
  109. </if>
  110. <if test="paymentTime != null">
  111. payment_time_ = #{paymentTime},
  112. </if>
  113. <if test="cause != null">
  114. cause_ = #{cause},
  115. </if>
  116. update_time_ = NOW()
  117. </set>
  118. WHERE id_ = #{id} and tenant_id_ = #{tenantId}
  119. </update>
  120. <!-- 根据主键删除一条记录 -->
  121. <update id="delete">
  122. UPDATE financial_expenditure
  123. SET del_flag_ = 1
  124. WHERE id_ = #{id}
  125. </update>
  126. <update id="batchDel">
  127. UPDATE financial_expenditure
  128. SET del_flag_ = 1
  129. WHERE FIND_IN_SET(id_, #{ids})
  130. </update>
  131. <sql id="queryPageSql">
  132. <where>
  133. fe.del_flag_ = 0 and fe.tenant_id_ = #{tenantId}
  134. <if test="batchNo != null and batchNo != ''">
  135. AND fe.batch_no_ = #{batchNo}
  136. </if>
  137. <if test="feeProject != null">
  138. AND fe.fee_project_ = #{feeProject}
  139. </if>
  140. <if test="type != null">
  141. AND fe.type_ = #{type}
  142. </if>
  143. <if test="financialProcessNo != null and financialProcessNo != ''">
  144. AND fe.financial_process_no_ = #{financialProcessNo}
  145. </if>
  146. <if test="dingtalkProcessNo != null and dingtalkProcessNo != ''">
  147. AND fe.dingtalk_process_no_ = #{dingtalkProcessNo}
  148. </if>
  149. <if test="search != null and search != ''">
  150. AND (fe.id_ LIKE CONCAT('%',#{search},'%') OR fe.financial_process_no_ LIKE CONCAT('%',#{search},'%')
  151. OR fe.dingtalk_process_no_ LIKE CONCAT('%',#{search},'%') OR fe.apply_user_ LIKE
  152. CONCAT('%',#{search},'%'))
  153. </if>
  154. <if test="organId != null and organId != ''">
  155. AND FIND_IN_SET(fe.organ_id_,#{organId})
  156. </if>
  157. <if test="cooperationOrganId != null">
  158. AND fe.cooperation_organ_id_ = #{cooperationOrganId}
  159. </if>
  160. <if test="startTime != null and startTime != ''">
  161. AND DATE_FORMAT(fe.payment_time_,'%Y-%m-%d') &gt;= #{startTime}
  162. </if>
  163. <if test="endTime != null and endTime != ''">
  164. AND DATE_FORMAT(fe.payment_time_,'%Y-%m-%d') &lt;= #{endTime}
  165. </if>
  166. </where>
  167. </sql>
  168. <!-- 分页查询 -->
  169. <select id="queryPage" resultMap="FinancialExpenditure" parameterType="map">
  170. SELECT fe.*,o.name_ organ_name_,co.name_ cooperation_name_,su.real_name_
  171. FROM financial_expenditure fe
  172. LEFT JOIN organization o ON o.id_ = fe.organ_id_
  173. LEFT JOIN cooperation_organ co ON co.id_ = fe.cooperation_organ_id_
  174. <include refid="queryPageSql"/>
  175. <include refid="global.limit"/>
  176. </select>
  177. <!-- 查询当前表的总记录数 -->
  178. <select id="queryCount" resultType="int">
  179. SELECT COUNT(DISTINCT fe.id_) FROM financial_expenditure fe
  180. <include refid="queryPageSql"/>
  181. </select>
  182. <resultMap type="com.ym.mec.biz.dal.dto.FinancialExpenditureDto" id="FinancialExpenditureDto"
  183. extends="FinancialExpenditure">
  184. <result column="organ_name_" property="organName"/>
  185. <result column="cooperation_name_" property="cooperationName"/>
  186. </resultMap>
  187. <select id="findFinancialExpenditureCount" resultType="java.lang.Integer">
  188. SELECT COUNT(DISTINCT fe.id_) FROM financial_expenditure fe
  189. <include refid="queryPageSql"/>
  190. </select>
  191. <select id="queryFinancialExpenditurePage" resultMap="FinancialExpenditureDto">
  192. SELECT fe.*,o.name_ organ_name_,co.name_ cooperation_name_
  193. FROM financial_expenditure fe
  194. LEFT JOIN organization o ON o.id_ = fe.organ_id_
  195. LEFT JOIN cooperation_organ co ON co.id_ = fe.cooperation_organ_id_
  196. <include refid="queryPageSql"/>
  197. ORDER BY fe.id_ DESC
  198. <include refid="global.limit"/>
  199. </select>
  200. <!-- 统计合作单位的支出 -->
  201. <select id="getCooperationExpenditure" resultMap="FinancialExpenditure"><![CDATA[
  202. SELECT organ_id_, cooperation_organ_id_, type_, SUM(amount_) amount_
  203. FROM financial_expenditure
  204. WHERE payment_time_ >= #{startTime}
  205. AND payment_time_ <= #{endTime}
  206. AND del_flag_ = 0 and tenant_id_ = #{tenantId}
  207. GROUP BY organ_id_, cooperation_organ_id_, type_
  208. ]]></select>
  209. <select id="countBydingTalk" resultType="java.lang.String">
  210. SELECT dingtalk_process_no_ FROM financial_expenditure WHERE del_flag_ = 0 AND dingtalk_process_no_ IN
  211. <foreach collection="collect" separator="," open="(" close=")" item="item">
  212. #{item}
  213. </foreach>
  214. GROUP BY dingtalk_process_no_
  215. </select>
  216. <resultMap id="PWorkOrderInfo" type="com.ym.mec.biz.dal.dto.PWorkOrderInfo">
  217. <result property="id" column="id"/>
  218. <result property="classify" column="classify"/>
  219. <result property="isEnd" column="is_end"/>
  220. <result property="isDenied" column="is_denied"/>
  221. <result property="isCancel" column="is_cancel"/>
  222. <result property="creator" column="mec_user_id"/>
  223. <result property="process" column="process"/>
  224. <result property="title" column="title"/>
  225. <result property="deptId" column="dept_id"/>
  226. <result property="updateTime" column="update_time"/>
  227. </resultMap>
  228. <select id="getWorkOrderInfo" resultMap="PWorkOrderInfo">
  229. SELECT woi.*,su.mec_user_id FROM oa_pro.p_work_order_info woi
  230. LEFT JOIN oa_pro.p_work_order_circulation_history woch ON woi.id = woch.work_order
  231. LEFT JOIN oa_pro.p_process_info pi ON pi.id = woi.classify
  232. LEFT JOIN oa_pro.sys_user su ON su.user_id = woi.creator
  233. WHERE woi.is_end = 1 AND woi.is_denied = 0 AND woi.is_cancel = 0
  234. AND woch.`status` != 0 AND woi.id = #{workOrderId} AND pi.fee_type = 1 LIMIT 1
  235. </select>
  236. <select id="getFormStructure" resultType="java.lang.String">
  237. SELECT form_structure FROM oa_pro.p_work_order_tpl_data WHERE work_order = #{workOrderId}
  238. </select>
  239. <select id="getFormData" resultType="java.lang.String">
  240. SELECT form_data FROM oa_pro.p_work_order_tpl_data WHERE work_order = #{workOrderId}
  241. </select>
  242. <select id="getTplInfo" resultType="java.lang.String">
  243. SELECT form_structure FROM oa_pro.p_tpl_info WHERE id = #{tplInfoId}
  244. </select>
  245. <select id="findByBatchNoAndProcessNo" resultType="integer">
  246. SELECT id_ FROM financial_expenditure WHERE batch_no_ = #{workOrderId} AND financial_process_no_ = #{workOrderId} LIMIT 1
  247. </select>
  248. <select id="getDeptId" resultType="java.lang.Integer">
  249. SELECT organ_id FROM oa_pro.sys_dept WHERE dept_id = #{deptId}
  250. </select>
  251. </mapper>