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 | 2x 2x 2x 1x 2x 2x 1x 1x 2x 2x 2x 1x 5x 5x 4x 4x 1x 3x 1x 2x 1x 5x 5x 4x 4x 1x 3x 1x 2x 1x 3x 1x 1x 3x 3x 2x 3x 3x 2x 1x 5x 5x 2x 3x 3x 2x 3x 3x 3x 3x 3x 3x 6x 5x 3x 1x 8x 8x 8x 7x 6x 1x 5x 5x 5x 3x 3x 1x 4x 4x 2x 2x 2x 2x 2x 1x | /* eslint-disable no-restricted-syntax */ import APIError from '../helpers/error'; import { t } from '../helpers/i18n'; import BranchInformation from '../source/branches/information'; import CableCutPlanInformation from '../source/cableCutPlans/information'; import CableCutProductsInformation from '../source/cableCutProducts/information'; import OutboundProductAllocationInformation from '../source/outboundOrderProductAllocations/information'; import OutboundRangeInformation from '../source/outboundRange/information'; import StockInformation from '../source/stock/information'; import UserInformation from '../source/users/information'; import CableCutProductDao from '../database/dao/cableCutProduct'; async function validCableCutStatus(req) { const { cableCutPlanId } = req.body; const cableCutPlan = await CableCutPlanInformation.getCableCutPlan({ id: cableCutPlanId, }); if ([2, 3].includes(cableCutPlan.status)) { throw new APIError( 'CABLE_STATUS_NOT_ACCEPTABLE', t('BEE2967' /* O status de cabo fornecido não é aceitável. */) ); } } async function validMainBranch(req) { const user = await UserInformation.getUser({ id: req.userId, }); if (!user.mainBranch) throw new APIError( 'USER_MAIN_BRANCH', t('BEE3016' /* Usuário não possui Filial Principal parametrizada! */) ); req.userMainBranch = user.mainBranch; } async function validateExistingUser(req) { const { responsibleCutUserId } = req.body; const user = await UserInformation.getUser({ id: responsibleCutUserId, }); if (!user) throw new APIError( 'ERROR_CHANGE_USER', t('BEE1835' /* não foi possível alterar o usuário */) ); } async function cableCutProducStatusCheck(req) { const { cableCutProductId } = req.body; if (cableCutProductId) { const cableCutProduct = await CableCutProductsInformation.getCableCutProduct({ id: cableCutProductId, }); if (!cableCutProduct) throw new APIError('', t('BEE1577' /* Corte de Cabo não Localizado! */)); if (cableCutProduct.status === 2) throw new APIError('', t('BEE3017' /* Corte de cabo já efetuado! */)); if (cableCutProduct.status === 3) throw new APIError('', t('BEE3018' /* Corte de Cabo cancelado! */)); } } async function cableCutStatusCheck(req) { const { cableCutPlanId } = req.body; if (cableCutPlanId) { const cableCutPlan = await CableCutPlanInformation.getCableCutPlan( { id: cableCutPlanId, }, { userBranches: req.userBranches } ); if (!cableCutPlan) throw new APIError('', t('BEE3019' /* Plano de Corte não encontrado! */)); if (cableCutPlan.status === 2) throw new APIError( '', t('BEE3020' /* Plano de Corte já está finalizado! */) ); if (cableCutPlan.status === 3) throw new APIError('', t('BEE3021' /* Plano de Corte cancelado! */)); } } async function validUsesCableCuttingPlan(req) { if (!req.userMainBranch) { const user = await UserInformation.getUser({ id: req.userId, }); req.userMainBranch = user.mainBranch; } const branch = await BranchInformation.getBranchSettings({ code: req.userMainBranch, }); if (!branch) throw new APIError('INVALID_MAIN_BRANCH_CODE'); req.userMainBranchSettings = branch.toJSON(); } async function validBranchInInventory(req) { const branch = await BranchInformation.getBranchSettings({ code: req.userMainBranch, }); if (!branch) throw new APIError('INVALID_MAIN_BRANCH_CODE'); if (branch.branchInInventory) throw new APIError('', t('BEE3015' /* Filial em processo de Inventário */)); } async function validProductIds(req) { const { outboundOrderProductIds } = req.body; if (!outboundOrderProductIds || outboundOrderProductIds.length === 0) { throw new APIError('', t('BEE3022' /* Nenhum documento selecionado! */)); } const productAllocations = await OutboundProductAllocationInformation.getOutboundOrderProductAllocations( { outboundOrderProductId: outboundOrderProductIds, }, { userBranches: req.userBranches } ); if (!productAllocations || productAllocations.length === 0) { throw new APIError('', t('BEE3022' /* Nenhum documento selecionado! */)); } } async function validAvailableQuantity(req) { const { outboundOrderProductIds, stockBalanceId } = req.body; const stockBalance = await StockInformation.getBalanceAvailable({ id: stockBalanceId, }); const availableQuantity = stockBalance.quantity; const productAllocations = await OutboundProductAllocationInformation.getOutboundOrderProductAllocations( { outboundOrderProductId: outboundOrderProductIds, }, { userBranches: req.userBranches } ); let quantityToAllocate = 0; for (const allocation of productAllocations) { if (allocation.stockBalanceId !== stockBalanceId) { quantityToAllocate += allocation.quantity; } } if (availableQuantity < quantityToAllocate) { throw new APIError( '', t( 'BEE3037', { 0: availableQuantity, 1: quantityToAllocate, } /* Saldo Estoque não possui quantidade suficiente (%{0}) para atender a alocação solicitada (%{1})! */ ) ); } } async function validBaptismLabelInformed(req) { const { baptismLabel, cableCutProductId } = req.body; const branch = await BranchInformation.getBranchSettings({ code: req.userMainBranch, }); if (!branch) throw new APIError('INVALID_MAIN_BRANCH_CODE'); if (branch.automaticSeparationAfterCuttingCables) { if (!baptismLabel) throw new APIError('', t('BEE1876' /* Batismo não informada */)); const cableCutProduct = await CableCutProductsInformation.getCableCutProduct({ id: cableCutProductId, }); const productsBaptism = await OutboundRangeInformation.getOutboundRangeProducts( { baptismLabel, }, {}, { branchCode: req.userMainBranch } ); if (productsBaptism && productsBaptism.length > 0) { for (const product of productsBaptism) { if ( product.outboundOrder.branchCode === branch.code && product.outboundOrder.id !== cableCutProduct.outboundOrderId ) { throw new APIError( '', t( 'BEE2573' /* Etiqueta de Batismo relacionada a outro Documento de Saída! */ ) ); } } } } } async function validExistingCreatedPlans(req) { const { outboundOrderProductIds } = req.body; if (!outboundOrderProductIds || outboundOrderProductIds.length === 0) { throw new APIError('', t('BEE3022' /* Nenhum documento selecionado! */)); } const user = await UserInformation.getUser({ id: req.userId }); const createdPlans = await CableCutProductDao.findCableCutProducts({ outboundOrderProductId: outboundOrderProductIds, createdUser: user.id, }); if ( createdPlans.some((plan) => outboundOrderProductIds.includes(plan.outboundOrderProductId) ) ) { throw new APIError( '', t('BEE4176' /* Este corte já foi liberado em outra sessão */) ); } } export default { validMainBranch, validUsesCableCuttingPlan, validProductIds, validateExistingUser, cableCutProducStatusCheck, cableCutStatusCheck, validBaptismLabelInformed, validAvailableQuantity, validBranchInInventory, validCableCutStatus, validExistingCreatedPlans, }; |