change all text to uppercase

This commit is contained in:
Aljaz S
2021-11-16 22:42:04 +01:00
parent 0e0c104e5d
commit 54c46fc6bd

View File

@@ -74,20 +74,20 @@ app.get('/api/qrcode', async (req, res) => {
${req.query.client_name} ${String(req.query.client_name).toUpperCase()}
${req.query.client_address} ${String(req.query.client_address).toUpperCase()}
${req.query.client_city} ${String(req.query.client_city).toUpperCase()}
${req.query.amount} ${req.query.amount}
${req.query.purpose_code} ${String(req.query.purpose_code).toUpperCase()}
${req.query.payment_purpose} ${String(req.query.payment_purpose).toUpperCase()}
${req.query.iban} ${req.query.iban}
${req.query.reference} ${req.query.reference}
${req.query.issuer_name} ${String(req.query.issuer_name).toUpperCase()}
${req.query.issuer_address} ${String(req.query.issuer_address).toUpperCase()}
${req.query.issuer_city}` ${String(req.query.issuer_city).toUpperCase()}`
text = `${text}\n${text.length + 1}` text = `${text}\n${text.length + 1}`