Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 | 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x 60x | import moment from 'moment-timezone'; import NumberFormatter from '../number/format'; const address = { code: 'ENDERECO', name: 'ENDERECO', branch: { name: 'FILIAL', }, }; const baptism = { type: 1, code: 123, }; const cableCut = { productCode: 'P01', quantity: NumberFormatter.format(100, 3), productName: 'PRODUTO', lotNumber: '123', }; const cableCutKardex = { productCode: 'P01', quantity: NumberFormatter.format(100, 3), productName: 'PRODUTO', lotNumber: '123', }; const conferenceVolume = { conferenceVolume: { printDate: moment().format('DD/MM/YYYY HH:mm'), orderNumber: '123', customerCode: 'CODIGO CLIENTE', customerName: 'NOME CLIENTE', carrierName: 'NOME TRANSPORTADORA', outboundVolumeId: 12345, sequence: 1, shipToCity: 'CIDADE', shipToState: 'ESTADO', customerOrderCode: 'PEDIDO CLIENTE', deliveryType: 'TIPO DE ENTREGA', }, volumeCheckList: { productCode: '123', productName: 'NOME PRODUTO', customerProductCode: 'CODIGO', quantity: 123, }, }; const consolidation = { printDate: moment().format('DD/MM/YYYY HH:mm'), customerName: 'CLIENTE SIMULACAO', street: 'RUA', district: 'SETOR', city: 'CIDADE', state: 'UF', orderNumber: '123', erpOrderCode: 'ERP123', invoiceSerie: 'SERIE', invoiceNumber: '000000000', customerOrderCode: 'SIMULADOR', carrierName: 'TRANSPORTADORA', sequence: '1', totalValue: '2', grossWeight: '1.0', barCode: 'SIMULACAO', }; const vale = { deliveryAddressExternalId: '123', deposit: 'DEPOSITO', depositNumber: 'DP', maintenanceOrder: 'PM001', equipment: 'EQ', unloadingPoint: 'TESTE', requesterName: 'TESTE', materialDocument: 'TESTE', typeMaterial: 'TST', invoiceNumber: '123456789', invoiceSerie: '001', grossWeight: '100', representativeOrderCode: 'PC001', accessKey: '123456789987654321', volumesLabel: `2`, corporateName: 'SIMULACAO', carrierName: 'TRANSPORTADORA', printDate: moment().format('DD/MM/YYYY HH:mm'), barCode: '123', }; const customerProduct = { customerProductCode: 'C00001', productCode: 'P00001', productName: 'PRODUTO', }; const ean = { ean: '123456', product: { productCode: 'P00001', name: 'PRODUTO - SIMULACAO DE ETIQUETA', }, }; const lot = '123'; const preConferenceDocument = { orderNumber: 'P00001', supplier: { name: 'TESTE' }, printDate: moment().format('DD/MM/YYYY HH:mm'), }; const preConferenceProduct = { productCode: 'P00001', description: 'PRODUTO - SIMULACAO DE ETIQUETA', fullName: 'SIMULACAO DE ETIQUETA PARA TESTES E AVALIACOES DE DESEMPENHO EM DIVERSAS APLICACOES COM GARANTIA DE QUALIDADE E PRECISAO IDEAL PARA DESENVOLVIMENTO DE PRODUTOS E PROTOTIPAGEM PERMITINDO ATESTAR A FUNCIONALIDADE E A EFICACIA DAS SOLUCOES TESTADAS', curve: 'A', ean: '123', rangeCode: 'range', purchaseOrder: '123456', note: 'OBSERVACAO DO ITEM NA NOTA FISCAL', }; const waveNumber = 'R001'; const serial = { code: '00000000000000', productCode: 'P00001', productionOrder: { code: 'OP123' }, lotNumber: 'lot123', expirationDate: moment(), product: { name: 'PRODUTO - SIMULACAO DE ETIQUETA - UTILIZADO PARA FINS DE TESTES', productEans: [{ ean: '123', factor: 10 }], grossWeight: 10, }, }; const serialGroup = { code: '00000000000000', productCode: 'P00001', quantity: 1000, expirationDate: moment(), lotNumber: 'lot123', product: { name: 'PRODUTO - SIMULACAO DE ETIQUETA - UTILIZADO PARA FINS DE TESTES', productEans: [{ factor: 10 }], grossWeight: 10, }, }; const volumeCheckList = [ { productCode: 'P00001', customerProductCode: 'C00001', productName: 'PRODUTO - SIMULACAO DE ETIQUETA - UTILIZADO PARA FINS DE TESTES', quantity: 123, }, { productCode: 'P00002', customerProductCode: 'C00002', productName: 'PRODUTO 2 - SIMULACAO DE ETIQUETA - UTILIZADO PARA FINS DE TESTES', quantity: 123, }, ]; const fractionalPackaging = { branchName: 'FILIAL', productCode: 'P00001', fullName: 'PRODUTO - SIMULACAO DE ETIQUETA - UTILIZADO PARA FINS DE TESTES', customerOrderCode: 'DOC123', customerCode: 'C00001', customerProductCode: 'P00001C', quantity: 10, unitMeasure: 'UN', date: moment().format('DD/MM/YYYY'), user: 'USUARIO', }; export default { address, baptism, cableCut, cableCutKardex, conferenceVolume, consolidation, vale, customerProduct, ean, lot, preConferenceDocument, preConferenceProduct, waveNumber, serial, serialGroup, volumeCheckList, fractionalPackaging, }; |