All files / source/reports checkQtyProductsPerCheckerInbound.js

100% Statements 29/29
60% Branches 9/15
100% Functions 6/6
100% Lines 26/26

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                            3x 21x 21x 3x 3x 3x   3x                                                       3x 21x     3x 3x 3x 3x 3x   3x 3x 21x   21x 21x 3x 21x 3x     3x         9x 9x 9x      
import moment from 'moment-timezone';
import inboundOrderProductDao from '../../database/dao/inboundOrderProduct';
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, '_inboundOrderBranch');
  remove(columnsValuesToFind, '_nameUser');
 
  const dados = await inboundOrderProductDao.findInboundOrderProducts(where, {
    attributes: columnsValuesToFind,
    raw: true,
    include: [
      {
        required: false,
        model: models.User,
        as: 'checkUser',
        attributes: ['login', 'name'],
      },
      {
        required: true,
        model: models.InboundOrder,
        as: 'inboundOrder',
        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._inboundOrderBranch = it['inboundOrder.branch.code'];
    it.branchName = it['inboundOrder.branch.name'];
    it._nameUser = it['checkUser.name'];
    it.quantityCheck = it.quantityCheck || 0;
 
    const row = [];
    for (let index = 0; index < columnsValuesDefault.length; index++) {
      const column = columnsValuesDefault[index];
 
      row.push(it[column]);
      if (column === 'checkProductAt')
        row[index] = row[index] ? moment(row[index]).format('l') : '';
      if (column === 'quantityCheck' && 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);
  }
}