123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538 |
- <?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="com.ruoyi.finance.mapper.TFeeMapper">
- <resultMap type="TFee" id="TFeeResult">
- <result property="fId" column="f_id"/>
- <result property="fBillno" column="f_billno"/>
- <result property="fCtrlcorpid" column="f_ctrlcorpid"/>
- <result property="fCorpid" column="f_corpid"/>
- <result property="tMblno" column="t_mblno"/>
- <result property="fAmtdr" column="f_amtdr"/>
- <result property="fAmtcr" column="f_amtcr"/>
- <result property="fBilltype" column="f_billtype"/>
- <result property="fBillstatus" column="f_billstatus"/>
- <result property="fRemarks" column="f_remarks"/>
- <result property="fAccbilldate" column="f_accbilldate"/>
- <result property="delFlag" column="del_flag"/>
- <result property="createBy" column="create_by"/>
- <result property="fDeptid" column="f_deptid"/>
- <result property="createTime" column="create_time"/>
- <result property="updateBy" column="update_by"/>
- <result property="updateTime" column="update_time"/>
- </resultMap>
- <sql id="selectTFeeVo">
- select f_id, f_billno, f_ctrlcorpid, f_corpid, t_mblno, f_amtdr, f_amtcr, f_billtype, f_billstatus, f_remarks, f_accbilldate, del_flag, create_by, f_deptid, create_time, update_by, update_time from t_fee
- </sql>
- <select id="selectTFeeList" parameterType="TFee" resultMap="TFeeResult">
- <include refid="selectTFeeVo"/>
- <where>
- <if test="fBillno != null and fBillno != ''">and f_billno = #{fBillno}</if>
- <if test="fCtrlcorpid != null ">and f_ctrlcorpid = #{fCtrlcorpid}</if>
- <if test="fCorpid != null ">and f_corpid = #{fCorpid}</if>
- <if test="tMblno != null and tMblno != ''">and t_mblno = #{tMblno}</if>
- <if test="fAmtdr != null ">and f_amtdr = #{fAmtdr}</if>
- <if test="fAmtcr != null ">and f_amtcr = #{fAmtcr}</if>
- <if test="fBilltype != null and fBilltype != ''">and f_billtype = #{fBilltype}</if>
- <if test="fBillstatus != null and fBillstatus != ''">and f_billstatus = #{fBillstatus}</if>
- <if test="fRemarks != null and fRemarks != ''">and f_remarks = #{fRemarks}</if>
- <if test="fAccbilldate != null ">and f_accbilldate = #{fAccbilldate}</if>
- <if test="fDeptid != null ">and f_deptid = #{fDeptid}</if>
- </where>
- </select>
- <select id="selectTFeeList1" parameterType="TFee" resultType="Map">
- SELECT
- f.f_id AS fId,
- f.f_billno AS fBillno,
- f.f_ctrlcorpid AS fCtrlcorpid,
- f.f_corpid AS fCorpid,
- c.f_name AS fCorpidName,
- f.f_accbilldate AS fAccbilldate,
- f.t_mblno AS tMblno,
- f.f_amtdr AS fAmtdr,
- f.f_amtcr AS fAmtcr,
- f.f_billtype AS fBilltype,
- f.f_billstatus AS fBillstatus,
- f.f_remarks AS fRemarks,
- f.create_by AS createBy
- FROM
- t_fee AS f
- LEFT JOIN t_corps AS c ON f.f_corpid = c.f_id
- <where>
- <if test="fBillno != null and fBillno != ''">and f.f_billno = #{fBillno}</if>
- <if test="fCtrlcorpid != null ">and f.f_ctrlcorpid = #{fCtrlcorpid}</if>
- <if test="fCorpid != null ">and f.f_corpid = #{fCorpid}</if>
- <if test="tMblno != null and tMblno != ''">and f.t_mblno = #{tMblno}</if>
- <if test="fAmtdr != null ">and f.f_amtdr = #{fAmtdr}</if>
- <if test="fAmtcr != null ">and f.f_amtcr = #{fAmtcr}</if>
- <if test="fBilltype != null and fBilltype != ''">and f.f_billtype = #{fBilltype}</if>
- <if test="fBillstatus != null and fBillstatus != ''">and f.f_billstatus = #{fBillstatus}</if>
- <if test="fRemarks != null and fRemarks != ''">and f.f_remarks = #{fRemarks}</if>
- <if test="fAccbilldate != null ">and f.f_accbilldate = #{fAccbilldate}</if>
- <if test="fDeptid != null ">and f.f_deptid = #{fDeptid}</if>
- </where>
- </select>
- <select id="selectTFeeById" parameterType="Long" resultMap="TFeeResult">
- <include refid="selectTFeeVo"/>
- where f_id = #{fId}
- </select>
- <insert id="insertTFee" parameterType="TFee" useGeneratedKeys="true" keyProperty="fId">
- insert into t_fee
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="fBillno != null">f_billno,</if>
- <if test="fCtrlcorpid != null">f_ctrlcorpid,</if>
- <if test="fCorpid != null">f_corpid,</if>
- <if test="tMblno != null">t_mblno,</if>
- <if test="fAmtdr != null">f_amtdr,</if>
- <if test="fAmtcr != null">f_amtcr,</if>
- <if test="fBilltype != null and fBilltype != ''">f_billtype,</if>
- <if test="fBillstatus != null and fBillstatus != ''">f_billstatus,</if>
- <if test="fRemarks != null">f_remarks,</if>
- <if test="fAccbilldate != null">f_accbilldate,</if>
- <if test="delFlag != null">del_flag,</if>
- <if test="createBy != null">create_by,</if>
- <if test="fDeptid != null">f_deptid,</if>
- <if test="createTime != null">create_time,</if>
- <if test="updateBy != null">update_by,</if>
- <if test="updateTime != null">update_time,</if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="fBillno != null">#{fBillno},</if>
- <if test="fCtrlcorpid != null">#{fCtrlcorpid},</if>
- <if test="fCorpid != null">#{fCorpid},</if>
- <if test="tMblno != null">#{tMblno},</if>
- <if test="fAmtdr != null">#{fAmtdr},</if>
- <if test="fAmtcr != null">#{fAmtcr},</if>
- <if test="fBilltype != null and fBilltype != ''">#{fBilltype},</if>
- <if test="fBillstatus != null and fBillstatus != ''">#{fBillstatus},</if>
- <if test="fRemarks != null">#{fRemarks},</if>
- <if test="fAccbilldate != null">#{fAccbilldate},</if>
- <if test="delFlag != null">#{delFlag},</if>
- <if test="createBy != null">#{createBy},</if>
- <if test="fDeptid != null">#{fDeptid},</if>
- <if test="createTime != null">#{createTime},</if>
- <if test="updateBy != null">#{updateBy},</if>
- <if test="updateTime != null">#{updateTime},</if>
- </trim>
- </insert>
- <update id="updateTFee" parameterType="TFee">
- update t_fee
- <trim prefix="SET" suffixOverrides=",">
- <if test="fBillno != null">f_billno = #{fBillno},</if>
- <if test="fCtrlcorpid != null">f_ctrlcorpid = #{fCtrlcorpid},</if>
- <if test="fCorpid != null">f_corpid = #{fCorpid},</if>
- <if test="tMblno != null">t_mblno = #{tMblno},</if>
- <if test="fAmtdr != null">f_amtdr = #{fAmtdr},</if>
- <if test="fAmtcr != null">f_amtcr = #{fAmtcr},</if>
- <if test="fBilltype != null and fBilltype != ''">f_billtype = #{fBilltype},</if>
- <if test="fBillstatus != null and fBillstatus != ''">f_billstatus = #{fBillstatus},</if>
- <if test="fRemarks != null">f_remarks = #{fRemarks},</if>
- <if test="fAccbilldate != null">f_accbilldate = #{fAccbilldate},</if>
- <if test="delFlag != null">del_flag = #{delFlag},</if>
- <if test="createBy != null">create_by = #{createBy},</if>
- <if test="fDeptid != null">f_deptid = #{fDeptid},</if>
- <if test="createTime != null">create_time = #{createTime},</if>
- <if test="updateBy != null">update_by = #{updateBy},</if>
- <if test="updateTime != null">update_time = #{updateTime},</if>
- </trim>
- where f_id = #{fId}
- </update>
- <delete id="deleteTFeeById" parameterType="Long">
- delete from t_fee where f_id = #{fId}
- </delete>
- <delete id="deleteTFeeByIds" parameterType="String">
- delete
- f.*,
- fd.*
- from
- t_fee f
- LEFT JOIN t_fee_do fd ON fd.f_pid = f.f_id
- where f.f_id in
- <foreach item="fId" collection="array" open="(" separator="," close=")">
- #{fId}
- </foreach>
- </delete>
- <select id="warehouseBillsFeesList" resultType="java.util.Map">
- SELECT
- w.f_id AS fSrcid,
- t.f_id AS fSrcpid,
- t.f_corpid AS fCorpid,
- c.f_name AS fName,
- w.fId AS fId,
- w.fName AS fFeesName,
- t.f_bscorpno AS fBscorpno,
- w.f_mblno AS fMblno,
- w.f_product_name AS fProductName,
- t.f_bsdate AS fBsdate,
- t.f_billtype AS fBilltype,
- t.f_review_date AS fReviewDate,
- w.f_feeid AS fFeeid,
- w.src_bill_no AS srcBillNo,
- w.f_mblno AS fMblno,
- w.f_product_name AS fProductName,
- w.f_marks AS fMarks,
- w.f_chargedate AS fChargedate,
- w.f_billing_days AS fBillingDays,
- w.f_billing_deadline AS fBillingDeadline,
- w.f_inventory_days AS fInventoryDays,
- w.f_originalbilldate AS fOriginalbilldate,
- f.f_name AS fFeeName,
- w.f_dc AS fSrcdc,
- ifnull( w.f_amount, 0 ) - ifnull( w.f_stlamount, 0 ) AS fAmtdr,
- ifnull( w.f_amount, 0 ) - ifnull( w.f_stlamount, 0 ) AS fAmt
- FROM
- t_warehousebills t
- LEFT JOIN t_corps c ON c.f_id = t.f_corpid
- LEFT JOIN (
- SELECT
- f.f_id AS f_id,
- f.f_pid AS f_pid,
- f.f_lineno AS f_lineno,
- f.f_corpid,
- f.f_feeid,
- f.f_feeUnitid,
- f.f_qty,
- f.f_unitprice,
- f.f_amount,
- f.f_currency,
- f.f_exrate,
- f.f_taxrate,
- f.f_dc,
- f.f_billstatus,
- f.f_statement_no,
- f.f_accamount,
- f.f_accamount_date,
- f.f_stlamount_no,
- f.f_stlamount,
- f.f_stlamount_date,
- f.f_invnos,
- f.f_invamount,
- f.f_askamount,
- f.f_chargedate,
- f.f_status,
- f.remark,
- f.f_mblno,
- f.f_product_name,
- f.src_bill_no,
- f.f_billing_days,
- f.f_inventory_days,
- f.f_marks,
- f.f_billing_deadline,
- f.f_originalbilldate,
- c.f_id AS fId,
- c.f_name AS fName
- FROM
- t_warehousebillsfees AS f
- LEFT JOIN t_corps AS c ON f.f_corpid = c.f_id
- ) w ON w.f_pid = t.f_id
- LEFT JOIN t_fees f ON w.f_feeid = f.f_id
- <where>
- <if test="map.tWareHouseFees.fCorpid != null and map.tWareHouseFees.fCorpid != ''">and t.f_corpid = #{map.tWareHouseFees.fCorpid} </if>
- <if test="map.tWareHouseFees.fToCorpid != null and map.tWareHouseFees.fToCorpid != ''">and w.f_corpid = #{map.tWareHouseFees.fToCorpid} </if>
- <if test="map.tWareHouseFees.fMblno != null and map.tWareHouseFees.fMblno != ''">and w.f_mblno like concat('%', #{map.tWareHouseFees.fMblno}, '%') </if>
- <if test="map.tWareHouseFees.fStatementNo != null and map.tWareHouseFees.fStatementNo != ''">and w.f_statement_no like concat('%', #{map.tWareHouseFees.fStatementNo}, '%') </if>
- <if test='map.tWareHouseFees.fReconciliation != null and map.tWareHouseFees.fReconciliation != "" and map.tWareHouseFees.fReconciliation == "1" '>
- and w.f_accamount_date IS NOT NULL
- </if>
- <if test='map.tWareHouseFees.fReconciliation != null and map.tWareHouseFees.fReconciliation != "" and map.tWareHouseFees.fReconciliation == "0" '>
- and w.f_accamount_date IS NULL
- </if>
- <if test='map.tWareHouseFees.fDc != null and map.tWareHouseFees.fDc != "" and map.tWareHouseFees.fDc == "D" '>
- and w.f_dc = #{map.tWareHouseFees.fDc}
- </if>
- <if test='map.tWareHouseFees.fDc != null and map.tWareHouseFees.fDc != "" and map.tWareHouseFees.fDc == "C" '>
- and w.f_dc = #{map.tWareHouseFees.fDc}
- </if>
- <if test="map.tWareHouseFees.fFeeid != null and map.tWareHouseFees.fFeeid != '' ">
- and w.f_feeid in
- <foreach collection="map.tWareHouseFees.fFeeid" item="id" index="index" open="(" close=")" separator=",">
- #{id}
- </foreach>
- </if>
- <if test='map.tWareHouseFees.timeExamine != null and map.tWareHouseFees.timeExamine[0] != null and map.tWareHouseFees.timeExamine[0]!= ""'>
- and t.f_review_date >= #{map.tWareHouseFees.timeExamine[0]}
- </if>
- <if test='map.tWareHouseFees.timeExamine != null and map.tWareHouseFees.timeExamine[1] != null and map.tWareHouseFees.timeExamine[1]!= ""'>
- and t.f_review_date <= #{map.tWareHouseFees.timeExamine[1]}
- </if>
- <if test='map.tWareHouseFees.timeInterval != null and map.tWareHouseFees.timeInterval[0] != null and map.tWareHouseFees.timeInterval[0]!= ""'>
- and t.f_bsdate >= #{map.tWareHouseFees.timeInterval[0]}
- </if>
- <if test='map.tWareHouseFees.timeInterval != null and map.tWareHouseFees.timeInterval[1] != null and map.tWareHouseFees.timeInterval[1]!= ""'>
- and t.f_bsdate <= #{map.tWareHouseFees.timeInterval[1]}
- </if>
- <if test='map.tWareHouseFees.timeReconci != null and map.tWareHouseFees.timeReconci[0] != null and map.tWareHouseFees.timeReconci[0]!= ""'>
- and w.f_accamount_date >= #{map.tWareHouseFees.timeReconci[0]}
- </if>
- <if test='map.tWareHouseFees.timeReconci != null and map.tWareHouseFees.timeReconci[1] != null and map.tWareHouseFees.timeReconci[1]!= ""'>
- and w.f_accamount_date <= #{map.tWareHouseFees.timeReconci[1]}
- </if>
- and t.f_review_date IS NOT NULL
- and ifnull(w.f_amount, 0) - ifnull(w.f_stlamount, 0) > 0
- </where>
- </select>
- <select id="warehouseBillsFeesListAccamount" resultType="java.util.Map">
- SELECT
- w.f_id AS fSrcid,
- t.f_id AS fSrcpid,
- t.f_corpid AS fCorpid,
- c.f_name AS fName,
- w.fId AS fId,
- w.fName AS fFeesName,
- t.f_bscorpno AS fBscorpno,
- w.f_mblno AS fMblno,
- w.f_product_name AS fProductName,
- t.f_bsdate AS fBsdate,
- t.f_billtype AS fBilltype,
- t.f_review_date AS fReviewDate,
- w.f_marks AS fMarks,
- w.f_feeid AS fFeeid,
- w.f_billtype AS fBilltype,
- w.f_chargedate AS fChargedate,
- w.f_originalbilldate AS fOriginalbilldate,
- w.f_billing_deadline AS fBillingDeadline,
- w.f_billing_days AS fBillingDays,
- w.f_inventory_days AS fInventoryDays,
- f.f_name AS fFeeName,
- w.f_dc AS fSrcdc,
- ifnull( w.f_amount, 0 ) - ifnull( w.f_accamount, 0 ) AS fAmtdr,
- ifnull( w.f_amount, 0 ) - ifnull( w.f_accamount, 0 ) AS fAmt
- FROM
- t_warehousebills t
- LEFT JOIN t_corps c ON c.f_id = t.f_corpid
- LEFT JOIN (
- SELECT
- f.f_id AS f_id,
- f.f_pid AS f_pid,
- f.f_lineno AS f_lineno,
- f.f_corpid,
- f.f_feeid,
- f.f_feeUnitid,
- f.f_qty,
- f.f_unitprice,
- f.f_amount,
- f.f_currency,
- f.f_exrate,
- f.f_taxrate,
- f.f_dc,
- f.f_billstatus,
- f.f_statement_no,
- f.f_accamount,
- f.f_accamount_date,
- f.f_stlamount_no,
- f.f_stlamount,
- f.f_stlamount_date,
- f.f_invnos,
- f.f_invamount,
- f.f_askamount,
- f.f_status,
- f.remark,
- f.f_inventory_days,
- f.f_billing_days,
- f.f_billing_deadline,
- f.f_originalbilldate,
- f.f_mblno,
- f.f_product_name,
- f.f_chargedate,
- f.src_bill_no,
- f.f_billtype,
- f.f_marks,
- c.f_id AS fId,
- c.f_name AS fName
- FROM
- t_warehousebillsfees AS f
- LEFT JOIN t_corps AS c ON f.f_corpid = c.f_id
- ) w ON w.f_pid = t.f_id
- LEFT JOIN t_fees f ON w.f_feeid = f.f_id
- <where>
- <if test="map.tWareHouseFees.fCorpid != null and map.tWareHouseFees.fCorpid != ''">and t.f_corpid = #{map.tWareHouseFees.fCorpid} </if>
- <if test="map.tWareHouseFees.fToCorpid != null and map.tWareHouseFees.fToCorpid != ''">and w.f_corpid = #{map.tWareHouseFees.fToCorpid} </if>
- <if test="map.tWareHouseFees.fMblno != null and map.tWareHouseFees.fMblno != ''">and w.f_mblno like concat('%', #{map.tWareHouseFees.fMblno}, '%') </if>
- <if test="map.tWareHouseFees.fStatementNo != null and map.tWareHouseFees.fStatementNo != ''">and w.f_statement_no like concat('%', #{map.tWareHouseFees.fStatementNo}, '%') </if>
- <if test='map.tWareHouseFees.fReconciliation != null and map.tWareHouseFees.fReconciliation != "" and map.tWareHouseFees.fReconciliation == "1" '>
- and w.f_accamount_date IS NOT NULL
- </if>
- <if test='map.tWareHouseFees.fReconciliation != null and map.tWareHouseFees.fReconciliation != "" and map.tWareHouseFees.fReconciliation == "0" '>
- and w.f_accamount_date IS NULL
- </if>
- <if test='map.tWareHouseFees.fDc != null and map.tWareHouseFees.fDc != "" and map.tWareHouseFees.fDc == "D" '>
- and w.f_dc = #{map.tWareHouseFees.fDc}
- </if>
- <if test='map.tWareHouseFees.fDc != null and map.tWareHouseFees.fDc != "" and map.tWareHouseFees.fDc == "C" '>
- and w.f_dc = #{map.tWareHouseFees.fDc}
- </if>
- <if test="map.tWareHouseFees.fFeeid != null and map.tWareHouseFees.fFeeid != '' ">
- and w.f_feeid in
- <foreach collection="map.tWareHouseFees.fFeeid" item="id" index="index" open="(" close=")" separator=",">
- #{id}
- </foreach>
- </if>
- <if test='map.tWareHouseFees.timeExamine != null and map.tWareHouseFees.timeExamine[0] != null and map.tWareHouseFees.timeExamine[0]!= ""'>
- and t.f_review_date >= #{map.tWareHouseFees.timeExamine[0]}
- </if>
- <if test='map.tWareHouseFees.timeExamine != null and map.tWareHouseFees.timeExamine[1] != null and map.tWareHouseFees.timeExamine[1]!= ""'>
- and t.f_review_date <= #{map.tWareHouseFees.timeExamine[1]}
- </if>
- <if test='map.tWareHouseFees.timeInterval != null and map.tWareHouseFees.timeInterval[0] != null and map.tWareHouseFees.timeInterval[0]!= ""'>
- and t.f_bsdate >= #{map.tWareHouseFees.timeInterval[0]}
- </if>
- <if test='map.tWareHouseFees.timeInterval != null and map.tWareHouseFees.timeInterval[1] != null and map.tWareHouseFees.timeInterval[1]!= ""'>
- and t.f_bsdate <= #{map.tWareHouseFees.timeInterval[1]}
- </if>
- <if test='map.tWareHouseFees.timeReconci != null and map.tWareHouseFees.timeReconci[0] != null and map.tWareHouseFees.timeReconci[0]!= ""'>
- and w.f_accamount_date >= #{map.tWareHouseFees.timeReconci[0]}
- </if>
- <if test='map.tWareHouseFees.timeReconci != null and map.tWareHouseFees.timeReconci[1] != null and map.tWareHouseFees.timeReconci[1]!= ""'>
- and w.f_accamount_date <= #{map.tWareHouseFees.timeReconci[1]}
- </if>
- and t.f_review_date IS NOT NULL
- and ifnull(w.f_amount, 0) - ifnull(w.f_accamount, 0) > 0
- </where>
- </select>
- <select id="warehouseBillsFeesList1" resultType="java.util.Map">
- SELECT
- w.f_id AS fSrcid,
- t.f_id AS fSrcpid,
- t.f_corpid AS fCorpid,
- c.f_name AS fName,
- w.fId AS fId,
- w.fName AS fFeesName,
- w.f_mblno AS fMblno,
- w.f_product_name AS fProductName,
- w.f_marks AS fMarks,
- t.f_billtype AS fBilltype,
- t.f_review_date AS fReviewDate,
- w.f_dc AS fSrcdc,
- SUM(w.f_amount) AS fAmount,
- SUM(w.f_stlamount) AS fStlamount
- FROM
- t_warehousebills t
- LEFT JOIN t_corps c ON c.f_id = t.f_corpid
- LEFT JOIN (
- SELECT
- f.f_id AS f_id,
- f.f_pid AS f_pid,
- f.f_lineno AS f_lineno,
- f.f_corpid,
- f.f_feeid,
- f.f_feeUnitid,
- f.f_qty,
- f.f_unitprice,
- f.f_amount,
- f.f_currency,
- f.f_exrate,
- f.f_taxrate,
- f.f_dc,
- f.f_billstatus,
- f.f_statement_no,
- f.f_accamount,
- f.f_accamount_date,
- f.f_stlamount_no,
- f.f_stlamount,
- f.f_stlamount_date,
- f.f_invnos,
- f.f_invamount,
- f.f_askamount,
- f.f_status,
- f.remark,
- f.f_mblno,
- f.f_product_name,
- f.f_marks,
- c.f_id AS fId,
- c.f_name AS fName
- FROM
- t_warehousebillsfees AS f
- LEFT JOIN t_corps AS c ON f.f_corpid = c.f_id
- ) w ON w.f_pid = t.f_id
- LEFT JOIN t_fees f ON w.f_feeid = f.f_id
- <where>
- <if test="fCorpid != null and fCorpid != ''">and t.f_corpid = #{fCorpid} </if>
- <if test="fToCorpid != null and fToCorpid != ''">and w.f_corpid = #{fToCorpid} </if>
- <if test="fMblno != null and fMblno != ''">and w.f_mblno like concat('%', #{fMblno}, '%') </if>
- <if test="fMarks != null and fMarks != ''">and w.f_marks like concat('%', #{fMarks}, '%') </if>
- <if test="fProductName != null and fProductName != ''">and w.f_product_name like concat('%', #{fProductName}, '%') </if>
- <if test='fBillstatus != null and fBillstatus != "" and fBillstatus == "0" '>
- and w.f_billstatus != 6
- </if>
- <if test='fBillstatus != null and fBillstatus != "" and fBillstatus == "1" '>
- and w.f_billstatus = 6
- </if>
- <if test='fDc != null and fDc != "" and fDc == "D" '>
- and w.f_dc = #{fDc}
- </if>
- <if test='fDc != null and fDc != "" and fDc == "C" '>
- and w.f_dc = #{fDc}
- </if>
- <if test='timeExamine != null and timeExamine[0] != null and timeExamine[0]!= ""'>
- and t.f_review_date >= #{timeExamine[0]}
- </if>
- <if test='timeExamine != null and timeExamine[1] != null and timeExamine[1]!= ""'>
- and t.f_review_date <= #{timeExamine[1]}
- </if>
- <if test='fReconciliation!= null and fReconciliation != "" and fReconciliation == "0" '>
- and ifnull(w.f_amount, 0) - ifnull(w.f_stlamount, 0) != 0
- </if>
- and t.f_review_date IS NOT NULL
- GROUP BY
- w.f_pid,
- w.f_dc,
- w.f_corpid
- </where>
- </select>
- <select id="selectTWarehousebillsItemsList"
- resultType="com.ruoyi.warehouseBusiness.domain.TWareHouseExcelItem">
- SELECT
- ( @ii := @ii + 1 ) AS fId,
- wi.src_bill_no AS fMblno,
- CASE
- wi.f_billtype
- WHEN 'SJRK' THEN
- '入库'
- WHEN 'SJCK' THEN
- '出库'
- WHEN 'HQZY' THEN
- '货转'
- WHEN 'CKDB' THEN
- '调拨'
- WHEN 'KCZZ' THEN
- '库存总账'
- END AS fBilltype,
- wi.f_product_name AS fGoodsid,
- wi.f_marks AS fMarks,
- wi.f_qty AS fBillingQty,
- wi.f_bsdate AS fBsdate,
- wi.f_inventory_days AS fInventoryDays,
- wi.f_billing_days AS fBillingDays,
- f.f_name AS fFeeid,
- wi.f_accamount AS fAmt2
- FROM
- t_fee_do w
- LEFT JOIN t_warehousebillsfees wi ON w.f_srcid = wi.f_id
- LEFT JOIN t_fees f ON wi.f_feeid = f.f_id
- ,(
- SELECT
- @ii := 0
- ) AS ii
- WHERE
- w.f_pid = #{fId}
- </select>
- </mapper>
|