All files / middlewares productValidations.js

100% Statements 127/127
100% Branches 125/125
100% Functions 24/24
100% Lines 125/125

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                          3x   3x 1x   2x       2x 1x           1x         3x   3x 1x   2x       2x 1x                 2x   2x 1x         2x   2x 1x         2x   2x 1x         2x   2x 1x               3x   3x 1x 2x 1x         3x   3x 1x   2x       2x 1x                   3x   3x 1x       2x 1x               2x   2x 1x                 5x   5x 1x       4x 1x           3x           2x       2x       1x                           3x   3x 1x 2x 1x           2x   2x 1x         2x   2x 1x         2x   2x 1x         2x   2x 1x         2x   2x 1x         2x   2x 1x         2x   2x 1x         3x   3x 1x   2x       2x 1x           1x         4x   4x 4x       4x   3x 3x       1x                   2x 2x 2x 2x 2x     2x       2x   2x 3x   3x 1x   2x         3x         2x               1x                       1x           1x               2x   2x       2x     2x 1x                   2x   2x       2x       2x 1x                   2x   2x         2x       2x 1x                                                                      
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 ProductInformation from '../source/products/information';
import StockInformation from '../source/stock/information';
import UnitMeasureInformation from '../source/unitsMeasure/information';
import OutboundOrderProductInformation from '../source/outboundOrderProducts/information';
 
async function validProductId(req) {
  const productId = req.body.productId || req.query.productId;
 
  if (!productId) {
    throw new APIError('', t('BEE3140' /* Produto inválido! */));
  } else {
    const existProduct = await ProductInformation.getProduct({
      id: productId,
    });
 
    if (!existProduct) {
      throw new APIError(
        '',
        t('BEE1233', { 0: productId } /* Produto %{0} não localizado */)
      );
    }
 
    req.product = existProduct;
  }
}
 
async function validProductCode(req) {
  const productCode = req.body.productCode || req.query.productCode;
 
  if (!productCode) {
    throw new APIError('', t('BEE3140' /* Produto inválido! */));
  } else {
    const existProduct = await ProductInformation.getProduct({
      productCode,
    });
 
    if (existProduct) {
      throw new APIError(
        '',
        t('BEE1173', { 0: productCode } /* Codigo %{0} já cadastrado  */)
      );
    }
  }
}
 
function validProductName(req) {
  const name = req.body.name || req.query.name;
 
  if (!name) {
    throw new APIError('', t('BEE3141' /* Nome inválido! */));
  }
}
 
function validProductFullName(req) {
  const fullName = req.body.fullName || req.query.fullName;
 
  if (!fullName) {
    throw new APIError('', t('BEE3142' /* Descrição Completa inválida! */));
  }
}
 
function validProductComplementCode(req) {
  const complementCode = req.body.complementCode || req.query.complementCode;
 
  if (!complementCode) {
    throw new APIError('', t('BEE3143' /* Código Complementar inválido! */));
  }
}
 
function validProductComplementInfo(req) {
  const complementInfo = req.body.complementInfo || req.query.complementInfo;
 
  if (!complementInfo) {
    throw new APIError(
      '',
      t('BEE3144' /* Informação Complementar inválida! */)
    );
  }
}
 
function validProductStatus(req) {
  const status = req.body.status || req.query.status;
 
  if (!status) {
    throw new APIError('', t('BEE3145' /* Status inválido */));
  } else if (status > 1) {
    throw new APIError('', t('BEE3145' /* Status inválido */));
  }
}
 
async function validProductUnitMeasure(req) {
  const unitMeasure = req.body.unitMeasure || req.query.unitMeasure;
 
  if (!unitMeasure) {
    throw new APIError('', t('BEE3146' /* Unidade de Medida inválida! */));
  } else {
    const existUnitMeasure = await UnitMeasureInformation.getUnitMeasure({
      code: unitMeasure,
    });
 
    if (!existUnitMeasure) {
      throw new APIError(
        '',
        t('BEE3147' /* Unidade de Medida não localizada! */)
      );
    }
  }
}
 
async function validProductControlType(req) {
  const productControlType =
    req.body.productControlType || req.query.productControlType;
 
  if (!productControlType) {
    throw new APIError(
      '',
      t('BEE3148' /* Tipo de Controle do Produto inválido! */)
    );
  } else if (productControlType > 5) {
    throw new APIError(
      '',
      t('BEE3148' /* Tipo de Controle do Produto inválido! */)
    );
  }
}
 
