@colijnit/transaction 12.1.70 → 12.1.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/colijnit-transaction.umd.js +126 -31
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +4 -4
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/colijnit-transaction.js +5 -5
- package/esm2015/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.component.js +9 -7
- package/esm2015/lib/component/transaction-header/transaction-header/transaction-header.component.js +5 -5
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.component.js +1 -1
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/transaction-quick-access-purchase-order-overview.component.js +7 -7
- package/esm2015/lib/component/transaction-search/transaction-search-header/transaction-search-header.component.js +12 -10
- package/esm2015/lib/enum/icon.enum.js +8 -2
- package/esm2015/lib/model/icon-svg.js +11 -5
- package/esm2015/lib/service/pending-reason.service.js +7 -7
- package/esm2015/lib/service/transaction-connector-adapter.service.js +26 -1
- package/esm2015/lib/service/transaction-connector.service.js +11 -1
- package/esm2015/lib/service/transaction.service.js +15 -4
- package/fesm2015/colijnit-transaction.js +97 -32
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.component.d.ts +3 -3
- package/lib/component/transaction-lines/style/_layout.scss +1 -1
- package/lib/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/transaction-quick-access-purchase-order-overview.component.d.ts +4 -5
- package/lib/component/transaction-search/style/_material-definition.scss +13 -7
- package/lib/component/transaction-search/style/_theme.scss +8 -0
- package/lib/component/transaction-search/transaction-search-header/style/_layout.scss +30 -6
- package/lib/enum/icon.enum.d.ts +8 -2
- package/lib/service/pending-reason.service.d.ts +2 -2
- package/lib/service/transaction-connector-adapter.service.d.ts +4 -0
- package/lib/service/transaction-connector.service.d.ts +4 -0
- package/lib/service/transaction.service.d.ts +4 -0
- package/package.json +1 -1
|
@@ -49,6 +49,7 @@ import { GoodsAllocationStatus } from '@colijnit/transactionapi/build/model/good
|
|
|
49
49
|
import { GoodsAllocationStatusWithHistory } from '@colijnit/transactionapi/build/model/goods-allocation-status-with-history.bo';
|
|
50
50
|
import { ReportLayoutSelectionEmail } from '@colijnit/mainapi/build/model/report-layout-selection-email.bo';
|
|
51
51
|
import { ReportLayoutSelectionPrint } from '@colijnit/mainapi/build/model/report-layout-selection-print.bo';
|
|
52
|
+
import { PurchaseAdviceLine } from '@colijnit/transactionapi/build/model/purchase-advice-line.bo';
|
|
52
53
|
import { ResolveLinePendingReasonRequest } from '@colijnit/transactionapi/build/model/resolve-pending-reason-request.bo';
|
|
53
54
|
import { Articles } from '@colijnit/articleapi/build/articles';
|
|
54
55
|
import { StockLocation } from '@colijnit/articleapi/build/model/stock-location.bo';
|
|
@@ -96,6 +97,9 @@ import { SendMethodType } from '@colijnit/mainapi/build/enum/send-method-type.en
|
|
|
96
97
|
import { StockStatus } from '@colijnit/transactionapi/build/enum/refcode/stock-status.enum';
|
|
97
98
|
import { AllocateGoodsForSalesOrderRequest } from '@colijnit/transactionapi/build/model/allocate-goods-for-sales-order-request';
|
|
98
99
|
import { SalesOrderLineAllocationDetails } from '@colijnit/transactionapi/build/model/sales-order-line-allocation-details';
|
|
100
|
+
import { EmailPurchaseOrderRequest } from '@colijnit/mainapi/build/model/email-purchase-order-request';
|
|
101
|
+
import { PrintPurchaseOrderRequest } from '@colijnit/mainapi/build/model/print-purchase-order-request';
|
|
102
|
+
import { PdfPurchaseOrderRequest } from '@colijnit/mainapi/build/model/pdf-purchase-order-request';
|
|
99
103
|
import { RelationRequest } from '@colijnit/relationapi/build/model/relation-request';
|
|
100
104
|
import { CoDocument } from '@colijnit/sharedapi/build/model/co-document.bo';
|
|
101
105
|
import { ValidationResult } from '@colijnit/ioneconnector/build/model/validation-result';
|
|
@@ -1374,8 +1378,11 @@ var Icon;
|
|
|
1374
1378
|
Icon["EditPencil"] = "edit_pencil";
|
|
1375
1379
|
Icon["EllipsisLight"] = "ellipsis_light";
|
|
1376
1380
|
Icon["EllipsisVerticalSolid"] = "ellipsis_vertical_solid";
|
|
1377
|
-
Icon["
|
|
1381
|
+
Icon["ExpandSolid"] = "expand_solid";
|
|
1378
1382
|
Icon["FileCircleInfoSolid"] = "file_circle_info_solid";
|
|
1383
|
+
Icon["FileExportRegular"] = "file_export_regular";
|
|
1384
|
+
Icon["FileExportSolid"] = "file_export_solid";
|
|
1385
|
+
Icon["FilePdfRegular"] = "file_pdf_regular";
|
|
1379
1386
|
Icon["FilePdfSolid"] = "file_pdf_solid";
|
|
1380
1387
|
Icon["GearSolid"] = "gear_solid";
|
|
1381
1388
|
Icon["GripDotsVerticalSolid"] = "grip_dots_vertical_solid";
|
|
@@ -1392,6 +1399,8 @@ var Icon;
|
|
|
1392
1399
|
Icon["MasterDetail"] = "master_detail";
|
|
1393
1400
|
Icon["MemoCircleCheckSolid"] = "memo_circle_check_solid";
|
|
1394
1401
|
Icon["Menu"] = "menu";
|
|
1402
|
+
Icon["MessageSmsRegular"] = "message_sms_regular";
|
|
1403
|
+
Icon["MessageSmsSolid"] = "message_sms_solid";
|
|
1395
1404
|
Icon["ObjectIntersectSolid"] = "object_intersect_solid";
|
|
1396
1405
|
Icon["PalletBoxesSolid"] = "pallet_boxes_solid";
|
|
1397
1406
|
Icon["Pdf"] = "pdf";
|
|
@@ -1427,6 +1436,7 @@ var Icon;
|
|
|
1427
1436
|
Icon["Txt"] = "txt";
|
|
1428
1437
|
Icon["Unlock"] = "unlock";
|
|
1429
1438
|
Icon["Warehouse"] = "warehouse";
|
|
1439
|
+
Icon["XSolid"] = "x_solid";
|
|
1430
1440
|
})(Icon || (Icon = {}));
|
|
1431
1441
|
|
|
1432
1442
|
/** AUTO GENERATED FILE. DO NOT CHANGE.. OR YOU WILL SUFFER THE CONSEQUENCES OF YOUR ACTIONS **/
|
|
@@ -1451,9 +1461,12 @@ const IconSvg = {
|
|
|
1451
1461
|
"edit_pencil": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><polygon points=\"12.54 38.16 12 37.62 14.85 29.64 20.52 35.31 12.54 38.16\" fill=\"#484f60\"/><rect x=\"16.33\" y=\"20.52\" width=\"17.99\" height=\"8.64\" transform=\"translate(-10.15 25.18) rotate(-45)\" fill=\"#484f60\"/><path d=\"M37.54,18.73,36,20.32l-6.11-6.1,1.59-1.59a1.55,1.55,0,0,1,2.2,0l3.91,3.9A1.55,1.55,0,0,1,37.54,18.73Z\" fill=\"#484f60\"/></svg>",
|
|
1452
1462
|
"ellipsis_light": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M352 256C352 238.3 366.3 224 384 224C401.7 224 416 238.3 416 256C416 273.7 401.7 288 384 288C366.3 288 352 273.7 352 256zM192 256C192 238.3 206.3 224 224 224C241.7 224 256 238.3 256 256C256 273.7 241.7 288 224 288C206.3 288 192 273.7 192 256zM96 256C96 273.7 81.67 288 64 288C46.33 288 32 273.7 32 256C32 238.3 46.33 224 64 224C81.67 224 96 238.3 96 256z\"/></svg>",
|
|
1453
1463
|
"ellipsis_vertical_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 128 512\"><path d=\"M64 360c30.9 0 56 25.1 56 56s-25.1 56-56 56s-56-25.1-56-56s25.1-56 56-56zm0-160c30.9 0 56 25.1 56 56s-25.1 56-56 56s-56-25.1-56-56s25.1-56 56-56zM120 96c0 30.9-25.1 56-56 56S8 126.9 8 96S33.1 40 64 40s56 25.1 56 56z\"/></svg>",
|
|
1454
|
-
"
|
|
1464
|
+
"expand_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M32 32C14.3 32 0 46.3 0 64v96c0 17.7 14.3 32 32 32s32-14.3 32-32V96h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM64 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7 14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V352zM320 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h64v64c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32H320zM448 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32V352z\"/></svg>",
|
|
1455
1465
|
"file_circle_info_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M0 64C0 28.65 28.65 0 64 0H224V128C224 145.7 238.3 160 256 160H384V198.6C310.1 219.5 256 287.4 256 368C256 427.1 285.1 479.3 329.7 511.3C326.6 511.7 323.3 512 320 512H64C28.65 512 0 483.3 0 448V64zM256 128V0L384 128H256zM288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM432 320C445.3 320 456 309.3 456 296C456 282.7 445.3 272 432 272C418.7 272 408 282.7 408 296C408 309.3 418.7 320 432 320zM416 384L416 432C407.2 432 400 439.2 400 448C400 456.8 407.2 464 416 464H448C456.8 464 464 456.8 464 448C464 439.2 456.8 432 448 432V368C448 359.2 440.8 352 432 352H416C407.2 352 400 359.2 400 368C400 376.8 407.2 384 416 384z\"/></svg>",
|
|
1456
|
-
"
|
|
1466
|
+
"file_export_regular": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M568.1 303l-80-80c-9.375-9.375-24.56-9.375-33.94 0s-9.375 24.56 0 33.94L494.1 296H216C202.8 296 192 306.8 192 320s10.75 24 24 24h278.1l-39.03 39.03C450.3 387.7 448 393.8 448 400s2.344 12.28 7.031 16.97c9.375 9.375 24.56 9.375 33.94 0l80-80C578.3 327.6 578.3 312.4 568.1 303zM360 384c-13.25 0-24 10.74-24 24V448c0 8.836-7.164 16-16 16H64.02c-8.836 0-16-7.164-16-16L48 64.13c0-8.836 7.164-16 16-16h160L224 128c0 17.67 14.33 32 32 32h79.1v72c0 13.25 10.74 24 23.1 24S384 245.3 384 232V138.6c0-16.98-6.742-33.26-18.75-45.26l-74.63-74.64C278.6 6.742 262.3 0 245.4 0H63.1C28.65 0-.002 28.66 0 64l.0065 384c.002 35.34 28.65 64 64 64H320c35.2 0 64-28.8 64-64v-40C384 394.7 373.3 384 360 384z\"/></svg>",
|
|
1467
|
+
"file_export_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M32 64C32 28.7 60.7 0 96 0H256V128c0 17.7 14.3 32 32 32H416V288H248c-13.3 0-24 10.7-24 24s10.7 24 24 24H416V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V64zM416 336V288H526.1l-39-39c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l80 80c9.4 9.4 9.4 24.6 0 33.9l-80 80c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l39-39H416zm0-208H288V0L416 128z\"/></svg>",
|
|
1468
|
+
"file_pdf_regular": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M320 464C328.8 464 336 456.8 336 448V416H384V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V416H48V448C48 456.8 55.16 464 64 464H320zM256 160C238.3 160 224 145.7 224 128V48H64C55.16 48 48 55.16 48 64V192H0V64C0 28.65 28.65 0 64 0H229.5C246.5 0 262.7 6.743 274.7 18.75L365.3 109.3C377.3 121.3 384 137.5 384 154.5V192H336V160H256zM88 224C118.9 224 144 249.1 144 280C144 310.9 118.9 336 88 336H80V368C80 376.8 72.84 384 64 384C55.16 384 48 376.8 48 368V240C48 231.2 55.16 224 64 224H88zM112 280C112 266.7 101.3 256 88 256H80V304H88C101.3 304 112 293.3 112 280zM160 240C160 231.2 167.2 224 176 224H200C226.5 224 248 245.5 248 272V336C248 362.5 226.5 384 200 384H176C167.2 384 160 376.8 160 368V240zM192 352H200C208.8 352 216 344.8 216 336V272C216 263.2 208.8 256 200 256H192V352zM336 224C344.8 224 352 231.2 352 240C352 248.8 344.8 256 336 256H304V288H336C344.8 288 352 295.2 352 304C352 312.8 344.8 320 336 320H304V368C304 376.8 296.8 384 288 384C279.2 384 272 376.8 272 368V240C272 231.2 279.2 224 288 224H336z\"/></svg>",
|
|
1469
|
+
"file_pdf_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM64 224H88c30.9 0 56 25.1 56 56s-25.1 56-56 56H80v32c0 8.8-7.2 16-16 16s-16-7.2-16-16V320 240c0-8.8 7.2-16 16-16zm24 80c13.3 0 24-10.7 24-24s-10.7-24-24-24H80v48h8zm72-64c0-8.8 7.2-16 16-16h24c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H176c-8.8 0-16-7.2-16-16V240zm32 112h8c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16h-8v96zm96-128h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H304v32h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H304v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V304 240c0-8.8 7.2-16 16-16z\"/></svg>",
|
|
1457
1470
|
"gear_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M200 0H312l17.2 78.4c15.8 6.5 30.6 15.1 44 25.4l76.5-24.4 56 97-59.4 54.1c1.1 8.3 1.7 16.8 1.7 25.4s-.6 17.1-1.7 25.4l59.4 54.1-56 97-76.5-24.4c-13.4 10.3-28.2 18.9-44 25.4L312 512H200l-17.2-78.4c-15.8-6.5-30.6-15.1-44-25.4L62.3 432.5l-56-97 59.4-54.1C64.6 273.1 64 264.6 64 256s.6-17.1 1.7-25.4L6.3 176.5l56-97 76.5 24.4c13.4-10.3 28.2-18.9 44-25.4L200 0zm56 336c44.2 0 80-35.8 80-80s-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80z\"/></svg>",
|
|
1458
1471
|
"grip_dots_vertical_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 512\"><path d=\"M48 144c26.5 0 48-21.5 48-48s-21.5-48-48-48S0 69.5 0 96s21.5 48 48 48zm0 160c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM96 416c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM208 144c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm48 112c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM208 464c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48z\"/></svg>",
|
|
1459
1472
|
"ideal_logo": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 306.1 269.8\" style=\"enable-background:new 0 0 306.1 269.8;\" ><style type=\"text/css\">.st0{fill:#FFFFFF;}.st1{fill:#CC0066;}</style><g><g><path class=\"st0\" d=\"M0,20v229.8c0,11,9,20,20,20h137.3c103.8,0,148.8-58.1,148.8-135.2C306.1,57.9,261.1,0,157.3,0H20C9,0,0,9,0,20z\"/><path class=\"st1\" d=\"M91.9,56.4v169.8h73.9c67.1,0,96.2-37.9,96.2-91.5c0-51.3-29.1-91.1-96.2-91.1h-61.1C97.6,43.6,91.9,49.4,91.9,56.4z\"/><g><g><path d=\"M157.3,251.5H37.9c-10.6,0-19.2-8.6-19.2-19.2V37.6c0-10.6,8.6-19.2,19.2-19.2h119.4c113.3,0,130.2,72.9,130.2,116.3C287.5,210,241.2,251.5,157.3,251.5z M37.9,24.8c-7.1,0-12.8,5.7-12.8,12.8v194.7c0,7.1,5.7,12.8,12.8,12.8h119.4c79.8,0,123.8-39.2,123.8-110.4c0-95.6-77.6-109.9-123.8-109.9H37.9z\"/></g></g></g><g><path class=\"st0\" d=\"M117.9,111.8c2.6,0,5,0.4,7.3,1.2c2.3,0.8,4.2,2.1,5.9,3.7c1.6,1.7,2.9,3.8,3.9,6.2c0.9,2.5,1.4,5.4,1.4,8.8c0,3-0.4,5.7-1.1,8.2c-0.8,2.5-1.9,4.7-3.4,6.5c-1.5,1.8-3.4,3.2-5.7,4.3c-2.3,1-5,1.6-8.1,1.6h-17.5v-40.6H117.9z M117.3,144.9c1.3,0,2.5-0.2,3.8-0.6c1.2-0.4,2.3-1.1,3.2-2.1c0.9-1,1.7-2.2,2.3-3.8c0.6-1.6,0.9-3.4,0.9-5.7c0-2-0.2-3.9-0.6-5.5c-0.4-1.6-1.1-3.1-2-4.2s-2.1-2.1-3.6-2.7c-1.5-0.6-3.3-0.9-5.5-0.9h-6.4v25.6H117.3z\"/><path class=\"st0\" d=\"M172.5,111.8v7.5h-21.4v8.7h19.7v6.9h-19.7v9.9H173v7.5h-30.8v-40.6H172.5z\"/><path class=\"st0\" d=\"M203.1,111.8l15.2,40.6H209l-3.1-9h-15.2l-3.2,9h-9l15.3-40.6H203.1z M203.6,136.7l-5.1-14.9h-0.1l-5.3,14.9H203.6z\"/><path class=\"st0\" d=\"M232.8,111.8v33.1h19.8v7.5h-28.7v-40.6H232.8z\"/></g><g><circle cx=\"58.5\" cy=\"132.1\" r=\"18.7\"/></g><path d=\"M72.6,226.2L72.6,226.2c-15.7,0-28.3-12.7-28.3-28.3v-22.1c0-7.8,6.3-14.2,14.2-14.2h0c7.8,0,14.2,6.3,14.2,14.2V226.2z\"/></g></svg>",
|
|
@@ -1469,6 +1482,8 @@ const IconSvg = {
|
|
|
1469
1482
|
"master_detail": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"22\" y=\"32.17\" width=\"18\" height=\"4\" transform=\"translate(62 68.33) rotate(180)\" fill=\"#484f60\"/><rect x=\"22\" y=\"26.17\" width=\"18\" height=\"4\" transform=\"translate(62 56.33) rotate(180)\" fill=\"#484f60\"/><rect x=\"22\" y=\"20.17\" width=\"18\" height=\"4\" transform=\"translate(62 44.33) rotate(180)\" fill=\"#484f60\"/><rect x=\"22\" y=\"14.17\" width=\"18\" height=\"4\" transform=\"translate(62 32.33) rotate(180)\" fill=\"#484f60\"/><rect x=\"10\" y=\"14.17\" width=\"10\" height=\"22\" transform=\"translate(30 50.33) rotate(180)\" fill=\"#484f60\"/></svg>",
|
|
1470
1483
|
"memo_circle_check_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM499.3 347.3C505.6 341.1 505.6 330.9 499.3 324.7C493.1 318.4 482.9 318.4 476.7 324.7L416 385.4L387.3 356.7C381.1 350.4 370.9 350.4 364.7 356.7C358.4 362.9 358.4 373.1 364.7 379.3L404.7 419.3C410.9 425.6 421.1 425.6 427.3 419.3L499.3 347.3zM320 0C355.3 0 384 28.65 384 64V198.6C310.1 219.5 256 287.4 256 368C256 427.1 285.1 479.3 329.7 511.3C326.6 511.7 323.3 512 320 512H64C28.65 512 0 483.3 0 448V64C0 28.65 28.65 0 64 0H320zM80 128C71.16 128 64 135.2 64 144C64 152.8 71.16 160 80 160H304C312.8 160 320 152.8 320 144C320 135.2 312.8 128 304 128H80zM80 256H240C248.8 256 256 248.8 256 240C256 231.2 248.8 224 240 224H80C71.16 224 64 231.2 64 240C64 248.8 71.16 256 80 256zM80 352H176C184.8 352 192 344.8 192 336C192 327.2 184.8 320 176 320H80C71.16 320 64 327.2 64 336C64 344.8 71.16 352 80 352z\"/></svg>",
|
|
1471
1484
|
"menu": "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\"><svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\"><path d=\"M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z\" /></svg>",
|
|
1485
|
+
"message_sms_regular": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M448-.0004H64c-35.25 0-64 28.75-64 63.1v287.1c0 35.25 28.75 63.1 64 63.1h96v83.98c0 9.836 11.02 15.55 19.12 9.7L304 415.1H448c35.25 0 64-28.75 64-63.1V63.1C512 28.75 483.3-.0004 448-.0004zM464 352c0 8.75-7.25 16-16 16h-160l-80 60v-60H64c-8.75 0-16-7.25-16-16V64c0-8.75 7.25-16 16-16h384c8.75 0 16 7.25 16 16V352zM124.4 192.6C113.6 189.5 103.2 187.2 104.2 181.5c.7813-4.5 10.28-6.562 21.5-4.906c4.156 .6562 8.75 2.094 13.09 3.594c8.375 2.906 17.47-1.562 20.34-9.906c2.875-8.344-1.562-17.47-9.906-20.34C143.1 147.8 136.5 145.9 130.6 145c-30.69-4.812-53.94 7.719-58 31.09c-5.656 33.03 26.5 42.47 38.63 46c13.72 3.947 25.62 6.432 24.56 12.34C135 239 125.7 241.1 114.3 239.4C107.9 238.4 100.4 235.4 93.38 232.9c-8.375-2.969-16 1.875-18.97 10.19S77.19 261.1 85.5 264.1C92.81 266.8 101.1 269.8 109.4 271C113.7 271.7 117.9 272 121.1 272c24.28 0 41.94-12.03 45.38-32.13C173.1 206.5 141.4 197.5 124.4 192.6zM396.4 192.6C385.6 189.5 375.2 187.2 376.2 181.5c.7813-4.5 10.31-6.562 21.5-4.906c4.156 .6562 8.75 2.094 13.09 3.594c8.406 2.906 17.47-1.562 20.34-9.906c2.875-8.344-1.562-17.47-9.906-20.34c-6.156-2.125-12.69-4.062-18.59-4.969c-30.75-4.812-53.97 7.719-58 31.09c-5.656 33.03 26.5 42.47 38.63 46c13.72 3.947 25.62 6.432 24.56 12.34c-.7813 4.562-10.12 6.656-21.56 4.938c-6.342-.9883-13.9-3.939-20.88-6.438c-8.375-2.969-16 1.875-18.97 10.19s2.781 17.97 11.09 20.97c7.312 2.656 15.62 5.656 23.88 6.906C385.7 271.7 389.9 272 393.1 272c24.28 0 41.94-12.03 45.38-32.13C445.1 206.5 413.4 197.5 396.4 192.6zM309.1 144.8c-6.469-2.062-13.72 .0625-17.88 5.594L256 197.3L220.8 150.4C216.7 144.9 209.4 142.7 202.9 144.8C196.4 147 192 153.1 192 160v96c0 8.844 7.156 16 16 16S224 264.8 224 256V208l19.19 25.59c6.062 8.062 19.56 8.062 25.62 0L288 208V256c0 8.844 7.156 16 16 16S320 264.8 320 256V160C320 153.1 315.6 147 309.1 144.8z\"/></svg>",
|
|
1486
|
+
"message_sms_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M0 64C0 28.7 28.7 0 64 0H448c35.3 0 64 28.7 64 64V352c0 35.3-28.7 64-64 64H309.3L185.6 508.8c-4.8 3.6-11.3 4.2-16.8 1.5s-8.8-8.2-8.8-14.3V416H64c-35.3 0-64-28.7-64-64V64zm202.9 80.8C196.4 147 192 153.1 192 160v96c0 8.8 7.2 16 16 16s16-7.2 16-16V208l19.2 25.6c3 4 7.8 6.4 12.8 6.4s9.8-2.4 12.8-6.4L288 208v48c0 8.8 7.2 16 16 16s16-7.2 16-16V160c0-6.9-4.4-13-10.9-15.2s-13.7 .1-17.9 5.6L256 197.3l-35.2-46.9c-4.1-5.5-11.3-7.8-17.9-5.6zm173.1 38c0-1.1 .2-1.6 .4-1.9c.3-.4 .9-1.2 2.4-2c3.1-1.8 8-3 12.9-2.9c6.1 .1 12.9 1.4 20.1 3.4c8.5 2.3 17.3-2.8 19.6-11.3s-2.8-17.3-11.3-19.6c-8.2-2.2-17.9-4.3-27.9-4.4c-9.3-.1-20.4 1.9-29.7 7.4c-9.9 5.9-18.6 16.4-18.5 31.6c.1 14.7 8.8 24 17.7 29.4c7.6 4.6 17.1 7.4 24.3 9.6l1.2 .4c8.5 2.6 14.2 4.5 18 6.9c2.7 1.7 2.7 2.4 2.7 3.1l0 .2c0 1.6-.3 2.3-.6 2.7c-.3 .5-.9 1.2-2.1 2c-2.8 1.7-7.5 2.9-12.8 2.8c-7-.2-13.5-2.4-22.6-5.5l0 0 0 0c-1.5-.5-3.2-1.1-4.9-1.6c-8.4-2.8-17.4 1.7-20.2 10.1s1.7 17.4 10.1 20.2c1.2 .4 2.6 .9 4 1.4l0 0 0 0c8.8 3 20.4 7 32.6 7.4c9.8 .3 21.2-1.6 30.7-7.6c10.2-6.4 18-17.3 17.8-32.3c-.2-14.7-8.5-24.2-17.6-29.9c-8-5-17.9-8-25.2-10.2l-.6-.2c-8.6-2.6-14.4-4.4-18.2-6.8c-1.6-1-2.1-1.6-2.2-1.7c0-.1 0-.2 0-.4zm-272 0c0-1.1 .2-1.6 .4-1.9c.3-.4 .9-1.2 2.4-2c3.1-1.8 8-3 12.9-2.9c6.6 .1 16.7 1.6 23.3 3.4c8.5 2.3 17.3-2.8 19.6-11.3s-2.8-17.3-11.3-19.6c-8.8-2.4-21.6-4.3-31.1-4.4c-9.3-.1-20.4 1.9-29.7 7.4C80.6 157.3 72 167.8 72 183c.1 14.7 8.8 24 17.7 29.4c7.6 4.6 17.1 7.4 24.3 9.6l0 0 1.2 .4c8.5 2.6 14.2 4.5 18 6.9c2.7 1.7 2.7 2.4 2.7 3.1l0 .2c0 1.6-.3 2.3-.6 2.7c-.3 .5-.9 1.2-2.1 2c-2.8 1.7-7.5 2.9-12.8 2.8c-7.2-.2-14.2-2.6-23.7-5.8l0 0 0 0c-1.3-.4-2.7-.9-4.1-1.4c-8.4-2.8-17.4 1.7-20.2 10.1s1.7 17.4 10.1 20.2c1.1 .4 2.4 .8 3.6 1.2l0 0 0 0c9 3.1 20.9 7.2 33.2 7.6c9.8 .3 21.2-1.6 30.7-7.6c10.2-6.4 18-17.3 17.8-32.3c-.2-14.7-8.5-24.2-17.6-29.9c-8-5-17.9-8-25.2-10.2l-.6-.2c-8.6-2.6-14.4-4.4-18.3-6.8c-1.6-1-2.1-1.6-2.2-1.7c0-.1 0-.2 0-.4z\"/></svg>",
|
|
1472
1487
|
"object_intersect_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M288 64v96H224c-35.3 0-64 28.7-64 64v64H64V64H288zM64 352h96v96c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V224c0-35.3-28.7-64-64-64H352V64c0-35.3-28.7-64-64-64H64C28.7 0 0 28.7 0 64V288c0 35.3 28.7 64 64 64zM448 224V448H224V352h64c35.3 0 64-28.7 64-64V224h96z\"/></svg>",
|
|
1473
1488
|
"pallet_boxes_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M96 255.1L288 256c17.6 0 32-14.4 32-32V31.1c0-17.6-14.4-31.1-32-31.1L96 0c-17.6 0-32 14.4-32 32V224C64 241.6 78.4 255.1 96 255.1zM416 255.1h128c17.6 0 32-14.4 32-31.1v-128c0-17.6-14.4-32-32-32h-128c-17.6 0-32 14.4-32 32v128C384 241.6 398.4 255.1 416 255.1zM624 384c8.75 0 16-7.25 16-16v-32c0-8.75-7.25-16-16-16h-608C7.25 320 0 327.3 0 336v32C0 376.8 7.25 384 16 384H64v64H16C7.25 448 0 455.3 0 464v32C0 504.8 7.25 512 16 512h608c8.75 0 16-7.25 16-16v-32c0-8.75-7.25-16-16-16H576v-64H624zM288 448H128v-64h160V448zM512 448h-160v-64h160V448z\"/></svg>",
|
|
1474
1489
|
"pdf": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M31.42,40.17H13.88c-2.16,0-2.72-.56-2.72-2.72V12.88c0-2.15.56-2.71,2.72-2.71h11.6l8.66,8.88v3.43H32.8V19.6l-7.88-8.09h-11c-1.38,0-1.38,0-1.38,1.37V37.45c0,1.37,0,1.37,1.38,1.37H31.42c1.38,0,1.38,0,1.38-1.37V35h1.34v2.43C34.14,39.61,33.58,40.17,31.42,40.17Z\" fill=\"#484f60\"/><path d=\"M27.83,26.63v4.24h1a3.57,3.57,0,0,0,.78-.06,1.22,1.22,0,0,0,.52-.26,1.44,1.44,0,0,0,.34-.62,4.13,4.13,0,0,0,.13-1.18,3.79,3.79,0,0,0-.13-1.14,1.51,1.51,0,0,0-.37-.62,1.14,1.14,0,0,0-.6-.3,5.93,5.93,0,0,0-1.06-.06Z\" fill=\"#484f60\"/><path d=\"M21.86,26.63v1.82h.71a3.57,3.57,0,0,0,1-.1A.88.88,0,0,0,24,28a.84.84,0,0,0,.14-.5.8.8,0,0,0-.2-.57.88.88,0,0,0-.52-.29,6.36,6.36,0,0,0-.93,0Z\" fill=\"#484f60\"/><path d=\"M19.14,24.27v9h19.7v-9Zm6.12,4.24a1.68,1.68,0,0,1-.54.63,1.9,1.9,0,0,1-.67.3,6.57,6.57,0,0,1-1.34.1h-.85V32H20.57V25.54h2.07a7.75,7.75,0,0,1,1.54.1,1.73,1.73,0,0,1,.93.63,2,2,0,0,1,.37,1.25A2,2,0,0,1,25.26,28.51Zm6.45,1.66A2.91,2.91,0,0,1,31,31.31a2.28,2.28,0,0,1-.91.51A4,4,0,0,1,29,32H26.54V25.54H28.9a4.21,4.21,0,0,1,1.22.13,2.08,2.08,0,0,1,1,.59,2.79,2.79,0,0,1,.61,1,4.76,4.76,0,0,1,.21,1.52A4.19,4.19,0,0,1,31.71,30.17Zm5.7-3.54h-3.1v1.52H37v1.08H34.31V32H33V25.54h4.39Z\" fill=\"#484f60\"/><path d=\"M25.2,10.84v6.44c0,1.78.27,2,2,2h6.23Z\" fill=\"#484f60\"/></svg>",
|
|
@@ -1483,7 +1498,7 @@ const IconSvg = {
|
|
|
1483
1498
|
"shelves_light": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M624 0C615.2 0 608 7.162 608 16V160H32V16C32 7.162 24.84 0 16 0S0 7.162 0 16v480C0 504.8 7.164 512 16 512S32 504.8 32 496V448h576v48c0 8.836 7.164 16 16 16s16-7.164 16-16v-480C640 7.162 632.8 0 624 0zM608 416H32V192h576V416zM384 128h64c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v64C352 113.7 366.3 128 384 128zM384 32h64v64h-64V32zM288 384h64c17.67 0 32-14.33 32-32V288c0-17.67-14.33-32-32-32H288C270.3 256 256 270.3 256 288v64C256 369.7 270.3 384 288 384zM288 288h64v64H288V288zM128 384h64c17.67 0 32-14.33 32-32V288c0-17.67-14.33-32-32-32H128C110.3 256 96 270.3 96 288v64C96 369.7 110.3 384 128 384zM128 288h64v64H128V288z\"/></svg>",
|
|
1484
1499
|
"shelves_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M608 0c-17.6 0-32 14.4-32 31.1V160H64V31.1C64 14.4 49.6 0 32 0S0 14.4 0 31.1v480h64v-32h512v32h64v-480C640 14.4 625.6 0 608 0zM576 416H64V224h512V416zM368 128h96C472.8 128 480 120.8 480 112v-96C480 7.25 472.8 0 464 0h-96C359.2 0 352 7.25 352 16v96C352 120.8 359.2 128 368 128zM112 384h96C216.8 384 224 376.8 224 368v-96C224 263.2 216.8 256 208 256h-96C103.2 256 96 263.2 96 272v96C96 376.8 103.2 384 112 384zM272 384h96c8.75 0 16-7.25 16-16v-96C384 263.2 376.8 256 368 256h-96C263.2 256 256 263.2 256 272v96C256 376.8 263.2 384 272 384z\"/></svg>",
|
|
1485
1500
|
"side_panel": "<svg width=\"47px\" height=\"43px\" viewBox=\"0 0 47 43\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><defs><image width=\"47\" height=\"43\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAAArCAYAAADottG6AAAABHNCSVQICAgIfAhkiAAAAHtJREFUWIXt18EJwCAQAEENKSNv60gVgVQYSBWpw3f6OHvQx3Kw8xcX0QNrRERJaqMDVhhPMZ5iPMV4ivEU4ynGU/bZhb3/5Xm/pc3v6yytHdPrq58RiPEUHywl9bUxnuKDpaS+NsZTUsennjapT95RSTGeYjzFeErq+AEBrixGEVJ5mAAAAABJRU5ErkJggg==\" /></defs><use xlink:href=\"#img_1\" fill=\"#FFFFFF\" stroke=\"none\" /></svg>",
|
|
1486
|
-
"slide_in": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0
|
|
1501
|
+
"slide_in": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 30 30\"><g ><g><path d=\"M2,2.17H28V28.17H2V2.17Zm24.76,1.24H3.24V26.93H26.76V3.4Z\" fill=\"#484f60\"/><polygon points=\"23.71 13.42 18.41 13.42 18.41 10.43 14.12 14.72 18.41 19.01 18.41 16.02 23.71 16.02 23.71 13.42\" fill=\"#484f60\"/><rect x=\"2\" y=\"2.17\" width=\"9\" height=\"26\" fill=\"#484f60\"/></g></g></svg>",
|
|
1487
1502
|
"square_full": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M464 48v416h-416v-416H464zM512 0H0v512h512V0z\"/></svg>",
|
|
1488
1503
|
"square_full_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M0 0h512v512H0V0z\"/></svg>",
|
|
1489
1504
|
"sync_alt": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z\"/></svg>",
|
|
@@ -1503,7 +1518,8 @@ const IconSvg = {
|
|
|
1503
1518
|
"truck_moving_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M64 32C28.7 32 0 60.7 0 96V304v80 16c0 44.2 35.8 80 80 80c26.2 0 49.4-12.6 64-32c14.6 19.4 37.8 32 64 32c44.2 0 80-35.8 80-80c0-5.5-.6-10.8-1.6-16H416h33.6c-1 5.2-1.6 10.5-1.6 16c0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H608c17.7 0 32-14.3 32-32V288 272 261.7c0-9.2-3.2-18.2-9-25.3l-58.8-71.8c-10.6-13-26.5-20.5-43.3-20.5H480V96c0-35.3-28.7-64-64-64H64zM585 256H480V192h48.8c2.4 0 4.7 1.1 6.2 2.9L585 256zM528 432c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zM240 400c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zM80 432c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z\"/></svg>",
|
|
1504
1519
|
"txt": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M31.42,40.17H13.87c-2.15,0-2.71-.56-2.71-2.72V12.88c0-2.15.56-2.71,2.71-2.71H25.48l8.66,8.88v3.43H32.8V19.6l-7.88-8.09H13.87c-1.37,0-1.37,0-1.37,1.37V37.45c0,1.37,0,1.37,1.37,1.37H31.42c1.38,0,1.38,0,1.38-1.37V35h1.34v2.43C34.14,39.61,33.58,40.17,31.42,40.17Z\" fill=\"#484f60\"/><path d=\"M25.2,10.84v6.44c0,1.78.27,2,2,2h6.23Z\" fill=\"#484f60\"/><path d=\"M19.14,24.27v9h19.7v-9Zm6.68,2.36h-1.9V32h-1.3V26.63h-1.9V25.54h5.1ZM30.4,32,29,29.74,27.55,32H26l2.19-3.34-2-3.07h1.52L29,27.6l1.26-2.06h1.5l-2,3.12L32,32Zm6.86-5.32h-1.9V32H34.07V26.63H32.16V25.54h5.1Z\" fill=\"#484f60\"/></svg>",
|
|
1505
1520
|
"unlock": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M32.65,21.67H17.35c-2.81,0-3.06,2.29-3.06,5.12v8.09c0,2.83.25,5.12,3.06,5.12h15.3c2.81,0,3.06-2.29,3.06-5.12V26.79C35.71,24,35.46,21.67,32.65,21.67ZM20.22,37.49l2.61-6.32a3.82,3.82,0,1,1,4.35,0l2.6,6.32Z\" fill=\"#484f60\"/><path d=\"M35.51,16.64c0-3.6-2-4.07-4.51-4.07h0c-2.49,0-4.51.47-4.51,4.07v3h-2.7v-3C23.79,11.62,27,10,31,10h0c4,0,7.21,1.62,7.21,6.64Z\" fill=\"#484f60\"/></svg>",
|
|
1506
|
-
"warehouse": "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\"><svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\"><path d=\"M6 19H8V21H6V19M12 3L2 8V21H4V13H20V21H22V8L12 3M8 11H4V9H8V11M14 11H10V9H14V11M20 11H16V9H20V11M6 15H8V17H6V15M10 15H12V17H10V15M10 19H12V21H10V19M14 19H16V21H14V19Z\" /></svg>"
|
|
1521
|
+
"warehouse": "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\"><svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\"><path d=\"M6 19H8V21H6V19M12 3L2 8V21H4V13H20V21H22V8L12 3M8 11H4V9H8V11M14 11H10V9H14V11M20 11H16V9H20V11M6 15H8V17H6V15M10 15H12V17H10V15M10 19H12V21H10V19M14 19H16V21H14V19Z\" /></svg>",
|
|
1522
|
+
"x_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M376.6 84.5c11.3-13.6 9.5-33.8-4.1-45.1s-33.8-9.5-45.1 4.1L192 206 56.6 43.5C45.3 29.9 25.1 28.1 11.5 39.4S-3.9 70.9 7.4 84.5L150.3 256 7.4 427.5c-11.3 13.6-9.5 33.8 4.1 45.1s33.8 9.5 45.1-4.1L192 306 327.4 468.5c11.3 13.6 31.5 15.4 45.1 4.1s15.4-31.5 4.1-45.1L233.7 256 376.6 84.5z\"/></svg>"
|
|
1507
1523
|
};
|
|
1508
1524
|
|
|
1509
1525
|
class IconCacheService {
|
|
@@ -3877,6 +3893,30 @@ class TransactionConnectorAdapterService {
|
|
|
3877
3893
|
}
|
|
3878
3894
|
});
|
|
3879
3895
|
}
|
|
3896
|
+
getPurchaseAdviceLines(filters, goodId) {
|
|
3897
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3898
|
+
const response = yield this.connector.getPurchaseAdviceLines(filters, goodId);
|
|
3899
|
+
if (response && response.validationResult && response.validationResult.success) {
|
|
3900
|
+
return this._boFactory.makeBOArrayFromRawBackendDataArray(PurchaseAdviceLine, response.resultObject);
|
|
3901
|
+
}
|
|
3902
|
+
else {
|
|
3903
|
+
this._handleExceptionFromResponse(response);
|
|
3904
|
+
return null;
|
|
3905
|
+
}
|
|
3906
|
+
});
|
|
3907
|
+
}
|
|
3908
|
+
generateAndSendPurchaseOrders(purchaseAdviceLines) {
|
|
3909
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3910
|
+
const response = yield this.connector.generateAndSendPurchaseOrders(purchaseAdviceLines);
|
|
3911
|
+
if (response && response.validationResult && response.validationResult.success) {
|
|
3912
|
+
return true;
|
|
3913
|
+
}
|
|
3914
|
+
else {
|
|
3915
|
+
this._handleExceptionFromResponse(response);
|
|
3916
|
+
return null;
|
|
3917
|
+
}
|
|
3918
|
+
});
|
|
3919
|
+
}
|
|
3880
3920
|
_handleExceptionFromResponse(result) {
|
|
3881
3921
|
this._errorService.showValidationError(result);
|
|
3882
3922
|
}
|
|
@@ -4531,6 +4571,16 @@ class TransactionConnectorService {
|
|
|
4531
4571
|
return yield this._adapterService.generateAndSendPurchaseOrdersForSalesOrder(transactionId);
|
|
4532
4572
|
});
|
|
4533
4573
|
}
|
|
4574
|
+
getPurchaseAdviceLines(filters, goodId) {
|
|
4575
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4576
|
+
return yield this._adapterService.getPurchaseAdviceLines(filters, goodId);
|
|
4577
|
+
});
|
|
4578
|
+
}
|
|
4579
|
+
generateAndSendPurchaseOrders(purchaseAdviceLines) {
|
|
4580
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4581
|
+
return yield this._adapterService.generateAndSendPurchaseOrders(purchaseAdviceLines);
|
|
4582
|
+
});
|
|
4583
|
+
}
|
|
4534
4584
|
}
|
|
4535
4585
|
TransactionConnectorService.ɵprov = i0.ɵɵdefineInjectable({ factory: function TransactionConnectorService_Factory() { return new TransactionConnectorService(i0.ɵɵinject(TransactionConnectorAdapterService), i0.ɵɵinject(SelectSingleCacheService), i0.ɵɵinject(SelectMultipleCacheService), i0.ɵɵinject(SelectMultipleParameterizedCacheService)); }, token: TransactionConnectorService, providedIn: "root" });
|
|
4536
4586
|
TransactionConnectorService.decorators = [
|
|
@@ -4848,9 +4898,9 @@ RelationConnectorService.ctorParameters = () => [
|
|
|
4848
4898
|
];
|
|
4849
4899
|
|
|
4850
4900
|
class PendingReasonService {
|
|
4851
|
-
constructor(
|
|
4852
|
-
this.dialogService = dialogService;
|
|
4901
|
+
constructor(options, dialogService, connector, sharedService, articleConnector, dictionaryService, transactionEventService, relationConnector) {
|
|
4853
4902
|
this.options = options;
|
|
4903
|
+
this.dialogService = dialogService;
|
|
4854
4904
|
this.connector = connector;
|
|
4855
4905
|
this.sharedService = sharedService;
|
|
4856
4906
|
this.articleConnector = articleConnector;
|
|
@@ -5103,15 +5153,15 @@ class PendingReasonService {
|
|
|
5103
5153
|
}
|
|
5104
5154
|
}
|
|
5105
5155
|
}
|
|
5106
|
-
PendingReasonService.ɵprov = i0.ɵɵdefineInjectable({ factory: function PendingReasonService_Factory() { return new PendingReasonService(i0.ɵɵinject(
|
|
5156
|
+
PendingReasonService.ɵprov = i0.ɵɵdefineInjectable({ factory: function PendingReasonService_Factory() { return new PendingReasonService(i0.ɵɵinject(OptionsService), i0.ɵɵinject(DialogService), i0.ɵɵinject(TransactionConnectorService), i0.ɵɵinject(i4.SharedService), i0.ɵɵinject(ArticleConnectorService), i0.ɵɵinject(DictionaryService), i0.ɵɵinject(TransactionEventService), i0.ɵɵinject(RelationConnectorService)); }, token: PendingReasonService, providedIn: "root" });
|
|
5107
5157
|
PendingReasonService.decorators = [
|
|
5108
5158
|
{ type: Injectable, args: [{
|
|
5109
5159
|
providedIn: "root"
|
|
5110
5160
|
},] }
|
|
5111
5161
|
];
|
|
5112
5162
|
PendingReasonService.ctorParameters = () => [
|
|
5113
|
-
{ type: DialogService },
|
|
5114
5163
|
{ type: OptionsService },
|
|
5164
|
+
{ type: DialogService },
|
|
5115
5165
|
{ type: TransactionConnectorService },
|
|
5116
5166
|
{ type: SharedService$1 },
|
|
5117
5167
|
{ type: ArticleConnectorService },
|
|
@@ -5898,6 +5948,16 @@ class TransactionService extends PendingReasonService {
|
|
|
5898
5948
|
return yield this.connector.generateAndSendPurchaseOrdersForSalesOrder(transactionId);
|
|
5899
5949
|
});
|
|
5900
5950
|
}
|
|
5951
|
+
getPurchaseAdviceLines(filters, goodId) {
|
|
5952
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
5953
|
+
return yield this.connector.getPurchaseAdviceLines(filters, goodId);
|
|
5954
|
+
});
|
|
5955
|
+
}
|
|
5956
|
+
generateAndSendPurchaseOrders(purchaseAdviceLines) {
|
|
5957
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
5958
|
+
return yield this.connector.generateAndSendPurchaseOrders(purchaseAdviceLines);
|
|
5959
|
+
});
|
|
5960
|
+
}
|
|
5901
5961
|
// private _cleanRelationBeforeSave(): void {
|
|
5902
5962
|
// ArrayUtils.RemoveElementsByFilter(this.currentTransaction.transactionInfo.relation.contactOptions, ((item: ContactOption) => {
|
|
5903
5963
|
// return isNill(item.value);
|
|
@@ -5909,6 +5969,7 @@ class TransactionService extends PendingReasonService {
|
|
|
5909
5969
|
const createMethod = this._createTransactionMethods.get(this.transactionKind);
|
|
5910
5970
|
if (createMethod) {
|
|
5911
5971
|
const request = new CreateTransactionRequest();
|
|
5972
|
+
// todo fix this
|
|
5912
5973
|
request.branchNr = "1";
|
|
5913
5974
|
return createMethod.call(this, request);
|
|
5914
5975
|
}
|
|
@@ -5919,7 +5980,7 @@ class TransactionService extends PendingReasonService {
|
|
|
5919
5980
|
});
|
|
5920
5981
|
}
|
|
5921
5982
|
}
|
|
5922
|
-
TransactionService.ɵprov = i0.ɵɵdefineInjectable({ factory: function TransactionService_Factory() { return new TransactionService(i0.ɵɵinject(
|
|
5983
|
+
TransactionService.ɵprov = i0.ɵɵdefineInjectable({ factory: function TransactionService_Factory() { return new TransactionService(i0.ɵɵinject(OptionsService), i0.ɵɵinject(DialogService), i0.ɵɵinject(TransactionConnectorService), i0.ɵɵinject(i4.SharedService), i0.ɵɵinject(ArticleConnectorService), i0.ɵɵinject(DictionaryService), i0.ɵɵinject(TransactionEventService), i0.ɵɵinject(RelationConnectorService)); }, token: TransactionService, providedIn: "root" });
|
|
5923
5984
|
TransactionService.decorators = [
|
|
5924
5985
|
{ type: Injectable, args: [{
|
|
5925
5986
|
providedIn: "root"
|
|
@@ -11430,9 +11491,9 @@ class TransactionQuickAccessPurchaseOrderOverviewComponent extends TransactionQu
|
|
|
11430
11491
|
constructor(service) {
|
|
11431
11492
|
super(service);
|
|
11432
11493
|
this.service = service;
|
|
11433
|
-
this.reportDocumentEmailRequest = new
|
|
11434
|
-
this.reportDocumentPrintRequest = new
|
|
11435
|
-
this.reportDocumentPdfRequest = new
|
|
11494
|
+
this.reportDocumentEmailRequest = new EmailPurchaseOrderRequest();
|
|
11495
|
+
this.reportDocumentPrintRequest = new PrintPurchaseOrderRequest();
|
|
11496
|
+
this.reportDocumentPdfRequest = new PdfPurchaseOrderRequest();
|
|
11436
11497
|
}
|
|
11437
11498
|
showClass() {
|
|
11438
11499
|
return true;
|
|
@@ -15841,7 +15902,7 @@ class TransactionHeaderComponent {
|
|
|
15841
15902
|
constructor() {
|
|
15842
15903
|
this.icons = Icon;
|
|
15843
15904
|
this.relation = new CustomerFullObject();
|
|
15844
|
-
this.isPurchaseOrder =
|
|
15905
|
+
this.isPurchaseOrder = true;
|
|
15845
15906
|
this._transaction = new TransactionInfoResponse();
|
|
15846
15907
|
}
|
|
15847
15908
|
set transaction(value) {
|
|
@@ -15864,10 +15925,10 @@ TransactionHeaderComponent.decorators = [
|
|
|
15864
15925
|
<div class="transaction-header-wrapper">
|
|
15865
15926
|
<co-carousel>
|
|
15866
15927
|
<co-transaction-header-relation #carouselItem [relation]="relation"></co-transaction-header-relation>
|
|
15867
|
-
<div class="transaction-header-divider" *ngIf="!isPurchaseOrder"> </div>
|
|
15868
|
-
<co-transaction-header-order *ngIf="!isPurchaseOrder" #carouselItem [transaction]="transaction"></co-transaction-header-order>
|
|
15869
15928
|
<div class="transaction-header-divider"> </div>
|
|
15870
|
-
<co-transaction-header-
|
|
15929
|
+
<co-transaction-header-order #carouselItem [transaction]="transaction"></co-transaction-header-order>
|
|
15930
|
+
<div class="transaction-header-divider" *ngIf="!isPurchaseOrder"> </div>
|
|
15931
|
+
<co-transaction-header-payment *ngIf="!isPurchaseOrder" #carouselItem [transaction]="transaction"></co-transaction-header-payment>
|
|
15871
15932
|
<div class="transaction-header-divider"> </div>
|
|
15872
15933
|
<co-transaction-header-delivery #carouselItem [transaction]="transaction"></co-transaction-header-delivery>
|
|
15873
15934
|
</co-carousel>
|
|
@@ -20491,8 +20552,8 @@ TransactionQuickAccessReceivedGoodsModule.decorators = [
|
|
|
20491
20552
|
];
|
|
20492
20553
|
|
|
20493
20554
|
class DialogCatalogComponent {
|
|
20494
|
-
constructor(
|
|
20495
|
-
this.
|
|
20555
|
+
constructor(_transactionService) {
|
|
20556
|
+
this._transactionService = _transactionService;
|
|
20496
20557
|
this.showNavigation = true;
|
|
20497
20558
|
this.closeClick = new EventEmitter();
|
|
20498
20559
|
this.articleClicked = new EventEmitter();
|
|
@@ -20501,8 +20562,10 @@ class DialogCatalogComponent {
|
|
|
20501
20562
|
return true;
|
|
20502
20563
|
}
|
|
20503
20564
|
ngOnInit() {
|
|
20504
|
-
this.catalogSettings = this.
|
|
20505
|
-
this.catalogSettings
|
|
20565
|
+
this.catalogSettings = this._transactionService.options.options;
|
|
20566
|
+
if (this.catalogSettings) {
|
|
20567
|
+
this.catalogSettings.options = this.options;
|
|
20568
|
+
}
|
|
20506
20569
|
}
|
|
20507
20570
|
}
|
|
20508
20571
|
DialogCatalogComponent.decorators = [
|
|
@@ -20522,7 +20585,7 @@ DialogCatalogComponent.decorators = [
|
|
|
20522
20585
|
},] }
|
|
20523
20586
|
];
|
|
20524
20587
|
DialogCatalogComponent.ctorParameters = () => [
|
|
20525
|
-
{ type:
|
|
20588
|
+
{ type: TransactionService }
|
|
20526
20589
|
];
|
|
20527
20590
|
DialogCatalogComponent.propDecorators = {
|
|
20528
20591
|
options: [{ type: Input }],
|
|
@@ -23526,8 +23589,8 @@ class TransactionSearchHeaderComponent {
|
|
|
23526
23589
|
this.contentViewModes = ContentViewMode;
|
|
23527
23590
|
this.searchViewModes = SearchViewMode;
|
|
23528
23591
|
this.iconSlideIn = this.iconCacheService.getIcon(this.icon.SlideIn);
|
|
23529
|
-
this.iconResize = this.iconCacheService.getIcon(this.icon.
|
|
23530
|
-
this.iconCancel = this.iconCacheService.getIcon(this.icon.
|
|
23592
|
+
this.iconResize = this.iconCacheService.getIcon(this.icon.ExpandSolid);
|
|
23593
|
+
this.iconCancel = this.iconCacheService.getIcon(this.icon.XSolid);
|
|
23531
23594
|
this.activeSearchViewMode = this.searchViewModes.FullScreen;
|
|
23532
23595
|
this.activeContentViewMode = this.contentViewModes.Tiles;
|
|
23533
23596
|
this.viewModeChange = new EventEmitter();
|
|
@@ -23566,8 +23629,11 @@ TransactionSearchHeaderComponent.decorators = [
|
|
|
23566
23629
|
<div class="upper-header">
|
|
23567
23630
|
<div class="header-buttons-wrapper">
|
|
23568
23631
|
<div class="close-search-button-wrapper button-wrapper" *ngIf="!fullscreen" [ngClass]="fullscreen ? 'fullscreen' : 'sidebar'" >
|
|
23632
|
+
<co-button [iconData]="iconResize"
|
|
23633
|
+
class="toggle-sidebar-button transparent"
|
|
23634
|
+
(click)="onResizeClick()"></co-button>
|
|
23569
23635
|
<co-button [iconData]="iconCancel"
|
|
23570
|
-
class="toggle-sidebar-button
|
|
23636
|
+
class="toggle-sidebar-button transparent"
|
|
23571
23637
|
(click)="onCloseClick()">
|
|
23572
23638
|
</co-button>
|
|
23573
23639
|
</div>
|
|
@@ -23575,8 +23641,8 @@ TransactionSearchHeaderComponent.decorators = [
|
|
|
23575
23641
|
</div>
|
|
23576
23642
|
<div class="header-searchbar-wrapper">
|
|
23577
23643
|
<div class="header-searchbar-title" [textContent]="label | localize" *ngIf="fullscreen" @showHideLabel></div>
|
|
23578
|
-
<co-
|
|
23579
|
-
(click)="handleAddTransactionClick()"></co-
|
|
23644
|
+
<co-button class="transaction-add-button transparent" [iconData]="iconCacheService.getIcon(icon.PlusSimple)"
|
|
23645
|
+
(click)="handleAddTransactionClick()"></co-button>
|
|
23580
23646
|
<co-input-search class="transaction-search-general"
|
|
23581
23647
|
[ngClass]="fullscreen ? 'fullscreen' : 'sidebar'"
|
|
23582
23648
|
[centerLabel]="true"
|
|
@@ -23584,14 +23650,13 @@ TransactionSearchHeaderComponent.decorators = [
|
|
|
23584
23650
|
[placeholder]="searchPlaceholder | localize"
|
|
23585
23651
|
[initFocus]="true"
|
|
23586
23652
|
(search)="searchService.searchTransactions()"></co-input-search>
|
|
23587
|
-
<div class="header-search-bar-button-wrapper">
|
|
23653
|
+
<div class="header-search-bar-button-wrapper button-wrapper">
|
|
23588
23654
|
<co-button class="transaction-search-filter-button"
|
|
23589
23655
|
[iconData]="iconCacheService.getIcon(icon.BarsFilter)"
|
|
23590
23656
|
(click)="filterButtonClick.emit()">
|
|
23591
23657
|
</co-button>
|
|
23592
|
-
<co-button [iconData]="
|
|
23593
|
-
|
|
23594
|
-
class="toggle-sidebar-button transparent"
|
|
23658
|
+
<co-button *ngIf="fullscreen" [iconData]="iconSlideIn"
|
|
23659
|
+
class="toggle-sidebar-button transparent fullscreen"
|
|
23595
23660
|
(click)="onResizeClick()"></co-button>
|
|
23596
23661
|
</div>
|
|
23597
23662
|
</div>
|
|
@@ -24779,5 +24844,5 @@ TransactionLineGridModule.decorators = [
|
|
|
24779
24844
|
* Generated bundle index. Do not edit.
|
|
24780
24845
|
*/
|
|
24781
24846
|
|
|
24782
|
-
export { CheckoutComponent, CheckoutModule, LoaderComponent, LoaderModule, RelationService, SearchViewMode, SearchbarViewMode, ShoppingCartComponent, ShoppingCartModule, ShoppingCartPreviewComponent, ShoppingCartPreviewModule, TransactionComponent, TransactionConfirmationDetailsComponent, TransactionConfirmationDetailsModule, TransactionConfirmationHistoryComponent, TransactionConfirmationHistoryModule, TransactionHeaderComponent, TransactionHeaderDeliveryComponent, TransactionHeaderDeliveryModule, TransactionHeaderModule, TransactionHeaderOrderComponent, TransactionHeaderOrderModule, TransactionHeaderRelationComponent, TransactionHeaderRelationModule, TransactionLineGridComponent, TransactionLineGridModule, TransactionLineStatusbarComponent, TransactionLineStatusbarModule, TransactionLinesComponent, TransactionLinesModule, TransactionModule, TransactionQuickAccessComponent, TransactionQuickAccessModule, TransactionQuickAccessOrderConfirmationComponent, TransactionQuickAccessOrderConfirmationModule, TransactionQuickAccessReceivedGoodsComponent, TransactionQuickAccessReceivedGoodsModule, TransactionSearchComponent, TransactionSearchModule, TransactionSearchService, TransactionService, TransactionStatusbarComponent, TransactionStatusbarModule, TransactionTotalsComponent, TransactionTotalsModule, PendingReasonService as ɵa, DialogService as ɵb, ConfirmationDialogComponent as ɵba, DialogBaseComponent as ɵbb, IconCacheService as ɵbc, CharacteristicAnswerModule as ɵbd, CharacteristicAnswerComponent as ɵbe, WarehouseModule as ɵbf, WarehouseComponent as ɵbg, ImageDisplayComponent as ɵbh, IconComponent as ɵbi, CustomerGroupsComponent as ɵbj, StockStatusIndicatorComponent as ɵbk, LazyRenderMasterDirective as ɵbl, LazyRenderDirective as ɵbm, RelationAddressModule as ɵbn, RelationAddressComponent as ɵbo, RelationBaseComponent as ɵbp, RelationAddressSelectModule as ɵbq, RelationAddressTileModule as ɵbr, TileModule as ɵbs, TileComponent as ɵbt, RelationAddressTileComponent as ɵbu, RelationAddressSelectComponent as ɵbv, StepperModule as ɵbw, StepperComponent as ɵbx, StepperStepComponent as ɵby, TransactionLineModule as ɵbz, DynamicComponentService as ɵc, TransactionLineComponent as ɵca, TransactionMappingService as ɵcb, TransactionArticleTextModule as ɵcc, TransactionLineImageAndDescriptionModule as ɵcd, TransactionLineDescriptionModule as ɵce, TransactionLineDescriptionComponent as ɵcf, TransactionLineBaseComponent as ɵcg, TransactionLineImageAndDescriptionComponent as ɵch, TransactionImageService as ɵci, TransactionArticleTextComponent as ɵcj, TransactionReceiveGoodsService as ɵck, DialogTransactionHeaderDiscountModule as ɵcl, TransactionHeaderDiscountPercentageModule as ɵcm, TransactionHeaderDiscountPercentageComponent as ɵcn, TransactionHeaderBaseComponent as ɵco, TransactionHeaderFilterPopupBaseComponent as ɵcp, TransactionHeaderDiscountAmountModule as ɵcq, TransactionHeaderDiscountAmountComponent as ɵcr, TransactionHeaderDiscountTransactionTotalModule as ɵcs, TransactionHeaderDiscountTransactionTotalComponent as ɵct, DialogTransactionHeaderDiscountComponent as ɵcu, DialogTransactionHeaderBaseComponent as ɵcv, AvatarModule as ɵcw, AvatarComponent as ɵcx, SharedService as ɵcy, SharedConnectorService as ɵcz, OptionsService as ɵd, DeliveryTypeTileModule as ɵda, DeliveryTypeTileComponent as ɵdb, PaymentModule as ɵdc, PaymentTileModule as ɵdd, PaymentTileComponent as ɵde, PaymentQrCodeModule as ɵdf, PaymentQrCodeComponent as ɵdg, DownPaymentModule as ɵdh, DownPaymentComponent as ɵdi, PaymentService as ɵdj, PaymentComponent as ɵdk, RelationTypeModule as ɵdl, RelationTypeComponent as ɵdm, RelationGeneralModule as ɵdn, RelationSuggestionsListModule as ɵdo, RelationSuggestionsListItemModule as ɵdp, RelationSuggestionsListItemComponent as ɵdq, RelationSuggestionsListComponent as ɵdr, RelationGeneralComponent as ɵds, RelationAddressesModule as ɵdt, RelationAddressesComponent as ɵdu, RelationContactDetailsModule as ɵdv, RelationContactDetailsComponent as ɵdw, RelationPreferencesModule as ɵdx, RelationPreferencesComponent as ɵdy, TransactionHeaderBlockModule as ɵdz, DictionaryService as ɵe, TransactionHeaderBlockComponent as ɵea, TransactionHeaderDeliveryDateModule as ɵeb, TransactionHeaderDeliveryDateComponent as ɵec, TransactionHeaderDeliveryOptionsModule as ɵed, TransactionHeaderDeliveryOptionsComponent as ɵee, TransactionHeaderRemarksModule as ɵef, TransactionHeaderRemarksComponent as ɵeg, TransactionHeaderReferenceModule as ɵeh, TransactionHeaderReferenceComponent as ɵei, TransactionHeaderRelationReferenceModule as ɵej, TransactionHeaderRelationReferenceComponent as ɵek, TransactionHeaderDeliveryMethodModule as ɵel, TransactionLineCheckboxModule as ɵem, TransactionLineCheckboxListComponent as ɵen, TransactionHeaderDeliveryMethodComponent as ɵeo, TransactionHeaderPreferredDeliveryDateModule as ɵep, TransactionHeaderPreferredDeliveryDateComponent as ɵeq, DialogTransactionHeaderDeliveryMethodModule as ɵer, DialogHeaderSearchModule as ɵes, DialogHeaderSearchComponent as ɵet, DialogTransactionHeaderDeliveryMethodComponent as ɵeu, TransactionHeaderPartialDeliveryModule as ɵev, TransactionHeaderPartialDeliveryComponent as ɵew, TransactionBaseComponent as ɵex, TransactionHeaderDownpaymentPercentageModule as ɵey, TransactionHeaderDownpaymentPercentageComponent as ɵez, TransactionConnectorService as ɵf, TransactionHeaderDownpaymentAmountModule as ɵfa, TransactionHeaderDownpaymentAmountComponent as ɵfb, TransactionHeaderDefinitiveModule as ɵfc, TransactionHeaderDefinitiveComponent as ɵfd, TransactionHeaderBranchModule as ɵfe, TransactionHeaderBranchComponent as ɵff, TransactionHeaderAdministrativeRelationModule as ɵfg, TransactionHeaderAdministrativeRelationComponent as ɵfh, TransactionHeaderMarketingModule as ɵfi, TransactionHeaderMarketingComponent as ɵfj, CheckoutOverviewRelationEditComponent as ɵfk, CheckoutOverviewDeliveryEditComponent as ɵfl, CheckoutOverviewDeliveryAddressComponent as ɵfm, CheckoutOverviewPaymentComponent as ɵfn, CheckoutLoginComponent as ɵfo, TransactionFilterCategoriesModule as ɵfp, TransactionFilterCategoriesComponent as ɵfq, TransactionHeaderPaymentModule as ɵfr, TransactionHeaderPaymentComponent as ɵfs, TransactionLinesGridModule as ɵft, TransactionBaseGridModule as ɵfu, TransactionLineSidePanelModule as ɵfv, TransactionLineSidePanelDefaultModule as ɵfw, TransactionLinePriceListModule as ɵfx, TransactionLinePriceListComponent as ɵfy, TransactionFilterPopupBaseComponent as ɵfz, TransactionConnectorAdapterService as ɵg, TransactionLineVatModule as ɵga, TransactionLineVatComponent as ɵgb, TransactionLineQuantityModule as ɵgc, TransactionLineQuantityComponent as ɵgd, TransactionLineLineDiscountModule as ɵge, TransactionLineLineDiscountComponent as ɵgf, TransactionLineDeliveryMethodModule as ɵgg, TransactionLineDeliveryMethodComponent as ɵgh, TransactionLineDeliveryDateModule as ɵgi, TransactionLineDeliveryDateComponent as ɵgj, TransactionLineReferenceModule as ɵgk, TransactionLineReferenceComponent as ɵgl, TransactionLineCommissionCodeModule as ɵgm, TransactionLineCommissionCodeComponent as ɵgn, TransactionLineWarehouseModule as ɵgo, TransactionLineWarehouseComponent as ɵgp, TransactionLineDiscountAmountModule as ɵgq, TransactionLineDiscountAmountComponent as ɵgr, TransactionLineQuantumDiscountModule as ɵgs, TransactionLineQuantumDiscountComponent as ɵgt, TransactionLineSpecialDiscountModule as ɵgu, TransactionLineSpecialDiscountComponent as ɵgv, TransactionLineSupplierModule as ɵgw, TransactionLineSupplierComponent as ɵgx, TransactionLinePriceModule as ɵgy, TransactionLinePriceComponent as ɵgz, SelectMultipleCacheService as ɵh, TransactionLineSidePanelDefaultComponent as ɵha, TransactionReceivingGoodsHistoryModule as ɵhb, TransactionHistoryGridModule as ɵhc, TransactionHistoryGridStatusModule as ɵhd, TransactionHistoryGridStatusComponent as ɵhe, TransactionHistoryGridComponent as ɵhf, TransactionReceivingGoodsHistoryComponent as ɵhg, TransactionButtonBarModule as ɵhh, AnimatedCheckboxModule as ɵhi, AnimatedCheckboxComponent as ɵhj, TransactionButtonBarComponent as ɵhk, TransactionButtonBarButtonComponent as ɵhl, TransactionButtonBarButtonBaseComponent as ɵhm, TransactionSalesPurchaseButtonBarButtonComponent as ɵhn, TransactionLineSidePanelPurchaseModule as ɵho, DefaultOkCancelButtonsModule as ɵhp, DefaultOkCancelButtonsComponent as ɵhq, TransactionAvailableStockGridModule as ɵhr, TransactionAvailableStockGridComponent as ɵhs, TransactionSidePanelEditRequestDetailsModule as ɵht, TransactionLineWarehouseLocationButtonModule as ɵhu, TransactionLineWarehouseLocationButtonComponent as ɵhv, TransactionSidePanelEditRequestDetailsComponent as ɵhw, AllocationRequestComponent as ɵhx, ReceiveGoodsRequestComponent as ɵhy, ArticleService as ɵhz, BusinessObjectCacheManagerService as ɵi, TransactionLineSidePanelPurchaseComponent as ɵia, TransactionLineSidePanelSalesModule as ɵib, TransactionAllocateGoodsHistoryModule as ɵic, TransactionAllocateGoodsHistoryComponent as ɵid, TransactionLineSidePanelSalesComponent as ɵie, TransactionLineSidePanelComponent as ɵif, DynamicBaseComponent as ɵig, TransactionLineActionButtonsModule as ɵih, TransactionArticleTextOverviewModule as ɵii, TransactionArticleTextOverviewComponent as ɵij, TransactionLineActionButtonsComponent as ɵik, TransactionBaseGridComponent as ɵil, TransactionGridBaseComponent as ɵim, DialogTransactionLineCommissionCodeModule as ɵin, DialogTransactionLineCommissionCodeComponent as ɵio, DialogTransactionLineBaseComponent as ɵip, DialogTransactionLineWarehouseModule as ɵiq, DialogTransactionLineWarehouseComponent as ɵir, DialogTransactionLineWarehouseCcModule as ɵis, DialogTransactionLineWarehouseCcComponent as ɵit, DialogTransactionLineDeliveryMethodModule as ɵiu, DialogTransactionLineDeliveryMethodComponent as ɵiv, DialogTransactionLineVatModule as ɵiw, DialogTransactionLineVatComponent as ɵix, DialogTransactionLineDiscountModule as ɵiy, DialogTransactionLinePriceListModule as ɵiz, CacheField as ɵj, DialogTransactionLinePriceListComponent as ɵja, DialogTransactionLineDiscountComponent as ɵjb, TransactionLinesGridComponent as ɵjc, DiscountModule as ɵjd, DiscountComponent as ɵje, QuickSendButtonModule as ɵjf, QuickSendButtonComponent as ɵjg, TransactionQuickAccessOverviewModule as ɵjh, DialogCatalogModule as ɵji, DialogCatalogComponent as ɵjj, TransactionQuickAccessOverviewComponent as ɵjk, TransactionQuickAccessSendMethodBaseComponent as ɵjl, TransactionQuickAccessOrderDeliveryModule as ɵjm, TransactionQuickAccessOrderDeliveryComponent as ɵjn, TransactionOrderDeliveryService as ɵjo, TransactionQuickAccessOrderPurchaseModule as ɵjp, TransactionQuickAccessOrderPurchaseComponent as ɵjq, TransactionQuickAccessGoodsAllocationModule as ɵjr, TransactionQuickAccessGoodsAllocationComponent as ɵjs, TransactionAllocateGoodsService as ɵjt, TransactionQuickAccessPurchaseOrderOverviewModule as ɵju, TransactionQuickAccessPurchaseOrderOverviewComponent as ɵjv, TransactionOrderConfirmationGridModule as ɵjw, TransactionOrderConfirmationGridComponent as ɵjx, TransactionReceivedGoodsGridModule as ɵjy, DialogTransactionLineWarehouseLocationModule as ɵjz, SelectMultipleParameterizedCacheService as ɵk, TransactionLineWarehouseLocationModule as ɵka, TransactionLineWarehouseLocationComponent as ɵkb, DialogTransactionLineWarehouseLocationComponent as ɵkc, TransactionReceivedGoodsGridComponent as ɵkd, ViewModeButtonsModule as ɵke, ViewModeButtonsComponent as ɵkf, TransactionGridModule as ɵkg, TransactionGridComponent as ɵkh, TransactionTileModule as ɵki, TransactionTileComponent as ɵkj, TransactionOverviewLineModule as ɵkk, EditableLabelModule as ɵkl, EditableLabelComponent as ɵkm, TransactionBaseLineModule as ɵkn, TransactionBaseLineComponent as ɵko, TransactionLinesLineBaseComponent as ɵkp, TransactionLineCommissionButtonModule as ɵkq, TransactionLineCommissionButtonComponent as ɵkr, TransactionLineWarehouseButtonModule as ɵks, TransactionLineWarehouseButtonComponent as ɵkt, TransactionLineDeliveryButtonModule as ɵku, TransactionLineDeliveryButtonComponent as ɵkv, TransactionLineDeliveryDateButtonModule as ɵkw, TransactionLineDeliveryDateButtonComponent as ɵkx, TransactionLineAmountModule as ɵky, TransactionLineAmountComponent as ɵkz, ErrorService as ɵl, TransactionOverviewLineComponent as ɵla, TransactionOrderDeliveryLineModule as ɵlb, TransactionOrderDeliveryLineComponent as ɵlc, TransactionReceiveGoodsLineModule as ɵld, TransactionReceiveGoodsLineComponent as ɵle, TransactionPurchaseLineModule as ɵlf, TransactionLineSupplierButtonModule as ɵlg, DialogTransactionLineSupplierModule as ɵlh, DialogTransactionLineSupplierComponent as ɵli, TransactionLineSupplierButtonComponent as ɵlj, TransactionPurchaseLineComponent as ɵlk, TransactionGoodsAllocationLineModule as ɵll, TransactionGoodsAllocationLineComponent as ɵlm, TransactionSearchResultModule as ɵln, TransactionSearchSalesOrderTileModule as ɵlo, TransactionSearchSalesOrderTileComponent as ɵlp, TransactionSearchTileBaseComponent as ɵlq, TransactionSearchPurchaseOrderTileModule as ɵlr, TransactionSearchPurchaseOrderTileComponent as ɵls, TransactionSearchSalesOrderGridModule as ɵlt, TransactionSearchSalesOrderGridComponent as ɵlu, TransactionSearchGridBaseComponent as ɵlv, TransactionSearchPurchaseOrderGridModule as ɵlw, TransactionSearchPurchaseOrderGridComponent as ɵlx, TransactionSearchHeaderModule as ɵly, TransactionSearchHeaderComponent as ɵlz, SelectSingleCacheService as ɵm, TransactionSearchGridModule as ɵma, TransactionSearchGridComponent as ɵmb, TransactionSearchTileModule as ɵmc, TransactionSearchTileComponent as ɵmd, TransactionSearchResultComponent as ɵme, TransactionSalesOrderFilterModule as ɵmf, TransactionSalesOrderFilterContentOrderModule as ɵmg, TransactionFilterItemModule as ɵmh, TransactionFilterItemComponent as ɵmi, TransactionSalesOrderFilterContentOrderComponent as ɵmj, TransactionFilterContentBaseComponent as ɵmk, FilterRequestService as ɵml, TransactionSalesOrderFilterContentLogisticsModule as ɵmm, TransactionFilterHistoricStateModule as ɵmn, TransactionFilterHistoricStateComponent as ɵmo, TransactionSalesOrderFilterContentLogisticsComponent as ɵmp, TransactionSalesOrderFilterContentArticleModule as ɵmq, TransactionSalesOrderFilterContentArticleComponent as ɵmr, TransactionSalesOrderFilterComponent as ɵms, TransactionFilterBaseComponent as ɵmt, TransactionPurchaseOrderFilterModule as ɵmu, TransactionPurchaseOrderFilterContentOrderModule as ɵmv, TransactionPurchaseOrderFilterContentOrderComponent as ɵmw, TransactionPurchaseOrderFilterContentLogisticsModule as ɵmx, TransactionPurchaseOrderFilterContentLogisticsComponent as ɵmy, TransactionPurchaseOrderFilterContentArticleModule as ɵmz, ArticleConnectorService as ɵn, TransactionPurchaseOrderFilterContentArticleComponent as ɵna, TransactionPurchaseOrderFilterComponent as ɵnb, TransactionFilterModule as ɵnc, TransactionFilterComponent as ɵnd, TransactionEventService as ɵo, RelationConnectorService as ɵp, CoreModule as ɵq, ConfirmationDialogModule as ɵr, PipeModule as ɵs, AppendPipe as ɵt, DeliveryTimePipe as ɵu, DateDurationPipe as ɵv, LocalizePipe as ɵw, CoCurrencyPipe as ɵx, SafeStylePipe as ɵy, SafeHtmlPipe as ɵz };
|
|
24847
|
+
export { CheckoutComponent, CheckoutModule, LoaderComponent, LoaderModule, RelationService, SearchViewMode, SearchbarViewMode, ShoppingCartComponent, ShoppingCartModule, ShoppingCartPreviewComponent, ShoppingCartPreviewModule, TransactionComponent, TransactionConfirmationDetailsComponent, TransactionConfirmationDetailsModule, TransactionConfirmationHistoryComponent, TransactionConfirmationHistoryModule, TransactionHeaderComponent, TransactionHeaderDeliveryComponent, TransactionHeaderDeliveryModule, TransactionHeaderModule, TransactionHeaderOrderComponent, TransactionHeaderOrderModule, TransactionHeaderRelationComponent, TransactionHeaderRelationModule, TransactionLineGridComponent, TransactionLineGridModule, TransactionLineStatusbarComponent, TransactionLineStatusbarModule, TransactionLinesComponent, TransactionLinesModule, TransactionModule, TransactionQuickAccessComponent, TransactionQuickAccessModule, TransactionQuickAccessOrderConfirmationComponent, TransactionQuickAccessOrderConfirmationModule, TransactionQuickAccessReceivedGoodsComponent, TransactionQuickAccessReceivedGoodsModule, TransactionSearchComponent, TransactionSearchModule, TransactionSearchService, TransactionService, TransactionStatusbarComponent, TransactionStatusbarModule, TransactionTotalsComponent, TransactionTotalsModule, PendingReasonService as ɵa, OptionsService as ɵb, ConfirmationDialogComponent as ɵba, DialogBaseComponent as ɵbb, IconCacheService as ɵbc, CharacteristicAnswerModule as ɵbd, CharacteristicAnswerComponent as ɵbe, WarehouseModule as ɵbf, WarehouseComponent as ɵbg, ImageDisplayComponent as ɵbh, IconComponent as ɵbi, CustomerGroupsComponent as ɵbj, StockStatusIndicatorComponent as ɵbk, LazyRenderMasterDirective as ɵbl, LazyRenderDirective as ɵbm, RelationAddressModule as ɵbn, RelationAddressComponent as ɵbo, RelationBaseComponent as ɵbp, RelationAddressSelectModule as ɵbq, RelationAddressTileModule as ɵbr, TileModule as ɵbs, TileComponent as ɵbt, RelationAddressTileComponent as ɵbu, RelationAddressSelectComponent as ɵbv, StepperModule as ɵbw, StepperComponent as ɵbx, StepperStepComponent as ɵby, TransactionLineModule as ɵbz, DictionaryService as ɵc, TransactionLineComponent as ɵca, TransactionMappingService as ɵcb, TransactionArticleTextModule as ɵcc, TransactionLineImageAndDescriptionModule as ɵcd, TransactionLineDescriptionModule as ɵce, TransactionLineDescriptionComponent as ɵcf, TransactionLineBaseComponent as ɵcg, TransactionLineImageAndDescriptionComponent as ɵch, TransactionImageService as ɵci, TransactionArticleTextComponent as ɵcj, TransactionReceiveGoodsService as ɵck, DialogTransactionHeaderDiscountModule as ɵcl, TransactionHeaderDiscountPercentageModule as ɵcm, TransactionHeaderDiscountPercentageComponent as ɵcn, TransactionHeaderBaseComponent as ɵco, TransactionHeaderFilterPopupBaseComponent as ɵcp, TransactionHeaderDiscountAmountModule as ɵcq, TransactionHeaderDiscountAmountComponent as ɵcr, TransactionHeaderDiscountTransactionTotalModule as ɵcs, TransactionHeaderDiscountTransactionTotalComponent as ɵct, DialogTransactionHeaderDiscountComponent as ɵcu, DialogTransactionHeaderBaseComponent as ɵcv, AvatarModule as ɵcw, AvatarComponent as ɵcx, SharedService as ɵcy, SharedConnectorService as ɵcz, DialogService as ɵd, DeliveryTypeTileModule as ɵda, DeliveryTypeTileComponent as ɵdb, PaymentModule as ɵdc, PaymentTileModule as ɵdd, PaymentTileComponent as ɵde, PaymentQrCodeModule as ɵdf, PaymentQrCodeComponent as ɵdg, DownPaymentModule as ɵdh, DownPaymentComponent as ɵdi, PaymentService as ɵdj, PaymentComponent as ɵdk, RelationTypeModule as ɵdl, RelationTypeComponent as ɵdm, RelationGeneralModule as ɵdn, RelationSuggestionsListModule as ɵdo, RelationSuggestionsListItemModule as ɵdp, RelationSuggestionsListItemComponent as ɵdq, RelationSuggestionsListComponent as ɵdr, RelationGeneralComponent as ɵds, RelationAddressesModule as ɵdt, RelationAddressesComponent as ɵdu, RelationContactDetailsModule as ɵdv, RelationContactDetailsComponent as ɵdw, RelationPreferencesModule as ɵdx, RelationPreferencesComponent as ɵdy, TransactionHeaderBlockModule as ɵdz, DynamicComponentService as ɵe, TransactionHeaderBlockComponent as ɵea, TransactionHeaderDeliveryDateModule as ɵeb, TransactionHeaderDeliveryDateComponent as ɵec, TransactionHeaderDeliveryOptionsModule as ɵed, TransactionHeaderDeliveryOptionsComponent as ɵee, TransactionHeaderRemarksModule as ɵef, TransactionHeaderRemarksComponent as ɵeg, TransactionHeaderReferenceModule as ɵeh, TransactionHeaderReferenceComponent as ɵei, TransactionHeaderRelationReferenceModule as ɵej, TransactionHeaderRelationReferenceComponent as ɵek, TransactionHeaderDeliveryMethodModule as ɵel, TransactionLineCheckboxModule as ɵem, TransactionLineCheckboxListComponent as ɵen, TransactionHeaderDeliveryMethodComponent as ɵeo, TransactionHeaderPreferredDeliveryDateModule as ɵep, TransactionHeaderPreferredDeliveryDateComponent as ɵeq, DialogTransactionHeaderDeliveryMethodModule as ɵer, DialogHeaderSearchModule as ɵes, DialogHeaderSearchComponent as ɵet, DialogTransactionHeaderDeliveryMethodComponent as ɵeu, TransactionHeaderPartialDeliveryModule as ɵev, TransactionHeaderPartialDeliveryComponent as ɵew, TransactionBaseComponent as ɵex, TransactionHeaderDownpaymentPercentageModule as ɵey, TransactionHeaderDownpaymentPercentageComponent as ɵez, TransactionConnectorService as ɵf, TransactionHeaderDownpaymentAmountModule as ɵfa, TransactionHeaderDownpaymentAmountComponent as ɵfb, TransactionHeaderDefinitiveModule as ɵfc, TransactionHeaderDefinitiveComponent as ɵfd, TransactionHeaderBranchModule as ɵfe, TransactionHeaderBranchComponent as ɵff, TransactionHeaderAdministrativeRelationModule as ɵfg, TransactionHeaderAdministrativeRelationComponent as ɵfh, TransactionHeaderMarketingModule as ɵfi, TransactionHeaderMarketingComponent as ɵfj, CheckoutOverviewRelationEditComponent as ɵfk, CheckoutOverviewDeliveryEditComponent as ɵfl, CheckoutOverviewDeliveryAddressComponent as ɵfm, CheckoutOverviewPaymentComponent as ɵfn, CheckoutLoginComponent as ɵfo, TransactionFilterCategoriesModule as ɵfp, TransactionFilterCategoriesComponent as ɵfq, TransactionHeaderPaymentModule as ɵfr, TransactionHeaderPaymentComponent as ɵfs, TransactionLinesGridModule as ɵft, TransactionBaseGridModule as ɵfu, TransactionLineSidePanelModule as ɵfv, TransactionLineSidePanelDefaultModule as ɵfw, TransactionLinePriceListModule as ɵfx, TransactionLinePriceListComponent as ɵfy, TransactionFilterPopupBaseComponent as ɵfz, TransactionConnectorAdapterService as ɵg, TransactionLineVatModule as ɵga, TransactionLineVatComponent as ɵgb, TransactionLineQuantityModule as ɵgc, TransactionLineQuantityComponent as ɵgd, TransactionLineLineDiscountModule as ɵge, TransactionLineLineDiscountComponent as ɵgf, TransactionLineDeliveryMethodModule as ɵgg, TransactionLineDeliveryMethodComponent as ɵgh, TransactionLineDeliveryDateModule as ɵgi, TransactionLineDeliveryDateComponent as ɵgj, TransactionLineReferenceModule as ɵgk, TransactionLineReferenceComponent as ɵgl, TransactionLineCommissionCodeModule as ɵgm, TransactionLineCommissionCodeComponent as ɵgn, TransactionLineWarehouseModule as ɵgo, TransactionLineWarehouseComponent as ɵgp, TransactionLineDiscountAmountModule as ɵgq, TransactionLineDiscountAmountComponent as ɵgr, TransactionLineQuantumDiscountModule as ɵgs, TransactionLineQuantumDiscountComponent as ɵgt, TransactionLineSpecialDiscountModule as ɵgu, TransactionLineSpecialDiscountComponent as ɵgv, TransactionLineSupplierModule as ɵgw, TransactionLineSupplierComponent as ɵgx, TransactionLinePriceModule as ɵgy, TransactionLinePriceComponent as ɵgz, SelectMultipleCacheService as ɵh, TransactionLineSidePanelDefaultComponent as ɵha, TransactionReceivingGoodsHistoryModule as ɵhb, TransactionHistoryGridModule as ɵhc, TransactionHistoryGridStatusModule as ɵhd, TransactionHistoryGridStatusComponent as ɵhe, TransactionHistoryGridComponent as ɵhf, TransactionReceivingGoodsHistoryComponent as ɵhg, TransactionButtonBarModule as ɵhh, AnimatedCheckboxModule as ɵhi, AnimatedCheckboxComponent as ɵhj, TransactionButtonBarComponent as ɵhk, TransactionButtonBarButtonComponent as ɵhl, TransactionButtonBarButtonBaseComponent as ɵhm, TransactionSalesPurchaseButtonBarButtonComponent as ɵhn, TransactionLineSidePanelPurchaseModule as ɵho, DefaultOkCancelButtonsModule as ɵhp, DefaultOkCancelButtonsComponent as ɵhq, TransactionAvailableStockGridModule as ɵhr, TransactionAvailableStockGridComponent as ɵhs, TransactionSidePanelEditRequestDetailsModule as ɵht, TransactionLineWarehouseLocationButtonModule as ɵhu, TransactionLineWarehouseLocationButtonComponent as ɵhv, TransactionSidePanelEditRequestDetailsComponent as ɵhw, AllocationRequestComponent as ɵhx, ReceiveGoodsRequestComponent as ɵhy, ArticleService as ɵhz, BusinessObjectCacheManagerService as ɵi, TransactionLineSidePanelPurchaseComponent as ɵia, TransactionLineSidePanelSalesModule as ɵib, TransactionAllocateGoodsHistoryModule as ɵic, TransactionAllocateGoodsHistoryComponent as ɵid, TransactionLineSidePanelSalesComponent as ɵie, TransactionLineSidePanelComponent as ɵif, DynamicBaseComponent as ɵig, TransactionLineActionButtonsModule as ɵih, TransactionArticleTextOverviewModule as ɵii, TransactionArticleTextOverviewComponent as ɵij, TransactionLineActionButtonsComponent as ɵik, TransactionBaseGridComponent as ɵil, TransactionGridBaseComponent as ɵim, DialogTransactionLineCommissionCodeModule as ɵin, DialogTransactionLineCommissionCodeComponent as ɵio, DialogTransactionLineBaseComponent as ɵip, DialogTransactionLineWarehouseModule as ɵiq, DialogTransactionLineWarehouseComponent as ɵir, DialogTransactionLineWarehouseCcModule as ɵis, DialogTransactionLineWarehouseCcComponent as ɵit, DialogTransactionLineDeliveryMethodModule as ɵiu, DialogTransactionLineDeliveryMethodComponent as ɵiv, DialogTransactionLineVatModule as ɵiw, DialogTransactionLineVatComponent as ɵix, DialogTransactionLineDiscountModule as ɵiy, DialogTransactionLinePriceListModule as ɵiz, CacheField as ɵj, DialogTransactionLinePriceListComponent as ɵja, DialogTransactionLineDiscountComponent as ɵjb, TransactionLinesGridComponent as ɵjc, DiscountModule as ɵjd, DiscountComponent as ɵje, QuickSendButtonModule as ɵjf, QuickSendButtonComponent as ɵjg, TransactionQuickAccessOverviewModule as ɵjh, DialogCatalogModule as ɵji, DialogCatalogComponent as ɵjj, TransactionQuickAccessOverviewComponent as ɵjk, TransactionQuickAccessSendMethodBaseComponent as ɵjl, TransactionQuickAccessOrderDeliveryModule as ɵjm, TransactionQuickAccessOrderDeliveryComponent as ɵjn, TransactionOrderDeliveryService as ɵjo, TransactionQuickAccessOrderPurchaseModule as ɵjp, TransactionQuickAccessOrderPurchaseComponent as ɵjq, TransactionQuickAccessGoodsAllocationModule as ɵjr, TransactionQuickAccessGoodsAllocationComponent as ɵjs, TransactionAllocateGoodsService as ɵjt, TransactionQuickAccessPurchaseOrderOverviewModule as ɵju, TransactionQuickAccessPurchaseOrderOverviewComponent as ɵjv, TransactionOrderConfirmationGridModule as ɵjw, TransactionOrderConfirmationGridComponent as ɵjx, TransactionReceivedGoodsGridModule as ɵjy, DialogTransactionLineWarehouseLocationModule as ɵjz, SelectMultipleParameterizedCacheService as ɵk, TransactionLineWarehouseLocationModule as ɵka, TransactionLineWarehouseLocationComponent as ɵkb, DialogTransactionLineWarehouseLocationComponent as ɵkc, TransactionReceivedGoodsGridComponent as ɵkd, ViewModeButtonsModule as ɵke, ViewModeButtonsComponent as ɵkf, TransactionGridModule as ɵkg, TransactionGridComponent as ɵkh, TransactionTileModule as ɵki, TransactionTileComponent as ɵkj, TransactionOverviewLineModule as ɵkk, EditableLabelModule as ɵkl, EditableLabelComponent as ɵkm, TransactionBaseLineModule as ɵkn, TransactionBaseLineComponent as ɵko, TransactionLinesLineBaseComponent as ɵkp, TransactionLineCommissionButtonModule as ɵkq, TransactionLineCommissionButtonComponent as ɵkr, TransactionLineWarehouseButtonModule as ɵks, TransactionLineWarehouseButtonComponent as ɵkt, TransactionLineDeliveryButtonModule as ɵku, TransactionLineDeliveryButtonComponent as ɵkv, TransactionLineDeliveryDateButtonModule as ɵkw, TransactionLineDeliveryDateButtonComponent as ɵkx, TransactionLineAmountModule as ɵky, TransactionLineAmountComponent as ɵkz, ErrorService as ɵl, TransactionOverviewLineComponent as ɵla, TransactionOrderDeliveryLineModule as ɵlb, TransactionOrderDeliveryLineComponent as ɵlc, TransactionReceiveGoodsLineModule as ɵld, TransactionReceiveGoodsLineComponent as ɵle, TransactionPurchaseLineModule as ɵlf, TransactionLineSupplierButtonModule as ɵlg, DialogTransactionLineSupplierModule as ɵlh, DialogTransactionLineSupplierComponent as ɵli, TransactionLineSupplierButtonComponent as ɵlj, TransactionPurchaseLineComponent as ɵlk, TransactionGoodsAllocationLineModule as ɵll, TransactionGoodsAllocationLineComponent as ɵlm, TransactionSearchResultModule as ɵln, TransactionSearchSalesOrderTileModule as ɵlo, TransactionSearchSalesOrderTileComponent as ɵlp, TransactionSearchTileBaseComponent as ɵlq, TransactionSearchPurchaseOrderTileModule as ɵlr, TransactionSearchPurchaseOrderTileComponent as ɵls, TransactionSearchSalesOrderGridModule as ɵlt, TransactionSearchSalesOrderGridComponent as ɵlu, TransactionSearchGridBaseComponent as ɵlv, TransactionSearchPurchaseOrderGridModule as ɵlw, TransactionSearchPurchaseOrderGridComponent as ɵlx, TransactionSearchHeaderModule as ɵly, TransactionSearchHeaderComponent as ɵlz, SelectSingleCacheService as ɵm, TransactionSearchGridModule as ɵma, TransactionSearchGridComponent as ɵmb, TransactionSearchTileModule as ɵmc, TransactionSearchTileComponent as ɵmd, TransactionSearchResultComponent as ɵme, TransactionSalesOrderFilterModule as ɵmf, TransactionSalesOrderFilterContentOrderModule as ɵmg, TransactionFilterItemModule as ɵmh, TransactionFilterItemComponent as ɵmi, TransactionSalesOrderFilterContentOrderComponent as ɵmj, TransactionFilterContentBaseComponent as ɵmk, FilterRequestService as ɵml, TransactionSalesOrderFilterContentLogisticsModule as ɵmm, TransactionFilterHistoricStateModule as ɵmn, TransactionFilterHistoricStateComponent as ɵmo, TransactionSalesOrderFilterContentLogisticsComponent as ɵmp, TransactionSalesOrderFilterContentArticleModule as ɵmq, TransactionSalesOrderFilterContentArticleComponent as ɵmr, TransactionSalesOrderFilterComponent as ɵms, TransactionFilterBaseComponent as ɵmt, TransactionPurchaseOrderFilterModule as ɵmu, TransactionPurchaseOrderFilterContentOrderModule as ɵmv, TransactionPurchaseOrderFilterContentOrderComponent as ɵmw, TransactionPurchaseOrderFilterContentLogisticsModule as ɵmx, TransactionPurchaseOrderFilterContentLogisticsComponent as ɵmy, TransactionPurchaseOrderFilterContentArticleModule as ɵmz, ArticleConnectorService as ɵn, TransactionPurchaseOrderFilterContentArticleComponent as ɵna, TransactionPurchaseOrderFilterComponent as ɵnb, TransactionFilterModule as ɵnc, TransactionFilterComponent as ɵnd, TransactionEventService as ɵo, RelationConnectorService as ɵp, CoreModule as ɵq, ConfirmationDialogModule as ɵr, PipeModule as ɵs, AppendPipe as ɵt, DeliveryTimePipe as ɵu, DateDurationPipe as ɵv, LocalizePipe as ɵw, CoCurrencyPipe as ɵx, SafeStylePipe as ɵy, SafeHtmlPipe as ɵz };
|
|
24783
24848
|
//# sourceMappingURL=colijnit-transaction.js.map
|