All files / controllers cableCuts.js

100% Statements 237/237
99.15% Branches 235/237
100% Functions 29/29
100% Lines 223/223

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 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022                                                                    3x     3x   3x 3x       2x         2x       2x     1x 1x     1x         3x               3x   3x                 2x   2x 2x 2x                                                                             2x                 2x     1x 1x     1x         3x 3x   3x     2x 2x                                                                                                                                       2x         2x     1x 1x     1x         5x 5x 5x 4x 2x           2x             2x 1x             2x       2x 1x 1x           2x           4x 4x       1x 1x     1x                     12x   12x 12x   12x 12x 12x   12x                         12x             12x 11x   1x       11x               11x 1x                         11x       11x           11x       11x       11x             11x                                   11x             11x               11x                   11x   11x 11x   11x 11x 11x 11x 11x   11x 2x 9x 1x 8x 2x 6x 1x 5x 1x 4x 1x 3x 1x 2x 1x   1x     11x                             11x                       11x   8x             8x                                                                   11x                 11x             11x       11x   11x 8x 1x 3x 1x   11x                                   11x         11x                           11x 11x             1x 1x     10x             10x 9x 9x                 9x       10x     10x     2x 2x     2x         2x   2x 2x 1x                 1x                 1x 1x     1x 1x     1x         9x   9x   9x                   9x       9x               8x 10x   10x 10x 10x   10x             15x           10x 1x   9x 6x   3x             8x                 8x     1x 1x     1x         2x 2x 2x 1x       1x 1x   1x             1x 1x     1x         5x   5x 5x   4x             2x   2x 4x 4x   4x 2x           2x     4x     2x 2x     2x 2x   2x                         2x 2x 4x     2x   4x           4x                 4x                     4x             4x                                                         2x     2x     3x 3x     3x         3x   3x 3x 3x   3x               3x 3x         3x               3x 3x             3x               3x               3x               3x 1x             2x 2x                 2x     1x 1x     1x                                
import _ from 'lodash';
import moment from 'moment-timezone';
import Sequelize from 'sequelize';
 
import { sequelize } from '../../config/database';
import APIError from '../helpers/error';
import { t } from '../helpers/i18n';
import BranchesInformation from '../source/branches/information';
import CableCutPlanCreate from '../source/cableCutPlans/create';
import CableCutPlanDelete from '../source/cableCutPlans/delete';
import CableCutPlanInformation from '../source/cableCutPlans/information';
import CableCutPlanUpdate from '../source/cableCutPlans/update';
import CableCutProductsCreate from '../source/cableCutProducts/create';
import CableCutProductsDelete from '../source/cableCutProducts/delete';
import CableCutProductsInformation from '../source/cableCutProducts/information';
import CableCutProductsUpdate from '../source/cableCutProducts/update';
import OutboundProductAllocationInformation from '../source/outboundOrderProductAllocations/information';
import OutboundProductAllocatiosUpdate from '../source/outboundOrderProductAllocations/update';
import OutboundOrderProductInformation from '../source/outboundOrderProducts/information';
import OutboundOrderProductsUpdate from '../source/outboundOrderProducts/update';
import OutboundOrderAllocate from '../source/outboundOrders/allocate';
import OutboundOrderInformation from '../source/outboundOrders/information';
import OutboundOrderRange from '../source/outboundOrders/range';
import OutboundOrderUpdate from '../source/outboundOrders/update';
import OutboundRangeInformation from '../source/outboundRange/information';
import OutboundRangeUpdate from '../source/outboundRange/update';
import StockInformation from '../source/stock/information';
import StockMovement from '../source/stock/movement';
import StorageAddressInformation from '../source/storageAddresses/information';
import UserInformation from '../source/users/information';
import labels from './labels';
import OutboundOrderCtrl from './outboundOrder';
import OutboundVolume from './outboundVolume';
 
const { Op } = Sequelize;
 
async function getProductsToCableCutPlan(req, res) {
  const { filters = {} } = req.body;
 
  try {
    const user = await UserInformation.getUser({
      id: req.userId,
    });
 
    const products = await CableCutPlanInformation.getProductsToCableCutPlan(
      filters,
      user
    );
 
    const response = {
      success: true,
      data: products,
    };
    res.json(response);
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    const response = {
      success: false,
    };
    res.json(response);
  }
}
 
