feat(collection-label): refs #6602 add qr to the report #2292

Merged
pablone merged 5 commits from 6602-barcode-to-qr into dev 2024-05-03 11:52:23 +00:00
1 changed files with 3 additions and 5 deletions
Showing only changes of commit 6868863e54 - Show all commits

View File

@ -1,9 +1,7 @@
const qrCode = require('qrcode');
const jsBarcode = require('jsbarcode');
const {DOMImplementation, XMLSerializer} = require('xmldom');
const vnReport = require('../../../core/mixins/vn-report.js');
const {TRUE} = require('node-sass');
const {toDataURL} = require('qrcode');
const jsBarcode = require('jsbarcode');
module.exports = {
name: 'collection-label',
@ -50,7 +48,7 @@ module.exports = {
table: 'ticket',
id: ticketFk
});
return qrCode.toDataURL(QRdata, {margin: 0});
return toDataURL(QRdata, {margin: 0});
},
getBarcode(id) {
const xmlSerializer = new XMLSerializer();