Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dc-cost-system
Overview
Overview
Details
Activity
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
bltdc
dc-cost-system
Commits
70e1f364
Commit
70e1f364
authored
Jul 24, 2019
by
wutong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
推送到财务系统三处都加上费用大类
parent
947b072e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
CostCheckController.java
.../blt/other/other_cost/controller/CostCheckController.java
+2
-1
CostCheckLendController.java
.../other/other_cost/controller/CostCheckLendController.java
+2
-4
No files found.
cost-core/src/main/java/com/blt/other/other_cost/controller/CostCheckController.java
View file @
70e1f364
...
...
@@ -473,7 +473,8 @@ public class CostCheckController {
detailKey
=
cost
.
getCostNo
();
}
requestEntity
.
add
(
"DetailKey"
,
detailKey
);
// 回调必要的key参数(DetailKey)不能为空;
// 吴通 增加费用大类
requestEntity
.
add
(
"TypeName"
,
cost
.
getTypeName
());
Map
<
String
,
Object
>
map
=
requestEntity
.
toSingleValueMap
();
String
s
=
JSON
.
toJSONString
(
map
);
logger
.
info
(
cost
.
getCostNo
()+
" 费用单提交财务审核信息:"
+
s
);
...
...
cost-core/src/main/java/com/blt/other/other_cost/controller/CostCheckLendController.java
View file @
70e1f364
...
...
@@ -227,23 +227,21 @@ public class CostCheckLendController {
applyMoneyDetail
.
setName
(
name
);
requestEntity
.
add
(
"UserAcctID"
,
""
+
costDomain
.
getCreateUserid
());
requestEntity
.
add
(
"UserAcctName"
,
""
+
costDomain
.
getCreateUsername
());
// 申请人(UserAcctID/UserAcctName)不存在;
// 账期 0 PayDay
requestEntity
.
add
(
"PayDay"
,
0
);
// 预计付款时间 ExpectPayTime
requestEntity
.
add
(
"ExpectPayTime"
,
new
Date
());
applyMoneyDetail
.
setRemark
(
""
);
applyMoneyDetailList
.
add
(
applyMoneyDetail
);
requestEntity
.
add
(
"MoneyDetail"
,
applyMoneyDetailList
);
// 出纳申请金额明细(MoneyDetail)不可为空;
// 设置 detailKey
String
detailKey
=
costDomain
.
getDetailKey
();
if
(
null
==
detailKey
||
!
detailKey
.
contains
(
"F"
)){
detailKey
=
costDomain
.
getCostNo
();
}
requestEntity
.
add
(
"DetailKey"
,
detailKey
);
// 回调必要的key参数(DetailKey)不能为空;
// 吴通 增加费用大类
requestEntity
.
add
(
"TypeName"
,
costDomain
.
getTypeName
());
Map
<
String
,
Object
>
map
=
requestEntity
.
toSingleValueMap
();
String
s
=
JSON
.
toJSONString
(
map
);
logger
.
warn
(
name
+
"提交财务审核信息:"
+
s
);
...
...
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