|
|
@ -55,59 +55,76 @@ public class AlihealthYljgSinglerelationResponse extends AlihealthKytCommonParam
|
|
|
|
this.setProduce_info_list(codeRelationDto.getJSONObject("produce_info_list"));
|
|
|
|
this.setProduce_info_list(codeRelationDto.getJSONObject("produce_info_list"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public RelCodeBatch disposeRelCodeBatch(String customerId){
|
|
|
|
public List<RelCodeBatch> disposeRelCodeBatch(String customerId){
|
|
|
|
JSONArray jsonArrayBaseInfoDto = this.getBase_infos_dto().getJSONObject("base_info_list").getJSONArray("base_info_dto");
|
|
|
|
JSONArray jsonArrayBaseInfoDto = this.getBase_infos_dto().getJSONObject("base_info_list").getJSONArray("base_info_dto");
|
|
|
|
JSONObject jsonObject = (JSONObject) jsonArrayBaseInfoDto.get(0);
|
|
|
|
JSONObject jsonObject = (JSONObject) jsonArrayBaseInfoDto.get(0);
|
|
|
|
RelCodeBatch relCodeBatch = new RelCodeBatch();
|
|
|
|
// RelCodeBatch relCodeBatch = new RelCodeBatch();
|
|
|
|
List<Map<String, String>> jsonArray = (List) this.getCode_relation_list().get("code_info");
|
|
|
|
List<Map<String, String>> jsonArray = (List) this.getCode_relation_list().get("code_info");
|
|
|
|
Integer oneLevelCount = 0;
|
|
|
|
|
|
|
|
Integer twoLevelCount = 0;
|
|
|
|
|
|
|
|
Integer threeLevelCount = 0;
|
|
|
|
|
|
|
|
String parentCode = null;
|
|
|
|
|
|
|
|
if (jsonArray != null && jsonArray.size() > 0) {
|
|
|
|
|
|
|
|
parentCode = jsonArray.get(0).get("parent_code");
|
|
|
|
|
|
|
|
relCodeBatch.setCurCode(parentCode);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<String> list = new ArrayList<>();
|
|
|
|
|
|
|
|
if (jsonArray != null && jsonArray.size() > 0) {
|
|
|
|
for (Map<String, String> map : jsonArray) {
|
|
|
|
for (Map<String, String> map : jsonArray) {
|
|
|
|
switch (map.get("code_level")) {
|
|
|
|
list.add(map.get("parent_code"));
|
|
|
|
case "1":
|
|
|
|
|
|
|
|
oneLevelCount++;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "2":
|
|
|
|
|
|
|
|
twoLevelCount++;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "3":
|
|
|
|
|
|
|
|
threeLevelCount++;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// relCodeBatch.setId();
|
|
|
|
Set<String> set = new HashSet<>(list);
|
|
|
|
relCodeBatch.setProductCode(FilterUdiUtils.getUdi(parentCode).getUdi());
|
|
|
|
List<RelCodeBatch> batchList = new ArrayList<>();
|
|
|
|
relCodeBatch.setSubTypeNo(this.getCode_active_info_dto().getStr("relation_type"));
|
|
|
|
for (String parentCode : set) {
|
|
|
|
relCodeBatch.setCascadeRatio(jsonObject.getStr("pkg_ratio"));
|
|
|
|
if(StringUtils.isNotEmpty(parentCode)){
|
|
|
|
relCodeBatch.setPackageSpec(jsonObject.getStr("pkg_spec"));
|
|
|
|
RelCodeBatch relCodeBatch = new RelCodeBatch();
|
|
|
|
|
|
|
|
Integer oneLevelCount = 0;
|
|
|
|
|
|
|
|
Integer twoLevelCount = 0;
|
|
|
|
|
|
|
|
Integer threeLevelCount = 0;
|
|
|
|
|
|
|
|
for (Map<String, String> map : jsonArray) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(!parentCode.equals(map.get("code")) && parentCode.equals(map.get("parent_code"))){
|
|
|
|
|
|
|
|
switch (map.get("code_level")) {
|
|
|
|
|
|
|
|
case "1":
|
|
|
|
|
|
|
|
oneLevelCount++;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "2":
|
|
|
|
|
|
|
|
twoLevelCount++;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "3":
|
|
|
|
|
|
|
|
threeLevelCount++;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
relCodeBatch.setCurCode(parentCode);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
relCodeBatch.setProductCode(FilterUdiUtils.getUdi(parentCode).getUdi());
|
|
|
|
|
|
|
|
relCodeBatch.setSubTypeNo(this.getCode_active_info_dto().getStr("relation_type"));
|
|
|
|
|
|
|
|
relCodeBatch.setCascadeRatio(jsonObject.getStr("pkg_ratio"));
|
|
|
|
|
|
|
|
relCodeBatch.setPackageSpec(jsonObject.getStr("pkg_spec"));
|
|
|
|
// relCodeBatch.setComment();
|
|
|
|
// relCodeBatch.setComment();
|
|
|
|
relCodeBatch.setBatchNo(jsonObject.getStr("produce_batch_no"));
|
|
|
|
relCodeBatch.setBatchNo(jsonObject.getStr("produce_batch_no"));
|
|
|
|
relCodeBatch.setMadeDate(jsonObject.getStr("produce_date"));
|
|
|
|
relCodeBatch.setMadeDate(jsonObject.getStr("produce_date"));
|
|
|
|
relCodeBatch.setValidateDate(jsonObject.getStr("exprie_date"));
|
|
|
|
relCodeBatch.setValidateDate(jsonObject.getStr("exprie_date"));
|
|
|
|
relCodeBatch.setWorkShop(jsonObject.getStr("exprie_date"));
|
|
|
|
relCodeBatch.setWorkShop(jsonObject.getStr("exprie_date"));
|
|
|
|
// relCodeBatch.setLineName();
|
|
|
|
// relCodeBatch.setLineName();
|
|
|
|
relCodeBatch.setLineManager(jsonObject.getStr("oper_ic_name"));
|
|
|
|
relCodeBatch.setLineManager(jsonObject.getStr("oper_ic_name"));
|
|
|
|
// relCodeBatch.setCreateTime();
|
|
|
|
// relCodeBatch.setCreateTime();
|
|
|
|
// relCodeBatch.setCreateUser();
|
|
|
|
// relCodeBatch.setCreateUser();
|
|
|
|
relCodeBatch.setUpdateTime(new Date());
|
|
|
|
relCodeBatch.setUpdateTime(new Date());
|
|
|
|
relCodeBatch.setUpdateUser(customerId);
|
|
|
|
relCodeBatch.setUpdateUser(customerId);
|
|
|
|
relCodeBatch.setUploadFlagUp(0);
|
|
|
|
relCodeBatch.setUploadFlagUp(0);
|
|
|
|
relCodeBatch.setUploadFlagDown(0);
|
|
|
|
relCodeBatch.setUploadFlagDown(0);
|
|
|
|
relCodeBatch.setParentCode(null);
|
|
|
|
relCodeBatch.setParentCode(null);
|
|
|
|
relCodeBatch.setErpId(customerId);
|
|
|
|
relCodeBatch.setErpId(customerId);
|
|
|
|
|
|
|
|
|
|
|
|
relCodeBatch.setOneLevelCount(oneLevelCount);
|
|
|
|
relCodeBatch.setOneLevelCount(oneLevelCount);
|
|
|
|
relCodeBatch.setTwoLevelCount(twoLevelCount);
|
|
|
|
relCodeBatch.setTwoLevelCount(twoLevelCount);
|
|
|
|
relCodeBatch.setThreeLevelCount(threeLevelCount);
|
|
|
|
relCodeBatch.setThreeLevelCount(threeLevelCount);
|
|
|
|
|
|
|
|
batchList.add(relCodeBatch);
|
|
|
|
return relCodeBatch;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// relCodeBatch.setId();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return batchList;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -116,7 +133,7 @@ public class AlihealthYljgSinglerelationResponse extends AlihealthKytCommonParam
|
|
|
|
List<Map<String, String>> jsonArray = (List) this.getCode_relation_list().get("code_info");
|
|
|
|
List<Map<String, String>> jsonArray = (List) this.getCode_relation_list().get("code_info");
|
|
|
|
if (jsonArray != null && jsonArray.size() > 0) {
|
|
|
|
if (jsonArray != null && jsonArray.size() > 0) {
|
|
|
|
for (Map<String, String> map : jsonArray) {
|
|
|
|
for (Map<String, String> map : jsonArray) {
|
|
|
|
if (!Objects.isNull(map)) {
|
|
|
|
if (!Objects.isNull(map) && StringUtils.isNotEmpty(map.get("parent_code"))) {
|
|
|
|
RelCodeDetail relCodeDetail = new RelCodeDetail();
|
|
|
|
RelCodeDetail relCodeDetail = new RelCodeDetail();
|
|
|
|
relCodeDetail.setCurCode(map.get("code"));
|
|
|
|
relCodeDetail.setCurCode(map.get("code"));
|
|
|
|
relCodeDetail.setPackLayer(Integer.valueOf(map.get("code_level")));
|
|
|
|
relCodeDetail.setPackLayer(Integer.valueOf(map.get("code_level")));
|
|
|
|