async function cutsMonitoList(req, res) {
  try {
    const {
      page,
      pageSize = 10,
      sorted,
      filtered,
      generalFilters,
      filtersProduct,
    } = req.body;
 
    const cutsMonitoListData = await CableCutPlanInformation.cutsMonitoList(
      page,
      pageSize,
      sorted,
      filtered,
      generalFilters,
      filtersProduct,
      { userBranches: req.userBranches }
    );
    const rows = [];
 
    for (let index = 0; index < cutsMonitoListData.rows.length; index += 1) {
      const cutsMonito = cutsMonitoListData.rows[index];
      rows.push({
        id: cutsMonito.id,
        branchCode: cutsMonito.branchCode,
        branchName:
          cutsMonito.branchCode && cutsMonito.branch && cutsMonito.branch.name
            ? `${cutsMonito.branchCode} - ${cutsMonito.branch.name}`
            : '',
        addressCode: cutsMonito.addressCode,
        code: cutsMonito.code,
        createdAt: moment(cutsMonito.createdAt).format('DD/MM/YYYY HH:mm'),
        createdUserName:
          cutsMonito.createdUser &&
          cutsMonito.userCreated &&
          cutsMonito.userCreated.login
            ? cutsMonito.userCreated.login
            : '',
        finishCableCutAt: cutsMonito.finishCableCutAt
          ? moment(cutsMonito.finishCableCutAt).format('DD/MM/YYYY HH:mm')
          : '',
        finishCableCutUserName:
          cutsMonito.finishCableCutUser &&
          cutsMonito.userFinishCut &&
          cutsMonito.userFinishCut.login
            ? cutsMonito.userFinishCut.login
            : '',
        finishCableCutUserId:
          cutsMonito.finishCableCutUser &&
          cutsMonito.userFinishCut &&
          cutsMonito.userFinishCut.id
            ? cutsMonito.userFinishCut.id
            : null,
        status: cutsMonito.status ? cutsMonito.status : '',
        productCode: cutsMonito.productCode ? cutsMonito.productCode : '',
        productName:
          cutsMonito.product && cutsMonito.product.name
            ? cutsMonito.product.name
            : '',
      });
    }
    const response = {
      success: true,
      data: {
        rows,
        pages: Math.ceil(cutsMonitoListData.count / pageSize),
        totalDataLength: cutsMonitoListData.count,
      },
    };
 
    res.json(response);
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    const response = {
      success: false,
    };
    res.json(response);
  }
}
 
async function getCableCutProductList(req, res) {
  try {
    const { cableCutPlanId } = req.body;
 
    const products = await CableCutPlanInformation.getCableCutProductList(
      cableCutPlanId
    );
    const productList = products.map((element) => {
      return {
        id: element.id ? element.id : '',
        cableCutPlanId: element.cableCutPlanId ? element.cableCutPlanId : '',
        code:
          element.cableCutPlan && element.cableCutPlan.code
            ? element.cableCutPlan.code
            : '',
        mandatoryQuantity: element.mandatoryQuantity
          ? element.mandatoryQuantity
          : '',
        minimumQuantity: element.minimumQuantity ? element.minimumQuantity : '',
        finishCableCutUser:
          element.userFinishCut && element.userFinishCut.login
            ? element.userFinishCut.login
            : '',
        finishCableCutAt: element.finishCableCutAt
          ? moment(element.finishCableCutAt).format('DD/MM/YYYY HH:mm')
          : '',
        createdUser:
          element.userCreated && element.userCreated.login
            ? element.userCreated.login
            : '',
        createdAt: element.createdAt
          ? moment(element.createdAt).format('DD/MM/YYYY HH:mm')
          : '',
        status: element.status ? element.status : '',
        lineNumber: element.lineNumber,
        lotNumber: element.lotNumber ? element.lotNumber : '',
        quantity: element.quantity ? element.quantity : '',
        productName:
          element.product &&
          element.product.productCode &&
          element.product.fullName
            ? `${element.product.productCode} - ${element.product.fullName}`
            : '',
        document:
          element.outboundOrder && element.outboundOrder.orderNumber
            ? element.outboundOrder.orderNumber
            : '',
        customerOrderCode:
          element.outboundOrder && element.outboundOrder.customerOrderCode
            ? element.outboundOrder.customerOrderCode
            : '',
        priorityCode:
          element.outboundOrder && element.outboundOrder.priorityCode
            ? element.outboundOrder.priorityCode
            : '',
        carrierCode:
          element.outboundOrder && element.outboundOrder.carrierCode
            ? element.outboundOrder.carrierCode
            : '',
        orderNumber:
          element.outboundOrder && element.outboundOrder.orderNumber
            ? element.outboundOrder.orderNumber
            : '',
        customerName:
          element.outboundOrder &&
          element.outboundOrder.customer &&
          element.outboundOrder.customer.name
            ? `${element.outboundOrder.customerCode} - ${element.outboundOrder.customer.name}`
            : '',
        automaticSeparationAfterCuttingCables: element.outboundOrder.typeOrders
          ? element.outboundOrder.typeOrders
              .automaticSeparationAfterCuttingCables
          : element.cableCutPlan.branch.automaticSeparationAfterCuttingCables,
        printedCableCutLabel: element.printedCableCutLabel,
      };
    });
    const response = {
      success: true,
      data: productList,
    };
 
    res.json(response);
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    const response = {
      success: false,
    };
    res.json(response);
  }
}
 
