Compare commits
2 Commits
33b5ec7be5
...
9014e8bcc8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9014e8bcc8 | ||
|
|
fa43a6579a |
@@ -214,9 +214,17 @@ public class ReportDocumentMainServiceImpl implements ReportDocumentMainService,
|
|||||||
|
|
||||||
//委托单号
|
//委托单号
|
||||||
String entrustCode = "";
|
String entrustCode = "";
|
||||||
|
|
||||||
if(!ObjectUtils.isEmpty(entrustList)){
|
if(!ObjectUtils.isEmpty(entrustList)){
|
||||||
for(BusinessSampleEntrustRegistrationDO entrust : entrustList){
|
for(BusinessSampleEntrustRegistrationDO entrust : entrustList){
|
||||||
entrustCode += entrust.getEntrustNumber() + ",";
|
entrustCode += entrust.getEntrustNumber() + ",";
|
||||||
|
String externalInfomation = entrust.getExternalInfomation();
|
||||||
|
if(!ObjectUtils.isEmpty(externalInfomation)){
|
||||||
|
JSONObject externalInfomationJson = JSONObject.parseObject(externalInfomation);
|
||||||
|
String sampleCategory = externalInfomationJson.getString("sampleCategory");
|
||||||
|
if(!ObjectUtils.isEmpty(sampleCategory))
|
||||||
|
formDataJson.put("sampleCategory", sampleCategory);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user