async function validMaterialFamily(req) {
  const materialFamily = req.body.materialFamily || req.query.materialFamily;
 
  if (!materialFamily) {
    throw new APIError(
      '',
      t('BEE3149' /* Família Material deve ser informada! */)
    );
  }
}
 
async function validProductStockControlType(req) {
  const stockControlType =
    req.body.stockControlType || req.query.stockControlType;
 
  if (!stockControlType) {
    throw new APIError(
      '',
      t('BEE3150' /* Tipo de Controle de Estoque inválido! */)
    );
  } else if (stockControlType > 4) {
    throw new APIError(
      '',
      t('BEE3150' /* Tipo de Controle de Estoque inválido! */)
    );
  }
 
  if (
    req.product &&
    req.product.stockControlType === 3 &&
    stockControlType !== 3
  ) {
    const productAvailableStockBalances =
      await StockInformation.getAvailableBalances({
        productCode: req.product.productCode,
        lotNumber: { [Op.ne]: '' },
      });
    if (
      productAvailableStockBalances &&
      productAvailableStockBalances.length > 0
    ) {
      throw new APIError(
        '',
        t(
          'BEE4153',
          {
            0: req.product.productCode,
          } /* Não é possível alterar o Tipo de Controle de Estoque, pois o produto %{0} possui saldo com Lote. */
        )
      );
    }
  }
}
 
async function validProductOrigin(req) {
  const origin = req.body.origin || req.query.origin;
 
  if (!origin) {
    throw new APIError('', t('BEE3151' /* Origem inválida! */));
  } else if (origin > 2) {
    throw new APIError('', t('BEE3151' /* Origem inválida! */));
  }
}
 
function validProductTaxClassification(req) {
  const taxClassification =
    req.body.taxClassification || req.query.taxClassification;
 
  if (!taxClassification) {
    throw new APIError('', t('BEE3152' /* Classificação Fiscal inválida! */));
  }
}
 
function validProductBusinessUnit(req) {
  const businessUnit = req.body.businessUnit || req.query.businessUnit;
 
  if (!businessUnit) {
    throw new APIError('', t('BEE3153' /* Unidade de Negócio inválida! */));
  }
}
 
function validProductLevel1(req) {
  const level1 = req.body.level1 || req.query.level1;
 
  if (!level1) {
    throw new APIError('', t('BEE3154', { 0: 1 } /* Nível %{0} inválido! */));
  }
}
 
function validProductLevel2(req) {
  const level2 = req.body.level2 || req.query.level2;
 
  if (!level2) {
    throw new APIError('', t('BEE3154', { 0: 2 } /* Nível %{0} inválido! */));
  }
}
 
function validProductLevel3(req) {
  const level3 = req.body.level3 || req.query.level3;
 
  if (!level3) {
    throw new APIError('', t('BEE3154', { 0: 3 } /* Nível %{0} inválido! */));
  }
}
 
function validProductLevel4(req) {
  const level4 = req.body.level4 || req.query.level4;
 
  if (!level4) {
    throw new APIError('', t('BEE3154', { 0: 4 } /* Nível %{0} inválido! */));
  }
}
 
function validProductLevel5(req) {
  const level5 = req.body.level5 || req.query.level5;
 
  if (!level5) {
    throw new APIError('', t('BEE3154', { 0: 5 } /* Nível %{0} inválido! */));
  }
}
 
async function validExistProduct(req) {
  const productCode = req.body.productCode || req.query.productCode;
 
  if (!productCode) {
    throw new APIError('', t('BEE3140' /* Produto inválido! */));
  } else {
    const existProduct = await ProductInformation.getProduct({
      productCode,
    });
 
    if (!existProduct) {
      throw new APIError(
        '',
        t('BEE1186', { 0: productCode } /* Produto %{0} não cadastrado */)
      );
    }
 
    req.product = existProduct;
  }
}
 
