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}
|
||||
${req.query.client_address}
|
||||
${req.query.client_city}
|
||||
${String(req.query.client_name).toUpperCase()}
|
||||
${String(req.query.client_address).toUpperCase()}
|
||||
${String(req.query.client_city).toUpperCase()}
|
||||
${req.query.amount}
|
||||
|
||||
|
||||
${req.query.purpose_code}
|
||||
${req.query.payment_purpose}
|
||||
${String(req.query.purpose_code).toUpperCase()}
|
||||
${String(req.query.payment_purpose).toUpperCase()}
|
||||
|
||||
${req.query.iban}
|
||||
${req.query.reference}
|
||||
${req.query.issuer_name}
|
||||
${req.query.issuer_address}
|
||||
${req.query.issuer_city}`
|
||||
${String(req.query.issuer_name).toUpperCase()}
|
||||
${String(req.query.issuer_address).toUpperCase()}
|
||||
${String(req.query.issuer_city).toUpperCase()}`
|
||||
|
||||
text = `${text}\n${text.length + 1}`
|
||||
|
||||
|
||||
Reference in New Issue
Block a user