Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
huang.tao
/
jmai-platform
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
41b39a0f
authored
Jan 05, 2026
by
zhu.zewen
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
修复专账类型
parent
31a364ed
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
jmai-physic/src/main/java/com/jmai/physic/service/impl/PhysicAmpouleServiceImpl.java
jmai-physic/src/main/java/com/jmai/physic/service/impl/PhysicStorageAmpouleServiceImpl.java
jmai-physic/src/main/java/com/jmai/physic/service/impl/PhysicAmpouleServiceImpl.java
View file @
41b39a0f
...
@@ -128,7 +128,7 @@ public class PhysicAmpouleServiceImpl extends AbstractService implements PhysicA
...
@@ -128,7 +128,7 @@ public class PhysicAmpouleServiceImpl extends AbstractService implements PhysicA
// 完成 => 转账生成
// 完成 => 转账生成
BillDTO
billDTO
=
new
BillDTO
();
BillDTO
billDTO
=
new
BillDTO
();
BeanUtil
.
copyProperties
(
ampoule
,
billDTO
);
BeanUtil
.
copyProperties
(
ampoule
,
billDTO
);
billDTO
.
setType
(
ampoule
.
getType
().
equals
(
"1"
)?
5
:
6
);
billDTO
.
setType
(
ObjectUtil
.
equals
(
ampoule
.
getType
(),
1
)
?
5
:
6
);
billDTO
.
setDeptId
(
ampoule
.
getDeptId
());
billDTO
.
setDeptId
(
ampoule
.
getDeptId
());
billDTO
.
setRefId
(
ampoule
.
getId
());
billDTO
.
setRefId
(
ampoule
.
getId
());
physicBillService
.
createBill
(
billDTO
);
physicBillService
.
createBill
(
billDTO
);
...
...
jmai-physic/src/main/java/com/jmai/physic/service/impl/PhysicStorageAmpouleServiceImpl.java
View file @
41b39a0f
...
@@ -201,7 +201,7 @@ public class PhysicStorageAmpouleServiceImpl extends AbstractService implements
...
@@ -201,7 +201,7 @@ public class PhysicStorageAmpouleServiceImpl extends AbstractService implements
// 完成 => 转账生成
// 完成 => 转账生成
BillDTO
billDTO
=
new
BillDTO
();
BillDTO
billDTO
=
new
BillDTO
();
BeanUtil
.
copyProperties
(
ampoule
,
billDTO
);
BeanUtil
.
copyProperties
(
ampoule
,
billDTO
);
billDTO
.
setType
(
ampoule
.
getType
().
equals
(
"1"
)
?
5
:
7
);
billDTO
.
setType
(
ObjectUtil
.
equals
(
ampoule
.
getType
(),
1
)
?
5
:
7
);
billDTO
.
setDeptId
(
ampoule
.
getAcceptDeptId
());
billDTO
.
setDeptId
(
ampoule
.
getAcceptDeptId
());
billDTO
.
setRefId
(
ampoule
.
getId
());
billDTO
.
setRefId
(
ampoule
.
getId
());
physicBillService
.
createBill
(
billDTO
);
physicBillService
.
createBill
(
billDTO
);
...
...
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