All files / middlewares inboundManualRequestValidations.js

100% Statements 82/82
100% Branches 87/87
100% Functions 13/13
100% Lines 82/82

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                      4x   4x 1x         3x       3x 1x                 2x 1x           3x   3x 1x         2x       2x 1x                           3x   3x 1x           2x             2x 1x                         4x   4x 1x         3x         3x 1x             2x 1x                     3x   3x 1x         2x       2x           1x                           4x   4x 1x       3x 2x       2x 1x                           11x   11x         3x         8x 8x 1x                   7x     7x 1x               6x 1x       5x 1x       4x       1x                 3x 1x         2x       2x 1x                                   3x   3x             1x           2x             2x 1x                   3x   3x 2x         3x   3x 2x               3x   3x       2x               2x   2x 1x         2x   2x 1x                                      
import UnitMeasureInformation from '../source/unitsMeasure/information';
import APIError from '../helpers/error';
import { t } from '../helpers/i18n';
import BranchInformation from '../source/branches/information';
import TypeOrderInformation from '../source/typeOrders/information';
import SupplierInformation from '../source/suppliers/information';
import InboundOrderInformation from '../source/inboundOrders/information';
import CarrierInformation from '../source/carriers/information';
import ProductInformation from '../source/products/information';
 
async function validBranch(req) {
  const inboundOrder = req.body;
 
  if (!inboundOrder.branchCode) {
    throw new APIError(
      '',
      t('BEE1285' /* Código da filial deve ser informada */)
    );
  } else {
    const existBranch = await BranchInformation.getBranch({
      code: inboundOrder.branchCode,
    });
 
    if (!existBranch) {
      throw new APIError(
        '',
        t(
          'BEE1307',
          { 0: inboundOrder.branchCode } /* Código da filial %{0} inválido */
        )
      );
    }
 
    if (existBranch.branchInInventory) {
      throw new APIError('', 'Filial em processo de Inventário');
    }
  }
}
 
async function validSupplier(req) {
  const inboundOrder = req.body;
 
  if (!inboundOrder.supplierCode) {
    throw new APIError(
      '',
      t('BEE1308' /* Código do fornecedor deve ser informado */)
    );
  } else {
    const existSupplier = await SupplierInformation.getSupplier({
      code: inboundOrder.supplierCode,
    });
 
    if (!existSupplier) {
      throw new APIError(
        '',
        t(
          'BEE1309',
          {
            0: inboundOrder.supplierCode,
          } /* Código do fornecedor %{0} inválido */
        )
      );
    }
  }
}
 
async function validOrderNumber(req) {
  const inboundOrder = req.body;
 
  if (!inboundOrder.orderNumber) {
    throw new APIError(
      '',
      t('BEE1310' /* Número do documento deve ser informado */)
    );
  }
 
  const existOrder = await InboundOrderInformation.getInboundOrderValidation({
    branchCode: inboundOrder.branchCode,
    supplierCode: inboundOrder.supplierCode,
    orderNumber: inboundOrder.orderNumber,
    orderType: inboundOrder.orderType,
  });
 
  if (existOrder) {
    throw new APIError(
      '',
      t(
        'BEE3926',
        {
          0: inboundOrder.orderNumber,
        } /* Documento já cadastrado */
      )
    );
  }
}
 
async function validOrderType(req) {
  const inboundOrder = req.body;
 
  if (!inboundOrder.orderType) {
    throw new APIError(
      '',
      t('BEE1311' /* Tipo do documento deve ser informado */)
    );
  } else {
    const orderType = await TypeOrderInformation.getTypeOrder({
      branchCode: inboundOrder.branchCode,
      type: inboundOrder.orderType,
    });
 
    if (!orderType) {
      throw new APIError(
        '',
        t(
          'BEE1312',
          { 0: inboundOrder.orderType } /* Tipo do documento %{0} inválido */
        )
      );
    } else if (!orderType.inboundManualRequest) {
      throw new APIError(
        '',
        t(
          'BEE3915' /* A filial não possui o tipo de documento de requisição manual no recebimento */
        )
      );
    }
  }
}
 
async function validAccessKey(req) {
  const inboundOrder = req.body;
 
  if (!inboundOrder.accessKey || inboundOrder.accessKey === '') {
    throw new APIError(
      '',
      t('BEE1313' /* Chave de Acesso deve ser informado */)
    );
  } else {
    const existOrder = await InboundOrderInformation.getInboundOrderValidation({
      accessKey: inboundOrder.accessKey,
    });
 
    if (
      !inboundOrder.canceled &&
      existOrder &&
      existOrder.status > 3 &&
      existOrder.status < 9
    ) {
      throw new APIError(
        '',
        t(
          'BEE3760',
          {
            0: inboundOrder.accessKey,
          } /* Chave de Acesso %{0} já cadastrada! */
        )
      );
    }
  }
}
 
