Done ticket GEPAFINBE-206 Handled the flagDaFirmare flag from the front-end request and removed it from the properties.

This commit is contained in:
piyushkag
2025-04-07 12:13:32 +05:30
parent 6dd51549e8
commit 1917a853bb
6 changed files with 2 additions and 9 deletions

View File

@@ -96,9 +96,6 @@ public class AppointmentDao {
@Value("${aws.s3.bucket.name}")
private String OLD_BUCKET;
@Value("${flagDaFirmare}")
private Boolean flagDaFirmare;
@Autowired
private HubRepository hubRepository;
@@ -963,7 +960,7 @@ public class AppointmentDao {
UploadDocToExternalSystemRequest.Input input = new UploadDocToExternalSystemRequest.Input();
input.setIdTipoProtocollo(docToExternalSystemRequest.getInput().getIdTipoProtocollo());
input.setIdClassificazione(docToExternalSystemRequest.getInput().getIdClassificazione());
input.setFlagDaFirmare(flagDaFirmare);
input.setFlagDaFirmare(docToExternalSystemRequest.getInput().getFlagDaFirmare());
input.setDescrizione(docToExternalSystemRequest.getInput().getDescrizione());
UploadDocToExternalSystemRequest.Input.Attributes attributes = new UploadDocToExternalSystemRequest.Input.Attributes();