2022-12-12 17:27:45 +00:00
|
|
|
const Component = require(`vn-print/core/component`);
|
|
|
|
const reportBody = new Component('report-body');
|
2022-12-22 07:04:03 +00:00
|
|
|
const jsBarcode = require('jsbarcode');
|
|
|
|
const {DOMImplementation, XMLSerializer} = require('xmldom');
|
2022-12-12 17:27:45 +00:00
|
|
|
const UserError = require('vn-loopback/util/user-error');
|
|
|
|
const qrcode = require('qrcode');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
name: 'expedition-pallet-label',
|
|
|
|
props: {
|
|
|
|
id: {
|
|
|
|
type: Number,
|
|
|
|
required: true,
|
|
|
|
description: 'The pallet id'
|
|
|
|
},
|
|
|
|
userFk: {
|
|
|
|
type: Number,
|
|
|
|
required: true,
|
|
|
|
description: 'The user id'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
async serverPrefetch() {
|
|
|
|
this.labelsData = await this.rawSqlFromDef('labelData', this.id);
|
|
|
|
this.username = await this.findOneFromDef('username', this.userFk);
|
|
|
|
this.labelData = this.labelsData[0];
|
|
|
|
|
|
|
|
let QRdata = JSON.stringify({
|
|
|
|
company: 'vnl',
|
2022-12-12 18:36:11 +00:00
|
|
|
user: this.userFk,
|
2022-12-12 17:27:45 +00:00
|
|
|
created: new Date(),
|
|
|
|
table: 'expeditionPallet',
|
|
|
|
id: this.id
|
|
|
|
});
|
|
|
|
|
|
|
|
this.QR = await this.getQR(QRdata);
|
|
|
|
if (!this.labelsData.length)
|
|
|
|
throw new UserError('Empty data source');
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
getQR(id) {
|
|
|
|
const data = String(id);
|
|
|
|
return qrcode.toDataURL(data, {margin: 0});
|
|
|
|
},
|
2022-12-22 07:04:03 +00:00
|
|
|
getBarcode(id) {
|
|
|
|
const xmlSerializer = new XMLSerializer();
|
|
|
|
const document = new DOMImplementation().createDocument('http://www.w3.org/1999/xhtml', 'html', null);
|
|
|
|
const svgNode = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
|
|
|
|
|
|
|
|
jsBarcode(svgNode, id, {
|
|
|
|
xmlDocument: document,
|
|
|
|
format: 'code128',
|
|
|
|
displayValue: false,
|
|
|
|
width: 6,
|
|
|
|
height: 90,
|
|
|
|
});
|
|
|
|
return xmlSerializer.serializeToString(svgNode);
|
|
|
|
},
|
2022-12-12 17:27:45 +00:00
|
|
|
},
|
|
|
|
components: {
|
|
|
|
'report-body': reportBody.build()
|
|
|
|
},
|
|
|
|
};
|