All files / middlewares capacityValidations.js

100% Statements 34/34
100% Branches 30/30
100% Functions 3/3
100% Lines 34/34

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                                7x   7x 1x         6x 1x           5x 1x           4x 1x           3x 1x           2x 1x               2x 2x           2x       2x 1x                         7x   7x 1x               6x         6x 1x             5x 1x         4x       4x 1x             3x 1x         2x       2x 1x                                
import APIError from '../helpers/error';
import { t } from '../helpers/i18n';
import CapacityInformation from '../source/capacities/information';
import BranchInformation from '../source/branches/information';
import ProductBranchInformation from '../source/productBranches/information';
import AddressSizesInformation from '../source/storageAddressSizes/information';
 
async function validNoEmptyData(req) {
  const {
    productCode,
    branchCode,
    storageAddressSizeCode,
    maximumCapacity,
    referencePointUnity,
    referencePointPercentage,
    status,
  } = req.body;
 
  if (!productCode) {
    throw new APIError(
      t('BEE372' /* Informe o código do produto (obrigatório) */),
      'EMPTY_PRODUCT_CODE'
    );
  }
  if (!branchCode) {
    throw new APIError(
      t('BEE154' /* Informe a filial (obrigatório) */),
      'EMPTY_BRANCH_CODE'
    );
  }
 
  if (!storageAddressSizeCode) {
    throw new APIError(
      t('BEE2690' /* Classificação de Endereço não informada! */),
      'EMPTY_SIZE'
    );
  }
 
  if (!maximumCapacity) {
    throw new APIError(
      t('BEE2692' /* Capacidade Máxima precisa ser informada! */),
      'EMPTY_MAX_SIZE'
    );
  }
 
  if (!referencePointUnity && !referencePointPercentage) {
    throw new APIError(
      t('BEE2693' /* Ponto de Ressuprimento precisa ser informada! */),
      'EMPTY_RESUPPLY_POINT'
    );
  }
 
  if (status !== 0 && !status) {
    throw new APIError(
      t('BEE1198' /* Status deve ser informado! */),
      'EMPTY_STATUS'
    );
  }
}
 
async function validExistsData(req) {
  const { productCode, branchCode, storageAddressSizeCode } = req.body;
  const query = {
    productCode,
    branchCode,
    size: storageAddressSizeCode,
  };
 
  const existCapacity = await CapacityInformation.getCapacity(query, {
    userBranches: req.userBranches,
  });
 
  if (existCapacity) {
    throw new APIError(
      t(
        'BEE2691',
        {
          0: existCapacity.productCode,
        } /* Já existe cadastrado uma capacidade para o produto %{0}. */
      ),
      'EXIST_CAPACITY'
    );
  }
}
 
async function validData(req) {
  const { productCode, branchCode, storageAddressSizeCode } = req.body;
 
  if (!productCode) {
    throw new APIError(
      '',
      t(
        'BEE1288',
        { 0: productCode } /* Código do produto deve ser informado */
      )
    );
  } else {
    const existProduct = await ProductBranchInformation.getProductBranch({
      productCode,
      branchCode,
    });
 
    if (!existProduct) {
      throw new APIError(
        '',
        t('BEE1186', { 0: productCode } /* Produto %{0} não cadastrado */)
      );
    }
  }
 
  if (!branchCode) {
    throw new APIError(
      'INVALID_BRANCH_CODE',
      t('BEE1171' /* Código deve ser informado ! */)
    );
  } else {
    const existBranch = await BranchInformation.getBranch({
      code: branchCode,
    });
 
    if (!existBranch) {
      throw new APIError(
        'EXIST_BRANCH_CODE',
        t('BEE1170', { 0: branchCode } /* Filial %{0} não localizada */)
      );
    }
  }
 
  if (!storageAddressSizeCode) {
    throw new APIError(
      t('BEE2690' /* Classificação de Endereço não informada! */),
      'EMPTY_SIZE'
    );
  } else {
    const existSize = await AddressSizesInformation.getStorageAddressSize({
      id: storageAddressSizeCode,
    });
 
    if (!existSize) {
      throw new APIError(
        t(
          'BEE2707',
          { 0: storageAddressSizeCode } /* Capacidade não encontrada!  */
        ),
        'EXIST_SIZE_CODE'
      );
    }
  }
}
 
export default {
  validNoEmptyData,
  validExistsData,
  validData,
};