Commit 0e289f00 by jianshuqin

增加功能:增加财务审核人过虑条件

parent 06187c62
...@@ -36,7 +36,7 @@ public class CostExportVo { ...@@ -36,7 +36,7 @@ public class CostExportVo {
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private Date endPayTime; private Date endPayTime;
private String linkCost; private String linkCost;
private Integer financialAuditUserId;
} }
} }
} }
...@@ -142,6 +142,7 @@ ...@@ -142,6 +142,7 @@
OR OR
company_name LIKE CONCAT('%',#{params.key},'%')) company_name LIKE CONCAT('%',#{params.key},'%'))
</if> </if>
<if test=" params.keys.financialAuditUserId!=null ">and cost_no in (SELECT DISTINCT cost_no FROM cost_log t1 WHERE type in (5,7) and update_userid = #{params.keys.financialAuditUserId})</if>
</select> </select>
<select id="appCheckCostList" resultType="com.blt.other.module.cost.model.CostDomain"> <select id="appCheckCostList" resultType="com.blt.other.module.cost.model.CostDomain">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment