Commit c50cfec9 by zhu.zewen

空安瓿新增已消耗处理类型

parent ca8bebd7
......@@ -36,7 +36,7 @@ public class PhysicStorageAmpoule extends BaseVersionEntity {
private Integer expendNum;
@ApiModelProperty(value = "回收处方数量")
private Integer recycleReceiptNum;
@ApiModelProperty(value = "类型:1-接收,2-移至销毁")
@ApiModelProperty(value = "类型:1-接收,2-移至销毁、3-已销毁")
private Integer type;
@ApiModelProperty(value = "销毁状态:0-待销毁 1-已销毁")
......
......@@ -197,8 +197,9 @@ public class PhysicDestroyCheckServiceImpl extends BaseServiceImpl<PhysicDestroy
ampoule.setAcceptDeptId(sysUser.getDeptId());
ampoule.setExpendNum(detail.getDestroyNum());
ampoule.setRecycleReceiptNum(null);
ampoule.setType(2);
// 3-已销毁
ampoule.setType(3);
ampoule.setDestroyStatus(1);
Integer batchNoSum = physicStorageAmpouleMapper.selectCurrentSumByBatchNo(detail.getPhysicName(), detail.getPhysicSpec(), detail.getFactoryName(), detail.getBatchNo());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment