From a88e19be56fab4f06aae0248575b55fed41eaa1e Mon Sep 17 00:00:00 2001
From: yxh <172933527@qq.com>
Date: 星期四, 04 一月 2024 09:47:20 +0800
Subject: [PATCH] yxh
---
ruoyi-project/src/main/resources/mapper/project/ServiceFunddetailMapper.xml | 79 ++++++++++++++++++++++++++++++---------
1 files changed, 61 insertions(+), 18 deletions(-)
diff --git a/ruoyi-project/src/main/resources/mapper/project/ServiceFunddetailMapper.xml b/ruoyi-project/src/main/resources/mapper/project/ServiceFunddetailMapper.xml
index 73de6cd..3ff8a43 100644
--- a/ruoyi-project/src/main/resources/mapper/project/ServiceFunddetailMapper.xml
+++ b/ruoyi-project/src/main/resources/mapper/project/ServiceFunddetailMapper.xml
@@ -7,6 +7,14 @@
<resultMap type="com.ruoyi.project.domain.ServiceFunddetail" id="ServiceFunddetailResult">
<result property="id" column="ID"/>
<result property="fundid" column="fundID"/>
+ <result property="orderno" column="OrderNo"/>
+ <result property="itemid" column="ItemID"/>
+ <result property="itemcode" column="ItemCode"/>
+ <result property="itemname" column="ItemName"/>
+ <result property="itemdescribe" column="ItemDescribe"/>
+ <result property="itemtype" column="ItemType"/>
+ <result property="applytype" column="ApplyType"/>
+ <result property="applytypename" column="ApplyTypeName"/>
<result property="beneficiaryname" column="BeneficiaryName"/>
<result property="beneficiaryno" column="BeneficiaryNo"/>
<result property="unitname" column="UnitName"/>
@@ -23,21 +31,19 @@
<result property="branchbankname" column="BranchBankName"/>
<result property="annexbankcard" column="AnnexBankCard"/>
<result property="annexregistform" column="AnnexRegistForm"/>
- <result property="applytype" column="ApplyType"/>
- <result property="applytypename" column="ApplyTypeName"/>
- <result property="itemid" column="ItemID"/>
- <result property="itemname" column="ItemName"/>
- <result property="itemtype" column="ItemType"/>
+ <result property="quantity" column="Quantity"/>
+ <result property="price" column="Price"/>
<result property="amount" column="Amount"/>
- <result property="prepaidamount" column="PrepaidAmount"/>
<result property="taxamount" column="TaxAmount"/>
- <result property="invoicecount" column="InvoiceCount"/>
<result property="taxedamount" column="TaxedAmount"/>
+ <result property="prepaidamount" column="PrepaidAmount"/>
+ <result property="invoicecount" column="InvoiceCount"/>
<result property="attachcount" column="AttachCount"/>
<result property="remark" column="Remark"/>
+ <result property="infoid" column="InfoId"/>
+ <result property="donorno" column="DonorNo"/>
+ <result property="donorname" column="DonorName"/>
<result property="recordstatus" column="RecordStatus"/>
- <result property="price" column="Price"/>
- <result property="quantity" column="Quantity"/>
<result property="del_flag" column="del_flag"/>
<result property="createBy" column="create_by"/>
<result property="createTime" column="create_time"/>
@@ -45,18 +51,17 @@
<result property="updateTime" column="update_time"/>
<result property="uploadflag" column="uploadflag"/>
<result property="uploadtime" column="uploadtime"/>
- <result property="infoid" column="InfoId"/>
- <result property="donorno" column="DonorNo"/>
- <result property="donorname" column="DonorName"/>
<result property="servicesscope" column="SERVICESSCOPE"/>
<result property="servicesscopename" column="SERVICESSCOPENAME"/>
<result property="servicetype" column="SERVICETYPE"/>
<result property="servicetypename" column="SERVICETYPENAME"/>
- <result property="orderno" column="OrderNo"/>
- <result property="itemcode" column="ItemCode"/>
+ <result property="reimbursementamount" column="REIMBURSEMENTAMOUNT"/>
<result property="subjecttype" column="subjecttype"/>
<result property="subjecttypename" column="subjecttypename"/>
- <result property="AnnexFiles" column="AnnexFiles"/>
+ <result property="annexfiles" column="AnnexFiles"/>
+ <result property="taxTime" column="tax_time"/>
+ <result property="jxrq" column="jxrq"/>
+ <result property="invoicefiles" column="InvoiceFiles"/>
</resultMap>
<sql id="selectServiceFunddetailVo">
@@ -111,7 +116,11 @@
SERVICETYPENAME,
subjecttype,
subjecttypename,
- AnnexFiles
+ AnnexFiles,
+ InvoiceFiles,
+ tax_time,
+ jxrq,
+ ItemDescribe
from service_funddetail
</sql>
@@ -231,7 +240,7 @@
service_fund b
where a.del_flag = '0'
and a.fundID = b.id
- <if test="beneficiaryNo != null and beneficiaryNo != '' ">and a.beneficiaryNo = #{beneficiaryNo}</if>
+ <if test="idcardno != null and idcardno != '' ">and a.IDCardNo = #{idcardno}</if>
and b.create_time >= #{starttime}
and b.create_time <= #{endtime}
@@ -240,8 +249,42 @@
<select id="getTaxBeforeByBeneFiciaryNo" parameterType="com.ruoyi.project.domain.vo.TaxMoneyVO"
resultMap="ServiceFunddetailResult">
<include refid="selectServiceFunddetailVo"/>
- where create_time like concat(#{startTime}, '%') and beneficiaryNo=#{beneficiaryNo}
+ where create_time like concat(#{startTime}, '%') and IDCardNo=#{idcardno}
</select>
+ <update id="updateTaxTime" parameterType="com.ruoyi.project.domain.ServiceFunddetail">
+ update com.ruoyi.project.domain.
+ <set>
+ tax_time = #{taxTime},
+ </set>
+ where fundID = #{fundid}
+ </update>
+
+ <select id="getTaxSum" parameterType="com.ruoyi.project.domain.vo.TaxMoneyByItemEO"
+ resultType="com.ruoyi.project.domain.vo.TaxMoneySumEO">
+ SELECT sum(a.Amount) amounts, sum(a.TaxAmount) taxAmounts, sum(a.TaxedAmount) taxedAmounts
+ FROM service_funddetail a,service_fund b
+ where a.FundID = b.id
+ and a.tax_time < #{taxTime}
+ and a.tax_time >= #{firstDay}
+ and a.IDCardNo = #{IDCard}
+ and a.del_flag != 1
+ and b.id != #{fundID}
+ and b.fundtaxtime < #{taxTime}
+ and b.fundtaxtime >= #{firstDay}
+ and b.del_flag != 1
+ and b.ApplyType in (1, 2)
+ </select>
+
+ <select id="totlaTax" resultType="com.ruoyi.project.domain.ServiceFunddetail">
+ <include refid="selectServiceFunddetailVo"/>
+ where fundID in
+ <foreach item="item" index="index" collection="list"
+ open="(" separator="," close=")">
+ #{item}
+ </foreach>
+ and del_flag=0
+ </select>
+
</mapper>
\ No newline at end of file
--
Gitblit v1.9.3