async function validCarrier(req) {
  const inboundOrder = req.body;
 
  if (!inboundOrder.carrierCode) {
    throw new APIError(
      '',
      t('BEE1317' /* Código da transportadora deve ser informado */)
    );
  } else if (inboundOrder.carrierCode !== '0') {
    const existCarrier = await CarrierInformation.getCarrier({
      code: inboundOrder.carrierCode,
    });
 
    if (!existCarrier) {
      throw new APIError(
        '',
        t(
          'BEE1318',
          {
            0: inboundOrder.carrierCode,
          } /* Código da Transportadora %{0} inválido */
        )
      );
    }
  }
}
 
async function validProducts(req) {
  const inboundOrder = req.body;
 
  if (
    !inboundOrder.products ||
    !Array.isArray(inboundOrder.products) ||
    inboundOrder.products.length <= 0
  ) {
    throw new APIError(
      '',
      t('BEE1019' /* É necessário informar os produtos */)
    );
  } else {
    for (const product of inboundOrder.products) {
      if (!product.productCode) {
        throw new APIError(
          '',
          t(
            'BEE1288',
            {
              0: product.productCode,
            } /* Código do produto deve ser informado */
          )
        );
      } else {
        const existProduct = await ProductInformation.getProduct({
          productCode: product.productCode,
        });
        if (!existProduct) {
          throw new APIError(
            '',
            t(
              'BEE1321',
              { 0: product.productCode } /* Código do produto %{0} inválido */
            )
          );
        } else {
          if (product.quantity !== 0 && !product.quantity) {
            throw new APIError(
              '',
              t('BEE1039' /* É necessário informar a quantidade */)
            );
          } else if (product.quantity <= 0) {
            throw new APIError(
              '',
              t('BEE2293' /* A quantidade tem que ser maior que 0 */)
            );
          } else if (
            typeof product.quantity !== 'number' ||
            product.quantity <= 0
          ) {
            throw new APIError(
              '',
              t(
                'BEE1323',
                { 0: product.quantity } /* Quantidade prevista %{0} inválida */
              )
            );
          }
 
          if (!product.unitMeasure) {
            throw new APIError(
              '',
              t('BEE1303' /* Unidade de medida deve ser informada */)
            );
          } else {
            const existUnit = await UnitMeasureInformation.getUnitMeasure({
              code: product.unitMeasure,
            });
 
            if (!existUnit) {
              throw new APIError(
                '',
                t(
                  'BEE1211',
                  {
                    0: product.unitMeasure,
                  } /* Unidade de medida %{0} inválida ! */
                )
              );
            }
          }
        }
      }
    }
  }
}
 
async function validInboundOrder(req) {
  const inboundOrder = req.body;
 
  if (
    !inboundOrder ||
    !inboundOrder.branchCode ||
    !inboundOrder.supplierCode ||
    !inboundOrder.orderNumber ||
    !inboundOrder.orderType
  ) {
    throw new APIError(
      '',
      t('BEE3951' /* Dados do documento de entrada inválidos */)
    );
  }
 
  const existOrder = await InboundOrderInformation.getInboundOrderValidation({
    branchCode: inboundOrder.branchCode,
    supplierCode: inboundOrder.supplierCode,
    orderNumber: inboundOrder.orderNumber,
    orderType: inboundOrder.orderType,
  });
 
  if (existOrder && existOrder.status > 3 && existOrder.status < 9) {
    throw new APIError(
      '',
      t(
        'BEE3759' /* A entrada do documento já foi iniciada ou processada totalmente. */
      )
    );
  }
}
 
async function validSpecie(req) {
  const inboundOrder = req.body;
 
  if (!inboundOrder.specie || typeof inboundOrder.specie !== 'number') {
    throw new APIError('', t('BEE3952' /* A espécie deve ser informada */));
  }
}
 
async function validSerie(req) {
  const inboundOrder = req.body;
 
  if (!inboundOrder.serie || typeof inboundOrder.serie !== 'number') {
    throw new APIError(
      '',
      t('BEE3953' /* A série do documento deve ser informada */)
    );
  }
}
 
async function validExpectedVolumes(req) {
  const inboundOrder = req.body;
 
  if (
    !inboundOrder.expectedVolumes ||
    typeof inboundOrder.expectedVolumes !== 'number'
  ) {
    throw new APIError(
      '',
      t('BEE3954' /* O volume esperado deve ser informado */)
    );
  }
}
 
async function validDeliveryDate(req) {
  const inboundOrder = req.body;
 
  if (!inboundOrder.deliveryDate) {
    throw new APIError('', t('BEE3955' /* A data de entrega é obrigatória */));
  }
}
 
async function validPostalCode(req) {
  const inboundOrder = req.body;
 
  if (!inboundOrder.postalCode) {
    throw new APIError('', t('BEE2907' /* CEP é obrigatório */));
  }
}
 
export default {
  validBranch,
  validSupplier,
  validOrderNumber,
  validOrderType,
  validSpecie,
  validSerie,
  validAccessKey,
  validCarrier,
  validExpectedVolumes,
  validDeliveryDate,
  validPostalCode,
  validProducts,
  validInboundOrder,
};