Fix barcode format and improve scannability
- Changed sequential numbering from slash to hyphen format (TEST-ORD-004-0001) - Increased horizontal barcode bar width from 0.25mm to 0.30mm for better scanning - Increased vertical barcode bar width from 0.15mm to 0.30mm for reliable readability - Changed from 3-digit to 4-digit padding for piece numbers (0001 instead of 001) - Removed aggressive scaling that was distorting barcode bars - Barcodes now use optimal settings for thermal printers and handheld scanners
This commit is contained in:
@@ -495,9 +495,9 @@ function updateLabelPreview(order) {
|
||||
const prodOrder = comandaProductie && cantitate ? `${comandaProductie}-${cantitate}` : 'N/A';
|
||||
document.getElementById('prod-order-value').textContent = prodOrder;
|
||||
|
||||
// Update horizontal barcode with CP format (e.g., CP00000711/001)
|
||||
// Show the first piece number (001) in preview
|
||||
const horizontalBarcodeData = comandaProductie ? `${comandaProductie}/001` : 'SAMPLE001';
|
||||
// Update horizontal barcode with correct format (e.g., TEST-ORD-006-0001)
|
||||
// Show the first piece number (0001) in preview
|
||||
const horizontalBarcodeData = comandaProductie ? `${comandaProductie}-${String(1).padStart(4, '0')}` : 'SAMPLE-0001';
|
||||
document.getElementById('barcode-text').textContent = horizontalBarcodeData;
|
||||
|
||||
// Generate horizontal barcode visual using JsBarcode
|
||||
@@ -533,8 +533,9 @@ function updateLabelPreview(order) {
|
||||
horizontalBarcodeData === 'N/A' ? 'No data' : 'JsBarcode not loaded');
|
||||
}
|
||||
|
||||
// Update vertical barcode with client order format (e.g., Abcderd65)
|
||||
const verticalBarcodeData = comAchizClient && nrLinie ? `${comAchizClient}${nrLinie}` : 'SAMPLE00';
|
||||
// Update vertical barcode with client order format (e.g., CLIENT001/65)
|
||||
// Must match PDF generator format: com_achiz_client/nr_linie_com_client
|
||||
const verticalBarcodeData = comAchizClient && nrLinie ? `${comAchizClient}/${nrLinie}` : '000000/00';
|
||||
document.getElementById('vertical-barcode-text').textContent = verticalBarcodeData;
|
||||
|
||||
// Generate vertical barcode visual using JsBarcode (will be rotated by CSS)
|
||||
@@ -580,8 +581,8 @@ function clearLabelPreview() {
|
||||
document.getElementById('description-value').textContent = 'N/A';
|
||||
document.getElementById('article-code-value').textContent = 'N/A';
|
||||
document.getElementById('prod-order-value').textContent = 'N/A';
|
||||
document.getElementById('barcode-text').textContent = 'SAMPLE001';
|
||||
document.getElementById('vertical-barcode-text').textContent = 'SAMPLE00';
|
||||
document.getElementById('barcode-text').textContent = 'SAMPLE-0001';
|
||||
document.getElementById('vertical-barcode-text').textContent = '000000/00';
|
||||
|
||||
// Generate sample barcodes instead of clearing
|
||||
generateSampleBarcodes();
|
||||
@@ -605,8 +606,8 @@ function generateSampleBarcodes() {
|
||||
horizontalElement.innerHTML = '';
|
||||
console.log('🔍 Horizontal element cleared, generating barcode...');
|
||||
|
||||
// Generate horizontal sample barcode with simpler parameters first
|
||||
JsBarcode(horizontalElement, "SAMPLE001", {
|
||||
// Generate horizontal sample barcode with correct format (dash and 4-digit padding)
|
||||
JsBarcode(horizontalElement, "SAMPLE-0001", {
|
||||
format: "CODE128",
|
||||
width: 1,
|
||||
height: 40,
|
||||
@@ -623,8 +624,8 @@ function generateSampleBarcodes() {
|
||||
verticalElement.innerHTML = '';
|
||||
console.log('🔍 Vertical element cleared, generating barcode...');
|
||||
|
||||
// Generate vertical sample barcode
|
||||
JsBarcode(verticalElement, "SAMPLE00", {
|
||||
// Generate vertical sample barcode with correct format (slash separator)
|
||||
JsBarcode(verticalElement, "000000/00", {
|
||||
format: "CODE128",
|
||||
width: 1,
|
||||
height: 35,
|
||||
@@ -1084,8 +1085,9 @@ function updatePreview(orderData, pieceNumber, totalPieces) {
|
||||
|
||||
const deliveryDate = data_livrare ? new Date(data_livrare).toLocaleDateString() : 'N/A';
|
||||
const clientOrder = com_achiz_client && nr_linie_com_client ? `${com_achiz_client}-${nr_linie_com_client}` : 'N/A';
|
||||
const horizontalBarcode = comanda_productie ? `${comanda_productie}-${String(pieceNumber).padStart(3, '0')}` : 'N/A';
|
||||
const verticalBarcode = clientOrder;
|
||||
const horizontalBarcode = comanda_productie ? `${comanda_productie}-${String(pieceNumber).padStart(4, '0')}` : 'N/A';
|
||||
// Vertical barcode uses slash separator to match PDF generator
|
||||
const verticalBarcode = com_achiz_client && nr_linie_com_client ? `${com_achiz_client}/${nr_linie_com_client}` : '000000/00';
|
||||
const prodOrder = comanda_productie && cantitate ? `${comanda_productie}-${cantitate}` : 'N/A';
|
||||
|
||||
// Update preview elements with correct IDs
|
||||
@@ -1135,8 +1137,9 @@ function generateHTMLLabel(orderData, pieceNumber, totalPieces) {
|
||||
// Format data for label (matching preview format)
|
||||
const deliveryDate = data_livrare ? new Date(data_livrare).toLocaleDateString() : 'N/A';
|
||||
const clientOrder = com_achiz_client && nr_linie_com_client ? `${com_achiz_client}-${nr_linie_com_client}` : 'N/A';
|
||||
const horizontalBarcode = comanda_productie ? `${comanda_productie}-${String(pieceNumber).padStart(3, '0')}` : 'N/A';
|
||||
const verticalBarcode = clientOrder;
|
||||
const horizontalBarcode = comanda_productie ? `${comanda_productie}-${String(pieceNumber).padStart(4, '0')}` : 'N/A';
|
||||
// Vertical barcode uses slash separator to match PDF generator
|
||||
const verticalBarcode = com_achiz_client && nr_linie_com_client ? `${com_achiz_client}/${nr_linie_com_client}` : '000000/00';
|
||||
const prodOrder = comanda_productie && cantitate ? `${comanda_productie}-${cantitate}` : 'N/A';
|
||||
|
||||
const htmlContent = `
|
||||
|
||||
Reference in New Issue
Block a user