Updated code

This commit is contained in:
rajesh
2025-05-26 19:12:39 +05:30
parent e8b0d15c04
commit 1f711f407b
2 changed files with 2 additions and 3 deletions

View File

@@ -172,9 +172,8 @@ public class ProtocolDao {
mittenteValue = tipoCorrispondenteWithoutCompany; mittenteValue = tipoCorrispondenteWithoutCompany;
vatNumber = company.getCodiceFiscale(); vatNumber = company.getCodiceFiscale();
} }
mittenteValue=tipoCorrispondenteWithoutCompany;
String companyName = company.getCompanyName() + " " + vatNumber; String companyName = company.getCompanyName() + " " + vatNumber;
String callName = application.getCall().getName(); String callName = application.getCall().getName()+" "+ application.getCall().getId();
String callId = GepafinConstant.PROTOCOL_CALL_NAME+ String.valueOf(application.getCall().getId()); String callId = GepafinConstant.PROTOCOL_CALL_NAME+ String.valueOf(application.getCall().getId());
String pecEmail=company.getPec(); String pecEmail=company.getPec();
String docUrl=applicationSignedDocumentEntity.getFilePath(); String docUrl=applicationSignedDocumentEntity.getFilePath();

View File

@@ -24,7 +24,7 @@ public interface ProtocolService {
@PutMapping(GepafinConstant.PROTOCOL_SERVICE_CREATE_PROTOCOL) @PutMapping(GepafinConstant.PROTOCOL_SERVICE_CREATE_PROTOCOL)
ResponseEntity<Object> createProtocol(@RequestHeader HttpHeaders headers, @RequestParam("CLASSIFICA") String classifica, @RequestParam("ANNO_FASCICOLO") String year, @RequestParam("PROGR_FASCICOLO") String applicationId, ResponseEntity<Object> createProtocol(@RequestHeader HttpHeaders headers, @RequestParam("CLASSIFICA") String classifica, @RequestParam("ANNO_FASCICOLO") String year, @RequestParam("PROGR_FASCICOLO") String applicationId,
@RequestParam("DES_FASCICOLO") String companyName, @RequestParam("PARENT_PROGR_FASCICOLO") String callName, @RequestParam("PARENT_DES_FASCICOLO") String callId, @RequestBody List<Map<String,Object>> requestBody @RequestParam("DES_FASCICOLO") String companyName, @RequestParam("PARENT_DES_FASCICOLO") String callName, @RequestParam("PARENT_PROGR_FASCICOLO") String callId, @RequestBody List<Map<String,Object>> requestBody
); );