Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
isoft_psa
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王飞
isoft_psa
Commits
8f4348d2
Commit
8f4348d2
authored
Apr 02, 2025
by
qiyaxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
获取报销节点通过时间
parent
85b38399
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
ProjectCostRequestApproval.java
...ain/java/com/ruoyi/domain/ProjectCostRequestApproval.java
+3
-0
ExpenseApprovalMapper.xml
...es/mapper/ExpenseApprovalMapper/ExpenseApprovalMapper.xml
+2
-1
No files found.
ruoyi-psa/src/main/java/com/ruoyi/domain/ProjectCostRequestApproval.java
View file @
8f4348d2
...
...
@@ -14,4 +14,7 @@ public class ProjectCostRequestApproval {
private
Boolean
isEndApproval
;
//整体审核状态
private
Integer
approveStatus
;
// PM通过时间
private
String
pmPassTime
;
}
ruoyi-psa/src/main/resources/mapper/ExpenseApprovalMapper/ExpenseApprovalMapper.xml
View file @
8f4348d2
...
...
@@ -23,7 +23,8 @@
update fygl_project_cost_request
<trim
prefix=
"SET"
suffixOverrides=
","
>
<if
test=
"approveStatus != null"
>
approve_status = #{approveStatus},
</if>
<if
test=
"nextNodeId != null"
>
current_audit_role_id = #{nextNodeId}
</if>
<if
test=
"nextNodeId != null"
>
current_audit_role_id = #{nextNodeId},
</if>
<if
test=
"pmPassTime != null"
>
pm_passtime = #{pmPassTime},
</if>
</trim>
where id = #{projectCostId}
</update>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment