@colijnit/transaction 12.1.50 → 12.1.52

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.
Files changed (65) hide show
  1. package/bundles/colijnit-transaction.umd.js +756 -642
  2. package/bundles/colijnit-transaction.umd.js.map +1 -1
  3. package/colijnit-transaction.d.ts +192 -192
  4. package/colijnit-transaction.metadata.json +1 -1
  5. package/esm2015/colijnit-transaction.js +193 -193
  6. package/esm2015/lib/assets/dictionary/text.properties.js +5 -1
  7. package/esm2015/lib/component/core/base/components/transaction-header-block/transaction-header-block.component.js +1 -1
  8. package/esm2015/lib/component/shared/transaction-article-text/transaction-article-text.component.js +62 -15
  9. package/esm2015/lib/component/shared/transaction-article-text/transaction-article-text.module.js +6 -3
  10. package/esm2015/lib/component/transaction/transaction.module.js +6 -3
  11. package/esm2015/lib/component/transaction-confirmation-details/transaction-confirmation-details.component.js +13 -12
  12. package/esm2015/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.js +38 -18
  13. package/esm2015/lib/component/transaction-confirmation-history/transaction-confirmation-history.module.js +4 -3
  14. package/esm2015/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.js +1 -1
  15. package/esm2015/lib/component/transaction-line/transaction-line/transaction-line.component.js +1 -1
  16. package/esm2015/lib/component/transaction-line/transaction-order-delivery-line/transaction-order-delivery-line.component.js +1 -1
  17. package/esm2015/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.component.js +1 -1
  18. package/esm2015/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.module.js +1 -1
  19. package/esm2015/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.component.js +18 -14
  20. package/esm2015/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.component.js +1 -1
  21. package/esm2015/lib/component/transaction-line-fields/transaction-line-commission-button.component.js +1 -1
  22. package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-button.component.js +1 -1
  23. package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-date-button.component.js +1 -1
  24. package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse-button.component.js +1 -1
  25. package/esm2015/lib/component/transaction-line-image-and-description/transaction-line-image-and-description.component.js +11 -6
  26. package/esm2015/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.js +6 -1
  27. package/esm2015/lib/component/transaction-lines/transaction-lines.component.js +3 -5
  28. package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.js +19 -3
  29. package/esm2015/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.component.js +1 -1
  30. package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.component.js +2 -2
  31. package/esm2015/lib/enum/icon.enum.js +7 -1
  32. package/esm2015/lib/model/icon-svg.js +7 -1
  33. package/esm2015/lib/service/pending-reason.service.js +2 -4
  34. package/esm2015/lib/service/transaction-connector-adapter.service.js +30 -3
  35. package/esm2015/lib/service/transaction-connector.service.js +7 -12
  36. package/esm2015/lib/service/transaction.service.js +7 -6
  37. package/fesm2015/colijnit-transaction.js +504 -367
  38. package/fesm2015/colijnit-transaction.js.map +1 -1
  39. package/lib/component/shared/transaction-article-text/style/_layout.scss +68 -7
  40. package/lib/component/shared/transaction-article-text/style/_material-definition.scss +1 -1
  41. package/lib/component/shared/transaction-article-text/style/_theme.scss +11 -3
  42. package/lib/component/shared/transaction-article-text/transaction-article-text.component.d.ts +14 -2
  43. package/lib/component/shared/transaction-article-text-overview/style/_layout.scss +4 -0
  44. package/lib/component/transaction/style/_layout.scss +23 -0
  45. package/lib/component/transaction/style/_material-definition.scss +7 -0
  46. package/lib/component/transaction-confirmation-details/transaction-confirmation-details.component.d.ts +2 -3
  47. package/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.d.ts +6 -8
  48. package/lib/component/transaction-line/transaction-overview-line/style/_material-definition.scss +2 -1
  49. package/lib/component/transaction-line-action-buttons/style/_layout.scss +31 -38
  50. package/lib/component/transaction-line-action-buttons/style/_material-definition.scss +3 -2
  51. package/lib/component/transaction-line-action-buttons/style/_theme.scss +11 -0
  52. package/lib/component/transaction-line-image-and-description/style/_layout.scss +5 -0
  53. package/lib/component/transaction-line-image-and-description/transaction-line-image-and-description.component.d.ts +1 -0
  54. package/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.d.ts +2 -0
  55. package/lib/component/transaction-lines/style/_layout.scss +16 -0
  56. package/lib/component/transaction-lines/style/_material-definition.scss +1 -1
  57. package/lib/component/transaction-lines/style/_theme.scss +4 -3
  58. package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.d.ts +3 -0
  59. package/lib/component/transaction-search/style/material.scss +1 -0
  60. package/lib/enum/icon.enum.d.ts +6 -0
  61. package/lib/service/pending-reason.service.d.ts +1 -1
  62. package/lib/service/transaction-connector-adapter.service.d.ts +3 -0
  63. package/lib/service/transaction-connector.service.d.ts +2 -0
  64. package/lib/service/transaction.service.d.ts +3 -1
  65. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
1
  import { __awaiter } from 'tslib';
2
2
  import * as i0 from '@angular/core';
3
- import { Injectable, EventEmitter, Component, ViewEncapsulation, Input, HostBinding, ChangeDetectorRef, Output, Directive, Injector, ComponentFactoryResolver, ApplicationRef, ViewChild, Pipe, NgModule, ElementRef, ContentChildren, HostListener } from '@angular/core';
3
+ import { Injectable, EventEmitter, Component, ViewEncapsulation, Input, HostBinding, ChangeDetectorRef, Output, Directive, Injector, ComponentFactoryResolver, ApplicationRef, ViewChild, Pipe, NgModule, ElementRef, ContentChildren, HostListener, ChangeDetectionStrategy } from '@angular/core';
4
4
  import { PendingReasonType } from '@colijnit/transactionapi/build/enum/pending-reason-type.enum';
5
5
  import { SequenceName } from '@colijnit/transactionapi/build/enum/sequence-name.enum';
6
6
  import { TransactionKind } from '@colijnit/transactionapi/build/enum/transaction-kind.enum';
@@ -65,7 +65,7 @@ import { ResolveHeaderPendingReasonRequest } from '@colijnit/transactionapi/buil
65
65
  import { DocDeliveryBatch } from '@colijnit/transactionapi/build/model/doc-delivery-batch.bo';
66
66
  import { NULL_CUSTOMER_FULL_OBJECT, NULL_RELATION_OBJECT } from '@colijnit/transactionapi/build/model/nul-relation-object';
67
67
  import { RelationKind } from '@colijnit/transactionapi/build/enum/relation-kind.enum';
68
- import { FormMasterService, CoDialogModule, ButtonModule, CollapsibleModule, InputCheckboxModule, InputTextModule, InputComboBoxModule, FormModule, InputRadioButtonModule, IconModule, InputTextComponent, InputListboxModule, DropDownModule, ColumnAlign, SimpleGridColumnDirective, ObserveVisibilityModule, ColorSequenceService, PriceDisplayPipeModule, InputDatePickerModule, Carousel3dModule, InputDatePickerComponent, InputTextareaComponent, InputTextareaModule, InputSearchModule, InputNumberPickerModule, CoDialogPromptModule, MultiSelectListModule, PopupModule, CoSidebarModule, CoGridModule, CoRichTextEditorModule, CarouselModule, SimpleGridModule, GridToolbarButtonModule, InputDateRangePickerModule, ClickoutsideModule, CoOrientation, CoDirection, FilterItemModule, PaginationModule, PaginationBarModule, IconCollapseHandleModule } from '@colijnit/corecomponents_v12';
68
+ import { FormMasterService, CoDialogModule, ButtonModule, CollapsibleModule, InputCheckboxModule, InputTextModule, InputComboBoxModule, FormModule, InputRadioButtonModule, IconModule, InputTextComponent, InputListboxModule, DropDownModule, InputSearchModule, ColumnAlign, SimpleGridColumnDirective, ObserveVisibilityModule, ColorSequenceService, PriceDisplayPipeModule, InputDatePickerModule, Carousel3dModule, InputDatePickerComponent, InputTextareaComponent, InputTextareaModule, InputNumberPickerModule, CoDialogPromptModule, MultiSelectListModule, PopupModule, CoSidebarModule, CoGridModule, CoRichTextEditorModule, CarouselModule, SimpleGridModule, GridToolbarButtonModule, InputDateRangePickerModule, ClickoutsideModule, CoOrientation, CoDirection, FilterItemModule, PaginationModule, PaginationBarModule, IconCollapseHandleModule } from '@colijnit/corecomponents_v12';
69
69
  import { FlexModule } from '@angular/flex-layout';
70
70
  import { AddressType } from '@colijnit/transactionapi/build/enum/address-type.enum';
71
71
  import { trigger, state, style, transition, animate } from '@angular/animations';
@@ -79,6 +79,7 @@ import { TransactionAddTextLineRequest } from '@colijnit/transactionapi/build/mo
79
79
  import { PagingParameters } from '@colijnit/transactionapi/build/model/paging-parameters';
80
80
  import { TransactionSearchViewRequest } from '@colijnit/transactionapi/build/model/transaction-search-view-request';
81
81
  import { RelationKind as RelationKind$1 } from '@colijnit/articleapi/build/enum/relation-kind.enum';
82
+ import { GetPurchaseOrderConfirmation } from '@colijnit/transactionapi/build/model/get-purchase-order-confirmation';
82
83
  import { StockStatus } from '@colijnit/transactionapi/build/enum/refcode/stock-status.enum';
83
84
  import { ReceiveGoodsForPurchaseOrderRequest } from '@colijnit/transactionapi/build/model/receive-goods-for-purchase-order-request.bo';
84
85
  import { PurchaseOrderLineReceiptDetails } from '@colijnit/transactionapi/build/model/purchase-order-line-receipt-details.bo';
@@ -423,6 +424,7 @@ class Dictionary {
423
424
  "PRIVATE_PERSON": "Particulier",
424
425
  "PRODUCT": "Product",
425
426
  "PRODUCT_TYPE": "Productsoort",
427
+ "PRODUCT_DESCRIPTION_AND_TEXTS": "Productomschrijving & teksten",
426
428
  "PURCHASE": "Inkoop",
427
429
  "PURCHASENUMBER": "Inkoopnummer",
428
430
  "PURCHASEORDERS": "Inkooporders",
@@ -511,6 +513,7 @@ class Dictionary {
511
513
  "TRANSPORT_COST_LINE_TOTAL": "Transportkosten regeltotaal",
512
514
  "TURNOVER_GROUP": "Omzetgroep",
513
515
  "TYPE": "Soort",
516
+ "TYPE_OR_SEARCH_TEXT": "Type of zoek de tekst die u wilt toevoegen...",
514
517
  "UNKNOWN": "Onbekend",
515
518
  "UNKNOWN_ADDRESS_CHECK_IT": "Onbekend adres",
516
519
  "USER": "Gebruiker",
@@ -766,6 +769,7 @@ class Dictionary {
766
769
  "PLANNING_PREFERRED_DATE_ENTERED": "Planning preferred date entered",
767
770
  "PRODUCT": "Product",
768
771
  "PRODUCT_TYPE": "Product type",
772
+ "PRODUCT_DESCRIPTION_AND_TEXTS": "Product description & texts",
769
773
  "PURCHASE": "Purchase",
770
774
  "PURCHASENUMBER": "Purchase number",
771
775
  "PURCHASEORDERS": "Purchase orders",
@@ -843,6 +847,7 @@ class Dictionary {
843
847
  "TRANSPORT_NOTIFICATION": "Transport notification",
844
848
  "TURNOVER_GROUP": "Turnover group",
845
849
  "TYPE": "Type",
850
+ "TYPE_OR_SEARCH_TEXT": "Type or search the text you want to add...",
846
851
  "UNKNOWN": "unknown",
847
852
  "UNKNOWN_ADDRESS_CHECK_IT": "Unknown address",
848
853
  "USER": "User",
@@ -2037,6 +2042,7 @@ var Icon;
2037
2042
  Icon["ArrowPointRight"] = "arrow_point_right";
2038
2043
  Icon["Article"] = "article";
2039
2044
  Icon["AtSolid"] = "at_solid";
2045
+ Icon["BarcodeRegular"] = "barcode_regular";
2040
2046
  Icon["BarcodeSolid"] = "barcode_solid";
2041
2047
  Icon["BarsFilter"] = "bars_filter";
2042
2048
  Icon["CalendarDay"] = "calendar_day";
@@ -2049,6 +2055,7 @@ var Icon;
2049
2055
  Icon["CreditCardSolid"] = "credit_card_solid";
2050
2056
  Icon["DeliveryTruck"] = "delivery_truck";
2051
2057
  Icon["EditPencil"] = "edit_pencil";
2058
+ Icon["EllipsisLight"] = "ellipsis_light";
2052
2059
  Icon["FileCircleInfoSolid"] = "file_circle_info_solid";
2053
2060
  Icon["FilePdfSolid"] = "file_pdf_solid";
2054
2061
  Icon["GripDotsVerticalSolid"] = "grip_dots_vertical_solid";
@@ -2060,10 +2067,12 @@ var Icon;
2060
2067
  Icon["Lock"] = "lock";
2061
2068
  Icon["LockKeyholeOpenSolid"] = "lock_keyhole_open_solid";
2062
2069
  Icon["LockKeyholeSolid"] = "lock_keyhole_solid";
2070
+ Icon["Magnifier"] = "magnifier";
2063
2071
  Icon["MapMarker"] = "map_marker";
2064
2072
  Icon["MasterDetail"] = "master_detail";
2065
2073
  Icon["MemoCircleCheckSolid"] = "memo_circle_check_solid";
2066
2074
  Icon["Menu"] = "menu";
2075
+ Icon["ObjectIntersectSolid"] = "object_intersect_solid";
2067
2076
  Icon["PalletBoxesSolid"] = "pallet_boxes_solid";
2068
2077
  Icon["PlusRound"] = "plus_round";
2069
2078
  Icon["PrintSolid"] = "print_solid";
@@ -2078,6 +2087,8 @@ var Icon;
2078
2087
  Icon["SquareFullSolid"] = "square_full_solid";
2079
2088
  Icon["SyncAlt"] = "sync_alt";
2080
2089
  Icon["Tag"] = "tag";
2090
+ Icon["TextSizeSolid"] = "text_size_solid";
2091
+ Icon["TextSolid"] = "text_solid";
2081
2092
  Icon["ThickLines"] = "thick_lines";
2082
2093
  Icon["ThinLines"] = "thin_lines";
2083
2094
  Icon["TrashBin"] = "trash_bin";
@@ -2101,6 +2112,7 @@ const IconSvg = {
2101
2112
  "arrow_point_right": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51 51\" enable-background=\"new 0 0 51 51\" ><path fill=\"#484F5F\" d=\"M19.1,14.3l14.7,9.6c0.1,0.1,0.2,0.2,0.2,0.4v2.4c0,0.2-0.1,0.3-0.2,0.4l-14.7,9.6c-0.2,0.2-0.5,0.1-0.7-0.1l-1.4-2.1c-0.2-0.2-0.1-0.5,0.1-0.7l12-7.8c0.3-0.2,0.3-0.6,0-0.8l-12-7.8c-0.2-0.2-0.3-0.5-0.1-0.7l1.4-2.1C18.6,14.2,18.9,14.2,19.1,14.3z\"/></svg>",
2102
2113
  "article": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M37.43,15.14H12.57A2.57,2.57,0,0,0,10,17.71V32.29a2.57,2.57,0,0,0,2.57,2.57H37.43A2.57,2.57,0,0,0,40,32.29V17.71A2.57,2.57,0,0,0,37.43,15.14ZM14.29,32.71H12.15V17.29h2.14Zm2,0H15V17.29h1.29Zm2.57,0H17.54V17.29h1.29Zm3.52,0H20.2V17.29h2.15Zm2,0H23.11V17.29H24.4Zm2.06,0H25.17V17.29h1.29Zm2.66,0H27.83V17.29h1.29Zm3.51,0H31.34V17.29h1.29Zm3.34,0H33.4V17.29H36Zm2.32,0H37V17.29h1.29Z\" fill=\"#484f60\"/></svg>",
2103
2114
  "at_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M207.8 20.73c-93.45 18.32-168.7 93.66-187 187.1c-27.64 140.9 68.65 266.2 199.1 285.1c19.01 2.888 36.17-12.26 36.17-31.49l.0001-.6631c0-15.74-11.44-28.88-26.84-31.24c-84.35-12.98-149.2-86.13-149.2-174.2c0-102.9 88.61-185.5 193.4-175.4c91.54 8.869 158.6 91.25 158.6 183.2l0 16.16c0 22.09-17.94 40.05-40 40.05s-40.01-17.96-40.01-40.05v-120.1c0-8.847-7.161-16.02-16.01-16.02l-31.98 .0036c-7.299 0-13.2 4.992-15.12 11.68c-24.85-12.15-54.24-16.38-86.06-5.106c-38.75 13.73-68.12 48.91-73.72 89.64c-9.483 69.01 43.81 128 110.9 128c26.44 0 50.43-9.544 69.59-24.88c24 31.3 65.23 48.69 109.4 37.49C465.2 369.3 496 324.1 495.1 277.2V256.3C495.1 107.1 361.2-9.332 207.8 20.73zM239.1 304.3c-26.47 0-48-21.56-48-48.05s21.53-48.05 48-48.05s48 21.56 48 48.05S266.5 304.3 239.1 304.3z\"/></svg>",
2115
+ "barcode_regular": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M48 55.1V455.1C48 469.3 37.25 479.1 24 479.1C10.75 479.1 0 469.3 0 455.1V55.1C0 42.74 10.75 31.1 24 31.1C37.25 31.1 48 42.74 48 55.1V55.1zM128 47.1V463.1C128 472.8 120.8 479.1 112 479.1C103.2 479.1 96 472.8 96 463.1V47.1C96 39.16 103.2 31.1 112 31.1C120.8 31.1 128 39.16 128 47.1V47.1zM208 55.1V455.1C208 469.3 197.3 479.1 184 479.1C170.7 479.1 160 469.3 160 455.1V55.1C160 42.74 170.7 31.1 184 31.1C197.3 31.1 208 42.74 208 55.1V55.1zM320 55.1V455.1C320 469.3 309.3 479.1 296 479.1C282.7 479.1 272 469.3 272 455.1V55.1C272 42.74 282.7 31.1 296 31.1C309.3 31.1 320 42.74 320 55.1V55.1zM464 55.1C464 42.74 474.7 31.1 488 31.1C501.3 31.1 512 42.74 512 55.1V455.1C512 469.3 501.3 479.1 488 479.1C474.7 479.1 464 469.3 464 455.1V55.1zM400 47.1C400 39.16 407.2 31.1 416 31.1C424.8 31.1 432 39.16 432 47.1V463.1C432 472.8 424.8 479.1 416 479.1C407.2 479.1 400 472.8 400 463.1V47.1z\"/></svg>",
2104
2116
  "barcode_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M40 32C53.25 32 64 42.75 64 56V456C64 469.3 53.25 480 40 480H24C10.75 480 0 469.3 0 456V56C0 42.75 10.75 32 24 32H40zM128 48V464C128 472.8 120.8 480 112 480C103.2 480 96 472.8 96 464V48C96 39.16 103.2 32 112 32C120.8 32 128 39.16 128 48zM200 32C213.3 32 224 42.75 224 56V456C224 469.3 213.3 480 200 480H184C170.7 480 160 469.3 160 456V56C160 42.75 170.7 32 184 32H200zM296 32C309.3 32 320 42.75 320 56V456C320 469.3 309.3 480 296 480H280C266.7 480 256 469.3 256 456V56C256 42.75 266.7 32 280 32H296zM448 56C448 42.75 458.7 32 472 32H488C501.3 32 512 42.75 512 56V456C512 469.3 501.3 480 488 480H472C458.7 480 448 469.3 448 456V56zM384 48C384 39.16 391.2 32 400 32C408.8 32 416 39.16 416 48V464C416 472.8 408.8 480 400 480C391.2 480 384 472.8 384 464V48z\"/></svg>",
2105
2117
  "bars_filter": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M264 392H183.1C170.8 392 160 402.8 160 415.1C160 429.2 170.8 440 183.1 440h80C277.2 440 288 429.2 288 416C288 402.8 277.2 392 264 392zM424 72H23.1C10.8 72 0 82.8 0 95.1S10.8 120 23.1 120H424c13.2 0 24-10.8 24-23.1S437.2 72 424 72zM360 232H87.1C74.8 232 64 242.8 64 255.1C64 269.2 74.8 280 87.1 280h272C373.2 280 384 269.2 384 256C384 242.8 373.2 232 360 232z\"/></svg>",
2106
2118
  "calendar_day": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><g><path fill=\"#022D42\" d=\"M35.4,13.7H14.6c-0.6,0-1,0.5-1,1V20h22.9v-5.2C36.4,14.2,36,13.7,35.4,13.7z M19,18.8c-1,0-1.8-0.8-1.8-1.8c0-1,0.8-1.8,1.8-1.8c1,0,1.8,0.8,1.8,1.8C20.8,18,20,18.8,19,18.8z M31,18.8c-1,0-1.8-0.8-1.8-1.8c0-1,0.8-1.8,1.8-1.8s1.8,0.8,1.8,1.8C32.7,18,32,18.8,31,18.8z\"/><path fill=\"#022D42\" d=\"M35.4,22.3v12.6L31.3,39H14.6c0,0,0,0,0,0V22.3H35.4 M36.4,21.3H13.6V39c0,0.6,0.5,1,1,1h17.2l4.7-4.7V21.3L36.4,21.3z\"/><rect x=\"18.2\" y=\"10\" fill=\"#022D42\" width=\"1.6\" height=\"5.2\"/><rect x=\"30.2\" y=\"10\" fill=\"#022D42\" width=\"1.6\" height=\"5.2\"/><rect x=\"18.6\" y=\"30.5\" fill=\"#022D42\" width=\"3.4\" height=\"3.4\"/><rect x=\"19.1\" y=\"24.8\" opacity=\"0.1\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"19.1\" y=\"27.9\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"19.1\" y=\"34.1\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"22.2\" y=\"24.8\" opacity=\"0.1\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"22.2\" y=\"27.9\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"22.2\" y=\"31\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"22.2\" y=\"34.1\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"25.4\" y=\"31\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"25.4\" y=\"24.8\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"25.4\" y=\"27.9\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"25.4\" y=\"34.1\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"31.6\" y=\"31\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"31.6\" y=\"24.8\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"31.6\" y=\"27.9\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"28.5\" y=\"27.9\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"28.5\" y=\"24.8\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"28.5\" y=\"31\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"28.5\" y=\"34.1\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"16\" y=\"24.8\" opacity=\"0.1\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"16\" y=\"27.9\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"16\" y=\"31\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/><rect x=\"16\" y=\"34.1\" opacity=\"0.25\" fill=\"#022D42\" width=\"2.4\" height=\"2.4\"/></g></svg>",
@@ -2113,6 +2125,7 @@ const IconSvg = {
2113
2125
  "credit_card_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M512 32C547.3 32 576 60.65 576 96V128H0V96C0 60.65 28.65 32 64 32H512zM576 416C576 451.3 547.3 480 512 480H64C28.65 480 0 451.3 0 416V224H576V416zM112 352C103.2 352 96 359.2 96 368C96 376.8 103.2 384 112 384H176C184.8 384 192 376.8 192 368C192 359.2 184.8 352 176 352H112zM240 384H368C376.8 384 384 376.8 384 368C384 359.2 376.8 352 368 352H240C231.2 352 224 359.2 224 368C224 376.8 231.2 384 240 384z\"/></svg>",
2114
2126
  "delivery_truck": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"15.35\" y=\"16.56\" width=\"15.14\" height=\"10.94\" transform=\"translate(-1.83 2.08) rotate(-5)\" fill=\"#484f60\"/><path d=\"M38.5,18.1l-6.9.61L32.41,28l-7.63.67a3.76,3.76,0,0,1,1.43,2.25l7.25-.63A3.83,3.83,0,0,1,41,29.6l1-.1-.52-6Zm.29,5.84-3.91.34a.51.51,0,0,1-.55-.46L34,20.1a.49.49,0,0,1,.45-.54l2.27-.2a.5.5,0,0,1,.48.25l2,3.59A.5.5,0,0,1,38.79,23.94Z\" fill=\"#484f60\"/><path d=\"M19.66,29.09a3.8,3.8,0,0,0-1,2.46l-.74.07-1.82-.94L16,29.41Z\" fill=\"#484f60\"/><path d=\"M34.56,30.62a2.74,2.74,0,1,0,2.49-3A2.73,2.73,0,0,0,34.56,30.62Z\" fill=\"#484f60\"/><path d=\"M19.74,31.91a2.74,2.74,0,1,0,2.49-3A2.74,2.74,0,0,0,19.74,31.91Z\" fill=\"#484f60\"/><rect x=\"7.96\" y=\"17.63\" width=\"5\" height=\"1\" transform=\"translate(-1.54 0.98) rotate(-5)\" fill=\"#484f60\"/><rect x=\"11.02\" y=\"29.71\" width=\"3\" height=\"1\" transform=\"translate(-2.59 1.21) rotate(-5)\" fill=\"#484f60\"/><rect x=\"9.48\" y=\"23.53\" width=\"4\" height=\"1\" transform=\"matrix(1, -0.09, 0.09, 1, -2.05, 1.09)\" fill=\"#484f60\"/></svg>",
2115
2127
  "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>",
2128
+ "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>",
2116
2129
  "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>",
2117
2130
  "file_pdf_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M88 304H80V256H88C101.3 256 112 266.7 112 280C112 293.3 101.3 304 88 304zM192 256H200C208.8 256 216 263.2 216 272V336C216 344.8 208.8 352 200 352H192V256zM224 0V128C224 145.7 238.3 160 256 160H384V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V64C0 28.65 28.65 0 64 0H224zM64 224C55.16 224 48 231.2 48 240V368C48 376.8 55.16 384 64 384C72.84 384 80 376.8 80 368V336H88C118.9 336 144 310.9 144 280C144 249.1 118.9 224 88 224H64zM160 368C160 376.8 167.2 384 176 384H200C226.5 384 248 362.5 248 336V272C248 245.5 226.5 224 200 224H176C167.2 224 160 231.2 160 240V368zM288 224C279.2 224 272 231.2 272 240V368C272 376.8 279.2 384 288 384C296.8 384 304 376.8 304 368V320H336C344.8 320 352 312.8 352 304C352 295.2 344.8 288 336 288H304V256H336C344.8 256 352 248.8 352 240C352 231.2 344.8 224 336 224H288zM256 0L384 128H256V0z\"/></svg>",
2118
2131
  "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>",
@@ -2124,10 +2137,12 @@ const IconSvg = {
2124
2137
  "lock": "<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=\"M29.51,16.64c0-3.6-2-4.07-4.51-4.07h0c-2.49,0-4.51.47-4.51,4.07v3h-2.7v-3C17.79,11.62,21,10,25,10h0c4,0,7.21,1.62,7.21,6.64v3h-2.7Z\" fill=\"#484f60\"/></svg>",
2125
2138
  "lock_keyhole_open_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path d=\"M432 64C387.8 64 352 99.82 352 144V192H384C419.3 192 448 220.7 448 256V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V256C0 220.7 28.65 192 64 192H288V144C288 64.47 352.5 0 432 0C511.5 0 576 64.47 576 144V192C576 209.7 561.7 224 544 224C526.3 224 512 209.7 512 192V144C512 99.82 476.2 64 432 64zM256 384C273.7 384 288 369.7 288 352C288 334.3 273.7 320 256 320H192C174.3 320 160 334.3 160 352C160 369.7 174.3 384 192 384H256z\"/></svg>",
2126
2139
  "lock_keyhole_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M224 0C303.5 0 368 64.47 368 144V192H384C419.3 192 448 220.7 448 256V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V256C0 220.7 28.65 192 64 192H80V144C80 64.47 144.5 0 224 0zM224 64C179.8 64 144 99.82 144 144V192H304V144C304 99.82 268.2 64 224 64zM256 320C256 302.3 241.7 288 224 288C206.3 288 192 302.3 192 320V384C192 401.7 206.3 416 224 416C241.7 416 256 401.7 256 384V320z\"/></svg>",
2140
+ "magnifier": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 50 50\" enable-background=\"new 0 0 50 50\" ><g><path fill=\"#29363E\" d=\"M27.8,15.5c-3.4-3.4-8.9-3.4-12.3,0c-3.4,3.4-3.4,8.9,0,12.3c3.4,3.4,8.9,3.4,12.3,0C31.2,24.4,31.2,18.9,27.8,15.5z M26.4,26.4c-2.6,2.6-6.8,2.6-9.4,0c-2.6-2.6-2.6-6.8,0-9.4c2.6-2.6,6.8-2.6,9.4,0C29,19.6,29,23.8,26.4,26.4z\"/><path fill=\"#29363E\" d=\"M36.4,32.8l-4.3-4.3c-0.8-0.8-2.1-0.8-2.9,0l-0.7,0.7c-0.8,0.8-0.8,2.1,0,2.9l4.3,4.3c0.8,0.8,2.1,0.8,2.9,0l0.7-0.7C37.2,34.9,37.2,33.6,36.4,32.8z\"/></g></svg>",
2127
2141
  "map_marker": "<!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=\"M12,11.5A2.5,2.5 0 0,1 9.5,9A2.5,2.5 0 0,1 12,6.5A2.5,2.5 0 0,1 14.5,9A2.5,2.5 0 0,1 12,11.5M12,2A7,7 0 0,0 5,9C5,14.25 12,22 12,22C12,22 19,14.25 19,9A7,7 0 0,0 12,2Z\" /></svg>",
2128
2142
  "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>",
2129
2143
  "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>",
2130
2144
  "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>",
2145
+ "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>",
2131
2146
  "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>",
2132
2147
  "plus_round": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"-288 379 35 35\" enable-background=\"new -288 379 35 35\" ><path fill=\"#29363E\" d=\"M-270.5,381.5c-8.3,0-15,6.7-15,15c0,8.3,6.7,15,15,15s15-6.7,15-15C-255.5,388.2-262.2,381.5-270.5,381.5z M-261.1,397.3c0,0.9-0.7,1.6-1.6,1.6h-5.5v5.5c0,0.9-0.7,1.6-1.6,1.6h-1.6c-0.9,0-1.6-0.7-1.6-1.6v-5.5h-5.5c-0.9,0-1.6-0.7-1.6-1.6v-1.6c0-0.9,0.7-1.6,1.6-1.6h5.5v-5.5c0-0.9,0.7-1.6,1.6-1.6h1.6c0.9,0,1.6,0.7,1.6,1.6v5.5h5.5c0.9,0,1.6,0.7,1.6,1.6V397.3z\"/></svg>",
2133
2148
  "print_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M448 192H64C28.65 192 0 220.7 0 256v96c0 17.67 14.33 32 32 32h32v96c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-96h32c17.67 0 32-14.33 32-32V256C512 220.7 483.3 192 448 192zM384 448H128v-96h256V448zM432 296c-13.25 0-24-10.75-24-24c0-13.27 10.75-24 24-24s24 10.73 24 24C456 285.3 445.3 296 432 296zM128 64h229.5L384 90.51V160h64V77.25c0-8.484-3.375-16.62-9.375-22.62l-45.25-45.25C387.4 3.375 379.2 0 370.8 0H96C78.34 0 64 14.33 64 32v128h64V64z\"/></svg>",
@@ -2142,6 +2157,8 @@ const IconSvg = {
2142
2157
  "square_full_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M0 0h512v512H0V0z\"/></svg>",
2143
2158
  "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>",
2144
2159
  "tag": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><path d=\"M40,29.15v-.68a5.28,5.28,0,0,0-1.34-3.25L24.78,11.34A5.34,5.34,0,0,0,21.53,10H11.9A1.91,1.91,0,0,0,10,11.9v9.63a5.28,5.28,0,0,0,1.34,3.25L25.22,38.66A5.28,5.28,0,0,0,28.47,40h.68a5.28,5.28,0,0,0,3.24-1.34l6.27-6.27A5.28,5.28,0,0,0,40,29.15ZM13.13,16.72a2.54,2.54,0,1,1,3.59,0A2.55,2.55,0,0,1,13.13,16.72Zm15.9,19L17.84,24.55l1.34-1.34L30.37,34.4Zm2.69-2.69L20.52,21.87l1.35-1.35,11.19,11.2Zm2.68-2.69L23.21,19.18l1.34-1.34L35.75,29Z\" fill=\"#484f60\"/></svg>",
2160
+ "text_size_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 640 512\"><path d=\"M32 32C14.3 32 0 46.3 0 64v64c0 17.7 14.3 32 32 32s32-14.3 32-32V96h96l0 320H128c-17.7 0-32 14.3-32 32s14.3 32 32 32H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H224l0-320h96v32c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32H192 32zM352 224c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32s32-14.3 32-32h64l0 128H432c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H512l0-128h64c0 17.7 14.3 32 32 32s32-14.3 32-32V256c0-17.7-14.3-32-32-32H352z\"/></svg>",
2161
+ "text_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M0 32H32 192h64H416h32V64v64 32H384V128 96H256l0 320h48 32v64H304 144 112V416h32 48l0-320H64v32 32H0V128 64 32z\"/></svg>",
2145
2162
  "thick_lines": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"10\" y=\"12.67\" width=\"30\" height=\"7\" fill=\"#484f60\"/><rect x=\"10\" y=\"21.67\" width=\"30\" height=\"7\" fill=\"#484f60\"/><rect x=\"10\" y=\"30.67\" width=\"30\" height=\"7\" fill=\"#484f60\"/></svg>",
2146
2163
  "thin_lines": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\"><rect x=\"10\" y=\"14.17\" width=\"30\" height=\"4\" fill=\"#484f60\"/><rect x=\"10\" y=\"20.17\" width=\"30\" height=\"4\" fill=\"#484f60\"/><rect x=\"10\" y=\"26.17\" width=\"30\" height=\"4\" fill=\"#484f60\"/><rect x=\"10\" y=\"32.17\" width=\"30\" height=\"4\" fill=\"#484f60\"/></svg>",
2147
2164
  "trash_bin": "<svg preserveAspectRatio=\"none\" version=\"1.1\" viewBox=\"0 0 50 50\" x=\"0px\" xmlns=\"http://www.w3.org/2000/svg\" y=\"0px\"><g transform=\" translate(14 10)\"><path d=\"M 0 0 L 0 18.215 C 0 19.99 1.439 21.429 3.215 21.429 L 15 21.429 C 16.775 21.429 18.215 19.99 18.215 18.215 L 18.215 0 L 0 0 Z M 4.287 19.286 L 2.143 19.286 L 2.143 2.143 L 4.287 2.143 L 4.287 19.286 Z M 10.18 19.286 L 8.037 19.286 L 8.037 2.143 L 10.18 2.143 L 10.18 19.286 Z M 16.072 19.286 L 13.93 19.286 L 13.93 2.143 L 16.072 2.143 L 16.072 19.286 Z\" fill=\"#1E2930\" transform=\" translate(1.891 8.571)\" /><path d=\"M 18.213 2.143 L 10.713 2.143 C 11.305 2.143 11.785 1.664 11.785 1.071 C 11.785 0.479 11.305 0 10.713 0 L 9.643 0 C 9.051 0 8.57 0.479 8.57 1.071 C 8.57 1.664 9.051 2.143 9.643 2.143 L 2.143 2.143 C 0.959 2.143 0 3.103 0 4.286 L 0 5.357 C 0 6.541 0.959 6.429 2.143 6.429 L 18.213 6.429 C 19.397 6.429 20.357 6.541 20.357 5.357 L 20.357 4.286 C 20.357 3.103 19.397 2.143 18.213 2.143 Z\" fill=\"#1E2930\" transform=\" translate(0.821 0)\" /></g></svg>",
@@ -3309,7 +3326,7 @@ class TransactionConnectorAdapterService {
3309
3326
  return __awaiter(this, void 0, void 0, function* () {
3310
3327
  const result = yield this.connector.getStandardTexts(languageCode);
3311
3328
  if (result.validationResult && result.validationResult.success) {
3312
- return this._boFactory.makeBOArrayFromRawBackendDataArray(StandardText, result.resultObjects);
3329
+ return this._boFactory.makeBOArrayFromRawBackendDataArray(StandardText, result.resultObject);
3313
3330
  }
3314
3331
  else {
3315
3332
  this._handleExceptionFromResponse(result);
@@ -4298,7 +4315,34 @@ class TransactionConnectorAdapterService {
4298
4315
  }
4299
4316
  updatePurchasePortalLines(purchasePortalLine) {
4300
4317
  return __awaiter(this, void 0, void 0, function* () {
4301
- return this.connector.updatePurchasePortalLines(purchasePortalLine);
4318
+ const result = yield this.connector.updatePurchasePortalLines(purchasePortalLine);
4319
+ if (result && result.validationResult && result.validationResult.success) {
4320
+ yield this.commit();
4321
+ return null;
4322
+ }
4323
+ });
4324
+ }
4325
+ purchaseOrderConfirmation(purchaseOrderConfirmation) {
4326
+ return __awaiter(this, void 0, void 0, function* () {
4327
+ const result = yield this.connector.getPurchaseOrderConfirmation(purchaseOrderConfirmation);
4328
+ if (result && result.validationResult && result.validationResult.success) {
4329
+ yield this.commit();
4330
+ return null;
4331
+ }
4332
+ });
4333
+ }
4334
+ lockPurchasePortalLines(transIdPurchase, lineId) {
4335
+ return __awaiter(this, void 0, void 0, function* () {
4336
+ return new Promise((resolve, reject) => {
4337
+ return this.connector.lockPurchasePortalLines(transIdPurchase, lineId).then((result) => __awaiter(this, void 0, void 0, function* () {
4338
+ if (result.validationResult && result.validationResult.success) {
4339
+ resolve(true);
4340
+ }
4341
+ else {
4342
+ reject(result.validationMessagesAsString);
4343
+ }
4344
+ }));
4345
+ });
4302
4346
  });
4303
4347
  }
4304
4348
  _handleExceptionFromResponse(result) {
@@ -4843,19 +4887,14 @@ class TransactionConnectorService {
4843
4887
  return this._adapterService.updatePurchasePortalLines(purchasePortalLine);
4844
4888
  });
4845
4889
  }
4890
+ purchaseOrderConfirmation(purchaseOrderConfirmation) {
4891
+ return __awaiter(this, void 0, void 0, function* () {
4892
+ return this._adapterService.purchaseOrderConfirmation(purchaseOrderConfirmation);
4893
+ });
4894
+ }
4846
4895
  lockPurchasePortalLines(transIdPurchase, lineId) {
4847
4896
  return __awaiter(this, void 0, void 0, function* () {
4848
- return new Promise((resolve, reject) => {
4849
- return this._adapterService.connector.lockPurchasePortalLines(transIdPurchase, lineId).then((result) => __awaiter(this, void 0, void 0, function* () {
4850
- if (result.validationResult && result.validationResult.success) {
4851
- yield this.commit();
4852
- resolve(true);
4853
- }
4854
- else {
4855
- reject(result.validationMessagesAsString);
4856
- }
4857
- }));
4858
- });
4897
+ return this._adapterService.lockPurchasePortalLines(transIdPurchase, lineId);
4859
4898
  });
4860
4899
  }
4861
4900
  }
@@ -4975,7 +5014,7 @@ class PendingReasonService {
4975
5014
  this.applicationUser = false;
4976
5015
  this.invoiceAddressSameAsDelivery = true;
4977
5016
  this.currentTransaction = new TransactionInfoResponse();
4978
- this.purchasePortalLine = new PurchasePortalLine();
5017
+ this.purchasePortalLine = [];
4979
5018
  this.docDeliveryBatch = new DocDeliveryBatch();
4980
5019
  this.articleAmount = 0;
4981
5020
  this._relation = new CustomerFullObject();
@@ -5166,7 +5205,6 @@ class PendingReasonService {
5166
5205
  }
5167
5206
  _showWarehouseCcDialog(uuid, quantity, commissionCode, warehouseNr, reason, type) {
5168
5207
  return __awaiter(this, void 0, void 0, function* () {
5169
- commissionCode = "2";
5170
5208
  const reasonRequest = new ResolveLinePendingReasonRequest(uuid, reason, type);
5171
5209
  const response = yield this.dialogService.showWarehouseCC(quantity, commissionCode, warehouseNr);
5172
5210
  if (response.button === AppPopupButtonType.Ok) {
@@ -5894,13 +5932,14 @@ class TransactionService extends PendingReasonService {
5894
5932
  return yield this.connector.getPurchasePortalLines(request);
5895
5933
  });
5896
5934
  }
5935
+ purchaseOrderConfirmation(purchaseOrderConfirmation) {
5936
+ return __awaiter(this, void 0, void 0, function* () {
5937
+ return yield this.connector.purchaseOrderConfirmation(purchaseOrderConfirmation);
5938
+ });
5939
+ }
5897
5940
  updatePurchasePortalLines(purchasePortalLine) {
5898
5941
  return __awaiter(this, void 0, void 0, function* () {
5899
- let result = yield this.connector.updatePurchasePortalLines(purchasePortalLine);
5900
- if (result && result.validationResult && result.validationResult.success) {
5901
- result = yield this.connector.commit();
5902
- }
5903
- return result.validationResult.success;
5942
+ return yield this.connector.updatePurchasePortalLines(purchasePortalLine);
5904
5943
  });
5905
5944
  }
5906
5945
  lockPurchasePortalLines(transIdPurchase, lineId) {
@@ -8574,25 +8613,296 @@ TransactionTotalsModule.decorators = [
8574
8613
  },] }
8575
8614
  ];
8576
8615
 
8577
- class TransactionArticleTextComponent {
8578
- constructor(service) {
8616
+ class TransactionImageService {
8617
+ constructor(_connector) {
8618
+ this._connector = _connector;
8619
+ this._articleImageCache = new Map();
8620
+ }
8621
+ retrieveLineImage(line) {
8622
+ return __awaiter(this, void 0, void 0, function* () {
8623
+ return yield this.getArticleImageByArticleNumber(line.articleNumber);
8624
+ });
8625
+ }
8626
+ getArticleImageByArticleNumber(articleNumber) {
8627
+ return __awaiter(this, void 0, void 0, function* () {
8628
+ if (this._articleImageCache.has(articleNumber)) {
8629
+ return this._articleImageCache.get(articleNumber);
8630
+ }
8631
+ const goodId = yield this._connector.getGoodIdFromArticleNr(articleNumber).catch((error) => {
8632
+ console.error(error);
8633
+ return null;
8634
+ });
8635
+ const image = yield this.getArticleImageByGoodId(goodId);
8636
+ this._articleImageCache.set(articleNumber, image);
8637
+ return image;
8638
+ });
8639
+ }
8640
+ getArticleImageByGoodId(goodId) {
8641
+ return __awaiter(this, void 0, void 0, function* () {
8642
+ if (!isNaN(goodId)) {
8643
+ return this._connector.getSingleImage(goodId, 1, true, true).catch((error) => {
8644
+ console.error(error);
8645
+ return "";
8646
+ });
8647
+ }
8648
+ else {
8649
+ return "";
8650
+ }
8651
+ });
8652
+ }
8653
+ }
8654
+ TransactionImageService.ɵprov = i0.ɵɵdefineInjectable({ factory: function TransactionImageService_Factory() { return new TransactionImageService(i0.ɵɵinject(TransactionConnectorService)); }, token: TransactionImageService, providedIn: "root" });
8655
+ TransactionImageService.decorators = [
8656
+ { type: Injectable, args: [{
8657
+ providedIn: "root"
8658
+ },] }
8659
+ ];
8660
+ TransactionImageService.ctorParameters = () => [
8661
+ { type: TransactionConnectorService }
8662
+ ];
8663
+
8664
+ class TransactionLineImageAndDescriptionComponent {
8665
+ constructor(service, iconCacheService, _dialogService, _dictionaryService, _imageService) {
8579
8666
  this.service = service;
8667
+ this.iconCacheService = iconCacheService;
8668
+ this._dialogService = _dialogService;
8669
+ this._dictionaryService = _dictionaryService;
8670
+ this._imageService = _imageService;
8671
+ this.icons = Icon;
8672
+ this.popUpView = false;
8673
+ this.preview = false;
8674
+ this.openArticleTextClicked = new EventEmitter();
8675
+ this.handleDeleteLine = new EventEmitter();
8676
+ }
8677
+ set line(value) {
8678
+ this._line = value;
8679
+ this._loadLineImage();
8680
+ }
8681
+ get line() {
8682
+ return this._line;
8683
+ }
8684
+ showClass() {
8685
+ return true;
8686
+ }
8687
+ handleOpenArticleText(text) {
8688
+ this.openArticleTextClicked.next(text);
8689
+ }
8690
+ deleteTransactionLineClick() {
8691
+ return __awaiter(this, void 0, void 0, function* () {
8692
+ this.handleDeleteLine.next();
8693
+ });
8694
+ }
8695
+ _loadLineImage() {
8696
+ return __awaiter(this, void 0, void 0, function* () {
8697
+ if (this.line && this.line.isArticle) {
8698
+ this._imageService.retrieveLineImage(this.line).then((image) => {
8699
+ this.image = image;
8700
+ });
8701
+ }
8702
+ });
8703
+ }
8704
+ }
8705
+ TransactionLineImageAndDescriptionComponent.decorators = [
8706
+ { type: Component, args: [{
8707
+ selector: "co-transaction-line-image-and-description",
8708
+ template: `
8709
+ <div class="transaction-line-image" [class.preview]="preview">
8710
+ <co-image-display [model]="image"></co-image-display>
8711
+ </div>
8712
+ <div class="transaction-line-description">
8713
+ <div class="description-wrapper">
8714
+ <co-transaction-line-description class="transaction-line-description-description"
8715
+ [transactionLine]="line"
8716
+ [defaultEditMode]="false"
8717
+ [showLabel]="false"
8718
+ ></co-transaction-line-description>
8719
+ <div class="transaction-line-article-number-wrapper" *ngIf="!popUpView">
8720
+ <span *ngIf="line.goodDescription && line.articleNumber">|</span>
8721
+ <span [textContent]="line.articleNumber"></span>
8722
+ <co-icon class="delete-icon" [iconData]="iconCacheService.getIcon(icons.TrashCanLight)"
8723
+ (click)="deleteTransactionLineClick()"></co-icon>
8724
+ </div>
8725
+ </div>
8726
+ <div *ngIf="!preview && !popUpView" class="article-text-wrapper">
8727
+ <div class="article-text" *ngFor="let text of line.articleTestAsArray">
8728
+ <span [innerHTML]="text | safeHtml" (dblclick)="handleOpenArticleText(text)"></span>
8729
+ </div>
8730
+ </div>
8731
+ <div *ngIf="!preview && !popUpView">
8732
+ <span [innerHTML]="line.configurationReadable"></span>
8733
+ </div>
8734
+ </div>
8735
+ `,
8736
+ encapsulation: ViewEncapsulation.None
8737
+ },] }
8738
+ ];
8739
+ TransactionLineImageAndDescriptionComponent.ctorParameters = () => [
8740
+ { type: TransactionService },
8741
+ { type: IconCacheService },
8742
+ { type: DialogService },
8743
+ { type: DictionaryService },
8744
+ { type: TransactionImageService }
8745
+ ];
8746
+ TransactionLineImageAndDescriptionComponent.propDecorators = {
8747
+ line: [{ type: Input }],
8748
+ popUpView: [{ type: Input }],
8749
+ showClass: [{ type: HostBinding, args: ["class.co-transaction-line-image-and-description",] }],
8750
+ preview: [{ type: HostBinding, args: ["class.preview",] }, { type: Input }],
8751
+ openArticleTextClicked: [{ type: Output }],
8752
+ handleDeleteLine: [{ type: Output }]
8753
+ };
8754
+
8755
+ class TransactionLineDescriptionComponent extends TransactionLineBaseComponent {
8756
+ constructor(iconCacheService, _transactionService) {
8757
+ super();
8758
+ this.iconCacheService = iconCacheService;
8759
+ this._transactionService = _transactionService;
8760
+ this.icons = Icon;
8761
+ this.showLabel = true;
8762
+ this.defaultEditMode = true;
8763
+ this._editMode = false;
8764
+ }
8765
+ set child(content) {
8766
+ if (content) {
8767
+ this.input = content;
8768
+ this.input.commit = (description) => this.commit(description);
8769
+ if (this._editMode) {
8770
+ this.input.requestFocus();
8771
+ }
8772
+ }
8773
+ }
8774
+ set editMode(value) {
8775
+ this._editMode = value;
8776
+ if (this._editMode && this.input) {
8777
+ this.input.doFocus();
8778
+ }
8779
+ }
8780
+ get editMode() {
8781
+ return this._editMode;
8782
+ }
8783
+ handleClick(event) {
8784
+ event.preventDefault();
8785
+ event.stopPropagation();
8786
+ if (!this.readonly) {
8787
+ this.editMode = true;
8788
+ }
8789
+ }
8790
+ commit(description) {
8791
+ return __awaiter(this, void 0, void 0, function* () {
8792
+ if (this.transactionLine.goodDescription !== description) {
8793
+ const oldDescription = this.transactionLine.goodDescription;
8794
+ const success = yield this._transactionService.updateGoodDescriptionTransactionLine(this._transactionService.currentTransaction.transactionInfo.uuid, this.transactionLine.uuid, description);
8795
+ if (!success) {
8796
+ this.input.model = oldDescription;
8797
+ }
8798
+ return success;
8799
+ }
8800
+ return true;
8801
+ });
8802
+ }
8803
+ transactionLineSet() {
8804
+ this.readonly = this.readonly || !this.transactionLine.articleFreeDescription;
8805
+ }
8806
+ }
8807
+ TransactionLineDescriptionComponent.decorators = [
8808
+ { type: Component, args: [{
8809
+ selector: "co-transaction-line-description",
8810
+ template: `
8811
+ <div class="co-transaction-default-flex-row" *ngIf="(!editMode || readonly) && !defaultEditMode">
8812
+ <div class="co-transaction-overflow-ellipsis" [textContent]="transactionLine.goodDescription"></div>
8813
+ <co-icon [iconData]="iconCacheService.getIcon(icons.EditPencil)" *ngIf="!readonly && !editMode" (click)="editMode = true"></co-icon>
8814
+ </div>
8815
+ <co-input-text #input *ngIf="editMode || defaultEditMode"
8816
+ [placeholder]="showLabel ? ('GOOD_DESCRIPTION' | localize) : ''"
8817
+ [showSaveCancel]="!readonly"
8818
+ [readonly]="readonly"
8819
+ [model]="transactionLine.goodDescription"
8820
+ (blur)="editMode = false"
8821
+ ></co-input-text>
8822
+ `,
8823
+ encapsulation: ViewEncapsulation.None
8824
+ },] }
8825
+ ];
8826
+ TransactionLineDescriptionComponent.ctorParameters = () => [
8827
+ { type: IconCacheService },
8828
+ { type: TransactionService }
8829
+ ];
8830
+ TransactionLineDescriptionComponent.propDecorators = {
8831
+ child: [{ type: ViewChild, args: ['input', { read: InputTextComponent },] }],
8832
+ showLabel: [{ type: Input }],
8833
+ defaultEditMode: [{ type: Input }],
8834
+ editMode: [{ type: Input }],
8835
+ handleClick: [{ type: HostListener, args: ["click", ["$event"],] }]
8836
+ };
8837
+
8838
+ class TransactionLineDescriptionModule {
8839
+ }
8840
+ TransactionLineDescriptionModule.decorators = [
8841
+ { type: NgModule, args: [{
8842
+ imports: [
8843
+ CommonModule,
8844
+ InputTextModule,
8845
+ PipeModule,
8846
+ IconModule
8847
+ ],
8848
+ declarations: [
8849
+ TransactionLineDescriptionComponent
8850
+ ],
8851
+ exports: [
8852
+ TransactionLineDescriptionComponent
8853
+ ]
8854
+ },] }
8855
+ ];
8856
+
8857
+ class TransactionLineImageAndDescriptionModule {
8858
+ }
8859
+ TransactionLineImageAndDescriptionModule.decorators = [
8860
+ { type: NgModule, args: [{
8861
+ imports: [
8862
+ CommonModule,
8863
+ IconModule,
8864
+ TransactionLineDescriptionModule,
8865
+ CoreModule,
8866
+ PipeModule
8867
+ ],
8868
+ declarations: [
8869
+ TransactionLineImageAndDescriptionComponent
8870
+ ],
8871
+ exports: [
8872
+ TransactionLineImageAndDescriptionComponent
8873
+ ]
8874
+ },] }
8875
+ ];
8876
+
8877
+ class TransactionArticleTextComponent {
8878
+ constructor(transactionService, iconCacheService, _dictionaryService) {
8879
+ this.transactionService = transactionService;
8880
+ this.iconCacheService = iconCacheService;
8881
+ this._dictionaryService = _dictionaryService;
8580
8882
  this.closeClick = new EventEmitter();
8581
8883
  this.cancelClick = new EventEmitter();
8582
8884
  this.saveClick = new EventEmitter();
8885
+ this.icon = Icon;
8583
8886
  this.showOverviewDialog = false;
8584
8887
  this.standardTexts = [];
8585
8888
  this.documents = [];
8586
8889
  this.fields = { text: "description", value: "textId" };
8587
8890
  this.fieldsDocuments = { text: "description", value: "code" };
8891
+ this.textAreaPlaceholder = this._dictionaryService.get("TYPE_OR_SEARCH_TEXT", true);
8892
+ this.searchIcon = this.iconCacheService.getIcon(this.icon.Magnifier);
8893
+ this.showDropdown = false;
8588
8894
  this.transactionAddTextLineRequest = new TransactionAddTextLineRequest();
8589
8895
  }
8590
8896
  set transactionLine(value) {
8591
8897
  if (value) {
8898
+ this._transactionLine = value;
8592
8899
  this.transactionAddTextLineRequest.transactionUuid = value.uuid;
8593
8900
  this.transactionAddTextLineRequest.text = value.text;
8594
8901
  }
8595
8902
  }
8903
+ get transactionLine() {
8904
+ return this._transactionLine;
8905
+ }
8596
8906
  set articleRef(value) {
8597
8907
  if (value) {
8598
8908
  this._articleRef = value;
@@ -8614,8 +8924,8 @@ class TransactionArticleTextComponent {
8614
8924
  }
8615
8925
  ngOnInit() {
8616
8926
  return __awaiter(this, void 0, void 0, function* () {
8617
- this.standardTexts = yield this.service.getStandardTexts("NL");
8618
- this.documents = yield this.service.getTextTypes("NL");
8927
+ this.standardTexts = yield this.transactionService.getStandardTexts("NL");
8928
+ this.documents = yield this.transactionService.getTextTypes("NL");
8619
8929
  });
8620
8930
  }
8621
8931
  onOkClick(event) {
@@ -8629,15 +8939,42 @@ class TransactionArticleTextComponent {
8629
8939
  }
8630
8940
  handleDocumentsChange(docs) {
8631
8941
  }
8942
+ showStandardTextsDropdown() {
8943
+ this.showDropdown = true;
8944
+ }
8632
8945
  }
8633
8946
  TransactionArticleTextComponent.decorators = [
8634
8947
  { type: Component, args: [{
8635
8948
  selector: "co-transaction-article-text",
8636
8949
  template: `
8637
- <co-dialog (closeClick)="closeClick.emit($event)" [headerTemplate]="headerTemplate" [footerTemplate]="footerTemplate">
8950
+ <co-dialog (closeClick)="closeClick.emit($event)" [headerTemplate]="headerTemplate"
8951
+ [footerTemplate]="footerTemplate">
8952
+ <div class="article-image-description-wrapper">
8953
+ <co-transaction-line-image-and-description
8954
+ [line]="transactionLine"
8955
+ [popUpView]="true">
8956
+ </co-transaction-line-image-and-description>
8957
+ </div>
8958
+
8959
+ <div class="standard-texts-dropdown-wrapper">
8960
+ <co-drop-down-list
8961
+ @showStandardTextsDropdown
8962
+ *ngIf="showDropdown"
8963
+ [collection]="standardTexts"
8964
+ [fields]="fields"
8965
+ [placeholder]="'STANDARD_TEXTS' | localize"
8966
+ (modelChange)="onSelectStandardText($event)"
8967
+ ></co-drop-down-list>
8968
+ </div>
8969
+
8638
8970
  <div class="article-text-content-wrapper">
8639
8971
  <div class="editor-wrapper">
8972
+ <co-button class="search-button"
8973
+ [iconData]="searchIcon"
8974
+ (onClick)="showStandardTextsDropdown()">
8975
+ </co-button>
8640
8976
  <textarea class="article-text"
8977
+ [placeholder]="textAreaPlaceholder"
8641
8978
  [(ngModel)]="transactionAddTextLineRequest.text"
8642
8979
  ></textarea>
8643
8980
  </div>
@@ -8648,31 +8985,37 @@ TransactionArticleTextComponent.decorators = [
8648
8985
  [placeholder]="'FOR_DOCUMENTS' | localize"
8649
8986
  [value]="transactionAddTextLineRequest.showOnDocuments"
8650
8987
  [showCheckbox]="true"
8988
+ [fullWidth]="true"
8651
8989
  (modelChange)="handleDocumentsChange($event)"
8652
8990
  ></co-input-listbox>
8653
- <co-drop-down-list
8654
- [collection]="standardTexts"
8655
- [fields]="fields"
8656
- [placeholder]="'STANDARD_TEXTS' | localize"
8657
- (modelChange)="onSelectStandardText($event)"
8658
- ></co-drop-down-list>
8659
8991
  </div>
8660
8992
  </div>
8661
8993
  </co-dialog>
8662
- <ng-template #headerTemplate><span [textContent]="header"></span></ng-template>
8994
+
8995
+ <ng-template #headerTemplate>
8996
+ <span class="bold" [textContent]="header"></span>
8997
+ </ng-template>
8663
8998
  <ng-template #footerTemplate>
8664
8999
  <div class="button-wrapper">
8665
9000
  <co-button [label]="'OK' | localize" (click)="onOkClick($event)"></co-button>
8666
9001
  <co-button [label]="'CANCEL' | localize " (click)="onCancelClick($event)"></co-button>
8667
9002
  </div>
8668
9003
  </ng-template>
8669
-
8670
9004
  `,
9005
+ animations: [
9006
+ trigger("showStandardTextsDropdown", [
9007
+ state("void", style({ transform: 'translateY(-100%)', opacity: 0 })),
9008
+ state("*", style({ transform: 'translateY(0)', opacity: 1 })),
9009
+ transition("void <=> *", animate("200ms ease-in-out"))
9010
+ ])
9011
+ ],
8671
9012
  encapsulation: ViewEncapsulation.None
8672
9013
  },] }
8673
9014
  ];
8674
9015
  TransactionArticleTextComponent.ctorParameters = () => [
8675
- { type: TransactionService }
9016
+ { type: TransactionService },
9017
+ { type: IconCacheService },
9018
+ { type: DictionaryService }
8676
9019
  ];
8677
9020
  TransactionArticleTextComponent.propDecorators = {
8678
9021
  header: [{ type: Input }],
@@ -8699,7 +9042,9 @@ TransactionArticleTextModule.decorators = [
8699
9042
  InputListboxModule,
8700
9043
  DropDownModule,
8701
9044
  ButtonModule,
8702
- PipeModule
9045
+ PipeModule,
9046
+ InputSearchModule,
9047
+ TransactionLineImageAndDescriptionModule
8703
9048
  ],
8704
9049
  declarations: [
8705
9050
  TransactionArticleTextComponent
@@ -9212,7 +9557,7 @@ TransactionSearchPurchaseOrderTileComponent.decorators = [
9212
9557
  <div class="status-bar-wrapper">
9213
9558
  <co-transaction-statusbar [transaction]="transaction" [transactionKind]="transaction.transactionKind"></co-transaction-statusbar>
9214
9559
  </div>
9215
- <div class="header"><span [textContent]="transaction.totalPriceWithVat | currency:'EUR'"></span></div>
9560
+ <div class="header total-price-vat"><span [textContent]="transaction.totalPriceWithVat | currency:'EUR'"></span></div>
9216
9561
  </div>
9217
9562
  </div>
9218
9563
  <div class="tile-body">
@@ -9436,22 +9781,37 @@ TransactionBaseComponent.propDecorators = {
9436
9781
  };
9437
9782
 
9438
9783
  class TransactionQuickAccessOrderConfirmationComponent extends TransactionBaseComponent {
9784
+ constructor() {
9785
+ super(...arguments);
9786
+ this.purchaseOrderConfirmation = new GetPurchaseOrderConfirmation();
9787
+ }
9439
9788
  showClass() {
9440
9789
  return true;
9441
9790
  }
9791
+ confirmFullOrder() {
9792
+ if (this.purchaseOrderConfirmation.confirmationDate && this.purchaseOrderConfirmation.reference) {
9793
+ this.purchaseOrderConfirmation.transId = this.service.currentTransaction.transactionInfo.transactionNr;
9794
+ this.service.purchaseOrderConfirmation(this.purchaseOrderConfirmation);
9795
+ }
9796
+ }
9442
9797
  }
9443
9798
  TransactionQuickAccessOrderConfirmationComponent.decorators = [
9444
9799
  { type: Component, args: [{
9445
9800
  selector: "co-transaction-quick-access-order-confirmation",
9446
9801
  template: `
9447
9802
  <co-input-date
9448
- [model]=""
9803
+ [(model)]="purchaseOrderConfirmation.confirmationDate"
9449
9804
  [placeholder]="'CONFIRMED_DATE' | localize"
9450
9805
  ></co-input-date>
9451
9806
  <co-input-text
9807
+ [(model)]="purchaseOrderConfirmation.reference"
9452
9808
  [placeholder]="'REFERENCE' | localize"
9453
9809
  ></co-input-text>
9454
- <co-input-checkbox
9810
+ <co-input-text
9811
+ [(model)]="purchaseOrderConfirmation.leverbatch"
9812
+ [placeholder]="'BATCH' | localize"
9813
+ ></co-input-text>
9814
+ <co-input-checkbox (modelChange)="confirmFullOrder()"
9455
9815
  ></co-input-checkbox>
9456
9816
  `,
9457
9817
  encapsulation: ViewEncapsulation.None
@@ -9546,85 +9906,37 @@ TransactionQuickAccessReceivedGoodsComponent.decorators = [
9546
9906
  ];
9547
9907
  TransactionQuickAccessReceivedGoodsComponent.ctorParameters = () => [
9548
9908
  { type: IconCacheService },
9549
- { type: TransactionService },
9550
- { type: TransactionEventService }
9551
- ];
9552
- TransactionQuickAccessReceivedGoodsComponent.propDecorators = {
9553
- commitDate: [{ type: Input }],
9554
- commitReferenceId: [{ type: Input }],
9555
- packingSlipId: [{ type: Input }],
9556
- checkboxValueChanged: [{ type: Output }],
9557
- showClass: [{ type: HostBinding, args: ["class.co-transaction-quick-access-received-goods",] }]
9558
- };
9559
-
9560
- class TransactionQuickAccessOverviewComponent extends TransactionBaseComponent {
9561
- showClass() {
9562
- return true;
9563
- }
9564
- }
9565
- TransactionQuickAccessOverviewComponent.decorators = [
9566
- { type: Component, args: [{
9567
- selector: "co-transaction-quick-access-overview",
9568
- template: `
9569
- <co-input-search
9570
- [placeholder]="'SEARCH_ADD_ARTICLE' | localize"
9571
- [noIcon]="true"
9572
- ></co-input-search>
9573
- `,
9574
- encapsulation: ViewEncapsulation.None
9575
- },] }
9576
- ];
9577
- TransactionQuickAccessOverviewComponent.propDecorators = {
9578
- showClass: [{ type: HostBinding, args: ["class.co-transaction-quick-access-overview",] }]
9579
- };
9580
-
9581
- class TransactionImageService {
9582
- constructor(_connector) {
9583
- this._connector = _connector;
9584
- this._articleImageCache = new Map();
9585
- }
9586
- retrieveLineImage(line) {
9587
- return __awaiter(this, void 0, void 0, function* () {
9588
- return yield this.getArticleImageByArticleNumber(line.articleNumber);
9589
- });
9590
- }
9591
- getArticleImageByArticleNumber(articleNumber) {
9592
- return __awaiter(this, void 0, void 0, function* () {
9593
- if (this._articleImageCache.has(articleNumber)) {
9594
- return this._articleImageCache.get(articleNumber);
9595
- }
9596
- const goodId = yield this._connector.getGoodIdFromArticleNr(articleNumber).catch((error) => {
9597
- console.error(error);
9598
- return null;
9599
- });
9600
- const image = yield this.getArticleImageByGoodId(goodId);
9601
- this._articleImageCache.set(articleNumber, image);
9602
- return image;
9603
- });
9604
- }
9605
- getArticleImageByGoodId(goodId) {
9606
- return __awaiter(this, void 0, void 0, function* () {
9607
- if (!isNaN(goodId)) {
9608
- return this._connector.getSingleImage(goodId, 1, true, true).catch((error) => {
9609
- console.error(error);
9610
- return "";
9611
- });
9612
- }
9613
- else {
9614
- return "";
9615
- }
9616
- });
9909
+ { type: TransactionService },
9910
+ { type: TransactionEventService }
9911
+ ];
9912
+ TransactionQuickAccessReceivedGoodsComponent.propDecorators = {
9913
+ commitDate: [{ type: Input }],
9914
+ commitReferenceId: [{ type: Input }],
9915
+ packingSlipId: [{ type: Input }],
9916
+ checkboxValueChanged: [{ type: Output }],
9917
+ showClass: [{ type: HostBinding, args: ["class.co-transaction-quick-access-received-goods",] }]
9918
+ };
9919
+
9920
+ class TransactionQuickAccessOverviewComponent extends TransactionBaseComponent {
9921
+ showClass() {
9922
+ return true;
9617
9923
  }
9618
9924
  }
9619
- TransactionImageService.ɵprov = i0.ɵɵdefineInjectable({ factory: function TransactionImageService_Factory() { return new TransactionImageService(i0.ɵɵinject(TransactionConnectorService)); }, token: TransactionImageService, providedIn: "root" });
9620
- TransactionImageService.decorators = [
9621
- { type: Injectable, args: [{
9622
- providedIn: "root"
9925
+ TransactionQuickAccessOverviewComponent.decorators = [
9926
+ { type: Component, args: [{
9927
+ selector: "co-transaction-quick-access-overview",
9928
+ template: `
9929
+ <co-input-search
9930
+ [placeholder]="'SEARCH_ADD_ARTICLE' | localize"
9931
+ [noIcon]="true"
9932
+ ></co-input-search>
9933
+ `,
9934
+ encapsulation: ViewEncapsulation.None
9623
9935
  },] }
9624
9936
  ];
9625
- TransactionImageService.ctorParameters = () => [
9626
- { type: TransactionConnectorService }
9627
- ];
9937
+ TransactionQuickAccessOverviewComponent.propDecorators = {
9938
+ showClass: [{ type: HostBinding, args: ["class.co-transaction-quick-access-overview",] }]
9939
+ };
9628
9940
 
9629
9941
  class TransactionGridBaseComponent {
9630
9942
  constructor(imageService) {
@@ -9880,14 +10192,14 @@ class TransactionLineActionButtonsComponent {
9880
10192
  }, 1);
9881
10193
  }
9882
10194
  handleTransactionArticleTextOverview() {
9883
- this.articleTextHeader = this._dictionaryService.get("TEXT_ARTICLE_BOUND", true, this.transactionLine.articleNumber);
10195
+ this.articleTextHeader = this._dictionaryService.get("PRODUCT_DESCRIPTION_AND_TEXTS", true);
9884
10196
  this.textToEdit = undefined;
9885
10197
  this._showArticleTextOverviewDialog();
9886
10198
  this.showActionButtons = false;
9887
10199
  this.showActionButtonsDelayed = false;
9888
10200
  }
9889
10201
  handleTransactionArticleText() {
9890
- this.articleTextHeader = this._dictionaryService.get("TEXT_ARTICLE_BOUND", true, this.transactionLine.articleNumber);
10202
+ this.articleTextHeader = this._dictionaryService.get("PRODUCT_DESCRIPTION_AND_TEXTS", true);
9891
10203
  this.textToEdit = undefined;
9892
10204
  this.showArticleTextDialog();
9893
10205
  this.showActionButtons = false;
@@ -9944,8 +10256,12 @@ TransactionLineActionButtonsComponent.decorators = [
9944
10256
  selector: "co-transaction-line-action-buttons",
9945
10257
  template: `
9946
10258
  <div class="transaction-line-action-buttons-wrapper">
9947
- <div class="show-hide-button">
9948
- <icon [icon]="icons.ThickLines" (click)="handleShowHideClick()"></icon>
10259
+ <div class="menu-button-container">
10260
+ <co-button
10261
+ class="action-menu-button circle"
10262
+ [iconData]="iconCacheService.getIcon(icons.EllipsisLight)"
10263
+ (click)="handleShowHideClick()">
10264
+ </co-button>
9949
10265
  </div>
9950
10266
 
9951
10267
  <div class="action-buttons-container" clickOutside
@@ -9953,22 +10269,22 @@ TransactionLineActionButtonsComponent.decorators = [
9953
10269
  [ngClass]="alignDirection"
9954
10270
  (clickOutside)="handleShowHideClick()">
9955
10271
 
9956
- <co-button *ngIf="showOverviewButton()"
9957
- class="transaction-line-overview-button circle"
10272
+ <co-button
10273
+ class="transaction-line-overview-button circle action-button"
9958
10274
  [class.show]="showActionButtonsDelayed"
9959
- [iconData]="iconCacheService.getIcon(icons.Txt)"
10275
+ [iconData]="iconCacheService.getIcon(icons.TextSizeSolid)"
9960
10276
  (click)="handleTransactionArticleTextOverview()"></co-button>
9961
10277
 
9962
- <co-button *ngIf="showAddTextButton()"
9963
- class="transaction-line-add-text-button circle"
10278
+ <co-button
10279
+ class="transaction-line-add-text-button circle action-button"
9964
10280
  [class.show]="showActionButtonsDelayed"
9965
- [iconData]="iconCacheService.getIcon(icons.Txt)"
10281
+ [iconData]="iconCacheService.getIcon(icons.TextSolid)"
9966
10282
  (click)="handleTransactionArticleText()"></co-button>
9967
10283
 
9968
- <co-button *ngIf="showSidebarButton()"
9969
- class="transaction-line-show-sidebar-button circle"
10284
+ <co-button
10285
+ class="transaction-line-show-sidebar-button circle action-button"
9970
10286
  [class.show]="showActionButtonsDelayed"
9971
- [iconData]="iconCacheService.getIcon(icons.MasterDetail)"
10287
+ [iconData]="iconCacheService.getIcon(icons.ObjectIntersectSolid)"
9972
10288
  (click)="handleShowSidePanel()"></co-button>
9973
10289
  </div>
9974
10290
  </div>
@@ -10875,11 +11191,9 @@ TransactionLinesComponent.decorators = [
10875
11191
  </div>
10876
11192
  </div>
10877
11193
  </div>
10878
- <!--
10879
- <co-button *ngIf=!preview class="add-text-button circle" [iconData]="iconCacheService.getIcon(icons.Txt)" (click)="handleTransactionArticleText($event)"></co-button>
10880
- -->
11194
+ <co-button *ngIf=!preview class="add-text-button circle" [iconData]="iconCacheService.getIcon(icons.TextSolid)" (click)="handleTransactionArticleText($event)"></co-button>
10881
11195
  <co-transaction-article-text *ngIf="showTransactionArticleText"
10882
- [header]="'TEXT' | localize"
11196
+ [header]="'PRODUCT_DESCRIPTION_AND_TEXTS' | localize"
10883
11197
  [transactionLine]="selectedArticleText"
10884
11198
  [editText]="textToEdit"
10885
11199
  (saveClick)="saveTransactionArticleLineText($event)"
@@ -16168,108 +16482,6 @@ TransactionLineSupplierModule.decorators = [
16168
16482
  },] }
16169
16483
  ];
16170
16484
 
16171
- class TransactionLineDescriptionComponent extends TransactionLineBaseComponent {
16172
- constructor(iconCacheService, _transactionService) {
16173
- super();
16174
- this.iconCacheService = iconCacheService;
16175
- this._transactionService = _transactionService;
16176
- this.icons = Icon;
16177
- this.showLabel = true;
16178
- this.defaultEditMode = true;
16179
- this._editMode = false;
16180
- }
16181
- set child(content) {
16182
- if (content) {
16183
- this.input = content;
16184
- this.input.commit = (description) => this.commit(description);
16185
- if (this._editMode) {
16186
- this.input.requestFocus();
16187
- }
16188
- }
16189
- }
16190
- set editMode(value) {
16191
- this._editMode = value;
16192
- if (this._editMode && this.input) {
16193
- this.input.doFocus();
16194
- }
16195
- }
16196
- get editMode() {
16197
- return this._editMode;
16198
- }
16199
- handleClick(event) {
16200
- event.preventDefault();
16201
- event.stopPropagation();
16202
- if (!this.readonly) {
16203
- this.editMode = true;
16204
- }
16205
- }
16206
- commit(description) {
16207
- return __awaiter(this, void 0, void 0, function* () {
16208
- if (this.transactionLine.goodDescription !== description) {
16209
- const oldDescription = this.transactionLine.goodDescription;
16210
- const success = yield this._transactionService.updateGoodDescriptionTransactionLine(this._transactionService.currentTransaction.transactionInfo.uuid, this.transactionLine.uuid, description);
16211
- if (!success) {
16212
- this.input.model = oldDescription;
16213
- }
16214
- return success;
16215
- }
16216
- return true;
16217
- });
16218
- }
16219
- transactionLineSet() {
16220
- this.readonly = this.readonly || !this.transactionLine.articleFreeDescription;
16221
- }
16222
- }
16223
- TransactionLineDescriptionComponent.decorators = [
16224
- { type: Component, args: [{
16225
- selector: "co-transaction-line-description",
16226
- template: `
16227
- <div class="co-transaction-default-flex-row" *ngIf="(!editMode || readonly) && !defaultEditMode">
16228
- <div class="co-transaction-overflow-ellipsis" [textContent]="transactionLine.goodDescription"></div>
16229
- <co-icon [iconData]="iconCacheService.getIcon(icons.EditPencil)" *ngIf="!readonly && !editMode" (click)="editMode = true"></co-icon>
16230
- </div>
16231
- <co-input-text #input *ngIf="editMode || defaultEditMode"
16232
- [placeholder]="showLabel ? ('GOOD_DESCRIPTION' | localize) : ''"
16233
- [showSaveCancel]="!readonly"
16234
- [readonly]="readonly"
16235
- [model]="transactionLine.goodDescription"
16236
- (blur)="editMode = false"
16237
- ></co-input-text>
16238
- `,
16239
- encapsulation: ViewEncapsulation.None
16240
- },] }
16241
- ];
16242
- TransactionLineDescriptionComponent.ctorParameters = () => [
16243
- { type: IconCacheService },
16244
- { type: TransactionService }
16245
- ];
16246
- TransactionLineDescriptionComponent.propDecorators = {
16247
- child: [{ type: ViewChild, args: ['input', { read: InputTextComponent },] }],
16248
- showLabel: [{ type: Input }],
16249
- defaultEditMode: [{ type: Input }],
16250
- editMode: [{ type: Input }],
16251
- handleClick: [{ type: HostListener, args: ["click", ["$event"],] }]
16252
- };
16253
-
16254
- class TransactionLineDescriptionModule {
16255
- }
16256
- TransactionLineDescriptionModule.decorators = [
16257
- { type: NgModule, args: [{
16258
- imports: [
16259
- CommonModule,
16260
- InputTextModule,
16261
- PipeModule,
16262
- IconModule
16263
- ],
16264
- declarations: [
16265
- TransactionLineDescriptionComponent
16266
- ],
16267
- exports: [
16268
- TransactionLineDescriptionComponent
16269
- ]
16270
- },] }
16271
- ];
16272
-
16273
16485
  class TransactionLineSidePanelDefaultModule {
16274
16486
  }
16275
16487
  TransactionLineSidePanelDefaultModule.decorators = [
@@ -16898,11 +17110,12 @@ TransactionButtonBarModule.decorators = [
16898
17110
  ];
16899
17111
 
16900
17112
  class TransactionConfirmationHistoryComponent {
16901
- constructor(iconCacheService, transactionService, _datePipe) {
17113
+ constructor(iconCacheService, transactionService, _changeDetector) {
16902
17114
  this.iconCacheService = iconCacheService;
16903
17115
  this.transactionService = transactionService;
16904
- this._datePipe = _datePipe;
17116
+ this._changeDetector = _changeDetector;
16905
17117
  this.icons = Icon;
17118
+ this.lineSelected = new EventEmitter();
16906
17119
  this.getPurchasePortalLine = new GetPurchasePortalLine();
16907
17120
  this.purchasePortalFilter = new PurchasePortalFilters();
16908
17121
  }
@@ -16914,13 +17127,14 @@ class TransactionConfirmationHistoryComponent {
16914
17127
  this.lockPurchasePortalLine();
16915
17128
  }
16916
17129
  getPurchasePortalLines() {
16917
- this.purchasePortalFilter.purchaseOrderNo = this.transactionInfoNr.toString();
16918
- this.getPurchasePortalLine.transIdPurchase = this.transactionId;
16919
- this.getPurchasePortalLine.filterObject = this.purchasePortalFilter;
16920
- this.transactionService.getPurchasePortalLines(this.getPurchasePortalLine).then((result) => {
16921
- this.purchasePortalLines = result;
16922
- this.docBatch = this.purchasePortalLines.find(obj => parseInt(obj.lineId) === this.transactionLines.lineNr);
16923
- this.transactionService.purchasePortalLine = this.docBatch;
17130
+ return __awaiter(this, void 0, void 0, function* () {
17131
+ this.purchasePortalFilter.purchaseOrderNo = this.transactionInfoNr.toString();
17132
+ this.purchasePortalFilter.lineId = this.transactionLines.lineNr.toString();
17133
+ this.getPurchasePortalLine.transIdPurchase = this.transactionId;
17134
+ this.getPurchasePortalLine.filterObject = this.purchasePortalFilter;
17135
+ this.transactionService.getPurchasePortalLines(this.getPurchasePortalLine).then(result => {
17136
+ this.transactionService.purchasePortalLine = result;
17137
+ });
16924
17138
  });
16925
17139
  }
16926
17140
  lockPurchasePortalLine() {
@@ -16931,21 +17145,39 @@ class TransactionConfirmationHistoryComponent {
16931
17145
  deleteDocBatch(event) {
16932
17146
  return __awaiter(this, void 0, void 0, function* () {
16933
17147
  event.deleteLine = "T";
16934
- this.transactionService.purchasePortalLine.docKind = "IB";
16935
- yield this.transactionService.updatePurchasePortalLines(this.transactionService.purchasePortalLine);
17148
+ this.transactionService.purchasePortalLine[0].docKind = "IB";
17149
+ yield this.transactionService.updatePurchasePortalLines(this.transactionService.purchasePortalLine[0]);
16936
17150
  });
16937
17151
  }
17152
+ selectedLineDocBatchArray(event) {
17153
+ this.lineSelected.emit(event);
17154
+ }
16938
17155
  }
16939
17156
  TransactionConfirmationHistoryComponent.decorators = [
16940
17157
  { type: Component, args: [{
16941
17158
  selector: "co-transaction-confirmation-history",
16942
17159
  template: `
16943
17160
  <div class="history-grid-wrapper">
16944
- <co-simple-grid *ngIf="docBatch" [data]="docBatch.docBatchArray" [showToolbar]="true" [rowsPerPage]="20" [showDelete]="true" (deleteRow)="deleteDocBatch($event)">
16945
- <co-simple-grid-column [headerText]="'DELIVERY_DATE' | localize" [field]="'docDate'"></co-simple-grid-column>
17161
+ <co-simple-grid (selectRow)="selectedLineDocBatchArray($event)"
17162
+ *ngIf="transactionService.purchasePortalLine[0]"
17163
+ [data]="transactionService.purchasePortalLine[0].docBatchArray"
17164
+ [showToolbar]="true"
17165
+ [rowsPerPage]="20"
17166
+ [showDelete]="true"
17167
+ (deleteRow)="deleteDocBatch($event)"
17168
+ >
17169
+ <co-simple-grid-column [headerText]="'DELIVERY_DATE' | localize">
17170
+ <ng-template #template let-row="row">
17171
+ <span [textContent]="row.docDate | date:'dd MMM yyyy'"></span>
17172
+ </ng-template>
17173
+ </co-simple-grid-column>
16946
17174
  <co-simple-grid-column [headerText]="'AMOUNT' | localize" [field]="'docAmount'"></co-simple-grid-column>
16947
17175
  <co-simple-grid-column [headerText]="'PRICE' | localize" [field]="'confirmedPrice'"></co-simple-grid-column>
16948
- <co-simple-grid-column [headerText]="'DATE' | localize" [field]="'docDateOrg'"></co-simple-grid-column>
17176
+ <co-simple-grid-column [headerText]="'DATE' | localize">
17177
+ <ng-template #template let-row="row">
17178
+ <span [textContent]="row.docDateOrg | date:'dd MMM yyyy'"></span>
17179
+ </ng-template>
17180
+ </co-simple-grid-column>
16949
17181
  <co-simple-grid-column [headerText]="'REFERENCE' | localize" [field]="'deliveryBatch'"></co-simple-grid-column>
16950
17182
  </co-simple-grid>
16951
17183
  </div>
@@ -16956,12 +17188,13 @@ TransactionConfirmationHistoryComponent.decorators = [
16956
17188
  TransactionConfirmationHistoryComponent.ctorParameters = () => [
16957
17189
  { type: IconCacheService },
16958
17190
  { type: TransactionService },
16959
- { type: DatePipe }
17191
+ { type: ChangeDetectorRef }
16960
17192
  ];
16961
17193
  TransactionConfirmationHistoryComponent.propDecorators = {
16962
17194
  transactionLines: [{ type: Input }],
16963
17195
  transactionId: [{ type: Input }],
16964
17196
  transactionInfoNr: [{ type: Input }],
17197
+ lineSelected: [{ type: Output }],
16965
17198
  showClass: [{ type: HostBinding, args: ["class.co-transaction-confirmation-history",] }]
16966
17199
  };
16967
17200
 
@@ -16979,7 +17212,8 @@ TransactionConfirmationHistoryModule.decorators = [
16979
17212
  IconModule,
16980
17213
  InputTextModule,
16981
17214
  InputDateRangePickerModule,
16982
- InputNumberPickerModule
17215
+ InputNumberPickerModule,
17216
+ ButtonModule
16983
17217
  ],
16984
17218
  declarations: [
16985
17219
  TransactionConfirmationHistoryComponent
@@ -16991,13 +17225,12 @@ TransactionConfirmationHistoryModule.decorators = [
16991
17225
  ];
16992
17226
 
16993
17227
  class TransactionConfirmationDetailsComponent {
16994
- constructor(iconCacheService, transactionService, _datePipe) {
17228
+ constructor(iconCacheService, transactionService) {
16995
17229
  this.iconCacheService = iconCacheService;
16996
17230
  this.transactionService = transactionService;
16997
- this._datePipe = _datePipe;
16998
17231
  this.icons = Icon;
16999
17232
  this.showAddOrder = false;
17000
- this.newDocBatchArray = this.transactionService.docDeliveryBatch;
17233
+ this.newDocBatchArray = new DocDeliveryBatch();
17001
17234
  }
17002
17235
  showClass() {
17003
17236
  return true;
@@ -17010,9 +17243,10 @@ class TransactionConfirmationDetailsComponent {
17010
17243
  this.newDocBatchArray.docAmountOrg = 0;
17011
17244
  this.newDocBatchArray.docDateOrg = new Date();
17012
17245
  this.newDocBatchArray.deleteLine = "F";
17013
- this.transactionService.purchasePortalLine.docBatchArray.push(this.newDocBatchArray);
17014
- this.transactionService.purchasePortalLine.docKind = "IB";
17015
- this.transactionService.updatePurchasePortalLines(this.transactionService.purchasePortalLine);
17246
+ this.newDocBatchArray.historical = "G";
17247
+ this.transactionService.purchasePortalLine[0].docBatchArray.push(this.newDocBatchArray);
17248
+ this.transactionService.purchasePortalLine[0].docKind = "IB";
17249
+ this.transactionService.updatePurchasePortalLines(this.transactionService.purchasePortalLine[0]);
17016
17250
  this.newDocBatchArray = new DocDeliveryBatch();
17017
17251
  }
17018
17252
  else {
@@ -17078,18 +17312,20 @@ TransactionConfirmationDetailsComponent.decorators = [
17078
17312
  </div>
17079
17313
  </div>
17080
17314
  `,
17315
+ changeDetection: ChangeDetectionStrategy.OnPush,
17081
17316
  encapsulation: ViewEncapsulation.None
17082
17317
  },] }
17083
17318
  ];
17084
17319
  TransactionConfirmationDetailsComponent.ctorParameters = () => [
17085
17320
  { type: IconCacheService },
17086
- { type: TransactionService },
17087
- { type: DatePipe }
17321
+ { type: TransactionService }
17088
17322
  ];
17089
17323
  TransactionConfirmationDetailsComponent.propDecorators = {
17090
17324
  transactionLines: [{ type: Input }],
17091
17325
  transactionInfoNr: [{ type: Input }],
17092
- showClass: [{ type: HostBinding, args: ["class.co-transaction-confirmation-details",] }]
17326
+ testLines: [{ type: Input }],
17327
+ showClass: [{ type: HostBinding, args: ["class.co-transaction-confirmation-details",] }],
17328
+ newDocBatchArray: [{ type: Input }]
17093
17329
  };
17094
17330
 
17095
17331
  class DefaultOkCancelButtonsComponent {
@@ -17207,6 +17443,9 @@ class TransactionLineSidePanelPurchaseComponent {
17207
17443
  });
17208
17444
  });
17209
17445
  }
17446
+ fillInputOnClick(data) {
17447
+ this.selectedLineDocBatchArray = data;
17448
+ }
17210
17449
  }
17211
17450
  TransactionLineSidePanelPurchaseComponent.decorators = [
17212
17451
  { type: Component, args: [{
@@ -17217,11 +17456,13 @@ TransactionLineSidePanelPurchaseComponent.decorators = [
17217
17456
  <co-transaction-confirmation-details
17218
17457
  [transactionInfoNr]="transactionInfo.transactionNr"
17219
17458
  [transactionLines]="transactionLine"
17459
+ [newDocBatchArray]="selectedLineDocBatchArray"
17220
17460
  ></co-transaction-confirmation-details>
17221
17461
  <co-transaction-confirmation-history
17222
17462
  [transactionLines]="transactionLine"
17223
17463
  [transactionInfoNr]="transactionInfo.transactionNr"
17224
17464
  [transactionId]="transactionInfo.id"
17465
+ (lineSelected)="fillInputOnClick($event)"
17225
17466
  ></co-transaction-confirmation-history>
17226
17467
  </ng-container>
17227
17468
 
@@ -19003,112 +19244,6 @@ TransactionBaseLineComponent.propDecorators = {
19003
19244
  showClass: [{ type: HostBinding, args: ["class.co-transaction-base-line",] }]
19004
19245
  };
19005
19246
 
19006
- class TransactionLineImageAndDescriptionComponent {
19007
- constructor(service, iconCacheService, _dialogService, _dictionaryService, _imageService) {
19008
- this.service = service;
19009
- this.iconCacheService = iconCacheService;
19010
- this._dialogService = _dialogService;
19011
- this._dictionaryService = _dictionaryService;
19012
- this._imageService = _imageService;
19013
- this.icons = Icon;
19014
- this.preview = false;
19015
- this.openArticleTextClicked = new EventEmitter();
19016
- this.handleDeleteLine = new EventEmitter();
19017
- }
19018
- set line(value) {
19019
- this._line = value;
19020
- this._loadLineImage();
19021
- }
19022
- get line() {
19023
- return this._line;
19024
- }
19025
- showClass() {
19026
- return true;
19027
- }
19028
- handleOpenArticleText(text) {
19029
- this.openArticleTextClicked.next(text);
19030
- }
19031
- deleteTransactionLineClick() {
19032
- return __awaiter(this, void 0, void 0, function* () {
19033
- this.handleDeleteLine.next();
19034
- });
19035
- }
19036
- _loadLineImage() {
19037
- return __awaiter(this, void 0, void 0, function* () {
19038
- if (this.line && this.line.isArticle) {
19039
- this._imageService.retrieveLineImage(this.line).then((image) => {
19040
- this.image = image;
19041
- });
19042
- }
19043
- });
19044
- }
19045
- }
19046
- TransactionLineImageAndDescriptionComponent.decorators = [
19047
- { type: Component, args: [{
19048
- selector: "co-transaction-line-image-and-description",
19049
- template: `
19050
- <div class="transaction-line-image" [class.preview]="preview">
19051
- <co-image-display [model]="image"></co-image-display>
19052
- </div>
19053
- <div class="transaction-line-description">
19054
- <div class="description-wrapper">
19055
- <co-transaction-line-description class="transaction-line-description-description"
19056
- [transactionLine]="line"
19057
- [defaultEditMode]="false"
19058
- [showLabel]="false"
19059
- ></co-transaction-line-description>
19060
- <span *ngIf="line.goodDescription && line.articleNumber">|</span>
19061
- <span [textContent]="line.articleNumber"></span>
19062
- <co-icon class="delete-icon" [iconData]="iconCacheService.getIcon(icons.TrashCanLight)" (click)="deleteTransactionLineClick()"></co-icon>
19063
- </div>
19064
- <div *ngIf=!preview class="article-text-wrapper">
19065
- <div class="article-text" *ngFor="let text of line.articleTestAsArray">
19066
- <span [innerHTML]="text | safeHtml" (dblclick)="handleOpenArticleText(text)"></span>
19067
- </div>
19068
- </div>
19069
- <div *ngIf=!preview>
19070
- <span [innerHTML]="line.configurationReadable"></span>
19071
- </div>
19072
- </div>
19073
- `,
19074
- encapsulation: ViewEncapsulation.None
19075
- },] }
19076
- ];
19077
- TransactionLineImageAndDescriptionComponent.ctorParameters = () => [
19078
- { type: TransactionService },
19079
- { type: IconCacheService },
19080
- { type: DialogService },
19081
- { type: DictionaryService },
19082
- { type: TransactionImageService }
19083
- ];
19084
- TransactionLineImageAndDescriptionComponent.propDecorators = {
19085
- line: [{ type: Input }],
19086
- showClass: [{ type: HostBinding, args: ["class.co-transaction-line-image-and-description",] }],
19087
- preview: [{ type: HostBinding, args: ["class.preview",] }, { type: Input }],
19088
- openArticleTextClicked: [{ type: Output }],
19089
- handleDeleteLine: [{ type: Output }]
19090
- };
19091
-
19092
- class TransactionLineImageAndDescriptionModule {
19093
- }
19094
- TransactionLineImageAndDescriptionModule.decorators = [
19095
- { type: NgModule, args: [{
19096
- imports: [
19097
- CommonModule,
19098
- IconModule,
19099
- TransactionLineDescriptionModule,
19100
- CoreModule,
19101
- PipeModule
19102
- ],
19103
- declarations: [
19104
- TransactionLineImageAndDescriptionComponent
19105
- ],
19106
- exports: [
19107
- TransactionLineImageAndDescriptionComponent
19108
- ]
19109
- },] }
19110
- ];
19111
-
19112
19247
  class TransactionBaseLineModule {
19113
19248
  }
19114
19249
  TransactionBaseLineModule.decorators = [
@@ -19483,7 +19618,9 @@ TransactionModule.decorators = [
19483
19618
  TransactionTileModule,
19484
19619
  TransactionOverviewLineModule,
19485
19620
  TransactionOrderDeliveryLineModule,
19486
- TransactionReceiveGoodsLineModule
19621
+ TransactionReceiveGoodsLineModule,
19622
+ IconModule,
19623
+ SendMethodDialogModule
19487
19624
  ],
19488
19625
  declarations: [
19489
19626
  TransactionComponent
@@ -22175,5 +22312,5 @@ TransactionLineGridModule.decorators = [
22175
22312
  * Generated bundle index. Do not edit.
22176
22313
  */
22177
22314
 
22178
- export { CheckoutComponent, CheckoutModule, 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, IconCacheService as ɵba, CharacteristicAnswerModule as ɵbb, CharacteristicAnswerComponent as ɵbc, WarehouseModule as ɵbd, WarehouseComponent as ɵbe, ImageDisplayComponent as ɵbf, IconComponent as ɵbg, CustomerGroupsComponent as ɵbh, StockStatusIndicatorComponent as ɵbi, LoaderComponent as ɵbj, LazyRenderMasterDirective as ɵbk, LazyRenderDirective as ɵbl, RelationAddressModule as ɵbm, RelationAddressComponent as ɵbn, RelationBaseComponent as ɵbo, RelationAddressSelectModule as ɵbp, RelationAddressTileModule as ɵbq, TileModule as ɵbr, TileComponent as ɵbs, RelationAddressTileComponent as ɵbt, RelationAddressSelectComponent as ɵbu, BusinessObjectFactory 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, TransactionArticleTextComponent as ɵcd, TransactionReceiveGoodsService as ɵce, TransactionEventService as ɵcf, DialogTransactionHeaderDiscountModule as ɵcg, TransactionHeaderDiscountPercentageModule as ɵch, TransactionHeaderDiscountPercentageComponent as ɵci, TransactionHeaderBaseComponent as ɵcj, TransactionFilterPopupBaseComponent as ɵck, TransactionHeaderDiscountAmountModule as ɵcl, TransactionHeaderDiscountAmountComponent as ɵcm, TransactionHeaderDiscountTransactionTotalModule as ɵcn, TransactionHeaderDiscountTransactionTotalComponent as ɵco, DialogTransactionHeaderDiscountComponent as ɵcp, DialogTransactionHeaderBaseComponent as ɵcq, AvatarModule as ɵcr, AvatarComponent as ɵcs, SharedService as ɵct, SharedConnectorService as ɵcu, DeliveryTypeTileModule as ɵcv, DeliveryTypeTileComponent as ɵcw, PaymentModule as ɵcx, PaymentTileModule as ɵcy, PaymentTileComponent as ɵcz, OptionsService as ɵd, PaymentQrCodeModule as ɵda, PaymentQrCodeComponent as ɵdb, PaymentComponent as ɵdc, PaymentService as ɵdd, RelationTypeModule as ɵde, RelationTypeComponent as ɵdf, RelationGeneralModule as ɵdg, RelationSuggestionsListModule as ɵdh, RelationSuggestionsListItemModule as ɵdi, RelationSuggestionsListItemComponent as ɵdj, RelationSuggestionsListComponent as ɵdk, RelationGeneralComponent as ɵdl, RelationAddressesModule as ɵdm, RelationAddressesComponent as ɵdn, RelationContactDetailsModule as ɵdo, RelationContactDetailsComponent as ɵdp, RelationPreferencesModule as ɵdq, RelationPreferencesComponent as ɵdr, TransactionHeaderBlockModule as ɵds, TransactionHeaderBlockComponent as ɵdt, TransactionHeaderDeliveryDateModule as ɵdu, TransactionHeaderDeliveryDateComponent as ɵdv, TransactionHeaderDeliveryOptionsModule as ɵdw, TransactionHeaderDeliveryOptionsComponent as ɵdx, TransactionHeaderRemarksModule as ɵdy, TransactionHeaderRemarksComponent as ɵdz, DictionaryService as ɵe, TransactionHeaderReferenceModule as ɵea, TransactionHeaderReferenceComponent as ɵeb, TransactionHeaderRelationReferenceModule as ɵec, TransactionHeaderRelationReferenceComponent as ɵed, TransactionHeaderDeliveryMethodModule as ɵee, TransactionLineCheckboxModule as ɵef, TransactionLineCheckboxListComponent as ɵeg, TransactionHeaderDeliveryMethodComponent as ɵeh, TransactionHeaderPreferredDeliveryDateModule as ɵei, TransactionHeaderPreferredDeliveryDateComponent as ɵej, DialogTransactionHeaderDeliveryMethodModule as ɵek, DialogHeaderSearchModule as ɵel, DialogHeaderSearchComponent as ɵem, DialogTransactionHeaderDeliveryMethodComponent as ɵen, TransactionHeaderPartialDeliveryModule as ɵeo, TransactionHeaderPartialDeliveryComponent as ɵep, TransactionBaseComponent as ɵeq, TransactionHeaderDownpaymentPercentageModule as ɵer, TransactionHeaderDownpaymentPercentageComponent as ɵes, TransactionHeaderDownpaymentAmountModule as ɵet, TransactionHeaderDownpaymentAmountComponent as ɵeu, TransactionHeaderDefinitiveModule as ɵev, TransactionHeaderDefinitiveComponent as ɵew, TransactionHeaderBranchModule as ɵex, TransactionHeaderBranchComponent as ɵey, TransactionHeaderAdministrativeRelationModule as ɵez, TransactionConnectorService as ɵf, TransactionHeaderAdministrativeRelationComponent as ɵfa, TransactionHeaderMarketingModule as ɵfb, TransactionHeaderMarketingComponent as ɵfc, CheckoutOverviewRelationEditComponent as ɵfd, CheckoutOverviewDeliveryEditComponent as ɵfe, CheckoutOverviewDeliveryAddressComponent as ɵff, CheckoutOverviewPaymentComponent as ɵfg, CheckoutLoginComponent as ɵfh, TransactionFilterCategoriesModule as ɵfi, TransactionFilterCategoriesComponent as ɵfj, TransactionHeaderPaymentModule as ɵfk, TransactionHeaderPaymentComponent as ɵfl, TransactionLinesGridModule as ɵfm, TransactionBaseGridModule as ɵfn, TransactionLineSidePanelModule as ɵfo, TransactionLineSidePanelDefaultModule as ɵfp, TransactionLinePriceModule as ɵfq, TransactionLinePriceComponent as ɵfr, TransactionLineBaseComponent as ɵfs, TransactionLinePriceListModule as ɵft, TransactionLinePriceListComponent as ɵfu, TransactionLineVatModule as ɵfv, TransactionLineVatComponent as ɵfw, TransactionLineQuantityModule as ɵfx, TransactionLineQuantityComponent as ɵfy, TransactionLineLineDiscountModule as ɵfz, TransactionConnectorAdapterService as ɵg, TransactionLineLineDiscountComponent as ɵga, TransactionLineDeliveryMethodModule as ɵgb, TransactionLineDeliveryMethodComponent as ɵgc, TransactionLineDeliveryDateModule as ɵgd, TransactionLineDeliveryDateComponent as ɵge, TransactionLineReferenceModule as ɵgf, TransactionLineReferenceComponent as ɵgg, TransactionLineCommissionCodeModule as ɵgh, TransactionLineCommissionCodeComponent as ɵgi, TransactionLineWarehouseModule as ɵgj, TransactionLineWarehouseComponent as ɵgk, TransactionLineDiscountAmountModule as ɵgl, TransactionLineDiscountAmountComponent as ɵgm, TransactionLineQuantumDiscountModule as ɵgn, TransactionLineQuantumDiscountComponent as ɵgo, TransactionLineSpecialDiscountModule as ɵgp, TransactionLineSpecialDiscountComponent as ɵgq, TransactionLineSupplierModule as ɵgr, TransactionLineSupplierComponent as ɵgs, TransactionLineDescriptionModule as ɵgt, TransactionLineDescriptionComponent as ɵgu, TransactionLineSidePanelDefaultComponent as ɵgv, TransactionReceivingGoodsHistoryModule as ɵgw, TransactionHistoryGridModule as ɵgx, TransactionHistoryGridStatusModule as ɵgy, TransactionHistoryGridStatusComponent as ɵgz, SelectMultipleCacheService as ɵh, TransactionHistoryGridComponent as ɵha, TransactionReceivingGoodsHistoryComponent as ɵhb, TransactionReceivingGoodsDetailsModule as ɵhc, TransactionReceivingGoodsDetailsComponent as ɵhd, ArticleService as ɵhe, TransactionButtonBarModule as ɵhf, TransactionButtonBarComponent as ɵhg, TransactionButtonBarButtonComponent as ɵhh, TransactionLineSidePanelPurchaseModule as ɵhi, DefaultOkCancelButtonsModule as ɵhj, DefaultOkCancelButtonsComponent as ɵhk, TransactionLineSidePanelPurchaseComponent as ɵhl, TransactionLineSidePanelComponent as ɵhm, DynamicBaseComponent as ɵhn, TransactionLineActionButtonsModule as ɵho, TransactionArticleTextOverviewModule as ɵhp, TransactionArticleTextOverviewComponent as ɵhq, TransactionLineActionButtonsComponent as ɵhr, TransactionBaseGridComponent as ɵhs, TransactionGridBaseComponent as ɵht, TransactionImageService as ɵhu, DialogTransactionLineCommissionCodeModule as ɵhv, DialogTransactionLineCommissionCodeComponent as ɵhw, DialogTransactionLineBaseComponent as ɵhx, DialogTransactionLineWarehouseModule as ɵhy, DialogTransactionLineWarehouseComponent as ɵhz, BusinessObjectCacheManagerService as ɵi, DialogTransactionLineWarehouseCcModule as ɵia, DialogTransactionLineWarehouseCcComponent as ɵib, DialogTransactionLineDeliveryMethodModule as ɵic, DialogTransactionLineDeliveryMethodComponent as ɵid, DialogTransactionLineVatModule as ɵie, DialogTransactionLineVatComponent as ɵif, DialogTransactionLineDiscountModule as ɵig, DialogTransactionLinePriceListModule as ɵih, DialogTransactionLinePriceListComponent as ɵii, DialogTransactionLineDiscountComponent as ɵij, TransactionLinesGridComponent as ɵik, DiscountModule as ɵil, DiscountComponent as ɵim, TransactionQuickAccessOverviewModule as ɵin, TransactionQuickAccessOverviewComponent as ɵio, TransactionQuickAccessOrderDeliveryModule as ɵip, TransactionQuickAccessOrderDeliveryComponent as ɵiq, TransactionOrderConfirmationGridModule as ɵir, TransactionOrderConfirmationGridComponent as ɵis, TransactionReceivedGoodsGridModule as ɵit, DialogTransactionLineWarehouseLocationModule as ɵiu, TransactionLineWarehouseLocationModule as ɵiv, TransactionLineWarehouseLocationComponent as ɵiw, DialogTransactionLineWarehouseLocationComponent as ɵix, TransactionLineWarehouseLocationButtonModule as ɵiy, TransactionLineWarehouseLocationButtonComponent as ɵiz, CacheField as ɵj, TransactionReceivedGoodsGridComponent as ɵja, ViewModeButtonsModule as ɵjb, ViewModeButtonsComponent as ɵjc, TransactionGridModule as ɵjd, TransactionGridComponent as ɵje, TransactionTileModule as ɵjf, TransactionTileComponent as ɵjg, TransactionOverviewLineModule as ɵjh, EditableLabelModule as ɵji, EditableLabelComponent as ɵjj, TransactionBaseLineModule as ɵjk, TransactionLineImageAndDescriptionModule as ɵjl, TransactionLineImageAndDescriptionComponent as ɵjm, TransactionBaseLineComponent as ɵjn, TransactionLinesLineBaseComponent as ɵjo, TransactionLineCommissionButtonModule as ɵjp, TransactionLineCommissionButtonComponent as ɵjq, TransactionLineWarehouseButtonModule as ɵjr, TransactionLineWarehouseButtonComponent as ɵjs, TransactionLineDeliveryButtonModule as ɵjt, TransactionLineDeliveryButtonComponent as ɵju, TransactionLineDeliveryDateButtonModule as ɵjv, TransactionLineDeliveryDateButtonComponent as ɵjw, TransactionOverviewLineComponent as ɵjx, TransactionOrderDeliveryLineModule as ɵjy, TransactionOrderDeliveryLineComponent as ɵjz, SelectMultipleParameterizedCacheService as ɵk, TransactionReceiveGoodsLineModule as ɵka, TransactionReceiveGoodsLineComponent as ɵkb, TransactionSearchResultModule as ɵkc, TransactionSearchSalesOrderTileModule as ɵkd, TransactionSearchSalesOrderTileComponent as ɵke, TransactionSearchTileBaseComponent as ɵkf, TransactionSearchPurchaseOrderTileModule as ɵkg, TransactionSearchPurchaseOrderTileComponent as ɵkh, TransactionSearchSalesOrderGridModule as ɵki, TransactionSearchSalesOrderGridComponent as ɵkj, TransactionSearchGridBaseComponent as ɵkk, TransactionSearchPurchaseOrderGridModule as ɵkl, TransactionSearchPurchaseOrderGridComponent as ɵkm, TransactionSearchHeaderModule as ɵkn, TransactionSearchHeaderComponent as ɵko, TransactionSearchGridModule as ɵkp, TransactionSearchGridComponent as ɵkq, TransactionSearchTileModule as ɵkr, TransactionSearchTileComponent as ɵks, TransactionSearchResultComponent as ɵkt, TransactionSalesOrderFilterModule as ɵku, TransactionSalesOrderFilterContentOrderModule as ɵkv, TransactionFilterItemModule as ɵkw, TransactionFilterItemComponent as ɵkx, TransactionSalesOrderFilterContentOrderComponent as ɵky, TransactionFilterContentBaseComponent as ɵkz, ErrorService as ɵl, FilterRequestService as ɵla, TransactionSalesOrderFilterContentLogisticsModule as ɵlb, TransactionFilterHistoricStateModule as ɵlc, TransactionFilterHistoricStateComponent as ɵld, TransactionSalesOrderFilterContentLogisticsComponent as ɵle, TransactionSalesOrderFilterContentArticleModule as ɵlf, TransactionSalesOrderFilterContentArticleComponent as ɵlg, TransactionSalesOrderFilterComponent as ɵlh, TransactionFilterBaseComponent as ɵli, TransactionPurchaseOrderFilterModule as ɵlj, TransactionPurchaseOrderFilterContentOrderModule as ɵlk, TransactionPurchaseOrderFilterContentOrderComponent as ɵll, TransactionPurchaseOrderFilterContentLogisticsModule as ɵlm, TransactionPurchaseOrderFilterContentLogisticsComponent as ɵln, TransactionPurchaseOrderFilterContentArticleModule as ɵlo, TransactionPurchaseOrderFilterContentArticleComponent as ɵlp, TransactionPurchaseOrderFilterComponent as ɵlq, TransactionFilterModule as ɵlr, TransactionFilterComponent as ɵls, SelectSingleCacheService as ɵm, ArticleConnectorService as ɵn, CoreModule as ɵo, ConfirmationDialogModule as ɵp, PipeModule as ɵq, AppendPipe as ɵr, DeliveryTimePipe as ɵs, DateDurationPipe as ɵt, LocalizePipe as ɵu, CoCurrencyPipe as ɵv, SafeStylePipe as ɵw, SafeHtmlPipe as ɵx, ConfirmationDialogComponent as ɵy, DialogBaseComponent as ɵz };
22315
+ export { CheckoutComponent, CheckoutModule, 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, IconCacheService as ɵba, CharacteristicAnswerModule as ɵbb, CharacteristicAnswerComponent as ɵbc, WarehouseModule as ɵbd, WarehouseComponent as ɵbe, ImageDisplayComponent as ɵbf, IconComponent as ɵbg, CustomerGroupsComponent as ɵbh, StockStatusIndicatorComponent as ɵbi, LoaderComponent as ɵbj, LazyRenderMasterDirective as ɵbk, LazyRenderDirective as ɵbl, RelationAddressModule as ɵbm, RelationAddressComponent as ɵbn, RelationBaseComponent as ɵbo, RelationAddressSelectModule as ɵbp, RelationAddressTileModule as ɵbq, TileModule as ɵbr, TileComponent as ɵbs, RelationAddressTileComponent as ɵbt, RelationAddressSelectComponent as ɵbu, BusinessObjectFactory 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, TransactionFilterPopupBaseComponent as ɵch, TransactionLineImageAndDescriptionComponent as ɵci, TransactionImageService as ɵcj, TransactionArticleTextComponent as ɵck, TransactionReceiveGoodsService as ɵcl, TransactionEventService as ɵcm, DialogTransactionHeaderDiscountModule as ɵcn, TransactionHeaderDiscountPercentageModule as ɵco, TransactionHeaderDiscountPercentageComponent as ɵcp, TransactionHeaderBaseComponent as ɵcq, TransactionHeaderDiscountAmountModule as ɵcr, TransactionHeaderDiscountAmountComponent as ɵcs, TransactionHeaderDiscountTransactionTotalModule as ɵct, TransactionHeaderDiscountTransactionTotalComponent as ɵcu, DialogTransactionHeaderDiscountComponent as ɵcv, DialogTransactionHeaderBaseComponent as ɵcw, AvatarModule as ɵcx, AvatarComponent as ɵcy, SharedService as ɵcz, OptionsService as ɵd, SharedConnectorService as ɵda, DeliveryTypeTileModule as ɵdb, DeliveryTypeTileComponent as ɵdc, PaymentModule as ɵdd, PaymentTileModule as ɵde, PaymentTileComponent as ɵdf, PaymentQrCodeModule as ɵdg, PaymentQrCodeComponent as ɵdh, PaymentComponent as ɵdi, PaymentService as ɵdj, RelationTypeModule as ɵdk, RelationTypeComponent as ɵdl, RelationGeneralModule as ɵdm, RelationSuggestionsListModule as ɵdn, RelationSuggestionsListItemModule as ɵdo, RelationSuggestionsListItemComponent as ɵdp, RelationSuggestionsListComponent as ɵdq, RelationGeneralComponent as ɵdr, RelationAddressesModule as ɵds, RelationAddressesComponent as ɵdt, RelationContactDetailsModule as ɵdu, RelationContactDetailsComponent as ɵdv, RelationPreferencesModule as ɵdw, RelationPreferencesComponent as ɵdx, TransactionHeaderBlockModule as ɵdy, TransactionHeaderBlockComponent as ɵdz, DictionaryService as ɵe, TransactionHeaderDeliveryDateModule as ɵea, TransactionHeaderDeliveryDateComponent as ɵeb, TransactionHeaderDeliveryOptionsModule as ɵec, TransactionHeaderDeliveryOptionsComponent as ɵed, TransactionHeaderRemarksModule as ɵee, TransactionHeaderRemarksComponent as ɵef, TransactionHeaderReferenceModule as ɵeg, TransactionHeaderReferenceComponent as ɵeh, TransactionHeaderRelationReferenceModule as ɵei, TransactionHeaderRelationReferenceComponent as ɵej, TransactionHeaderDeliveryMethodModule as ɵek, TransactionLineCheckboxModule as ɵel, TransactionLineCheckboxListComponent as ɵem, TransactionHeaderDeliveryMethodComponent as ɵen, TransactionHeaderPreferredDeliveryDateModule as ɵeo, TransactionHeaderPreferredDeliveryDateComponent as ɵep, DialogTransactionHeaderDeliveryMethodModule as ɵeq, DialogHeaderSearchModule as ɵer, DialogHeaderSearchComponent as ɵes, DialogTransactionHeaderDeliveryMethodComponent as ɵet, TransactionHeaderPartialDeliveryModule as ɵeu, TransactionHeaderPartialDeliveryComponent as ɵev, TransactionBaseComponent as ɵew, TransactionHeaderDownpaymentPercentageModule as ɵex, TransactionHeaderDownpaymentPercentageComponent as ɵey, TransactionHeaderDownpaymentAmountModule as ɵez, TransactionConnectorService as ɵf, TransactionHeaderDownpaymentAmountComponent as ɵfa, TransactionHeaderDefinitiveModule as ɵfb, TransactionHeaderDefinitiveComponent as ɵfc, TransactionHeaderBranchModule as ɵfd, TransactionHeaderBranchComponent as ɵfe, TransactionHeaderAdministrativeRelationModule as ɵff, TransactionHeaderAdministrativeRelationComponent as ɵfg, TransactionHeaderMarketingModule as ɵfh, TransactionHeaderMarketingComponent as ɵfi, CheckoutOverviewRelationEditComponent as ɵfj, CheckoutOverviewDeliveryEditComponent as ɵfk, CheckoutOverviewDeliveryAddressComponent as ɵfl, CheckoutOverviewPaymentComponent as ɵfm, CheckoutLoginComponent as ɵfn, TransactionFilterCategoriesModule as ɵfo, TransactionFilterCategoriesComponent as ɵfp, TransactionHeaderPaymentModule as ɵfq, TransactionHeaderPaymentComponent as ɵfr, TransactionLinesGridModule as ɵfs, TransactionBaseGridModule as ɵft, TransactionLineSidePanelModule as ɵfu, TransactionLineSidePanelDefaultModule as ɵfv, TransactionLinePriceModule as ɵfw, TransactionLinePriceComponent as ɵfx, TransactionLinePriceListModule as ɵfy, TransactionLinePriceListComponent 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, TransactionLineSidePanelDefaultComponent as ɵgy, TransactionReceivingGoodsHistoryModule as ɵgz, SelectMultipleCacheService as ɵh, TransactionHistoryGridModule as ɵha, TransactionHistoryGridStatusModule as ɵhb, TransactionHistoryGridStatusComponent as ɵhc, TransactionHistoryGridComponent as ɵhd, TransactionReceivingGoodsHistoryComponent as ɵhe, TransactionReceivingGoodsDetailsModule as ɵhf, TransactionReceivingGoodsDetailsComponent as ɵhg, ArticleService as ɵhh, TransactionButtonBarModule as ɵhi, TransactionButtonBarComponent as ɵhj, TransactionButtonBarButtonComponent as ɵhk, TransactionLineSidePanelPurchaseModule as ɵhl, DefaultOkCancelButtonsModule as ɵhm, DefaultOkCancelButtonsComponent as ɵhn, TransactionLineSidePanelPurchaseComponent as ɵho, TransactionLineSidePanelComponent as ɵhp, DynamicBaseComponent as ɵhq, TransactionLineActionButtonsModule as ɵhr, TransactionArticleTextOverviewModule as ɵhs, TransactionArticleTextOverviewComponent as ɵht, TransactionLineActionButtonsComponent as ɵhu, TransactionBaseGridComponent as ɵhv, TransactionGridBaseComponent as ɵhw, DialogTransactionLineCommissionCodeModule as ɵhx, DialogTransactionLineCommissionCodeComponent as ɵhy, DialogTransactionLineBaseComponent as ɵhz, BusinessObjectCacheManagerService as ɵi, DialogTransactionLineWarehouseModule as ɵia, DialogTransactionLineWarehouseComponent as ɵib, DialogTransactionLineWarehouseCcModule as ɵic, DialogTransactionLineWarehouseCcComponent as ɵid, DialogTransactionLineDeliveryMethodModule as ɵie, DialogTransactionLineDeliveryMethodComponent as ɵif, DialogTransactionLineVatModule as ɵig, DialogTransactionLineVatComponent as ɵih, DialogTransactionLineDiscountModule as ɵii, DialogTransactionLinePriceListModule as ɵij, DialogTransactionLinePriceListComponent as ɵik, DialogTransactionLineDiscountComponent as ɵil, TransactionLinesGridComponent as ɵim, DiscountModule as ɵin, DiscountComponent as ɵio, TransactionQuickAccessOverviewModule as ɵip, TransactionQuickAccessOverviewComponent as ɵiq, TransactionQuickAccessOrderDeliveryModule as ɵir, TransactionQuickAccessOrderDeliveryComponent as ɵis, TransactionOrderConfirmationGridModule as ɵit, TransactionOrderConfirmationGridComponent as ɵiu, TransactionReceivedGoodsGridModule as ɵiv, DialogTransactionLineWarehouseLocationModule as ɵiw, TransactionLineWarehouseLocationModule as ɵix, TransactionLineWarehouseLocationComponent as ɵiy, DialogTransactionLineWarehouseLocationComponent as ɵiz, CacheField as ɵj, TransactionLineWarehouseLocationButtonModule as ɵja, TransactionLineWarehouseLocationButtonComponent as ɵjb, TransactionReceivedGoodsGridComponent as ɵjc, ViewModeButtonsModule as ɵjd, ViewModeButtonsComponent as ɵje, TransactionGridModule as ɵjf, TransactionGridComponent as ɵjg, TransactionTileModule as ɵjh, TransactionTileComponent as ɵji, TransactionOverviewLineModule as ɵjj, EditableLabelModule as ɵjk, EditableLabelComponent as ɵjl, TransactionBaseLineModule as ɵjm, TransactionBaseLineComponent as ɵjn, TransactionLinesLineBaseComponent as ɵjo, TransactionLineCommissionButtonModule as ɵjp, TransactionLineCommissionButtonComponent as ɵjq, TransactionLineWarehouseButtonModule as ɵjr, TransactionLineWarehouseButtonComponent as ɵjs, TransactionLineDeliveryButtonModule as ɵjt, TransactionLineDeliveryButtonComponent as ɵju, TransactionLineDeliveryDateButtonModule as ɵjv, TransactionLineDeliveryDateButtonComponent as ɵjw, TransactionOverviewLineComponent as ɵjx, TransactionOrderDeliveryLineModule as ɵjy, TransactionOrderDeliveryLineComponent as ɵjz, SelectMultipleParameterizedCacheService as ɵk, TransactionReceiveGoodsLineModule as ɵka, TransactionReceiveGoodsLineComponent as ɵkb, TransactionSearchResultModule as ɵkc, TransactionSearchSalesOrderTileModule as ɵkd, TransactionSearchSalesOrderTileComponent as ɵke, TransactionSearchTileBaseComponent as ɵkf, TransactionSearchPurchaseOrderTileModule as ɵkg, TransactionSearchPurchaseOrderTileComponent as ɵkh, TransactionSearchSalesOrderGridModule as ɵki, TransactionSearchSalesOrderGridComponent as ɵkj, TransactionSearchGridBaseComponent as ɵkk, TransactionSearchPurchaseOrderGridModule as ɵkl, TransactionSearchPurchaseOrderGridComponent as ɵkm, TransactionSearchHeaderModule as ɵkn, TransactionSearchHeaderComponent as ɵko, TransactionSearchGridModule as ɵkp, TransactionSearchGridComponent as ɵkq, TransactionSearchTileModule as ɵkr, TransactionSearchTileComponent as ɵks, TransactionSearchResultComponent as ɵkt, TransactionSalesOrderFilterModule as ɵku, TransactionSalesOrderFilterContentOrderModule as ɵkv, TransactionFilterItemModule as ɵkw, TransactionFilterItemComponent as ɵkx, TransactionSalesOrderFilterContentOrderComponent as ɵky, TransactionFilterContentBaseComponent as ɵkz, ErrorService as ɵl, FilterRequestService as ɵla, TransactionSalesOrderFilterContentLogisticsModule as ɵlb, TransactionFilterHistoricStateModule as ɵlc, TransactionFilterHistoricStateComponent as ɵld, TransactionSalesOrderFilterContentLogisticsComponent as ɵle, TransactionSalesOrderFilterContentArticleModule as ɵlf, TransactionSalesOrderFilterContentArticleComponent as ɵlg, TransactionSalesOrderFilterComponent as ɵlh, TransactionFilterBaseComponent as ɵli, TransactionPurchaseOrderFilterModule as ɵlj, TransactionPurchaseOrderFilterContentOrderModule as ɵlk, TransactionPurchaseOrderFilterContentOrderComponent as ɵll, TransactionPurchaseOrderFilterContentLogisticsModule as ɵlm, TransactionPurchaseOrderFilterContentLogisticsComponent as ɵln, TransactionPurchaseOrderFilterContentArticleModule as ɵlo, TransactionPurchaseOrderFilterContentArticleComponent as ɵlp, TransactionPurchaseOrderFilterComponent as ɵlq, TransactionFilterModule as ɵlr, TransactionFilterComponent as ɵls, SelectSingleCacheService as ɵm, ArticleConnectorService as ɵn, CoreModule as ɵo, ConfirmationDialogModule as ɵp, PipeModule as ɵq, AppendPipe as ɵr, DeliveryTimePipe as ɵs, DateDurationPipe as ɵt, LocalizePipe as ɵu, CoCurrencyPipe as ɵv, SafeStylePipe as ɵw, SafeHtmlPipe as ɵx, ConfirmationDialogComponent as ɵy, DialogBaseComponent as ɵz };
22179
22316
  //# sourceMappingURL=colijnit-transaction.js.map