mirror of
https://gitplac.si/aljaxus/upn-qr.git
synced 2025-12-17 04:00:59 +00:00
change all text to uppercase
This commit is contained in:
16
src/index.js
16
src/index.js
@@ -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}`
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user