async function deleteCableCut(req, res) {
  const { cableCutProductId, cableCutPlanId } = req.body;
  try {
    await sequelize.transaction(async (transaction) => {
      if (cableCutProductId) {
        await CableCutProductsDelete.deleteCableCutProduct(
          cableCutProductId,
          transaction
        );
 
        const cableCutProducts =
          await CableCutProductsInformation.getAllCableCutProducts(
            {
              cableCutPlanId,
            },
            { transaction }
          );
 
        if (!cableCutProducts || cableCutProducts.length === 0) {
          await CableCutPlanDelete.deleteCableCutPlan(
            cableCutPlanId,
            transaction
          );
        }
      } else {
        const cableCutProducts =
          await CableCutProductsInformation.getAllCableCutProducts({
            cableCutPlanId,
          });
 
        if (cableCutProducts) {
          for (const product of cableCutProducts) {
            await CableCutProductsDelete.deleteCableCutProduct(
              product.id,
              transaction
            );
          }
        }
        await CableCutPlanDelete.deleteCableCutPlan(
          cableCutPlanId,
          transaction
        );
      }
 
      const response = { success: true };
      res.json(response);
    });
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    const response = {
      success: false,
    };
    res.json(response);
  }
}
 
async function finishCableCut(req, res) {
  const {
    cableCutProductId,
    equipmentCode,
    baptismLabel = null,
    isMobileApp = false,
    printerCode = '',
  } = req.body;
 
  const { userId } = req;
  let outboundOrderId = '';
 
  try {
    await sequelize.transaction(async (transaction) => {
      const validEquipmentCode = equipmentCode ? { equipmentCode } : {};
 
      await CableCutProductsUpdate.updateCableCutProduct(
        cableCutProductId,
        {
          status: 2,
          finishCableCutUser: userId,
          finishCableCutAt: moment().format(),
          updatedUser: userId,
          ...{ validEquipmentCode },
        },
        transaction
      );
 
      const cableCutProduct =
        await CableCutProductsInformation.getCableCutProduct(
          {
            id: cableCutProductId,
          },
          { transaction }
        );
 
      if (cableCutProduct) {
        outboundOrderId = cableCutProduct.outboundOrderId;
      } else {
        throw new APIError('NOT_FOUND');
      }
 
      const pendingCut =
        await await CableCutProductsInformation.getAllCableCutProducts(
          {
            cableCutPlanId: cableCutProduct.cableCutPlanId,
            status: 1,
          },
          { transaction }
        );
 
      if (!pendingCut || pendingCut.length === 0) {
        await CableCutPlanUpdate.updateCableCutPlan(
          cableCutProduct.cableCutPlanId,
          {
            status: 2,
            finishCableCutUser: userId,
            finishCableCutAt: moment().format(),
            updatedUser: userId,
            ...{ validEquipmentCode },
          },
          transaction
        );
      }
 
      const branchSettings = await BranchesInformation.getBranchSettings({
        code: req.userMainBranch,
      });
 
      const outboundOrder = await OutboundOrderInformation.getOutboundOrder(
        {
          id: cableCutProduct.outboundOrderId,
        },
        { transaction }
      );
      const branchIsAutoSeparation = branchSettings
        ? branchSettings.automaticSeparationAfterCuttingCables
        : false;
 
      const automaticSeparation = outboundOrder.typeOrders
        ? outboundOrder.typeOrders.automaticSeparationAfterCuttingCables
        : branchIsAutoSeparation;
 
      const stockBalance = await StockInformation.getStockBalance(
        {
          id: cableCutProduct.stockBalanceId,
        },
        { transaction }
      );
 
      await OutboundRangeUpdate.updateOutboundRangeProduct(
        cableCutProduct.outboundRangeProductId,
        {
          status: automaticSeparation ? 4 : 2,
          pickedQuantity: cableCutProduct.quantity,
          baptismLabel: automaticSeparation ? baptismLabel : null,
          storageAddressPicked: automaticSeparation
            ? stockBalance.addressCode
            : null,
          pickedAt: automaticSeparation ? moment().format() : null,
          pickedUser: automaticSeparation ? userId : null,
          picked: automaticSeparation ? true : null,
          updatedUser: userId,
        },
        { transaction }
      );
 
      const outboundRangeProduct =
        await OutboundRangeInformation.getOutboundRangeProduct(
          {
            id: cableCutProduct.outboundRangeProductId,
          },
          { transaction }
        );
 
      const outboundRange = await OutboundRangeInformation.getOutboundRange(
        {
          id: outboundRangeProduct.outboundRangeId,
        },
        { transaction }
      );
 
      const rangeProducts =
        await OutboundRangeInformation.getOutboundRangeProducts(
          {
            outboundRangeId: outboundRange.id,
          },
          { transaction }
        );
 
      let statusRange;
 
      const pendCableCut =
        rangeProducts.filter((p) => p.status === 1).length > 0;
      const pendPicking =
        rangeProducts.filter((p) => p.status === 2).length > 0;
      const inPicking = rangeProducts.filter((p) => p.status === 3).length > 0;
      const pendCheckRange =
        rangeProducts.filter((p) => p.status === 4).length > 0;
      const finished = rangeProducts.filter((p) => p.status === 5).length > 0;
      const divergence = rangeProducts.filter((p) => p.status === 6).length > 0;
      const canceled = rangeProducts.filter((p) => p.status === 7).length > 0;
      const returning = rangeProducts.filter((p) => p.status === 8).length > 0;
 
      if (pendCableCut) {
        statusRange = 1;
      } else if (pendPicking) {
        statusRange = 1;
      } else if (inPicking) {
        statusRange = automaticSeparation ? 3 : 2;
      } else if (divergence) {
        statusRange = 5;
      } else if (pendCheckRange) {
        statusRange = 3;
      } else if (finished) {
        statusRange = 4;
      } else if (canceled) {
        statusRange = 4;
      } else if (returning) {
        statusRange = 6;
      } else {
        statusRange = outboundRange.status;
      }
 
      await OutboundRangeUpdate.updateOutboundRange(
        outboundRange.id,
        {
          status: statusRange,
          pickedUser:
            !outboundRange.pickedUser && automaticSeparation ? userId : null,
          pickedAt:
            !outboundRange.pickedAt && automaticSeparation
              ? moment().format()
              : null,
          updatedUser: userId,
        },
        { transaction }
      );
 
      await OutboundProductAllocatiosUpdate.updateOutboundOrderProductAllocation(
        cableCutProduct.allocationId,
        {
          status: automaticSeparation ? 5 : 3,
          pickedQuantity: automaticSeparation ? cableCutProduct.quantity : null,
          pickedAt: automaticSeparation ? moment().format() : null,
          pickedUser: automaticSeparation ? userId : null,
          updatedUser: userId,
        },
        { transaction }
      );
 
      if (automaticSeparation) {
        const outboundProductAllocation =
          await OutboundProductAllocationInformation.getOutboundOrderProductAllocation(
            {
              id: cableCutProduct.allocationId,
            },
            { transaction }
          );
 
        await StockMovement.createMovement(
          {
            stockBalanceId: stockBalance.id,
            branchCode: stockBalance.branchCode,
            warehouseCode: stockBalance.warehouseCode,
            depositCode: stockBalance.depositCode,
            addressCode: stockBalance.addressCode,
            productCode: stockBalance.productCode,
            lotNumber: stockBalance.lotNumber,
            expirationDate: stockBalance.expirationDate,
            manufacturingDate: stockBalance.manufacturingDate,
            operation: 'EXP',
            type: 2,
            quantity: cableCutProduct.quantity,
            unitMeasure: stockBalance.product.unitMeasure,
            serie: '',
            orderNumber: outboundProductAllocation.outboundOrder
              ? outboundProductAllocation.outboundOrder.orderNumber
              : '',
            outboundOrderProductId:
              outboundProductAllocation.outboundOrderProductId,
            customerCode: outboundProductAllocation.outboundOrder
              ? outboundProductAllocation.outboundOrder.customerCode
              : '',
            baptismLabel,
            movementUser: userId,
            createdUser: userId,
            updatedUser: userId,
          },
          { transaction }
        );
      }
 
      const pendingProductAllocations =
        await OutboundProductAllocationInformation.getOutboundOrderProductAllocations(
          {
            outboundOrderProductId: cableCutProduct.outboundOrderProductId,
            status: automaticSeparation ? { [Op.lte]: 3 } : { [Op.lte]: 1 },
          },
          { transaction }
        );
 
      const outboundOrderProduct =
        await OutboundOrderProductInformation.getOutboundOrderProduct(
          {
            id: cableCutProduct.outboundOrderProductId,
          },
          { transaction }
        );
 
      const pendingAlloc = !(
        !pendingProductAllocations || pendingProductAllocations.length === 0
      );
 
      let status = 0;
 
      if (automaticSeparation) {
        if (pendingAlloc) status = 5;
        else status = 6;
      } else if (pendingAlloc) status = 3;
      else status = 4;
 
      await OutboundOrderProductsUpdate.updateOutboundOrderProduct(
        cableCutProduct.outboundOrderProductId,
        {
          status,
          pickedQuantity: automaticSeparation
            ? parseFloat(outboundOrderProduct.pickedQuantity || 0) +
              parseFloat(cableCutProduct.quantity)
            : null,
          pickedAt:
            !pendingAlloc && automaticSeparation ? moment().format() : null,
          pickedUser: !pendingAlloc && automaticSeparation ? userId : null,
          picked: !pendingAlloc && automaticSeparation ? true : null,
          updatedUser: userId,
        },
        { transaction }
      );
 
      const { statusOrder } =
        await OutboundOrderCtrl.outboundOrderRecalculateStatus(
          cableCutProduct.outboundOrderId,
          transaction
        );
 
      await OutboundOrderUpdate.updateOutboundOrder(
        cableCutProduct.outboundOrderId,
        {
          status: statusOrder,
          pickStartAt: !outboundOrder.pickStartAt ? moment().format() : null,
          pickStartUser: !outboundOrder.pickStartUser ? userId : null,
          pickEndAt: moment().format(),
          pickEndUser: userId,
          updatedUser: userId,
        },
        { transaction }
      );
    });
 
    try {
      await OutboundVolume.automaticConference(
        outboundOrderId,
        req.userMainBranch,
        userId
      );
    } catch (err) {
      // eslint-disable-next-line no-console
      console.log(err);
      throw new APIError('UNKNOWN_ERROR');
    }
 
    const alreadyPrinted = await CableCutProductsInformation.getCableCutProduct(
      {
        id: cableCutProductId,
        printedCableCutLabel: true,
      }
    );
 
    if (!alreadyPrinted) {
      try {
        await labels.printCableCut(
          printerCode,
          'byDocument',
          cableCutProductId,
          isMobileApp,
          userId
        );
      } catch (err) {
        // eslint-disable-next-line no-console
        console.log(err);
      }
    }
 
    const response = {
      success: true,
    };
    res.json(response);
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    const response = {
      success: false,
    };
    res.json(response);
  }
}
 
