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
ca8bebd7
authored
Jan 23, 2026
by
zhu.zewen
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
修复入库单专账的凭证号
parent
34e2b1f5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
jmai-physic/src/main/java/com/jmai/physic/dto/BillDTO.java
jmai-physic/src/main/java/com/jmai/physic/service/impl/PhysicWarehouseServiceImpl.java
jmai-physic/src/main/java/com/jmai/physic/dto/BillDTO.java
View file @
ca8bebd7
...
...
@@ -29,6 +29,9 @@ public class BillDTO {
@ApiModelProperty
(
value
=
"药品数量"
)
private
Integer
physicNum
;
@ApiModelProperty
(
value
=
"凭证号"
)
private
String
voucherNo
;
@ApiModelProperty
(
value
=
"类型(处理模式):1-采购入库、2-申领入库、3-申领出库、4-科室专用入(药品专用登记)"
+
"、5-回收空安瓿、6-退回空安瓿、7-销毁空安瓿、8-药房专用出(药品专用登记),100-日结,101-月结"
)
private
Integer
type
;
...
...
jmai-physic/src/main/java/com/jmai/physic/service/impl/PhysicWarehouseServiceImpl.java
View file @
ca8bebd7
...
...
@@ -126,6 +126,7 @@ public class PhysicWarehouseServiceImpl extends AbstractService implements Phys
BillDTO
billDTO
=
new
BillDTO
();
BeanUtil
.
copyProperties
(
physicWarehouse
,
billDTO
);
billDTO
.
setType
(
1
);
billDTO
.
setVoucherNo
(
physicWarehouse
.
getVoucherNo
());
billDTO
.
setDeptId
(
physicWarehouse
.
getDeptId
());
billDTO
.
setRefId
(
physicWarehouse
.
getId
());
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