|
|
|
@ -452,8 +452,8 @@ public class IoCheckInoutService {
|
|
|
|
|
orderDetailResultEntity.setCount(orderDetailCodeEntity.getReCount());
|
|
|
|
|
orderDetailResultEntity.setReCount(orderDetailCodeEntity.getReCount());
|
|
|
|
|
orderDetailResultEntity.setId(null);
|
|
|
|
|
UdiProductEntity product = udiProductService.findProductByNameCode(orderDetailCodeEntity.getNameCode());
|
|
|
|
|
if (product.getProductsType() == 2){
|
|
|
|
|
UdiProductEntity product = udiProductService.findProductByNameCode(orderDetailCodeEntity.getNameCode());
|
|
|
|
|
if (product.getProductsType() == 2) {
|
|
|
|
|
//药品 拿到药品赋值
|
|
|
|
|
orderDetailResultEntity.setSpec(product.getBzgg());
|
|
|
|
|
}
|
|
|
|
@ -579,8 +579,8 @@ public class IoCheckInoutService {
|
|
|
|
|
BeanUtils.copyProperties(orderDetailBizEntity, orderDetailResultEntity);
|
|
|
|
|
orderDetailResultEntity.setId(null);
|
|
|
|
|
orderDetailResultEntity.setReCount(orderDetailBizEntity.getScanCount());
|
|
|
|
|
UdiProductEntity product = udiProductService.findProductByNameCode(orderDetailBizEntity.getNameCode());
|
|
|
|
|
if (product.getProductsType() == 2){
|
|
|
|
|
UdiProductEntity product = udiProductService.findProductByNameCode(orderDetailBizEntity.getNameCode());
|
|
|
|
|
if (product.getProductsType() == 2) {
|
|
|
|
|
//药品 拿到药品赋值
|
|
|
|
|
orderDetailResultEntity.setSpec(product.getBzgg());
|
|
|
|
|
}
|
|
|
|
@ -662,7 +662,6 @@ public class IoCheckInoutService {
|
|
|
|
|
) {
|
|
|
|
|
|
|
|
|
|
if (checkCount(bizEntity, codeEntity) == null) {
|
|
|
|
|
|
|
|
|
|
bizEntity.setCheckSuccess(true);
|
|
|
|
|
codeEntity.setCheckSuccess(true);
|
|
|
|
|
bizEntity.setScanCount(codeEntity.getReCount());
|
|
|
|
@ -719,6 +718,51 @@ public class IoCheckInoutService {
|
|
|
|
|
return errMsg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String bizOrderCheckPass(List<IoOrderDetailBizEntity> orderDetailBizEntities, List<IoOrderDetailCodeEntity> orderDetailCodeEntities) {
|
|
|
|
|
String errMsg = "";
|
|
|
|
|
//初始化默认值
|
|
|
|
|
for (IoOrderDetailCodeEntity codeEntity : orderDetailCodeEntities) {
|
|
|
|
|
codeEntity.setCheckSuccess(false);
|
|
|
|
|
}
|
|
|
|
|
for (IoOrderDetailBizEntity bizEntity : orderDetailBizEntities) {
|
|
|
|
|
bizEntity.setCheckSuccess(false);
|
|
|
|
|
}
|
|
|
|
|
for (IoOrderDetailBizEntity bizEntity : orderDetailBizEntities) {
|
|
|
|
|
String msg = "";
|
|
|
|
|
for (IoOrderDetailCodeEntity codeEntity : orderDetailCodeEntities) {
|
|
|
|
|
if (!bizEntity.isCheckSuccess() && !codeEntity.isCheckSuccess() && checkId(bizEntity, codeEntity) == null
|
|
|
|
|
&& checkBatchNo(bizEntity, codeEntity) == null
|
|
|
|
|
&& checkProductDate(bizEntity, codeEntity) == null
|
|
|
|
|
&& checkExpireDate(bizEntity, codeEntity) == null
|
|
|
|
|
|
|
|
|
|
) {
|
|
|
|
|
|
|
|
|
|
if (checkBizCount(bizEntity, codeEntity) == null) {
|
|
|
|
|
bizEntity.setCheckSuccess(true);
|
|
|
|
|
codeEntity.setCheckSuccess(true);
|
|
|
|
|
bizEntity.setScanCount(codeEntity.getReCount());
|
|
|
|
|
} else {
|
|
|
|
|
msg = "扫码数量超出";
|
|
|
|
|
bizEntity.setCheckSuccess(false);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isEmpty(msg) && !bizEntity.isCheckSuccess()) {
|
|
|
|
|
msg = "三期不匹配";
|
|
|
|
|
}
|
|
|
|
|
bizEntity.setErrMsg(msg);
|
|
|
|
|
}
|
|
|
|
|
for (IoOrderDetailBizEntity bizEntity : orderDetailBizEntities) {
|
|
|
|
|
if (!bizEntity.isCheckSuccess()) {
|
|
|
|
|
errMsg = errMsg + bizEntity.getCoName() + bizEntity.getErrMsg() + ";";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return errMsg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//单据合并校验
|
|
|
|
|
public List<IoOrderCheckResultResponse> combineCheck(List<IoOrderDetailBizEntity> orderDetailBizEntities, List<IoOrderDetailCodeEntity> orderDetailCodeEntities) {
|
|
|
|
|
|
|
|
|
@ -802,7 +846,6 @@ public class IoCheckInoutService {
|
|
|
|
|
&& checkExpireDate(bizEntity, codeEntity) == null
|
|
|
|
|
) {
|
|
|
|
|
if (checkCount(bizEntity, codeEntity) == null) {
|
|
|
|
|
|
|
|
|
|
bizEntity.setCheckSuccess(true);
|
|
|
|
|
codeEntity.setCheckSuccess(true);
|
|
|
|
|
codeEntity.setOrderCount(bizEntity.getCount());
|
|
|
|
@ -1200,4 +1243,19 @@ public class IoCheckInoutService {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 校验业务单扫码数量是否大于扫码单
|
|
|
|
|
*
|
|
|
|
|
* @param bizEntity
|
|
|
|
|
* @param codeEntity
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public String checkBizCount(IoOrderDetailBizEntity bizEntity, IoOrderDetailCodeEntity codeEntity) {
|
|
|
|
|
if (bizEntity.getCount() > codeEntity.getReCount()) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
return bizEntity.getCoName() + "数量不匹配!";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|