async function userChangeCutResponsible(req, res) {
  const { cableCutPlanId, responsibleCutUserId } = req.body;
 
  try {
    await sequelize.transaction(async (transaction) => {
      await CableCutPlanUpdate.updateCableCutPlan(
        cableCutPlanId,
        {
          finishCableCutUser: responsibleCutUserId,
          updatedUser: req.userId,
        },
        transaction
      );
 
      await CableCutProductsUpdate.updateCableCutPlanProduct(
        cableCutPlanId,
        {
          finishCableCutUser: responsibleCutUserId,
          updatedUser: req.userId,
        },
        transaction
      );
    });
    const response = { success: true };
    res.json(response);
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    const response = {
      success: false,
    };
    res.json(response);
  }
}
 
async function getCableCuts(req, res) {
  try {
    const { automaticSeparationAfterCuttingCables } =
      req.userMainBranchSettings;
 
    const filter = {
      branchCode: req.userMainBranch,
      [Op.or]: [
        { finishCableCutUser: req.userId },
        { finishCableCutUser: null },
        { finishCableCutUser: '' },
      ],
      status: 1, // Pendente
    };
 
    const filterProducts = {
      status: 1, // Pendente
    };
 
    const cutPlanList = await CableCutPlanInformation.getCableCuts(
      filter,
      filterProducts,
      {
        userBranches: req.userBranches,
      }
    );
 
    const rows = cutPlanList.map((cutPlan) => {
      let status = '';
 
      if (cutPlan.status === 1) status = t('BEE470' /* Pendente */);
      if (cutPlan.status === 2) status = t('BEE1833' /* finalizado */);
      if (cutPlan.status === 3) status = t('BEE64' /* Cancelado */);
 
      return {
        id: cutPlan.id,
        finishCableCutUser: cutPlan.finishCableCutUser,
        addressCode: cutPlan.addressCode,
        code: cutPlan.code,
        products: cutPlan.products
          ? cutPlan.products
              .map((it) => ({
                ...it.toJSON(),
                quantity: parseFloat(it.quantity),
                mandatoryQuantity: parseFloat(it.mandatoryQuantity),
              }))
              .sort((a, b) => {
                if (a.lineNumber > b.lineNumber) {
                  return 1;
                }
                if (a.lineNumber < b.lineNumber) {
                  return -1;
                }
                return 0;
              })
          : [],
        automaticSeparationAfterCuttingCables,
        status,
      };
    });
    const response = {
      success: true,
      data: _.orderBy(
        rows,
        ['finishCableCutUser', 'addressCode'],
        ['desc', 'desc']
      ),
    };
 
    res.json(response);
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    const response = {
      success: false,
    };
    res.json(response);
  }
}
 
