All files / source/reports checkQtyProductsPerCheckerOutbound.js

96.66% Statements 29/30
53.33% Branches 8/15
100% Functions 6/6
96.29% Lines 26/27

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                            3x 21x 21x 3x 3x 3x   3x                                                                         3x 21x     3x 3x 3x 3x 3x 3x   3x 3x 21x   21x 21x 3x 21x       3x         9x 9x 9x      
import moment from 'moment-timezone';
import outboundRangeProductsDao from '../../database/dao/outboundRangeProduct';
import { models } from '../../../config/database';
import { mountWhereBasedFilter } from '../../helpers/reports/sequelize';
import NumberFormatter from '../../helpers/number/format';
 
// Função criada para popular o array headers e rows enviados por parametro
export default async function generateData(
  columns,
  filters,
  headers = [],
  rows = [],
  opts = {}
) {
  const where = mountWhereBasedFilter(filters);
  const columnsValuesDefault = columns.map((column) => column.value);
  const columnsValuesToFind = columns.map((column) => column.value);
  remove(columnsValuesToFind, 'branchName');
  remove(columnsValuesToFind, '_outboundOrderBranch');
  remove(columnsValuesToFind, '_nameUser');
 
  const dados = await outboundRangeProductsDao.findOutboundRangeProducts(
    where,
    {
      attributes: columnsValuesToFind,
      raw: true,
      include: [
        {
          required: false,
          model: models.User,
          as: 'checkedUserObj',
          attributes: ['login', 'name'],
        },
        {
          required: false,
          model: models.OutboundRange,
          as: 'outboundRange',
          attributes: ['rangeCode'],
        },
        {
          required: true,
          model: models.OutboundOrder,
          as: 'outboundOrder',
          attributes: ['id'],
          include: [
            {
              required: true,
              model: models.Branch,
              as: 'branch',
              attributes: ['code', 'name'],
            },
          ],
        },
      ],
      ...opts,
    }
  );
 
  columns.forEach((it) => {
    headers.push(it.label);
  });
 
  dados.forEach((it) => {
    it._outboundOrderBranch = it['outboundOrder.branch.code'];
    it.branchName = it['outboundOrder.branch.name'];
    it._nameUser = it['checkedUserObj.name'];
    it.outboundRangeId = it['outboundRange.rangeCode'];
    it.checkedQuantity = it.checkedQuantity || 0;
 
    const row = [];
    for (let index = 0; index < columnsValuesDefault.length; index++) {
      const column = columnsValuesDefault[index];
 
      row.push(it[column]);
      if (column === 'checkedAt')
        row[index] = row[index] ? moment(row[index]).format('l') : '';
      Iif (column === 'checkedQuantity' && row[index] !== null) {
        row[index] = NumberFormatter.format(row[index], 4);
      }
    }
    rows.push(row);
  });
}
 
function remove(headersValue, value) {
  const index = headersValue.indexOf(value);
  Eif (index != -1) {
    headersValue.splice(index, 1);
  }
}