Skip to content

Commit

Permalink
fix(fe-piattaforma): update data limite inserimento massivo servizi 2…
Browse files Browse the repository at this point in the history
…0241001
sgravinadxc committed Oct 1, 2024
1 parent dcb5ca3 commit 4906b2d
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -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 31
agosto 2024
acquisiti al di fuori dalla piattaforma prima del 30
settembre 2024
</strong>
. Inoltre, puoi consultare il{' '}
<strong>registro dei caricamenti massivi</strong> già
4 changes: 2 additions & 2 deletions fe-piattaforma/src/utils/csvUtils.ts
Original file line number Diff line number Diff line change
@@ -80,7 +80,7 @@ export const mandatoryFields: (keyof CSVRecord)[] = [
'SE6',
];

const maxDate = new Date('2024-08-31')
const maxDate = new Date('2024-09-30')

export function encryptFiscalCode(filteredRecord: CSVRecord) {
return filteredRecord.AN3
@@ -143,7 +143,7 @@ export const validateFields = (
if(!isValidDateFormat(record.SE1) || !isValidDate(record.SE1)){ //valido tramite regex
errors.push("La data inserita per il servizio non e' valida.");
} else if (parsedDate > maxDate) {
errors.push("La data del servizio e' successiva al 31 Agosto 2024.");
errors.push("La data del servizio e' successiva al 30 Settembre 2024.");
}
}

0 comments on commit 4906b2d

Please sign in to comment.