|
|
|
@ -1,9 +1,11 @@
|
|
|
|
|
package com.glxp.api.res.alihealth;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.util.IdUtil;
|
|
|
|
|
import cn.hutool.json.JSONArray;
|
|
|
|
|
import cn.hutool.json.JSONObject;
|
|
|
|
|
import cn.hutool.json.JSONUtil;
|
|
|
|
|
import com.glxp.api.entity.collect.RelCodeBatch;
|
|
|
|
|
import com.glxp.api.entity.inout.IoCodeLostEntity;
|
|
|
|
|
import com.glxp.api.util.udi.FilterUdiUtils;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
@ -46,48 +48,44 @@ public class AlihealthYljgCodedetailResponse extends AlihealthKytCommonParameter
|
|
|
|
|
// this.setBill_up_out_detail_do(jsonObjectModel.getJSONObject("result_list").getJSONArray("bill_up_out_detail_do"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public List<RelCodeBatch> disposeRelCodeBatch(String customerId){
|
|
|
|
|
List<RelCodeBatch> relCodeBatchList =new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
public List<IoCodeLostEntity> disposeRelCodeBatch(){
|
|
|
|
|
List<IoCodeLostEntity> ioCodeLostEntityList = new ArrayList();
|
|
|
|
|
List<JSONObject> list = (List)this.getCode_full_info_dto();
|
|
|
|
|
if(list != null & list.size() >0){
|
|
|
|
|
for (JSONObject jsonObject : list) {
|
|
|
|
|
RelCodeBatch relCodeBatch = new RelCodeBatch();
|
|
|
|
|
relCodeBatch.setProductCode(FilterUdiUtils.getUdi(jsonObject.getStr("code")).getUdi());
|
|
|
|
|
// relCodeBatch.setSubTypeNo();
|
|
|
|
|
// relCodeBatch.setCascadeRatio();
|
|
|
|
|
relCodeBatch.setPackageSpec(jsonObject.getJSONObject("drug_ent_base_d_t_o").getStr("pkg_spec_crit"));
|
|
|
|
|
// relCodeBatch.setComment();
|
|
|
|
|
IoCodeLostEntity connLostEntity = new IoCodeLostEntity();
|
|
|
|
|
connLostEntity.setId(IdUtil.getSnowflakeNextId());
|
|
|
|
|
connLostEntity.setCode(jsonObject.getStr("code"));
|
|
|
|
|
List<JSONObject> jsonArray = (List) jsonObject.getJSONObject("code_produce_info_d_t_o").getJSONObject("produce_info_list").getJSONArray("produce_info_dto");
|
|
|
|
|
JSONObject produceInfo =jsonArray.get(0);
|
|
|
|
|
relCodeBatch.setBatchNo(produceInfo.getStr("batch_no"));
|
|
|
|
|
relCodeBatch.setMadeDate(produceInfo.getStr("produce_date_str"));
|
|
|
|
|
relCodeBatch.setValidateDate(produceInfo.getStr("expire_date"));
|
|
|
|
|
relCodeBatch.setWorkShop(jsonObject.getJSONObject("p_user_ent_d_t_o").getStr("ent_name"));
|
|
|
|
|
// relCodeBatch.setLineName();
|
|
|
|
|
// relCodeBatch.setLineManager();
|
|
|
|
|
// relCodeBatch.setCreateTime();
|
|
|
|
|
// relCodeBatch.setCreateUser();
|
|
|
|
|
relCodeBatch.setUpdateTime(new Date());
|
|
|
|
|
relCodeBatch.setUpdateUser(customerId);
|
|
|
|
|
relCodeBatch.setUploadFlagUp(0);
|
|
|
|
|
relCodeBatch.setUploadFlagDown(0);
|
|
|
|
|
relCodeBatch.setParentCode(null);
|
|
|
|
|
relCodeBatch.setErpId(customerId);
|
|
|
|
|
relCodeBatch.setCurCode(jsonObject.getStr("code"));
|
|
|
|
|
relCodeBatch.setParentCode(jsonObject.getStr("code"));
|
|
|
|
|
// if(jsonObject.getJSONObject("p_user_ent_d_t_o").equals("1")){
|
|
|
|
|
//
|
|
|
|
|
// }else if(jsonObject.getJSONObject("p_user_ent_d_t_o").equals("2")){
|
|
|
|
|
//
|
|
|
|
|
// }
|
|
|
|
|
relCodeBatch.setOneLevelCount(0);
|
|
|
|
|
relCodeBatch.setTwoLevelCount(0);
|
|
|
|
|
relCodeBatch.setThreeLevelCount(0);
|
|
|
|
|
relCodeBatchList.add(relCodeBatch);
|
|
|
|
|
connLostEntity.setBatchNo(produceInfo.getStr("batch_no"));
|
|
|
|
|
String mabeDate =produceInfo.getStr("produce_date_str");
|
|
|
|
|
String validateDate = produceInfo.getStr("expire_date");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(mabeDate.length() >= 10){
|
|
|
|
|
mabeDate =mabeDate.replace("-","").substring(2,8);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if(validateDate.length() >= 10){
|
|
|
|
|
validateDate = validateDate.replace("-","").substring(2,8);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if(mabeDate.length() == 8){
|
|
|
|
|
mabeDate =mabeDate.replace("-","").substring(2,8);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if(validateDate.length() == 8){
|
|
|
|
|
validateDate = validateDate.replace("-","").substring(2,8);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
connLostEntity.setProduceDate(mabeDate);
|
|
|
|
|
connLostEntity.setExpireDate(validateDate);
|
|
|
|
|
connLostEntity.setId(IdUtil.getSnowflakeNextId());
|
|
|
|
|
connLostEntity.setNameCode(FilterUdiUtils.getUdi(jsonObject.getStr("code")).getUdi());
|
|
|
|
|
ioCodeLostEntityList.add(connLostEntity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return relCodeBatchList;
|
|
|
|
|
return ioCodeLostEntityList;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|