Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
bailuntec-cost
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
huluobin
bailuntec-cost
Commits
c107a93d
Commit
c107a93d
authored
Jan 16, 2021
by
huluobin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
# 费用系统 类型
parent
ca5c4fb5
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
5 deletions
+6
-5
CostController.java
.../com/blt/other/module/cost/controller/CostController.java
+0
-1
CostTypeModifyReq.java
.../blt/other/module/cost/dto/request/CostTypeModifyReq.java
+1
-1
CostTypeServiceImpl.java
...t/other/module/cost/service/impl/CostTypeServiceImpl.java
+1
-1
CostTypeMapper.xml
cost-service/src/main/resources/mapper/CostTypeMapper.xml
+4
-2
No files found.
cost-service/src/main/java/com/blt/other/module/cost/controller/CostController.java
View file @
c107a93d
...
...
@@ -365,7 +365,6 @@ public class CostController {
costService
=
CostServiceFactory
.
getCostService
(
costNo
);
costService
.
cashierCallback
(
cashierCallbackUrlVo
);
return
result
;
}
...
...
cost-service/src/main/java/com/blt/other/module/cost/dto/request/CostTypeModifyReq.java
View file @
c107a93d
...
...
@@ -30,6 +30,6 @@ public class CostTypeModifyReq {
private
Integer
currentUserId
;
@ApiModelProperty
(
"是否管理成本"
)
private
Boolean
isMangeCost
;
private
Boolean
isMan
a
geCost
;
}
cost-service/src/main/java/com/blt/other/module/cost/service/impl/CostTypeServiceImpl.java
View file @
c107a93d
...
...
@@ -88,7 +88,7 @@ public class CostTypeServiceImpl extends ServiceImpl<CostTypeDao, CostTypeDomain
costTypeDomain
.
setLastUpdateTime
(
LocalDateTime
.
now
());
costTypeDomain
.
setAccountingSubjectNo
(
req
.
getAccountingSubjectNo
());
costTypeDomain
.
setIsManageCost
(
req
.
getIsMangeCost
());
costTypeDomain
.
setIsManageCost
(
req
.
getIsMan
a
geCost
());
log
.
info
(
"{} 更新会计一级科目"
,
oaUser
.
getUserName
());
...
...
cost-service/src/main/resources/mapper/CostTypeMapper.xml
View file @
c107a93d
...
...
@@ -51,7 +51,8 @@
t1.update_user_id,
t1.last_update_time,
t1.create_user_id,
t1.create_user
t1.create_user,
t1.is_manage_cost
from cost_type t1
left join accounting_subject t2 on t1.accounting_subject_no = t2.subject_no
where t1.id = #{id}
...
...
@@ -68,7 +69,8 @@
t1.update_user_id,
t1.last_update_time,
t1.create_user_id,
t1.create_user
t1.create_user,
t1.is_manage_cost
from cost_type t1
left join accounting_subject t2 on t1.accounting_subject_no = t2.subject_no
where t1.type_no = #{typeNo}
...
...
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