async function saveUserFinished(req, res) {
  try {
    const { cableCutPlanId } = req.body;
    if (req.userId) {
      await CableCutPlanUpdate.updateCableCutPlan(cableCutPlanId, {
        finishCableCutUser: req.userId,
        updatedUser: req.userId,
      });
      const response = { success: true };
      res.json(response);
    } else {
      throw new APIError(
        'CANNOT_FINALIZED',
        t('BEE1831' /* não foi possível finalizar o corte */)
      );
    }
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    const response = {
      success: false,
    };
    res.json(response);
  }
}
 
async function createCableCutPlan(req, res) {
  const { outboundOrderProductIds } = req.body;
 
  try {
    await sequelize.transaction(async (transaction) => {
      const productAllocations =
        await OutboundProductAllocationInformation.getOutboundOrderProductAllocations(
          {
            outboundOrderProductId: outboundOrderProductIds,
          },
          { transaction }
        );
 
      const addresses = [];
 
      productAllocations.reduce((accum, allocation) => {
        const newData = accum;
        const { addressCode } = allocation.balance;
 
        if (!accum[addressCode]) {
          addresses.push({
            addressCode: allocation.balance.addressCode,
            branchCode: allocation.balance.branchCode,
            productCode: allocation.outboundProduct.productCode,
          });
 
          newData[addressCode] = true;
        }
 
        return newData;
      }, []);
 
      Eif (addresses && addresses.length) {
        let lastCode = await CableCutPlanInformation.getLastCode(
          addresses[0].branchCode
        );
        for (const address of addresses) {
          lastCode += 1;
 
          const newPlan = await CableCutPlanCreate.createCableCutPlan(
            {
              code: lastCode,
              branchCode: address.branchCode,
              addressCode: address.addressCode,
              productCode: address.productCode,
              cableCutDate: moment().format(),
              createdUser: req.userId,
              updatedUser: req.userId,
            },
            transaction
          );
 
          Eif (newPlan) {
            const allocations = productAllocations.filter(
              (alloc) => alloc.balance.addressCode === newPlan.addressCode
            );
 
            for (const alloc of allocations) {
              const addressInfo =
                await StorageAddressInformation.getStorageAddress({
                  code: address.addressCode,
                  branchCode: address.branchCode,
                });
 
              const outboundRange =
                await OutboundRangeInformation.getOutboundRange(
                  {
                    outboundOrderId: alloc.outboundOrderId,
                    rangeCode: addressInfo.rangeCode,
                  },
                  { transaction }
                );
 
              const outboundRangeProduct =
                await OutboundRangeInformation.getOutboundRangeProduct(
                  {
                    outboundOrderId: alloc.outboundOrderId,
                    outboundOrderProductId: alloc.outboundOrderProductId,
                    outboundRangeId: outboundRange.id,
                    allocationId: alloc.id,
                  },
                  { transaction }
                );
 
              const outboundOrderProduct =
                await OutboundOrderProductInformation.getOutboundOrderProduct(
                  {
                    id: alloc.outboundOrderProductId,
                  },
                  { transaction }
                );
 
              await CableCutProductsCreate.createCableCutProduct(
                {
                  cableCutPlanId: newPlan.id,
                  outboundOrderId: alloc.outboundOrderId,
                  outboundOrderProductId: alloc.outboundOrderProductId,
                  stockBalanceId: alloc.stockBalanceId,
                  allocationId: alloc.id,
                  outboundRangeProductId: outboundRangeProduct
                    ? outboundRangeProduct.id
                    : 0,
                  productCode: alloc.outboundProduct.productCode,
                  lineNumber: alloc.outboundProduct.lineNumber,
                  lotNumber: alloc.balance.lotNumber,
                  quantity: alloc.quantity,
                  minimumQuantity: outboundOrderProduct.minimumQuantity || 0,
                  mandatoryQuantity:
                    outboundOrderProduct.mandatoryQuantity || 0,
                  note: '',
                  createdUser: req.userId,
                  updatedUser: req.userId,
                },
                transaction
              );
            }
          }
        }
      }
    });
 
    const response = {
      success: true,
    };
    res.json(response);
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    const response = {
      success: false,
    };
    res.json(response);
  }
}
 
