Merge pull request #34 from billylo1/covishield-as-az
Stop splitting vaccinename so we can detect AZ correctly
This commit is contained in:
commit
2e373857a2
|
@ -58,8 +58,7 @@ export class Payload {
|
||||||
vaccineNameProper = 'Pfizer (Comirnaty)'
|
vaccineNameProper = 'Pfizer (Comirnaty)'
|
||||||
|
|
||||||
if (vaccineName.includes('MODERNA'))
|
if (vaccineName.includes('MODERNA'))
|
||||||
vaccineNameProper = 'Moderna (SpikeVax)'
|
vaccineNameProper = 'Moderna (SpikeVax)'
|
||||||
// vaccineNameProper = 'Pfizer (Comirnaty)'
|
|
||||||
|
|
||||||
if (vaccineName.includes('ASTRAZENECA') || vaccineName.includes('COVISHIELD'))
|
if (vaccineName.includes('ASTRAZENECA') || vaccineName.includes('COVISHIELD'))
|
||||||
vaccineNameProper = 'AstraZeneca (Vaxzevria)'
|
vaccineNameProper = 'AstraZeneca (Vaxzevria)'
|
||||||
|
|
|
@ -120,8 +120,6 @@ async function loadPDF(signedPdfBuffer : ArrayBuffer): Promise<HashTable<Receipt
|
||||||
}
|
}
|
||||||
return Promise.reject(e);
|
return Promise.reject(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getPdfDetails(fileBuffer: ArrayBuffer): Promise<HashTable<Receipt>> {
|
async function getPdfDetails(fileBuffer: ArrayBuffer): Promise<HashTable<Receipt>> {
|
||||||
|
@ -152,7 +150,6 @@ async function getPdfDetails(fileBuffer: ArrayBuffer): Promise<HashTable<Receipt
|
||||||
}
|
}
|
||||||
if (value.includes('Product name')) {
|
if (value.includes('Product name')) {
|
||||||
vaccineName = (content.items[i+1] as TextItem).str;
|
vaccineName = (content.items[i+1] as TextItem).str;
|
||||||
vaccineName = vaccineName.split(' ')[0];
|
|
||||||
}
|
}
|
||||||
if (value.includes('Date of birth'))
|
if (value.includes('Date of birth'))
|
||||||
dateOfBirth = (content.items[i+1] as TextItem).str;
|
dateOfBirth = (content.items[i+1] as TextItem).str;
|
||||||
|
@ -169,5 +166,4 @@ async function getPdfDetails(fileBuffer: ArrayBuffer): Promise<HashTable<Receipt
|
||||||
Sentry.captureException(e);
|
Sentry.captureException(e);
|
||||||
return Promise.reject(e);
|
return Promise.reject(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue