Compare commits
7 Commits
dev
...
7644-optim
Author | SHA1 | Date |
---|---|---|
Guillermo Bonet | 76d8c6c668 | |
Guillermo Bonet | b1109af1e8 | |
Guillermo Bonet | fcca2b65c2 | |
Guillermo Bonet | ddeba33f19 | |
Guillermo Bonet | 8edb115c2b | |
Guillermo Bonet | ef017f41d5 | |
Guillermo Bonet | 1a2ed9ce68 |
|
@ -35,8 +35,10 @@ module.exports = {
|
|||
logger.error(`[Print] => ${err.message}`);
|
||||
});
|
||||
|
||||
cluster.on('queue', () =>
|
||||
process.env.SPEC_IS_RUNNING === 'false' && logger.info('Printing task initialized by pool'));
|
||||
cluster.on('queue', () => {
|
||||
if (process.env.SPEC_IS_RUNNING !== 'true')
|
||||
logger.info('Printing task initialized by pool');
|
||||
});
|
||||
});
|
||||
}
|
||||
};
|
||||
|
|
|
@ -7,11 +7,11 @@ table {
|
|||
border: 1px solid;
|
||||
width: 100%;
|
||||
font-size: inherit;
|
||||
page-break-before: always;
|
||||
}
|
||||
td {
|
||||
border: 1px solid;
|
||||
padding: 5px;
|
||||
width: 100%;
|
||||
}
|
||||
span {
|
||||
font-size: 48px;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<table v-for="buy in buys" style="break-before: page">
|
||||
<table v-for="buy in buys" :key="buy.id">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
|
|
|
@ -12,20 +12,28 @@ module.exports = {
|
|||
const date = new Date();
|
||||
this.weekNum = moment(date).isoWeek();
|
||||
this.dayNum = moment(date).day();
|
||||
this.barcodes = [];
|
||||
await this.generateAllBarcodes(this.buys);
|
||||
},
|
||||
methods: {
|
||||
getBarcode(id) {
|
||||
const document = new DOMImplementation().createDocument('http://www.w3.org/1999/xhtml', 'html', null);
|
||||
const svgNode = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
|
||||
generateAllBarcodes(buys) {
|
||||
const uniqueBuyIds = new Set(buys.map(buy => buy.id));
|
||||
for (let buy of uniqueBuyIds) {
|
||||
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: 3.8,
|
||||
height: 115,
|
||||
});
|
||||
return new XMLSerializer().serializeToString(svgNode);
|
||||
jsBarcode(svgNode, buy, {
|
||||
xmlDocument: document,
|
||||
format: 'code128',
|
||||
displayValue: false,
|
||||
width: 3.8,
|
||||
height: 115,
|
||||
});
|
||||
this.barcodes.push({id: buy, barcode: new XMLSerializer().serializeToString(svgNode)});
|
||||
}
|
||||
},
|
||||
getBarcode(id) {
|
||||
return this.barcodes.find(item => item.id === id).barcode;
|
||||
}
|
||||
},
|
||||
props: {
|
||||
|
|
|
@ -6,7 +6,7 @@ color: Color
|
|||
origin: Origin
|
||||
packing: Packing
|
||||
grouping: Grouping
|
||||
unitSale: Un. sale
|
||||
saleUnit: Un. sale
|
||||
producer: Producer
|
||||
control: Control
|
||||
boxNum: Box no.
|
||||
|
|
Loading…
Reference in New Issue