Skip to content

Commit

Permalink
Add date of pubblication inPA to excel of calls
Browse files Browse the repository at this point in the history
  • Loading branch information
mspasiano committed Sep 19, 2024
1 parent c234396 commit a20160f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public class PrintService {
);
private final List<String> headCSVCall = Arrays.asList(
"Tipologia", "Codice bando", "Requisiti","Sede di lavoro", "Struttura di riferimento",
"N° G.U.R.I.", "Data G.U.R.I.", "Data scadenza", "Responsabile (Nominativo)",
"N° G.U.R.I.", "Data G.U.R.I.", "Data Pubblicazione inPA","Data scadenza", "Responsabile (Nominativo)",
"Email Responsabile.", "N. Posti", "Profilo/Livello",
"Bando - Num. Protocollo", "Bando - Data Protocollo",
"Commissione - Num. Protocollo", "Commissione - Data Protocollo",
Expand Down Expand Up @@ -2874,6 +2874,8 @@ private void getRecordCSVCall(Session session, Folder callObject, CMISUser user,
row.createCell(column++).setCellValue(callObject.<String>getPropertyValue(JCONONPropertyIds.CALL_NUMERO_GU.value()));
row.createCell(column++).setCellValue(Optional.ofNullable(callObject.getPropertyValue(JCONONPropertyIds.CALL_DATA_GU.value())).map(
map -> dateFormat.format(((Calendar) map).getTime())).orElse(""));
row.createCell(column++).setCellValue(Optional.ofNullable(callObject.getPropertyValue(JCONONPropertyIds.CALL_DATA_INPA.value())).map(
map -> dateFormat.format(((Calendar) map).getTime())).orElse(""));
row.createCell(column++).setCellValue(Optional.ofNullable(callObject.getPropertyValue(JCONONPropertyIds.CALL_DATA_FINE_INVIO_DOMANDE.value())).map(
map -> dateFormat.format(((Calendar) map).getTime())).orElse(""));
List<CMISAuthority> users;
Expand Down

0 comments on commit a20160f

Please sign in to comment.