async function changeProductAllocation(req, res) {
  const { outboundOrderProductIds, stockBalanceId } = req.body;
 
  const { userId } = req;
  try {
    await sequelize.transaction(async (transaction) => {
      const outboundProducts =
        await OutboundOrderProductInformation.getOutboundOrderProducts(
          {
            id: outboundOrderProductIds,
          },
          { transaction }
        );
 
      // Desaloca Produtos
      for (const outboundProduct of outboundProducts) {
        await OutboundOrderAllocate.deallocateProduct(
          outboundProduct,
          userId,
          transaction
        );
        await OutboundOrderRange.deleteOutboundRanges(
          outboundProduct,
          transaction,
          userId
        );
      }
 
      // Aloca Produtos
      for (const outboundProduct of outboundProducts) {
        const outboundOrder = await OutboundOrderInformation.getOutboundOrder(
          {
            id: outboundProduct.outboundOrderId,
          },
          { transaction }
        );
 
        const balance = await StockInformation.getStockBalance(
          {
            id: stockBalanceId,
          },
          { transaction }
        );
 
        const updOutboundProduct =
          await OutboundOrderProductInformation.getOutboundOrderProduct(
            {
              id: outboundProduct.id,
            },
            { transaction }
          );
 
        // Cria nova alocação
        const newAllocations = await OutboundOrderAllocate.allocateProduct(
          outboundOrder,
          updOutboundProduct,
          balance,
          userId,
          transaction
        );
 
        if (!newAllocations || newAllocations.length === 0)
          throw new APIError(
            '',
            t('BEE3012' /* Erro ao gerar nova alocação. */)
          );
 
        // Cria Range
        const outboundOrderNote =
          outboundOrder && outboundOrder.note ? outboundOrder.note : '';
        await OutboundOrderRange.createOutboundRanges(
          outboundOrder.id,
          newAllocations,
          userId,
          transaction,
          outboundOrderNote
        );
      }
    });
    await createCableCutPlan(req, res);
  } catch (err) {
    // eslint-disable-next-line no-console
    console.log(err);
    const response = {
      success: false,
    };
    res.json(response);
  }
}
 
export default {
  getProductsToCableCutPlan,
  cutsMonitoList,
  finishCableCut,
  deleteCableCut,
  getCableCutProductList,
  userChangeCutResponsible,
  getCableCuts,
  saveUserFinished,
  createCableCutPlan,
  changeProductAllocation,
};