|
@@ -117,7 +117,6 @@ public class GetPatentFromExcelThread extends Thread {
|
|
|
WebVOTransformService webVOTransformService = applicationContext.getBean(WebVOTransformService.class);
|
|
|
|
|
|
Patent patent = uploadParamsVO.getPatent();
|
|
|
-
|
|
|
this.loadPatentType(patent);
|
|
|
webVOTransformService.loadGrantNo(patent, patent.getPublicNo(), patent.getGrantNo());
|
|
|
webVOTransformService.loadCountry(patent, false);
|
|
@@ -128,7 +127,6 @@ public class GetPatentFromExcelThread extends Thread {
|
|
|
|
|
|
}
|
|
|
|
|
|
-
|
|
|
//装载标题原文
|
|
|
if (uploadParamsVO.getTitle() != null) {
|
|
|
List<Text> texts = new ArrayList<>();
|
|
@@ -246,10 +244,12 @@ public class GetPatentFromExcelThread extends Thread {
|
|
|
List<String> invetorNames = patentInventorList.stream().map(PatentInventor::getName).collect(Collectors.toList());
|
|
|
webVOTransformService.loadInventor(patent, invetorNames);
|
|
|
}
|
|
|
-
|
|
|
+ //申请人
|
|
|
List<String> applicantNames = uploadParamsVO.getPatentApplicantOriginalName();
|
|
|
webVOTransformService.loadApplicant(patent, applicantNames);
|
|
|
-
|
|
|
+ List<String> address=uploadParamsVO.getPatentApplicantOriginalAddress();
|
|
|
+ //装载申请人地址
|
|
|
+ webVOTransformService.loadApplicantAddr(patent,address);
|
|
|
//权利人
|
|
|
List<String> rightNames = uploadParamsVO.getPatentApplicantCurrentName();
|
|
|
webVOTransformService.loadRightHolder(patent, rightNames);
|