|
@@ -38,6 +38,7 @@
|
38
|
38
|
<result property="fyly" column="FYLY" jdbcType="VARCHAR"/>
|
39
|
39
|
<result property="dkyfzr" column="DKYFZR" jdbcType="VARCHAR"/>
|
40
|
40
|
<result property="fj2" column="FJ2" jdbcType="VARCHAR"/>
|
|
41
|
+ <result property="nf" column="NF" jdbcType="VARCHAR"/>
|
41
|
42
|
</resultMap>
|
42
|
43
|
|
43
|
44
|
<resultMap type="com.liang.entity.FeeManagemant" id="FeeManagementMap">
|
|
@@ -618,7 +619,7 @@
|
618
|
619
|
|
619
|
620
|
<!--年度预算项目列表-->
|
620
|
621
|
<select id="getByjProjectList" resultMap="PrjProjectMap" parameterType="map">
|
621
|
|
- select DISTINCT p.ID, p.ZWMC, p.QS, p.WC, p.ERPBH, p.XMLX, t.XMLXMC, p.SSBM, d.dept_name as SSBMMC,
|
|
622
|
+ select DISTINCT p.ID, p.ZWMC, p.QS, p.WC, p.ERPBH, p.XMLX, t.XMLXMC, p.SSBM, d.dept_name as SSBMMC,b.NF,
|
622
|
623
|
(select TOP 1 RY from prj_Member where XM = p.ID and XMJS = 1) as XMFZR,
|
623
|
624
|
(select TOP 1 RYXM from prj_Member where XM = p.ID and XMJS = 1) as XMFZRXM,
|
624
|
625
|
(SELECT STUFF((SELECT ','+XM from (select xm from base_Person
|
|
@@ -635,6 +636,9 @@
|
635
|
636
|
where p.XMMB != 1
|
636
|
637
|
and p.SPZT = '审批结束'
|
637
|
638
|
and CONCAT(p.ID, f.NF) in (select CONCAT(RWS, NF) from prj_AnnualBudget)
|
|
639
|
+ <if test="nf != null and nf !=''">
|
|
640
|
+ and b.nf = #{nf}
|
|
641
|
+ </if>
|
638
|
642
|
<if test="zwmc != null and zwmc != ''">
|
639
|
643
|
and p.ZWMC like '%'+#{zwmc}+'%'
|
640
|
644
|
</if>
|