Skip to content

Commit

Permalink
fix(fe-piattaforma): aggiornata data limite ins servizi
Browse files Browse the repository at this point in the history
  • Loading branch information
sgravinadxc committed Aug 5, 2024
1 parent e802832 commit a0161f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ export default function CSVUploadBanner(props: {
cittadini e ai servizi di facilitazione erogati presso
le sedi del tuo ente e{' '}
<strong>
acquisiti al di fuori dalla piattaforma prima del 30
giugno 2024
acquisiti al di fuori dalla piattaforma prima del 31
luglio 2024
</strong>
. Inoltre, puoi consultare il{' '}
<strong>registro dei caricamenti massivi</strong> già
Expand Down
4 changes: 2 additions & 2 deletions fe-piattaforma/src/utils/csvUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export const mandatoryFields: (keyof CSVRecord)[] = [
'SE6',
];

const maxDate = new Date('2024-06-30')
const maxDate = new Date('2024-07-31')

export function encryptFiscalCode(filteredRecord: CSVRecord) {
return filteredRecord.AN3
Expand Down Expand Up @@ -143,7 +143,7 @@ export const validateFields = (
if(!isValidDateFormat(record.SE1)){
errors.push("La data inserita per il servizio non e' valida.");
} else if (parsedDate > maxDate) {
errors.push("La data del servizio e' successiva al 30 Giugno 2024.");
errors.push("La data del servizio e' successiva al 31 Luglio 2024.");
}
}

Expand Down

0 comments on commit a0161f0

Please sign in to comment.