11/19 供应商耗材选入优化

dev_unify
wangwei 5 months ago
parent da5b51268c
commit 8a674aca2e

@ -237,6 +237,10 @@ public class ThrProductsAddDiController {
udiProductEntity.setCatalogname3(thrProductsAddDiEntity.getCatalogname3());
udiProductEntity.setMatrial(thrProductsAddDiEntity.getMatrial());
udiProductEntity.setDiType(1);
if (thrProductsAddDiEntity.getProductsType() != null){
udiProductEntity.setProductsType(thrProductsAddDiEntity.getProductsType());
}
BeanUtil.copyProperties(udiProductEntity, udiRelevanceEntity);
udiRelevanceEntity.setGroupBuy(thrProductsAddDiEntity.getGroupBuy());

@ -245,6 +245,7 @@ public class UdiRelevanceResponse {
private Integer useLeverCount;
private String payFeeCode;
/**
* 使
*/

@ -157,10 +157,9 @@ public class ThrProductsAddDiService extends ServiceImpl<ThrProductsAddDiDao, Th
thrProductsAddDiEntity.setProductsType(thrDiProductsRequest.getProductsType());
}
//医保编码解析
String catalogcode = thrDiProductsRequest.getCatalogcode();
try {
//医保编码解析
String catalogcode = thrDiProductsRequest.getCatalogcode();
if (StrUtil.isNotEmpty(catalogcode) && catalogcode.length() >= 7) {
Integer catalogcode1 = Integer.valueOf(catalogcode.substring(1, 3));
Integer catalogcode2 = Integer.valueOf(catalogcode1 + catalogcode.substring(3, 5));

Loading…
Cancel
Save