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 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 | 5x 5x 4x 1x 3x 3x 1x 2x 2x 1x 12x 12x 1x 11x 1x 10x 1x 9x 9x 1x 8x 3x 2x 1x 1x 6x 1x 5x 1x 4x 2x 2x 1x 3x 3x 3x 3x 1x 2x 1x 12x 12x 12x 12x 1x 11x 11x 11x 1x 10x 10x 10x 4x 1x 3x 1x 2x 1x 6x 5x 2x 1x 4x 3x 2x 2x 2x 1x 1x 3x 3x 3x 3x 3x 1x 2x 2x 2x 1x 3x 3x 2x 2x 2x 2x 1x 1x 2x 1x 10x 10x 10x 1x 9x 1x 8x 1x 7x 7x 7x 1x 6x 6x 1x 5x 5x 1x 4x 1x 3x 1x 2x 1x 3x 3x 3x 3x 3x 1x 2x 1x | /* eslint-disable no-restricted-syntax */ import moment from 'moment-timezone'; import { Op } from 'sequelize'; import APIError from '../helpers/error'; import { t } from '../helpers/i18n'; import BranchInformation from '../source/branches/information'; import OutboundOrderInformation from '../source/outboundOrders/information'; import ProductBranchInformation from '../source/productBranches/information'; import ProductInformation from '../source/products/information'; import ReturnPickingInformation from '../source/returnPicking/information'; import StockBalanceInformation from '../source/stock/information'; import StorageAddressInformation from '../source/storageAddresses/information'; import UserInformation from '../source/users/information'; function validFilterDates(req) { const { filterStartDate, filterEndDate, orderNumber } = req.query; if (!orderNumber) { if (!filterStartDate || !filterEndDate) { throw new APIError( 'DATE_MISSING', t('BEE1212' /* Não foi informada a data inicial ou final */) ); } const validStartDate = moment(filterStartDate).isValid(); if (!validStartDate) { throw new APIError( 'INVALID_START_DATE', t('BEE1213' /* A data inicial informada não é válida */) ); } const validEndDate = moment(filterEndDate).isValid(); if (!validEndDate) { throw new APIError( 'INVALID_END_DATE', t('BEE1214' /* A data final informada não é válida */) ); } } } async function validCreateDocument(req) { const { outboundOrderId, orderNumber, branchCode } = req.body; if (!outboundOrderId) { throw new APIError( 'DOCUMENT_NOT_FOUND', t('BEE1915' /* Documento não localizada */) ); } else if (!orderNumber) { throw new APIError( 'DOCUMENT_NOT_FOUND', t('BEE1914' /* Documento de devolução não localizada */) ); } else if (!branchCode) { throw new APIError( 'BRANCH_NOT_FOUND', t('BEE1913' /* filial não localizada */) ); } const outboundOrder = await OutboundOrderInformation.getOutboundOrder({ id: outboundOrderId, }); if (!outboundOrder) throw new APIError('', t('BEE1915' /* Documento não localizada */)); if (outboundOrder.status > 6 && outboundOrder.status < 12) { if ( outboundOrder.typeOrders ? outboundOrder.typeOrders.awaitBilling : outboundOrder.orderType === 'LJ' || outboundOrder.orderType === 'CR' ) { if ( outboundOrder.status === 9 && outboundOrder.invoiceNumber && outboundOrder.invoiceNumber !== '' ) { throw new APIError( '', t( 'BEE2964' /* O status do documento não permite a devolução de picking */ ) ); } } else throw new APIError( '', t( 'BEE2964' /* O status do documento não permite a devolução de picking */ ) ); } if (outboundOrder.status === 13) throw new APIError( '', t('BEE3156' /* Documento de saída já foi devolvido */) ); if (outboundOrder.dockControlId) throw new APIError( '', t('BEE3157' /* Documento de saída relacionado ao controle de doca */) ); if (outboundOrder.outboundVolume && outboundOrder.outboundVolume.length > 0) { for (const volume of outboundOrder.outboundVolume) { if (volume.status > 3) throw new APIError( '', t( 'BEE3158' /* Documento de saída possui volumes relacionados a uma doca. */ ) ); } } } async function validBranchInInventory(req) { const { branchCode } = req.body; const user = await UserInformation.getUser({ id: req.userId }); const existBranch = await BranchInformation.getBranch({ code: user.mainBranch, }); if (!existBranch) { throw new APIError( '', t('BEE1170', { 0: branchCode } /* Filial %{0} não localizada */) ); } if (existBranch.branchInInventory) { throw new APIError('', t('BEE3015' /* Filial em processo de Inventário */)); } } async function validSharedAddress(req) { const { returnPickingOrderProductId, addressSelected, lotNumber, expirationDate, } = req.body; const { userMainBranch } = req; const storageAddress = await StorageAddressInformation.getStorageAddress({ code: addressSelected, branchCode: userMainBranch, }); if (!storageAddress) { throw new APIError( '', t('BEE3159', { 0: addressSelected } /* Endereço não localizado! (%{0}) */) ); } const stockBalance = await StockBalanceInformation.getStockBalance({ branchCode: storageAddress.branchCode, addressCode: storageAddress.code, quantity: { [Op.gt]: 0 }, }); const returnProduct = await ReturnPickingInformation.getReturnPickingProduct({ id: returnPickingOrderProductId, }); if (!returnProduct) { throw new APIError( '', t( 'BEE3160', { 0: returnPickingOrderProductId, } /* Produto de devolução não localizado! (%{0}) */ ) ); } const product = await ProductInformation.getProduct({ productCode: returnProduct.productCode, }); const productBranch = await ProductBranchInformation.getProductBranch({ branchCode: storageAddress.branchCode, productCode: product.productCode, }); if (stockBalance && stockBalance.productCode !== product.productCode) { if (!storageAddress.shareAddress) { throw new APIError( '', t('BEE3048' /* Endereço não compartilha espaço */) ); } if (!productBranch) { throw new APIError( '', t( 'BEE3161', { 0: storageAddress.branchCode, 1: product.productCode, } /* Produto filial não localizado! (%{0} - %{1}) */ ) ); } if (!productBranch.shareAddress) { throw new APIError( '', t('BEE3049' /* Produto não compartilha Endereço! */) ); } } else if (stockBalance) { if ( lotNumber && product.stockControlType === 3 && stockBalance.lotNumber !== lotNumber ) { if ( !productBranch.storeProductsWithDifferentLotsAtSameAddress || !stockBalance.address.shareAddressOfProductsWithDifferentLots ) { throw new APIError( '', t('BEE2987' /* Lote diferente do endereço de armazenamento! */) ); } } if (product.controlExpirationDate && stockBalance.expirationDate) { if (expirationDate) { const dateExpBalance = moment .utc(stockBalance.expirationDate) .startOf('day'); const dateExpirationDate = moment.utc(expirationDate).startOf('day'); if (!dateExpBalance.isSame(dateExpirationDate)) { throw new APIError( '', t( 'BEE3162' /* Data de validade diferente do endereço de armazenamento! */ ) ); } } else { throw new APIError( '', t( 'BEE3162' /* Data de validade diferente do endereço de armazenamento! */ ) ); } } } } async function validProductBranch(req) { const { orderNumber } = req.query; const { userMainBranch } = req; const query = { orderNumber, branchCode: userMainBranch || '', }; const returnPickingOrder = await ReturnPickingInformation.getReturnPickingOrdersMobile(query); if (!returnPickingOrder || returnPickingOrder.length <= 0) { throw new APIError( '', t('BEE1911' /* Documento de devolução de picking não encontrado! */) ); } else { for (const returnPickingProduct of returnPickingOrder[0].products) { const productBranch = await ProductBranchInformation.validProductBranch({ branchCode: returnPickingOrder[0].branchCode, productCode: returnPickingProduct.productCode, }); if (!productBranch) { throw new APIError( '', t( 'BEE1229', { 0: `${returnPickingProduct.productCode} ${returnPickingOrder[0].branchCode}`, } /* Produto filial %{0} não localizado */ ) ); } } } } async function validSerialGroup(req) { const { serialLabels = [], orderNumber } = req.body; if (serialLabels.length > 0) { let lOK = true; for (const serialLabel of serialLabels) { const movement = await StockBalanceInformation.getStockMovement({ orderNumber, operation: 'DEV', serialLabelId: serialLabel.serialLabelId, serialGroupId: serialLabel.serialGroupId, }); if (movement) { lOK = false; break; } } if (!lOK) { throw new APIError( '', t( 'BEE3272' /* A etiqueta informada já foi devolvida! Informe outra etiqueta serial válida. */ ) ); } } } async function validDocument(req) { const { orderNumber = '', returnPickingOrderProductId, addressSelected, quantity, } = req.body; const { userMainBranch } = req; if (!orderNumber) throw new APIError( '', t('BEE1310' /* Número do documento deve ser informado */) ); if (!returnPickingOrderProductId) throw new APIError('', t('BEE1218' /* ID do produto não informado */)); if (!addressSelected) throw new APIError('', t('BEE2128' /* Endereço não informado */)); const returnPickingOrder = await ReturnPickingInformation.getReturnPickingOrdersMobile({ orderNumber, branchCode: userMainBranch || '', productStatus: 1, status: 1, }); const validProduct = returnPickingOrder && returnPickingOrder.length && returnPickingOrder[0].products && returnPickingOrder[0].products.length; if (!validProduct) throw new APIError('', t('BEE1436' /* Nenhum produto encontrado ! */)); const existAddress = await StorageAddressInformation.getStorageAddress({ code: addressSelected, branchCode: userMainBranch || '', }); if (!existAddress) throw new APIError( '', t('BEE1301' /* Endereço informado não cadastrado ! */) ); const returnPickingOrderProduct = await ReturnPickingInformation.getReturnPickingProduct({ id: returnPickingOrderProductId, }); if (!returnPickingOrderProduct) { throw new APIError( '', t('BEE3160', {} /* Produto de devolução não localizado! (%{0}) */) ); } else if (returnPickingOrderProduct.status === 2) { throw new APIError( '', t( 'BEE3458', { 0: returnPickingOrderProduct.productCode, } /* A devolução do produto %{0} já foi executada! */ ) ); } else if (returnPickingOrderProduct.returnPickingOrder.status === 2) { throw new APIError( '', t( 'BEE3459', { 0: returnPickingOrderProduct.returnPickingOrder.orderNumber, } /* A devolução do número %{0} está finalizada! */ ) ); } else if ( parseFloat(returnPickingOrderProduct.pickedQuantity) - parseFloat(returnPickingOrderProduct.quantityStoraged || 0) < parseFloat(quantity) ) { throw new APIError( '', `${t('BEE1488' /* Divergência nas quantidades */)}\n` + `${t('BEE1489' /* Quantidade Pendente */)} = ${parseFloat( parseFloat(returnPickingOrderProduct.pickedQuantity) - parseFloat(returnPickingOrderProduct.quantityStoraged || 0) )}\n` + `${t('BEE1490' /* Quantidade Informada */)} = ${parseFloat(quantity)}\n` ); } } async function validSaveUserReturnPicking(req) { const { orderNumber = '' } = req.body; const { userMainBranch } = req; const query = { orderNumber, branchCode: userMainBranch || '', status: 1, }; const returnPickingOrder = await ReturnPickingInformation.getReturnPickingOrder(query); if (!returnPickingOrder) throw new APIError( '', t('BEE1911' /* Documento de devolução de picking não encontrado! */) ); if ( returnPickingOrder.returnPickingUser && returnPickingOrder.returnPickingUser !== req.userId ) { throw new APIError( '', t( 'BEE1912' /* Documento de devolução de picking já iniciado por outro usuário */ ) ); } } export default { validFilterDates, validCreateDocument, validBranchInInventory, validSharedAddress, validProductBranch, validSerialGroup, validDocument, validSaveUserReturnPicking, }; |