All files / controllers baptism.js

100% Statements 53/53
96.72% Branches 59/61
100% Functions 6/6
100% Lines 50/50

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                    4x   4x 4x 3x 3x 3x   3x       3x       3x   3x                         1x 1x     1x         2x 2x   2x           1x       1x     1x 1x     1x         3x 3x   3x       3x   3x 3x   3x 3x 21x                 3x   2x           1x 1x     1x         5x   5x 5x 4x 4x         4x   4x 2x             2x                 2x 2x               2x                                                                                 4x           1x 1x                    
import InboundOrderProductTypes from '../database/enumerators/inboundOrderProduct';
import OutboundOrderProductTypes from '../database/enumerators/outboundOrderProduct';
import BaptismCreate from '../source/baptisms/create';
import BaptismInformation from '../source/baptisms/information';
import InboundOrderProductsInformation from '../source/inboundOrderProducts/information';
import OutboundRangeInformation from '../source/outboundRange/information';
import UserPrinterInformation from '../source/userPrinters/information';
import UserInformation from '../source/users/information';
 
async function getBaptismInfo(req, res) {
  const { type } = req.query;
 
  try {
    const user = await UserInformation.getUser({ id: req.userId });
    const branchCode = user.branchUser.code;
    const branchName = user.branchUser.name;
    const userPrinter = user.printer;
 
    const printerOptions = await UserPrinterInformation.getUserPrinterOptions(
      req.userId
    );
 
    const lastBaptismDb = await BaptismInformation.getLastBaptism(
      branchCode,
      type
    );
    const lastBaptism = lastBaptismDb || 0;
 
    res.json({
      success: true,
      data: {
        branchCode,
        branchName,
        lastBaptism,
        type,
        userPrinter,
        printerOptions: printerOptions || [],
      },
    });
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    const response = {
      success: false,
    };
    res.json(response);
  }
}
 
async function getBaptism(req, res) {
  try {
    const { code, branchCode, type } = req.body;
 
    const baptism = await BaptismInformation.getBaptism({
      code,
      branchCode,
      type,
    });
 
    const result = {
      success: true,
      data: baptism,
    };
    res.json(result);
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    const response = {
      success: false,
    };
    res.json(response);
  }
}
 
async function createBaptism(req, res) {
  try {
    const { branchCode, type, quantity } = req.body;
 
    const lastBaptismDb = await BaptismInformation.getLastBaptism(
      branchCode,
      type
    );
    const lastBaptism = lastBaptismDb || 0;
 
    const firstNew = lastBaptism + 1;
    const lastNew = lastBaptism + quantity;
 
    const baptisms = [];
    for (let i = firstNew; i <= lastNew; i++) {
      baptisms.push({
        type,
        branchCode,
        code: i,
        createdUser: req.userId,
        updatedUser: req.userId,
      });
    }
 
    const data = await BaptismCreate.createBaptisms(baptisms);
 
    res.json({
      success: true,
      data,
    });
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    const response = {
      success: false,
    };
    res.json(response);
  }
}
 
async function getBaptismItems(req, res) {
  const { baptismLabel, type } = req.query;
 
  try {
    const user = await UserInformation.getUser({ id: req.userId });
    const branchCode = user.branchUser.code;
    const query = {
      baptismLabel,
      branchCode,
    };
 
    let orders = [];
 
    if (type === '1') {
      orders =
        await InboundOrderProductsInformation.getInboundOrderProductsDocAndInfo(
          query,
          {
            userBranches: req.userBranches,
          }
        );
      orders = orders.map((it) => ({
        productCode: it.productCode,
        orderNumber:
          it.inboundOrder && it.inboundOrder.orderNumber
            ? it.inboundOrder.orderNumber
            : '',
        status: InboundOrderProductTypes.getStatusLabel(it.status),
        name: it.product && it.product.name ? it.product.name : '',
      }));
    } else Eif (type === '2') {
      orders = await OutboundRangeInformation.getOutboundRangeProducts(
        {
          baptismLabel,
        },
        { userBranches: req.userBranches },
        { branchCode }
      );
 
      orders = orders.map((it) => ({
        productCode: it.productCode || '',
        orderNumber:
          it.outboundOrder && it.outboundOrder.orderNumber
            ? it.outboundOrder.orderNumber
            : '',
        invoiceNumber:
          it.outboundOrder && it.outboundOrder.invoiceNumber
            ? it.outboundOrder.invoiceNumber
            : '',
        status: OutboundOrderProductTypes.getStatusLabel(it.status),
        name: it.product && it.product.name ? it.product.name : '',
        purchase:
          it.outboundOrder && it.outboundOrder.customerOrderCode
            ? it.outboundOrder.customerOrderCode
            : '',
        quantity: it.quantity || '',
        checkedQuantity: it.checkedQuantity || '',
        pickedQuantity: it.pickedQuantity || '',
        checkedUser:
          it.checkedUserObj && it.checkedUserObj.login
            ? it.checkedUserObj.login
            : '',
        pickedUser:
          it.pickedUserObj && it.pickedUserObj.login
            ? it.pickedUserObj.login
            : '',
        depositCode:
          it.allocation &&
          it.allocation.balance &&
          it.allocation.balance.depositCode
            ? it.allocation.balance.depositCode
            : '',
        rangeCode:
          it.outboundRange && it.outboundRange.rangeCode
            ? it.outboundRange.rangeCode
            : '',
        storageAddressPicked: it.storageAddressPicked || '',
      }));
    }
 
    res.json({
      success: true,
      data: orders,
    });
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    throw err;
  }
}
 
export default {
  getBaptismInfo,
  getBaptism,
  createBaptism,
  getBaptismItems,
};