All files / controllers dockCarriers.js

100% Statements 72/72
100% Branches 22/22
100% Functions 9/9
100% Lines 72/72

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                      2x   2x 2x       1x   1x 1x     1x       1x                         1x     1x     1x       1x         1x       1x     1x 1x     1x         3x   3x 3x       2x   2x 2x                 2x     2x     2x       2x     1x 1x     1x         3x 3x   3x           3x 12x     3x   2x         2x     1x 1x     1x         3x 3x   3x         3x 9x     3x 3x 3x     3x   2x         2x     1x 1x     1x         2x 2x   2x             2x   1x       1x     1x 1x     1x         2x 2x   2x   1x       1x     1x 1x     1x                        
import { Op } from 'sequelize';
 
import BranchesInformation from '../source/branches/information';
import CarrierInformation from '../source/carriers/information';
import DockCarrierCreate from '../source/dockCarriers/create';
import DockCarrierDelete from '../source/dockCarriers/delete';
import DockCarrierInformation from '../source/dockCarriers/information';
import DocksInformation from '../source/docks/information';
import WarehouseInformation from '../source/warehouses/information';
 
async function getCarrierBase(req, res) {
  const { carrierCode } = req.query;
 
  try {
    const docks = await DockCarrierInformation.getDockCarriers({
      carrierCode,
    });
 
    const dockCarriers = [];
 
    for (const dock of docks) {
      const branch = await BranchesInformation.getBranch({
        code: dock.dock.branchCode,
      });
      const warehouse = await WarehouseInformation.getWarehouse({
        code: dock.dock.warehouseCode,
      });
 
      const newDockCarrier = {
        id: dock.id,
        carrier: dock.carrier,
        dock: dock.dock,
        carrierCode: dock.carrierCode,
        dockCode: dock.dockCode,
        warehouseCode: warehouse.code,
        warehouseName: warehouse.name,
        branchCode: branch.code,
        branchName: branch.name,
        dockType: dock.dock.dockType,
        dockStatus: dock.dock.status,
      };
      dockCarriers.push(newDockCarrier);
    }
 
    const branchOptions = await BranchesInformation.getOptionsBranches({
      userBranches: req.userBranches,
    });
    const warehouseOptions = await WarehouseInformation.getOptionsWarehouses({
      userBranches: req.userBranches,
    });
 
    const data = {
      docks: dockCarriers,
      branchOptions,
      warehouseOptions,
    };
    const response = {
      success: true,
      data,
    };
    res.json(response);
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    const response = {
      success: false,
    };
    res.json(response);
  }
}
 
async function getDockBase(req, res) {
  const { dockCode } = req.query;
 
  try {
    const docks = await DockCarrierInformation.getDockCarriers({
      dockCode,
    });
 
    const dockCarriers = [];
 
    for (const dock of docks) {
      const newDockCarrier = {
        id: dock.id,
        carrier: dock.carrier,
        dock: dock.dock,
        dockCode: dock.dockCode,
        carrierCode: dock.carrierCode,
        carrierName: dock.carrier ? dock.carrier.name : '',
        carrierCnpj: dock.carrier ? dock.carrier.cnpj : '',
      };
      dockCarriers.push(newDockCarrier);
    }
 
    const data = {
      docks: dockCarriers,
    };
    const response = {
      success: true,
      data,
    };
    res.json(response);
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    const response = {
      success: false,
    };
    res.json(response);
  }
}
 
async function searchDocks(req, res) {
  try {
    const { branchCode, warehouseCode, code, type } = req.body;
 
    const docksQuery = {
      branchCode: branchCode === 'XX' ? undefined : branchCode,
      warehouseCode: warehouseCode === 'XX' ? undefined : warehouseCode,
      dockType: type === 'XX' ? undefined : type,
      code: code === '' ? undefined : code,
    };
    Object.keys(docksQuery).forEach(
      (key) => docksQuery[key] === undefined && delete docksQuery[key]
    );
 
    const data = await DocksInformation.getDocks(docksQuery);
 
    const response = {
      success: true,
      data,
    };
 
    res.json(response);
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    const response = {
      success: false,
    };
    res.json(response);
  }
}
 
async function searchCarriers(req, res) {
  try {
    const { cnpj, name, code } = req.body;
 
    const queryParams = {
      cnpj: cnpj === '' ? undefined : cnpj,
      name: name === '' ? undefined : name,
      code: code === '' ? undefined : code,
    };
    Object.keys(queryParams).forEach(
      (key) => queryParams[key] === undefined && delete queryParams[key]
    );
 
    const carrierQuery = {};
    Object.keys(queryParams).forEach((key) => {
      carrierQuery[key] = { [Op.like]: `%${queryParams[key]}%` };
    });
 
    const data = await CarrierInformation.getCarriers(carrierQuery);
 
    const response = {
      success: true,
      data,
    };
 
    res.json(response);
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    const response = {
      success: false,
    };
    res.json(response);
  }
}
 
async function linkDockCarrier(req, res) {
  try {
    const { carrierCode, dockCode } = req.body;
 
    const newDockCarrier = {
      carrierCode,
      dockCode,
      createdUser: req.userId,
      updatedUser: req.userId,
    };
 
    const data = await DockCarrierCreate.createCarrierDock(newDockCarrier);
 
    const response = {
      success: true,
      data,
    };
    res.json(response);
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    const response = {
      success: false,
    };
    res.json(response);
  }
}
 
async function unlinkDockCarrier(req, res) {
  try {
    const { dockCarrierId } = req.body;
 
    const data = await DockCarrierDelete.deleteDockCarrier(dockCarrierId);
 
    const response = {
      success: true,
      data,
    };
    res.json(response);
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    const response = {
      success: false,
    };
    res.json(response);
  }
}
 
export default {
  getCarrierBase,
  getDockBase,
  searchDocks,
  searchCarriers,
  linkDockCarrier,
  unlinkDockCarrier,
};