Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
huatu_API
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
liudong1993
huatu_API
Commits
14d652ca
Commit
14d652ca
authored
Sep 22, 2025
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
cddb18f8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
212 additions
and
6 deletions
+212
-6
FinanceWorkFlowModule_p3.cs
REBORN.Module.FinanceModule/FinanceWorkFlowModule_p3.cs
+191
-0
FinancialService2.cs
REBORN.Services.FinanceService/FinancialService2.cs
+21
-6
No files found.
REBORN.Module.FinanceModule/FinanceWorkFlowModule_p3.cs
View file @
14d652ca
This diff is collapsed.
Click to expand it.
REBORN.Services.FinanceService/FinancialService2.cs
View file @
14d652ca
...
...
@@ -1649,20 +1649,35 @@ namespace REBORN.Services.FinanceService
JObject
parms
=
JObject
.
Parse
(
request
.
msg
.
ToString
());
int
FrId
=
parms
.
GetInt
(
"FrId"
,
0
);
decimal
Fee
=
parms
.
GetDecimal
(
"Fee"
);
if
(
FrId
<=
0
)
{
return
ApiResult
.
ParamIsNull
(
"请传递单据ID"
);
}
string
msg
=
financialModule2
.
UpdateFinanceFee
(
FrId
,
Fee
,
userInfo
);
if
(
msg
==
""
)
//查询一下 是否付款单
var
fmodel
=
module
.
GetFinanceModel
(
FrId
);
if
(
fmodel
.
Type
==
Common
.
Enum
.
User
.
WFTempLateClassEnum
.
OUT
)
{
return
ApiResult
.
Success
();
string
msg
=
WorkFlowModule
.
UpdateTransactionFee
(
FrId
,
Fee
,
userInfo
);
if
(
msg
==
""
)
{
return
ApiResult
.
Success
();
}
else
{
return
ApiResult
.
Failed
(
msg
);
}
}
else
{
return
ApiResult
.
Failed
(
msg
);
string
msg
=
financialModule2
.
UpdateFinanceFee
(
FrId
,
Fee
,
userInfo
);
if
(
msg
==
""
)
{
return
ApiResult
.
Success
();
}
else
{
return
ApiResult
.
Failed
(
msg
);
}
}
}
...
...
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