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
188bb89b
Commit
188bb89b
authored
Mar 13, 2025
by
祁正
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
项目费用申请-编辑改bug
parent
815b54d3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
11 deletions
+1
-11
ApprovalConfigurationController.java
...com/ruoyi/controller/ApprovalConfigurationController.java
+0
-1
FyglProjectCostDTO.java
...rc/main/java/com/ruoyi/domain/dto/FyglProjectCostDTO.java
+0
-1
IFyglProjectCostServiceImpl.java
...a/com/ruoyi/service/impl/IFyglProjectCostServiceImpl.java
+1
-3
FyglProjectCostMapper.xml
...in/resources/mapper/projectCost/FyglProjectCostMapper.xml
+0
-6
No files found.
ruoyi-psa/src/main/java/com/ruoyi/controller/ApprovalConfigurationController.java
View file @
188bb89b
...
@@ -66,7 +66,6 @@ public class ApprovalConfigurationController extends BaseController {
...
@@ -66,7 +66,6 @@ public class ApprovalConfigurationController extends BaseController {
@Anonymous
@Anonymous
@GetMapping
(
"/getNodeList/{id}"
)
@GetMapping
(
"/getNodeList/{id}"
)
public
AjaxResult
getNodeList
(
@PathVariable
Integer
id
){
public
AjaxResult
getNodeList
(
@PathVariable
Integer
id
){
return
AjaxResult
.
success
(
approvalConfigurationService
.
getNodeList
(
id
));
return
AjaxResult
.
success
(
approvalConfigurationService
.
getNodeList
(
id
));
}
}
}
}
ruoyi-psa/src/main/java/com/ruoyi/domain/dto/FyglProjectCostDTO.java
View file @
188bb89b
...
@@ -15,7 +15,6 @@ public class FyglProjectCostDTO extends BaseEntity {
...
@@ -15,7 +15,6 @@ public class FyglProjectCostDTO extends BaseEntity {
private
String
userName
;
private
String
userName
;
private
String
projectStatus
;
private
String
projectStatus
;
private
Integer
approveStatus
;
private
Integer
approveStatus
;
private
String
waterNumber
;
private
String
costType
;
private
String
costType
;
private
String
timeOfExpense
;
private
String
timeOfExpense
;
private
Double
sumMoney
;
private
Double
sumMoney
;
...
...
ruoyi-psa/src/main/java/com/ruoyi/service/impl/IFyglProjectCostServiceImpl.java
View file @
188bb89b
...
@@ -50,9 +50,7 @@ public class IFyglProjectCostServiceImpl implements IFyglProjectCostService {
...
@@ -50,9 +50,7 @@ public class IFyglProjectCostServiceImpl implements IFyglProjectCostService {
//插入方法
//插入方法
@Override
@Override
public
int
insertProjectCost
(
FyglProjectCostDTO
fyglProjectCostDTO
)
{
public
int
insertProjectCost
(
FyglProjectCostDTO
fyglProjectCostDTO
)
{
//获取流水号
String
s
=
serialNumberGenerator
.
generateSerialNumber
(
"xmfy"
);
fyglProjectCostDTO
.
setWaterNumber
(
s
);
fyglProjectCostDTO
.
setCreateBy
(
SecurityUtils
.
getUsername
());
fyglProjectCostDTO
.
setCreateBy
(
SecurityUtils
.
getUsername
());
Date
nowDate
=
DateUtils
.
getNowDate
();
Date
nowDate
=
DateUtils
.
getNowDate
();
fyglProjectCostDTO
.
setCreateTime
(
nowDate
);
fyglProjectCostDTO
.
setCreateTime
(
nowDate
);
...
...
ruoyi-psa/src/main/resources/mapper/projectCost/FyglProjectCostMapper.xml
View file @
188bb89b
...
@@ -11,7 +11,6 @@
...
@@ -11,7 +11,6 @@
<result
property=
"projectType"
column=
"project_type"
/>
<result
property=
"projectType"
column=
"project_type"
/>
<result
property=
"userName"
column=
"user_name"
/>
<result
property=
"userName"
column=
"user_name"
/>
<result
property=
"projectStatus"
column=
"project_status"
/>
<result
property=
"projectStatus"
column=
"project_status"
/>
<result
property=
"waterNumber"
column=
"water_number"
/>
<result
property=
"projectId"
column=
"project_id"
/>
<result
property=
"projectId"
column=
"project_id"
/>
<result
property=
"timeOfExpense"
column=
"time_of_expense"
/>
<result
property=
"timeOfExpense"
column=
"time_of_expense"
/>
...
@@ -41,7 +40,6 @@
...
@@ -41,7 +40,6 @@
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"projectId != null"
>
project_id,
</if>
<if
test=
"projectId != null"
>
project_id,
</if>
<if
test=
"approveStatus != null"
>
approve_status,
</if>
<if
test=
"approveStatus != null"
>
approve_status,
</if>
<if
test=
"waterNumber != null"
>
water_number,
</if>
<if
test=
"costType != null"
>
cost_type,
</if>
<if
test=
"costType != null"
>
cost_type,
</if>
<if
test=
"timeOfExpense != null"
>
time_of_expense,
</if>
<if
test=
"timeOfExpense != null"
>
time_of_expense,
</if>
<if
test=
"description != null"
>
`description`,
</if>
<if
test=
"description != null"
>
`description`,
</if>
...
@@ -58,7 +56,6 @@
...
@@ -58,7 +56,6 @@
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"projectId != null"
>
#{projectId},
</if>
<if
test=
"projectId != null"
>
#{projectId},
</if>
<if
test=
"approveStatus != null"
>
#{approveStatus},
</if>
<if
test=
"approveStatus != null"
>
#{approveStatus},
</if>
<if
test=
"waterNumber != null"
>
#{waterNumber},
</if>
<if
test=
"costType != null"
>
#{costType},
</if>
<if
test=
"costType != null"
>
#{costType},
</if>
<if
test=
"timeOfExpense != null"
>
#{timeOfExpense},
</if>
<if
test=
"timeOfExpense != null"
>
#{timeOfExpense},
</if>
<if
test=
"description != null"
>
#{description},
</if>
<if
test=
"description != null"
>
#{description},
</if>
...
@@ -79,7 +76,6 @@
...
@@ -79,7 +76,6 @@
<trim
prefix=
"SET"
suffixOverrides=
","
>
<trim
prefix=
"SET"
suffixOverrides=
","
>
<if
test=
"projectId != null"
>
project_id = #{projectId},
</if>
<if
test=
"projectId != null"
>
project_id = #{projectId},
</if>
<if
test=
"approveStatus != null"
>
approve_status = #{approveStatus},
</if>
<if
test=
"approveStatus != null"
>
approve_status = #{approveStatus},
</if>
<if
test=
"waterNumber != null"
>
water_nqumber = #{waterNumber},
</if>
<if
test=
"costType != null"
>
cost_type = #{costType},
</if>
<if
test=
"costType != null"
>
cost_type = #{costType},
</if>
<if
test=
"timeOfExpense != null"
>
time_of_expense = #{timeOfExpense},
</if>
<if
test=
"timeOfExpense != null"
>
time_of_expense = #{timeOfExpense},
</if>
<if
test=
"description != null"
>
`description` = #{description},
</if>
<if
test=
"description != null"
>
`description` = #{description},
</if>
...
@@ -101,7 +97,6 @@
...
@@ -101,7 +97,6 @@
p.project_type,
p.project_type,
u.user_name,
u.user_name,
p.project_status,
p.project_status,
fp.water_number,
fp.time_of_expense,
fp.time_of_expense,
fp.cost_type,
fp.cost_type,
fp.sum_money,
fp.sum_money,
...
@@ -140,7 +135,6 @@
...
@@ -140,7 +135,6 @@
fp.unit_price,
fp.unit_price,
fp.amount,
fp.amount,
fp.sum_money,
fp.sum_money,
fp.water_number,
fp.create_time,
fp.create_time,
fp.create_by,
fp.create_by,
fp.update_time,
fp.update_time,
...
...
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