async function validControlExpirationDate(req) {
  const productCode = req.body.productCode || req.query.productCode;
  const controlExpirationDate =
    !!req.body.controlExpirationDate || !!req.query.controlExpirationDate;
  const productDetails = await ProductInformation.getProduct({
    productCode,
  });
 
  if (controlExpirationDate !== productDetails.controlExpirationDate) {
    const productAvailableStockBalances =
      await StockInformation.getAvailableBalances({ productCode });
    if (
      Object.keys(productAvailableStockBalances).length !== 0 &&
      controlExpirationDate === false
    ) {
      throw new APIError(
        '',
        t(
          'BEE2311',
          {
            0: productCode,
          } /* Não é possível alterar o campo "Controlar Vencimento", pois o produto %{0} possui saldo no sistema */
        )
      );
    } else {
      const branches = await BranchInformation.getAllBranches();
      const depositBranchRec = [];
      for (let index = 0; index < branches.length; index += 1) {
        const depositCode = branches[index].preReceiptDeposit;
        depositBranchRec.push(depositCode);
      }
 
      const productStockBalances = await StockInformation.getStockBalances({
        productCode,
        depositCode: { [Op.notIn]: [depositBranchRec] },
      });
      const tempStockBalances = {};
 
      for (let index = 0; index < productStockBalances.length; index += 1) {
        const element = productStockBalances[index];
 
        if (!!element.expirationDate === false) {
          element.expirationDate = '19000101';
        } else {
          element.expirationDate = moment(element.expirationDate).format(
            'YYYYMMDD'
          );
        }
 
        if (
          !tempStockBalances[
            `${element.branchCode}${element.warehouseCode}${element.depositCode}${element.addressCode}${element.productCode}${element.lotNumber}${element.expirationDate}`
          ]
        ) {
          tempStockBalances[
            `${element.branchCode}${element.warehouseCode}${
              element.depositCode
            }${element.addressCode}${element.productCode}${
              element.lotNumber
            }${moment(element.expirationDate).format('YYYYMMDD')}`
          ] = true;
        } else {
          throw new APIError(
            '',
            t(
              'BEE2313',
              {
                0: productCode,
              } /* O produto %{0} possui endereços compartilhados, com as mesmas informações, e sem data de validade */
            )
          );
        }
      }
 
      req.stockBalances = {
        changedControlExpirationDate: true,
        productStockBalances,
      };
    }
  } else {
    req.stockBalances = {
      changedControlExpirationDate: false,
      productStockBalances: '',
    };
  }
}
 
async function validStockMovement(req) {
  const { productId } = req.body;
 
  const productData = await ProductInformation.getProduct({
    id: productId,
  });
 
  const productStockMovement = await StockInformation.getStockMovement({
    productCode: productData.productCode,
  });
  if (productStockMovement) {
    throw new APIError(
      '',
      t(
        'BEE4224' /* Não é possível excluir este produto, pois ele possui movimentações ou saldo em estoque. */
      )
    );
  }
}
 
async function validStockBalance(req) {
  const { productId } = req.body;
 
  const productData = await ProductInformation.getProduct({
    id: productId,
  });
 
  const productStockBalance = await StockInformation.getStockBalance({
    productCode: productData.productCode,
  });
 
  if (productStockBalance) {
    throw new APIError(
      '',
      t(
        'BEE4224' /* Não é possível excluir este produto, pois ele possui movimentações ou saldo em estoque. */
      )
    );
  }
}
 
async function validOutboundOrder(req) {
  const { productId } = req.body;
 
  const productData = await ProductInformation.getProduct({
    id: productId,
  });
 
  const productOutboundOrderProduct =
    await OutboundOrderProductInformation.getOutboundOrderProduct({
      productCode: productData.productCode,
    });
 
  if (productOutboundOrderProduct) {
    throw new APIError(
      '',
      t(
        'BEE4224' /* Não é possível excluir este produto, pois ele possui movimentações ou saldo em estoque. */
      )
    );
  }
}
 
export default {
  validProductId,
  validProductCode,
  validProductName,
  validProductFullName,
  validProductComplementCode,
  validProductComplementInfo,
  validProductStatus,
  validProductUnitMeasure,
  validMaterialFamily,
  validProductControlType,
  validProductStockControlType,
  validProductOrigin,
  validProductTaxClassification,
  validProductBusinessUnit,
  validProductLevel1,
  validProductLevel2,
  validProductLevel3,
  validProductLevel4,
  validProductLevel5,
  validExistProduct,
  validControlExpirationDate,
  validStockMovement,
  validStockBalance,
  validOutboundOrder,
};