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
c50cfec9
authored
Jan 23, 2026
by
zhu.zewen
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
空安瓿新增已消耗处理类型
parent
ca8bebd7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
jmai-physic/src/main/java/com/jmai/physic/entity/PhysicStorageAmpoule.java
jmai-physic/src/main/java/com/jmai/physic/service/impl/PhysicDestroyCheckServiceImpl.java
jmai-physic/src/main/java/com/jmai/physic/entity/PhysicStorageAmpoule.java
View file @
c50cfec9
...
@@ -36,7 +36,7 @@ public class PhysicStorageAmpoule extends BaseVersionEntity {
...
@@ -36,7 +36,7 @@ public class PhysicStorageAmpoule extends BaseVersionEntity {
private
Integer
expendNum
;
private
Integer
expendNum
;
@ApiModelProperty
(
value
=
"回收处方数量"
)
@ApiModelProperty
(
value
=
"回收处方数量"
)
private
Integer
recycleReceiptNum
;
private
Integer
recycleReceiptNum
;
@ApiModelProperty
(
value
=
"类型:1-接收,2-移至销毁"
)
@ApiModelProperty
(
value
=
"类型:1-接收,2-移至销毁
、3-已销毁
"
)
private
Integer
type
;
private
Integer
type
;
@ApiModelProperty
(
value
=
"销毁状态:0-待销毁 1-已销毁"
)
@ApiModelProperty
(
value
=
"销毁状态:0-待销毁 1-已销毁"
)
...
...
jmai-physic/src/main/java/com/jmai/physic/service/impl/PhysicDestroyCheckServiceImpl.java
View file @
c50cfec9
...
@@ -197,8 +197,9 @@ public class PhysicDestroyCheckServiceImpl extends BaseServiceImpl<PhysicDestroy
...
@@ -197,8 +197,9 @@ public class PhysicDestroyCheckServiceImpl extends BaseServiceImpl<PhysicDestroy
ampoule
.
setAcceptDeptId
(
sysUser
.
getDeptId
());
ampoule
.
setAcceptDeptId
(
sysUser
.
getDeptId
());
ampoule
.
setExpendNum
(
detail
.
getDestroyNum
());
ampoule
.
setExpendNum
(
detail
.
getDestroyNum
());
ampoule
.
setRecycleReceiptNum
(
null
);
ampoule
.
setRecycleReceiptNum
(
null
);
ampoule
.
setType
(
2
);
// 3-已销毁
ampoule
.
setType
(
3
);
ampoule
.
setDestroyStatus
(
1
);
ampoule
.
setDestroyStatus
(
1
);
Integer
batchNoSum
=
physicStorageAmpouleMapper
.
selectCurrentSumByBatchNo
(
detail
.
getPhysicName
(),
detail
.
getPhysicSpec
(),
detail
.
getFactoryName
(),
detail
.
getBatchNo
());
Integer
batchNoSum
=
physicStorageAmpouleMapper
.
selectCurrentSumByBatchNo
(
detail
.
getPhysicName
(),
detail
.
getPhysicSpec
(),
detail
.
getFactoryName
(),
detail
.
getBatchNo
());
...
...
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