You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When connecting to a multi-line account, not all bills are download.
Looking in source code, I think there is an error in the file name generation.
if (isMultiline && !dataFactMulti) {
bill.phonenumber = number
bill.titulaire = titulaire
}
if (date.year() > 2011) {
bill.fileurl = pdfUrl
bill.filename = getFileName(date)
}
The phone and titulaire data are not used to generate file name so the file name is ${date.format('YYYYMM')}_freemobile.pdfeven if there is multi-lines.
The file name need to be ${date.format('YYYYMM')}_freemobile_${bill.phonenumber}.pdfif phonenumber exists.
Best regards
The text was updated successfully, but these errors were encountered:
Hy,
When connecting to a multi-line account, not all bills are download.
Looking in source code, I think there is an error in the file name generation.
The phone and titulaire data are not used to generate file name so the file name is
${date.format('YYYYMM')}_freemobile.pdf
even if there is multi-lines.The file name need to be
${date.format('YYYYMM')}_freemobile_${bill.phonenumber}.pdf
if phonenumber exists.Best regards
The text was updated successfully, but these errors were encountered: