|
|
@@ -67,13 +67,13 @@ public class LogoPatentService {
|
|
|
record.setSort(logoPatentRepo.findMax());
|
|
|
}
|
|
|
record.setUwNo(this.getUwNo(record));
|
|
|
+ record.setLogoWorkflow(LogoWorkflow.IS_CONTRACT);
|
|
|
+ record.setApplyStatus(ApplyStatus.APPLY_STAGE);
|
|
|
record = logoPatentRepo.save(record);
|
|
|
// 保存附件
|
|
|
if (CollectionUtils.isNotEmpty(record.getAttachments())) {
|
|
|
attachmentService.batchSave(record.getAttachments(), id, record.getId());
|
|
|
}
|
|
|
- record.setLogoWorkflow(LogoWorkflow.IS_CONTRACT);
|
|
|
- record.setApplyStatus(ApplyStatus.APPLY_STAGE);
|
|
|
return record;
|
|
|
}
|
|
|
|