All files / middlewares productBranchValidations.js

100% Statements 35/35
100% Branches 38/38
100% Functions 7/7
100% Lines 35/35

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                  3x   3x 1x   2x             2x 1x                     3x   3x 1x   2x       2x 1x                 3x   3x 1x   2x             2x 1x                 3x 3x   3x 2x         2x 1x           2x   2x 1x         2x   2x 1x         3x   3x 2x         2x 1x                                              
import APIError from '../helpers/error';
import { t } from '../helpers/i18n';
import ProductBranchInformation from '../source/productBranches/information';
import ProductInformation from '../source/products/information';
import BranchInformation from '../source/branches/information';
import AddressInformation from '../source/storageAddresses/information';
import ProductEanInformation from '../source/productEans/information';
 
async function validProductBranchId(req) {
  const productBranchId = req.body.productBranchId || req.query.productBranchId;
 
  if (!productBranchId) {
    throw new APIError('', t('BEE3137' /* Produto Filial inválido! */));
  } else {
    const existProductBranch = await ProductBranchInformation.getProductBranch(
      {
        id: productBranchId,
      },
      { userBranches: req.userBranches }
    );
 
    if (!existProductBranch)
      throw new APIError(
        '',
        t(
          'BEE1229',
          { 0: productBranchId } /* Produto filial %{0} não localizado */
        )
      );
  }
}
 
async function validProductCode(req) {
  const productCode = req.body.productCode || req.query.productCode;
 
  if (!productCode) {
    throw new APIError('', t('BEE3138' /* Produto inválido */));
  } else {
    const existProduct = await ProductInformation.getProduct({
      productCode,
    });
 
    if (!existProduct) {
      throw new APIError(
        '',
        t('BEE1186', { 0: productCode } /* Produto %{0} não cadastrado */)
      );
    }
  }
}
 
async function validBranchCode(req) {
  const branchCode = req.body.branchCode || req.query.branchCode;
 
  if (!branchCode) {
    throw new APIError('', t('BEE3139' /* Filial inválida! */));
  } else {
    const existBranch = await BranchInformation.getBranch(
      {
        code: branchCode,
      },
      { userBranches: req.userBranches }
    );
 
    if (!existBranch) {
      throw new APIError(
        '',
        t('BEE1228', { 0: branchCode } /* Filial %{0} não cadastrado */)
      );
    }
  }
}
 
async function validAddressCode(req) {
  const defaultAddress = req.body.defaultAddress || req.query.defaultAddress;
  const branchCode = req.body.branchCode || req.query.branchCode;
 
  if (defaultAddress) {
    const existAddress = await AddressInformation.getStorageAddress({
      code: defaultAddress,
      branchCode,
    });
 
    if (!existAddress) {
      throw new APIError('', `Endereço ${defaultAddress} não cadastrado`);
    }
  }
}
 
function validAverageCost(req) {
  const averageCost = req.body.averageCost || req.query.averageCost;
 
  if (!averageCost) {
    throw new APIError('', 'Custo Médio inválido!');
  }
}
 
function validAddressType(req) {
  const addressType = req.body.addressType || req.query.addressType;
 
  if (!addressType) {
    throw new APIError('', t('BEE1991' /* Tipo de Endereço obrigatório */));
  }
}
 
async function validPackageEan(req) {
  const { packageCode, productCode } = req.body;
 
  if (packageCode) {
    const productEan = await ProductEanInformation.getProductEan({
      productCode,
      packageCode,
    });
 
    if (!productEan) {
      throw new APIError(
        '',
        t(
          'BEE2831',
          {
            0: packageCode,
            1: productCode,
          } /* Embalagem %{0} não possui cadastrado o EAN para o produto %{1}! */
        )
      );
    }
  }
}
 
export default {
  validProductBranchId,
  validProductCode,
  validBranchCode,
  validAverageCost,
  validAddressCode,
  validAddressType,
  validPackageEan,
};