@colijnit/transaction 12.1.55 → 12.1.56

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 (102) hide show
  1. package/bundles/colijnit-transaction.umd.js +659 -388
  2. package/bundles/colijnit-transaction.umd.js.map +1 -1
  3. package/colijnit-transaction.d.ts +221 -219
  4. package/colijnit-transaction.metadata.json +1 -1
  5. package/esm2015/colijnit-transaction.js +222 -220
  6. package/esm2015/lib/assets/dictionary/text.properties.js +3 -1
  7. package/esm2015/lib/component/confirmation-dialog/confirmation-dialog.component.js +2 -2
  8. package/esm2015/lib/component/core/base/components/characteristic-answer/characteristic-answer.component.js +2 -2
  9. package/esm2015/lib/component/core/base/components/warehouse/warehouse.component.js +2 -2
  10. package/esm2015/lib/component/core/base/transaction-base.component.js +2 -2
  11. package/esm2015/lib/component/core/base/transaction-line-base.component.js +5 -1
  12. package/esm2015/lib/component/dialog/dialog-header-search/dialog-header-search.component.js +2 -2
  13. package/esm2015/lib/component/dialog/transaction-header/dialog-transaction-header-discount/dialog-transaction-header-discount.component.js +4 -4
  14. package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-commission-code/dialog-transaction-line-commission-code.component.js +2 -2
  15. package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-discount/dialog-transaction-line-discount.component.js +2 -2
  16. package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/dialog-transaction-line-warehouse-cc.component.js +2 -2
  17. package/esm2015/lib/component/discount/discount.component.js +2 -2
  18. package/esm2015/lib/component/down-payment/down-payment.component.js +71 -0
  19. package/esm2015/lib/component/down-payment/down-payment.module.js +25 -0
  20. package/esm2015/lib/component/payment/payment.component.js +54 -35
  21. package/esm2015/lib/component/payment/payment.module.js +4 -2
  22. package/esm2015/lib/component/relation/relation-addresses/relation-addresses.component.js +2 -2
  23. package/esm2015/lib/component/shared/transaction-article-text/transaction-article-text.component.js +2 -2
  24. package/esm2015/lib/component/shared/transaction-article-text-overview/transaction-article-text-overview.component.js +2 -2
  25. package/esm2015/lib/component/transaction/transaction.component.js +14 -4
  26. package/esm2015/lib/component/transaction-header/transaction-header-order/transaction-header-order.component.js +3 -3
  27. package/esm2015/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.js +27 -6
  28. package/esm2015/lib/component/transaction-header-fields/transaction-header-downpayment-amount.component.js +5 -5
  29. package/esm2015/lib/component/transaction-header-fields/transaction-header-downpayment-percentage.component.js +5 -5
  30. package/esm2015/lib/component/transaction-line/transaction-base-line/transaction-base-line.component.js +2 -2
  31. package/esm2015/lib/component/transaction-line/transaction-receive-goods-line/service/transaction-receive-goods.service.js +34 -23
  32. package/esm2015/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.component.js +14 -14
  33. package/esm2015/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.module.js +4 -3
  34. package/esm2015/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.component.js +13 -13
  35. package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse-button.component.js +10 -4
  36. package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse-location-button.component.js +4 -2
  37. package/esm2015/lib/component/transaction-line-image-and-description/transaction-line-image-and-description.component.js +2 -2
  38. package/esm2015/lib/component/transaction-lines/transaction-lines.component.js +7 -4
  39. package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.js +23 -6
  40. package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.module.js +4 -3
  41. package/esm2015/lib/component/transaction-totals/transaction-totals.component.js +3 -3
  42. package/esm2015/lib/enum/icon.enum.js +2 -1
  43. package/esm2015/lib/model/down-payment-view-model.js +7 -0
  44. package/esm2015/lib/model/icon-svg.js +2 -1
  45. package/esm2015/lib/service/dynamic-component.service.js +4 -1
  46. package/esm2015/lib/service/payment.service.js +39 -4
  47. package/esm2015/lib/service/transaction-connector-adapter.service.js +14 -1
  48. package/fesm2015/colijnit-transaction.js +410 -172
  49. package/fesm2015/colijnit-transaction.js.map +1 -1
  50. package/lib/component/core/base/components/characteristic-answer/style/_layout.scss +1 -1
  51. package/lib/component/core/base/components/warehouse/style/_layout.scss +1 -1
  52. package/lib/component/core/base/transaction-line-base.component.d.ts +1 -0
  53. package/lib/component/dialog/transaction-header/dialog-transaction-header-delivery-method/style/_layout.scss +1 -1
  54. package/lib/component/dialog/transaction-header/dialog-transaction-header-discount/style/_layout.scss +1 -1
  55. package/lib/component/dialog/transaction-line/dialog-transaction-line-commission-code/style/_layout.scss +1 -1
  56. package/lib/component/dialog/transaction-line/dialog-transaction-line-delivery-method/style/_layout.scss +1 -1
  57. package/lib/component/dialog/transaction-line/dialog-transaction-line-discount/style/_layout.scss +1 -1
  58. package/lib/component/dialog/transaction-line/dialog-transaction-line-price-list/style/_layout.scss +1 -1
  59. package/lib/component/dialog/transaction-line/dialog-transaction-line-vat/style/_layout.scss +1 -1
  60. package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse/style/_layout.scss +1 -1
  61. package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/style/_layout.scss +1 -1
  62. package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/style/_material-definition.scss +1 -1
  63. package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/style/_layout.scss +1 -1
  64. package/lib/component/down-payment/down-payment.component.d.ts +16 -0
  65. package/lib/component/down-payment/down-payment.module.d.ts +2 -0
  66. package/lib/component/down-payment/style/_layout.scss +62 -0
  67. package/lib/component/down-payment/style/_material-definition.scss +20 -0
  68. package/lib/component/down-payment/style/_theme.scss +4 -0
  69. package/lib/component/down-payment/style/material.scss +4 -0
  70. package/lib/component/payment/payment.component.d.ts +8 -1
  71. package/lib/component/payment/style/_layout.scss +26 -5
  72. package/lib/component/payment/style/_material-definition.scss +3 -0
  73. package/lib/component/payment/style/material.scss +1 -0
  74. package/lib/component/relation/relation-addresses/style/_layout.scss +1 -1
  75. package/lib/component/transaction/transaction.component.d.ts +6 -2
  76. package/lib/component/transaction-button-bar/style/_material-definition.scss +2 -1
  77. package/lib/component/transaction-button-bar/style/_theme.scss +21 -0
  78. package/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.d.ts +7 -1
  79. package/lib/component/transaction-line/transaction-base-line/style/_layout.scss +15 -3
  80. package/lib/component/transaction-line/transaction-receive-goods-line/service/transaction-receive-goods.service.d.ts +2 -1
  81. package/lib/component/transaction-line/transaction-receive-goods-line/style/_layout.scss +1 -2
  82. package/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.component.d.ts +3 -3
  83. package/lib/component/transaction-line-action-buttons/style/_layout.scss +29 -18
  84. package/lib/component/transaction-line-action-buttons/style/_material-definition.scss +14 -8
  85. package/lib/component/transaction-line-action-buttons/style/_theme.scss +4 -4
  86. package/lib/component/transaction-line-fields/transaction-line-warehouse-button.component.d.ts +2 -0
  87. package/lib/component/transaction-line-image-and-description/style/_layout.scss +1 -0
  88. package/lib/component/transaction-line-image-and-description/style/_material-definition.scss +1 -0
  89. package/lib/component/transaction-line-image-and-description/style/_theme.scss +3 -0
  90. package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/style/_layout.scss +6 -4
  91. package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.d.ts +7 -2
  92. package/lib/component/transaction-receiving-goods-details/style/_layout.scss +10 -7
  93. package/lib/component/transaction-receiving-goods-details/style/_material-definition.scss +3 -3
  94. package/lib/component/transaction-receiving-goods-history/style/_layout.scss +1 -1
  95. package/lib/enum/icon.enum.d.ts +1 -0
  96. package/lib/model/down-payment-view-model.d.ts +7 -0
  97. package/lib/service/dynamic-component.service.d.ts +2 -1
  98. package/lib/service/payment.service.d.ts +7 -1
  99. package/lib/service/transaction-connector-adapter.service.d.ts +2 -0
  100. package/lib/style/_variables.scss +18 -2
  101. package/lib/style/transaction-globals.scss +4 -3
  102. package/package.json +3 -6
@@ -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, ViewChildren } 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';
@@ -54,6 +54,7 @@ import * as i1 from '@angular/platform-browser';
54
54
  import { DomSanitizer } from '@angular/platform-browser';
55
55
  import { TransactionInfo } from '@colijnit/transactionapi/build/model/transaction-info.bo';
56
56
  import { SupplierFullObject } from '@colijnit/transactionapi/build/model/supplier-full-object.bo';
57
+ import { TransactionDownPaymentInfo } from '@colijnit/transactionapi/build/model/transaction-down-payment-info.bo';
57
58
  import { RelationStatus } from '@colijnit/transactionapi/build/enum/relation-status.enum';
58
59
  import { ResolveLinePendingReasonRequest } from '@colijnit/transactionapi/build/model/resolve-pending-reason-request.bo';
59
60
  import { Articles } from '@colijnit/articleapi/build/articles';
@@ -65,7 +66,7 @@ import { ResolveHeaderPendingReasonRequest } from '@colijnit/transactionapi/buil
65
66
  import { DocDeliveryBatch } from '@colijnit/transactionapi/build/model/doc-delivery-batch.bo';
66
67
  import { NULL_CUSTOMER_FULL_OBJECT, NULL_RELATION_OBJECT } from '@colijnit/transactionapi/build/model/nul-relation-object';
67
68
  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, 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
+ 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, CheckmarkOverlayModule, CoOrientation, CoDirection, FilterItemModule, PaginationModule, PaginationBarModule, IconCollapseHandleModule } from '@colijnit/corecomponents_v12';
69
70
  import { FlexModule } from '@angular/flex-layout';
70
71
  import { AddressType } from '@colijnit/transactionapi/build/enum/address-type.enum';
71
72
  import { trigger, state, style, transition, animate } from '@angular/animations';
@@ -80,9 +81,9 @@ import { PagingParameters } from '@colijnit/transactionapi/build/model/paging-pa
80
81
  import { TransactionSearchViewRequest } from '@colijnit/transactionapi/build/model/transaction-search-view-request';
81
82
  import { RelationKind as RelationKind$1 } from '@colijnit/articleapi/build/enum/relation-kind.enum';
82
83
  import { GetPurchaseOrderConfirmation } from '@colijnit/transactionapi/build/model/get-purchase-order-confirmation';
83
- import { StockStatus } from '@colijnit/transactionapi/build/enum/refcode/stock-status.enum';
84
84
  import { ReceiveGoodsForPurchaseOrderRequest } from '@colijnit/transactionapi/build/model/receive-goods-for-purchase-order-request.bo';
85
85
  import { PurchaseOrderLineReceiptDetails } from '@colijnit/transactionapi/build/model/purchase-order-line-receipt-details.bo';
86
+ import { StockStatus } from '@colijnit/transactionapi/build/enum/refcode/stock-status.enum';
86
87
  import { RelationRequest } from '@colijnit/transactionapi/build/model/relation-request';
87
88
  import { Sharedapi } from '@colijnit/sharedapi/build/sharedapi';
88
89
  import { CoDocument } from '@colijnit/sharedapi/build/model/co-document.bo';
@@ -405,6 +406,7 @@ class Dictionary {
405
406
  "PAYMENT": "Betaling",
406
407
  "PAYMENT_INFORMATION": "Betaalinformatie",
407
408
  "PAYMENT_METHOD": "Betaalmethode",
409
+ "PAYMENTS_MADE": "Verrichte betalingen",
408
410
  "PERSONAL_DATA": "Basisgegevens",
409
411
  "PICKED": "Gepickt",
410
412
  "PHONE_NO": "Telefoonnummer",
@@ -752,6 +754,7 @@ class Dictionary {
752
754
  "PAYMENT": "Payment",
753
755
  "PAYMENT_INFORMATION": "Payment information",
754
756
  "PAYMENT_METHOD": "Payment method",
757
+ "PAYMENTS_MADE": "Payments made",
755
758
  "PERSONAL_DATA": "Personal data",
756
759
  "PHONE_NO": "Telephone number",
757
760
  "PLANNING": "Planning",
@@ -2059,6 +2062,7 @@ var Icon;
2059
2062
  Icon["EllipsisLight"] = "ellipsis_light";
2060
2063
  Icon["FileCircleInfoSolid"] = "file_circle_info_solid";
2061
2064
  Icon["FilePdfSolid"] = "file_pdf_solid";
2065
+ Icon["GearSolid"] = "gear_solid";
2062
2066
  Icon["GripDotsVerticalSolid"] = "grip_dots_vertical_solid";
2063
2067
  Icon["IdealLogo"] = "ideal_logo";
2064
2068
  Icon["InboxInSolid"] = "inbox_in_solid";
@@ -2129,6 +2133,7 @@ const IconSvg = {
2129
2133
  "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>",
2130
2134
  "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>",
2131
2135
  "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>",
2136
+ "gear_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M200 0H312l17.2 78.4c15.8 6.5 30.6 15.1 44 25.4l76.5-24.4 56 97-59.4 54.1c1.1 8.3 1.7 16.8 1.7 25.4s-.6 17.1-1.7 25.4l59.4 54.1-56 97-76.5-24.4c-13.4 10.3-28.2 18.9-44 25.4L312 512H200l-17.2-78.4c-15.8-6.5-30.6-15.1-44-25.4L62.3 432.5l-56-97 59.4-54.1C64.6 273.1 64 264.6 64 256s.6-17.1 1.7-25.4L6.3 176.5l56-97 76.5 24.4c13.4-10.3 28.2-18.9 44-25.4L200 0zm56 336c44.2 0 80-35.8 80-80s-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80z\"/></svg>",
2132
2137
  "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>",
2133
2138
  "ideal_logo": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 306.1 269.8\" style=\"enable-background:new 0 0 306.1 269.8;\" ><style type=\"text/css\">.st0{fill:#FFFFFF;}.st1{fill:#CC0066;}</style><g><g><path class=\"st0\" d=\"M0,20v229.8c0,11,9,20,20,20h137.3c103.8,0,148.8-58.1,148.8-135.2C306.1,57.9,261.1,0,157.3,0H20C9,0,0,9,0,20z\"/><path class=\"st1\" d=\"M91.9,56.4v169.8h73.9c67.1,0,96.2-37.9,96.2-91.5c0-51.3-29.1-91.1-96.2-91.1h-61.1C97.6,43.6,91.9,49.4,91.9,56.4z\"/><g><g><path d=\"M157.3,251.5H37.9c-10.6,0-19.2-8.6-19.2-19.2V37.6c0-10.6,8.6-19.2,19.2-19.2h119.4c113.3,0,130.2,72.9,130.2,116.3C287.5,210,241.2,251.5,157.3,251.5z M37.9,24.8c-7.1,0-12.8,5.7-12.8,12.8v194.7c0,7.1,5.7,12.8,12.8,12.8h119.4c79.8,0,123.8-39.2,123.8-110.4c0-95.6-77.6-109.9-123.8-109.9H37.9z\"/></g></g></g><g><path class=\"st0\" d=\"M117.9,111.8c2.6,0,5,0.4,7.3,1.2c2.3,0.8,4.2,2.1,5.9,3.7c1.6,1.7,2.9,3.8,3.9,6.2c0.9,2.5,1.4,5.4,1.4,8.8c0,3-0.4,5.7-1.1,8.2c-0.8,2.5-1.9,4.7-3.4,6.5c-1.5,1.8-3.4,3.2-5.7,4.3c-2.3,1-5,1.6-8.1,1.6h-17.5v-40.6H117.9z M117.3,144.9c1.3,0,2.5-0.2,3.8-0.6c1.2-0.4,2.3-1.1,3.2-2.1c0.9-1,1.7-2.2,2.3-3.8c0.6-1.6,0.9-3.4,0.9-5.7c0-2-0.2-3.9-0.6-5.5c-0.4-1.6-1.1-3.1-2-4.2s-2.1-2.1-3.6-2.7c-1.5-0.6-3.3-0.9-5.5-0.9h-6.4v25.6H117.3z\"/><path class=\"st0\" d=\"M172.5,111.8v7.5h-21.4v8.7h19.7v6.9h-19.7v9.9H173v7.5h-30.8v-40.6H172.5z\"/><path class=\"st0\" d=\"M203.1,111.8l15.2,40.6H209l-3.1-9h-15.2l-3.2,9h-9l15.3-40.6H203.1z M203.6,136.7l-5.1-14.9h-0.1l-5.3,14.9H203.6z\"/><path class=\"st0\" d=\"M232.8,111.8v33.1h19.8v7.5h-28.7v-40.6H232.8z\"/></g><g><circle cx=\"58.5\" cy=\"132.1\" r=\"18.7\"/></g><path d=\"M72.6,226.2L72.6,226.2c-15.7,0-28.3-12.7-28.3-28.3v-22.1c0-7.8,6.3-14.2,14.2-14.2h0c7.8,0,14.2,6.3,14.2,14.2V226.2z\"/></g></svg>",
2134
2139
  "inbox_in_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M288 32V210.7l41.4-41.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0l-96-96c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L224 210.7V32c0-17.7 14.3-32 32-32s32 14.3 32 32zM48 320h76.2c12.1 0 23.2 6.8 28.6 17.7l14.3 28.6c5.4 10.8 16.5 17.7 28.6 17.7H316.2c12.1 0 23.2-6.8 28.6-17.7l14.3-28.6c5.4-10.8 16.5-17.7 28.6-17.7H464c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V368c0-26.5 21.5-48 48-48z\"/></svg>",
@@ -2255,7 +2260,7 @@ ConfirmationDialogComponent.decorators = [
2255
2260
  </div>
2256
2261
  </co-dialog>
2257
2262
  <ng-template #headerTemplate>
2258
- <div class="title" [textContent]="title | localize"></div>
2263
+ <div class="co-transaction-dialog-header-title" [textContent]="title | localize"></div>
2259
2264
  </ng-template>
2260
2265
  <ng-template #footerTemplate>
2261
2266
  <div class="button-wrapper">
@@ -2341,7 +2346,7 @@ CharacteristicAnswerComponent.decorators = [
2341
2346
  </ng-container>
2342
2347
  </co-dialog>
2343
2348
  <ng-template #headerTemplate>
2344
- <div class="title" [textContent]="title"></div>
2349
+ <div class="co-transaction-dialog-header-title" [textContent]="title"></div>
2345
2350
  </ng-template>
2346
2351
  <ng-template #footerTemplate>
2347
2352
  <div class="dialog-footer-button-wrapper">
@@ -2505,6 +2510,10 @@ class TransactionLineBaseComponent extends TransactionFilterPopupBaseComponent {
2505
2510
  // overridden by descendents
2506
2511
  transactionInfoSet() {
2507
2512
  }
2513
+ stopPropagation(event) {
2514
+ event.preventDefault();
2515
+ event.stopPropagation();
2516
+ }
2508
2517
  }
2509
2518
  TransactionLineBaseComponent.decorators = [
2510
2519
  { type: Directive }
@@ -2598,7 +2607,7 @@ DialogTransactionLineCommissionCodeComponent.decorators = [
2598
2607
  (valueChange)="handleValueChange($event)"></co-transaction-line-commission-code>
2599
2608
  </co-dialog>
2600
2609
  <ng-template #dialogHeader>
2601
- <div class="dialog-header-title" [textContent]="'COMMISSION_CODE' | localize"></div>
2610
+ <div class="co-transaction-dialog-header-title" [textContent]="'COMMISSION_CODE' | localize"></div>
2602
2611
  </ng-template>
2603
2612
  <ng-template #footerTemplate>
2604
2613
  <div class="dialog-footer-button-wrapper" *ngIf="!useModel">
@@ -2620,6 +2629,9 @@ class DynamicComponentService {
2620
2629
  this.injector = injector;
2621
2630
  this._componentRefs = [];
2622
2631
  }
2632
+ getComponentRefs() {
2633
+ return this._componentRefs;
2634
+ }
2623
2635
  createComponent(componentClass, inputs, outputs, providers) {
2624
2636
  return new Promise((resolve) => {
2625
2637
  if (providers) {
@@ -2780,7 +2792,7 @@ DialogTransactionLineWarehouseCcComponent.decorators = [
2780
2792
  </div>
2781
2793
  </co-dialog>
2782
2794
  <ng-template #dialogHeader>
2783
- <div class="dialog-header-title" [textContent]="'COMMISSION_CODE_WAREHOUSE_SELECTION' | localize"></div>
2795
+ <div class="co-transaction-dialog-header-title" [textContent]="'COMMISSION_CODE_WAREHOUSE_SELECTION' | localize"></div>
2784
2796
  </ng-template>
2785
2797
  <ng-template #footerTemplate>
2786
2798
  <div class="dialog-footer-button-wrapper">
@@ -4249,6 +4261,18 @@ class TransactionConnectorAdapterService {
4249
4261
  }
4250
4262
  });
4251
4263
  }
4264
+ getDownPaymentInfo(uuid) {
4265
+ return __awaiter(this, void 0, void 0, function* () {
4266
+ const response = yield this.connector.getDownPaymentInfo(uuid);
4267
+ if (response && response.validationResult && response.validationResult.success) {
4268
+ return this._boFactory.makeWithRawBackendData(TransactionDownPaymentInfo, response.resultObject);
4269
+ }
4270
+ else {
4271
+ this._handleExceptionFromResponse(response);
4272
+ return null;
4273
+ }
4274
+ });
4275
+ }
4252
4276
  getGoodsReceiptStatus(transId, lineNr) {
4253
4277
  return __awaiter(this, void 0, void 0, function* () {
4254
4278
  const response = yield this.connector.getGoodsReceiptStatus(transId, lineNr);
@@ -7314,7 +7338,7 @@ WarehouseComponent.decorators = [
7314
7338
  </div>
7315
7339
  </co-dialog>
7316
7340
  <ng-template #headerTemplate>
7317
- <div class="title" [textContent]="'WAREHOUSE' | localize"></div>
7341
+ <div class="co-transaction-dialog-header-title" [textContent]="'WAREHOUSE' | localize"></div>
7318
7342
  </ng-template>
7319
7343
  <ng-template #footerTemplate>
7320
7344
  <div class="dialog-footer-button-wrapper">
@@ -8106,9 +8130,9 @@ TransactionTotalsComponent.decorators = [
8106
8130
  <div class="transaction-totals-wrapper">
8107
8131
  <span class="totals-gross label" [textContent]="'ORDER_GROSS' | localize"></span>
8108
8132
  <span class="totals-gross value" [textContent]="transactionTotal?.grossAmount | coCurrency: true"></span>
8109
- <ng-container *ngIf="transactionTotal?.discountAmount">
8133
+ <ng-container *ngIf="transactionTotal?.totalDiscountAmount">
8110
8134
  <span class="totals-discount-amount label" [textContent]="'DISCOUNT_AMOUNT' | localize"></span>
8111
- <span class="totals-discount-amount value" [class.transaction-negative-value]="transactionTotal?.discountAmount < 0" [textContent]="transactionTotal?.discountAmount | coCurrency: true"></span>
8135
+ <span class="totals-discount-amount value" [class.transaction-negative-value]="transactionTotal?.totalDiscountAmount < 0" [textContent]="transactionTotal?.totalDiscountAmount | coCurrency: true"></span>
8112
8136
  </ng-container>
8113
8137
  <ng-container *ngIf="transactionTotal?.transactionDiscountAmount">
8114
8138
  <span class="totals-discount label" [textContent]="'TRANSACTION_DISCOUNT' | localize"></span>
@@ -8250,7 +8274,7 @@ DialogTransactionHeaderDiscountComponent.decorators = [
8250
8274
  </div>
8251
8275
  <div class="transaction-discount-overview-item">
8252
8276
  <div class="title" [textContent]="'DISCOUNT' | localize"></div>
8253
- <div class="value" [class.transaction-negative-value]="transactionTotal.discountAmount < 0" [textContent]="transactionTotal.discountAmount | coCurrency"></div>
8277
+ <div class="value" [class.transaction-negative-value]="transactionTotal.totalDiscountAmount < 0" [textContent]="transactionTotal.totalDiscountAmount | coCurrency"></div>
8254
8278
  </div>
8255
8279
  <div class="transaction-discount-overview-item">
8256
8280
  <div class="title" [textContent]="'ASSEMBLY_COSTS' | localize"></div>
@@ -8258,7 +8282,7 @@ DialogTransactionHeaderDiscountComponent.decorators = [
8258
8282
  </div>
8259
8283
  <div class="transaction-discount-overview-item">
8260
8284
  <div class="title" [textContent]="'SURCHARGE_AMOUNT' | localize"></div>
8261
- <div class="value" [class.transaction-negative-value]="transactionTotal.surchargeAmount < 0" [textContent]="transactionTotal.surchargeAmount | coCurrency"></div>
8285
+ <div class="value" [class.transaction-negative-value]="transactionTotal.totalSurchargeAmount < 0" [textContent]="transactionTotal.totalSurchargeAmount | coCurrency"></div>
8262
8286
  </div>
8263
8287
  <div class="transaction-discount-overview-item">
8264
8288
  <div class="title" [textContent]="'DELIVERY_COSTS' | localize"></div>
@@ -8272,7 +8296,7 @@ DialogTransactionHeaderDiscountComponent.decorators = [
8272
8296
  </div>
8273
8297
  </co-dialog>
8274
8298
  <ng-template #dialogHeader>
8275
- <div class="dialog-header-title" [textContent]="'DISCOUNT_PRICE_INFORMATION' | localize"></div>
8299
+ <div class="co-transaction-dialog-header-title" [textContent]="'DISCOUNT_PRICE_INFORMATION' | localize"></div>
8276
8300
  </ng-template>
8277
8301
  `,
8278
8302
  encapsulation: ViewEncapsulation.None
@@ -8710,7 +8734,7 @@ TransactionLineImageAndDescriptionComponent.decorators = [
8710
8734
  <div class="transaction-line-image" [class.preview]="preview">
8711
8735
  <co-image-display [model]="image"></co-image-display>
8712
8736
  </div>
8713
- <div class="transaction-line-description">
8737
+ <div class="transaction-line-description" data-action="openSidePanel">
8714
8738
  <div class="description-wrapper">
8715
8739
  <co-transaction-line-description class="transaction-line-description-description"
8716
8740
  [transactionLine]="line"
@@ -8994,7 +9018,7 @@ TransactionArticleTextComponent.decorators = [
8994
9018
  </co-dialog>
8995
9019
 
8996
9020
  <ng-template #headerTemplate>
8997
- <span class="bold" [textContent]="header"></span>
9021
+ <span class="co-transaction-dialog-header-title" [textContent]="header"></span>
8998
9022
  </ng-template>
8999
9023
  <ng-template #footerTemplate>
9000
9024
  <div class="button-wrapper">
@@ -9723,7 +9747,7 @@ class TransactionBaseComponent {
9723
9747
  }
9724
9748
  set transaction(value) {
9725
9749
  this._transaction = value;
9726
- if (this._transaction) {
9750
+ if (this._transaction && this._transaction.transactionInfo && this._transaction.transactionInfo.uuid) {
9727
9751
  if (this._transaction.transactionInfo) {
9728
9752
  this.transactionInfo = this._transaction.transactionInfo;
9729
9753
  this.isService = this._transaction.transactionInfo.transactionKind === TransactionKind.ServiceOrder;
@@ -9849,14 +9873,82 @@ TransactionEventService.decorators = [
9849
9873
  { type: Injectable, args: [{ providedIn: "root" },] }
9850
9874
  ];
9851
9875
 
9876
+ class TransactionReceiveGoodsService {
9877
+ constructor(_transactionService, _transactionEventService) {
9878
+ this._transactionService = _transactionService;
9879
+ this._transactionEventService = _transactionEventService;
9880
+ this.lines = [];
9881
+ this._subscriptions = [];
9882
+ this._subscriptions.push(this._transactionEventService.commitReceivePurchaseOrders.subscribe((value => {
9883
+ this.handleReceiveSelectedPurchaseOrders(value);
9884
+ })), this._transactionEventService.transactionLineChanged.subscribe((value) => {
9885
+ this._handleTransactionLineChanged(value);
9886
+ }));
9887
+ }
9888
+ handleReceiveSelectedPurchaseOrders(value) {
9889
+ return __awaiter(this, void 0, void 0, function* () {
9890
+ const selectedLines = this.lines.filter((line) => line.selected && line.quantityToReceive > 0);
9891
+ if (selectedLines.length > 0) {
9892
+ const receivedGoodsRequest = new ReceiveGoodsForPurchaseOrderRequest();
9893
+ receivedGoodsRequest.transId = selectedLines[0].transId;
9894
+ receivedGoodsRequest.receivedDate = value.date;
9895
+ receivedGoodsRequest.packingSlipNr = value.id;
9896
+ receivedGoodsRequest.purchaseOrderLineReceiptDetailsDTOS = [];
9897
+ selectedLines.forEach((line) => {
9898
+ const detail = new PurchaseOrderLineReceiptDetails();
9899
+ detail.lineNr = line.lineNr;
9900
+ detail.quantityToReceive = line.quantityToReceive;
9901
+ detail.warehouseNr = line.warehouseNumber;
9902
+ detail.locationNr = line.locationNr;
9903
+ receivedGoodsRequest.purchaseOrderLineReceiptDetailsDTOS.push(detail);
9904
+ });
9905
+ const response = yield this._transactionService.receiveGoodsForPurchaseOrder(receivedGoodsRequest);
9906
+ if (response) {
9907
+ this._handleAfterCommitReceivedOrders(selectedLines);
9908
+ }
9909
+ return !!response;
9910
+ }
9911
+ return false;
9912
+ });
9913
+ }
9914
+ _handleAfterCommitReceivedOrders(selectedLines) {
9915
+ selectedLines.forEach((line) => {
9916
+ line.quantityReceived += line.quantityToReceive;
9917
+ line.quantityToReceive -= line.quantityToReceive;
9918
+ this._transactionEventService.selectAllLines.next(false);
9919
+ });
9920
+ }
9921
+ _handleTransactionLineChanged(change) {
9922
+ const receiveGoodViewModel = this.lines.find((line) => line.lineNr === change.transactionLine.lineNr);
9923
+ if (receiveGoodViewModel) {
9924
+ receiveGoodViewModel.quantityToReceive = change.goodsReceiptStatus.quantityToReceive;
9925
+ receiveGoodViewModel.quantityReceived = change.goodsReceiptStatus.quantityReceived;
9926
+ }
9927
+ }
9928
+ }
9929
+ TransactionReceiveGoodsService.ɵprov = i0.ɵɵdefineInjectable({ factory: function TransactionReceiveGoodsService_Factory() { return new TransactionReceiveGoodsService(i0.ɵɵinject(TransactionService), i0.ɵɵinject(TransactionEventService)); }, token: TransactionReceiveGoodsService, providedIn: "root" });
9930
+ TransactionReceiveGoodsService.decorators = [
9931
+ { type: Injectable, args: [{
9932
+ providedIn: "root"
9933
+ },] }
9934
+ ];
9935
+ TransactionReceiveGoodsService.ctorParameters = () => [
9936
+ { type: TransactionService },
9937
+ { type: TransactionEventService }
9938
+ ];
9939
+
9852
9940
  class TransactionQuickAccessReceivedGoodsComponent extends TransactionBaseComponent {
9853
- constructor(iconService, _transactionService, _transactionEventService) {
9941
+ constructor(iconService, _transactionService, _transactionEventService, _receiveGoodsService) {
9854
9942
  super(_transactionService);
9855
9943
  this.iconService = iconService;
9856
9944
  this._transactionService = _transactionService;
9857
9945
  this._transactionEventService = _transactionEventService;
9946
+ this._receiveGoodsService = _receiveGoodsService;
9858
9947
  this.icons = Icon;
9859
9948
  this.localCheckboxState = true;
9949
+ this.awaitingResult = false;
9950
+ this.resultSuccessful = false;
9951
+ this.iconVisible = true;
9860
9952
  // Route through event service instead
9861
9953
  this.checkboxValueChanged = new EventEmitter();
9862
9954
  }
@@ -9868,7 +9960,16 @@ class TransactionQuickAccessReceivedGoodsComponent extends TransactionBaseCompon
9868
9960
  this.commitDate = new Date(timeElapsed);
9869
9961
  }
9870
9962
  handleCommitEvent(value) {
9871
- this._transactionEventService.commitReceivePurchaseOrders.next(value);
9963
+ return __awaiter(this, void 0, void 0, function* () {
9964
+ this.iconVisible = false;
9965
+ this.resultSuccessful = false;
9966
+ this.awaitingResult = true;
9967
+ this.resultSuccessful = yield this._receiveGoodsService.handleReceiveSelectedPurchaseOrders(value);
9968
+ this.awaitingResult = false;
9969
+ setTimeout(() => {
9970
+ this.iconVisible = true;
9971
+ }, 600);
9972
+ });
9872
9973
  }
9873
9974
  handleSelectAllLines(value) {
9874
9975
  this._transactionEventService.selectAllLines.next(value);
@@ -9893,8 +9994,9 @@ TransactionQuickAccessReceivedGoodsComponent.decorators = [
9893
9994
  ></co-input-checkbox>
9894
9995
  <div class="buttons">
9895
9996
  <div class="button-wrapper receive" (click)="handleCommitEvent({date: this.commitDate, id: this.commitReferenceId})">
9896
- <co-icon class="button-icon" [iconData]="iconService.getIcon(icons.InboxInSolid)"></co-icon>
9897
- <span class="button-title" [textContent]="'INSIDE' | localize"></span>
9997
+ <co-checkmark-overlay [successful]="resultSuccessful" [visible]="awaitingResult"></co-checkmark-overlay>
9998
+ <co-icon class="button-icon" [iconData]="iconService.getIcon(icons.GearSolid)" [class.hidden]="!iconVisible"></co-icon>
9999
+ <!-- <span class="button-title" [textContent]="'INSIDE' | localize"></span>-->
9898
10000
  </div>
9899
10001
  <div class="button-wrapper print">
9900
10002
  <co-icon class="button-icon" [iconData]="iconService.getIcon(icons.PrintSolid)"></co-icon>
@@ -9908,7 +10010,8 @@ TransactionQuickAccessReceivedGoodsComponent.decorators = [
9908
10010
  TransactionQuickAccessReceivedGoodsComponent.ctorParameters = () => [
9909
10011
  { type: IconCacheService },
9910
10012
  { type: TransactionService },
9911
- { type: TransactionEventService }
10013
+ { type: TransactionEventService },
10014
+ { type: TransactionReceiveGoodsService }
9912
10015
  ];
9913
10016
  TransactionQuickAccessReceivedGoodsComponent.propDecorators = {
9914
10017
  commitDate: [{ type: Input }],
@@ -10271,22 +10374,22 @@ TransactionLineActionButtonsComponent.decorators = [
10271
10374
  (clickOutside)="handleShowHideClick()">
10272
10375
 
10273
10376
  <co-button
10274
- class="transaction-line-overview-button circle action-button"
10275
- [class.show]="showActionButtonsDelayed"
10276
- [iconData]="iconCacheService.getIcon(icons.TextSizeSolid)"
10277
- (click)="handleTransactionArticleTextOverview()"></co-button>
10377
+ class="transaction-line-overview-button circle action-button"
10378
+ [class.show]="showActionButtonsDelayed"
10379
+ [iconData]="iconCacheService.getIcon(icons.TextSizeSolid)"
10380
+ (click)="handleTransactionArticleTextOverview()"></co-button>
10278
10381
 
10279
10382
  <co-button
10280
- class="transaction-line-add-text-button circle action-button"
10281
- [class.show]="showActionButtonsDelayed"
10282
- [iconData]="iconCacheService.getIcon(icons.TextSolid)"
10283
- (click)="handleTransactionArticleText()"></co-button>
10383
+ class="transaction-line-add-text-button circle action-button"
10384
+ [class.show]="showActionButtonsDelayed"
10385
+ [iconData]="iconCacheService.getIcon(icons.TextSolid)"
10386
+ (click)="handleTransactionArticleText()"></co-button>
10284
10387
 
10285
10388
  <co-button
10286
- class="transaction-line-show-sidebar-button circle action-button"
10287
- [class.show]="showActionButtonsDelayed"
10288
- [iconData]="iconCacheService.getIcon(icons.ObjectIntersectSolid)"
10289
- (click)="handleShowSidePanel()"></co-button>
10389
+ class="transaction-line-show-sidebar-button circle action-button"
10390
+ [class.show]="showActionButtonsDelayed"
10391
+ [iconData]="iconCacheService.getIcon(icons.ObjectIntersectSolid)"
10392
+ (click)="handleShowSidePanel()"></co-button>
10290
10393
  </div>
10291
10394
  </div>
10292
10395
 
@@ -10650,60 +10753,6 @@ TransactionQuickAccessOrderDeliveryComponent.propDecorators = {
10650
10753
  showClass: [{ type: HostBinding, args: ["class.co-transaction-quick-access-order-delivery",] }]
10651
10754
  };
10652
10755
 
10653
- class TransactionReceiveGoodsService {
10654
- constructor(_transactionService, _transactionEventService) {
10655
- this._transactionService = _transactionService;
10656
- this._transactionEventService = _transactionEventService;
10657
- this.lines = [];
10658
- this._subscriptions = [];
10659
- this._subscriptions.push(this._transactionEventService.commitReceivePurchaseOrders.subscribe((value => {
10660
- this.handleReceiveSelectedPurchaseOrders(value);
10661
- })));
10662
- }
10663
- handleReceiveSelectedPurchaseOrders(value) {
10664
- const selectedLines = this.lines.filter((line) => line.selected && line.quantityToReceive > 0);
10665
- if (selectedLines.length > 0) {
10666
- const receivedGoodsRequest = new ReceiveGoodsForPurchaseOrderRequest();
10667
- receivedGoodsRequest.transId = selectedLines[0].transId;
10668
- receivedGoodsRequest.receivedDate = value.date;
10669
- receivedGoodsRequest.packingSlipNr = value.id;
10670
- receivedGoodsRequest.purchaseOrderLineReceiptDetailsDTOS = [];
10671
- selectedLines.forEach((line) => {
10672
- const detail = new PurchaseOrderLineReceiptDetails();
10673
- detail.lineNr = line.lineNr;
10674
- detail.quantityToReceive = line.quantityToReceive;
10675
- detail.warehouseNr = line.warehouseNumber;
10676
- detail.locationNr = line.locationNr;
10677
- receivedGoodsRequest.purchaseOrderLineReceiptDetailsDTOS.push(detail);
10678
- });
10679
- this._transactionService.receiveGoodsForPurchaseOrder(receivedGoodsRequest).then((response) => {
10680
- if (response) {
10681
- this._handleAfterCommitReceivedOrders(selectedLines);
10682
- }
10683
- });
10684
- }
10685
- }
10686
- _handleAfterCommitReceivedOrders(selectedLines) {
10687
- selectedLines.forEach((line) => {
10688
- line.quantityReceived += line.quantityToReceive;
10689
- line.quantityToReceive -= line.quantityToReceive;
10690
- if (line.quantityToReceive !== 0) {
10691
- line.selected = false;
10692
- }
10693
- });
10694
- }
10695
- }
10696
- TransactionReceiveGoodsService.ɵprov = i0.ɵɵdefineInjectable({ factory: function TransactionReceiveGoodsService_Factory() { return new TransactionReceiveGoodsService(i0.ɵɵinject(TransactionService), i0.ɵɵinject(TransactionEventService)); }, token: TransactionReceiveGoodsService, providedIn: "root" });
10697
- TransactionReceiveGoodsService.decorators = [
10698
- { type: Injectable, args: [{
10699
- providedIn: "root"
10700
- },] }
10701
- ];
10702
- TransactionReceiveGoodsService.ctorParameters = () => [
10703
- { type: TransactionService },
10704
- { type: TransactionEventService }
10705
- ];
10706
-
10707
10756
  class ReceiveGoodViewModel extends TransactionLineInfo {
10708
10757
  }
10709
10758
 
@@ -10726,7 +10775,7 @@ class TransactionReceiveGoodsLineComponent extends TransactionLinesLineBaseCompo
10726
10775
  this.allowPartialDelivery = this.service.currentTransaction.transactionInfo.allowPartialDelivery;
10727
10776
  this._initViewModel();
10728
10777
  this._subscriptions.push(this._transactionEventService.selectAllLines.subscribe((value) => {
10729
- this.viewModel.selected = value;
10778
+ this.viewModel.selected = this.viewModel.quantityReceived === this.viewModel.amount ? false : value;
10730
10779
  }), this.lineVisible.subscribe(() => this.handleRowVisible()));
10731
10780
  }
10732
10781
  ngOnDestroy() {
@@ -10739,7 +10788,6 @@ class TransactionReceiveGoodsLineComponent extends TransactionLinesLineBaseCompo
10739
10788
  this.viewModel.quantityReceived = 0;
10740
10789
  this.viewModel.lineNr = this.line.lineNr;
10741
10790
  this.viewModel.transId = this.transactionId;
10742
- this.viewModel.selected = true;
10743
10791
  }
10744
10792
  handleRowVisible() {
10745
10793
  return __awaiter(this, void 0, void 0, function* () {
@@ -10747,6 +10795,7 @@ class TransactionReceiveGoodsLineComponent extends TransactionLinesLineBaseCompo
10747
10795
  const goodsReceiptStatus = yield this._transactionService.getGoodsReceiptStatus(this.transactionId, this.line.lineNr);
10748
10796
  this.viewModel.quantityToReceive = goodsReceiptStatus.quantityToReceive;
10749
10797
  this.viewModel.quantityReceived = goodsReceiptStatus.quantityReceived;
10798
+ this.viewModel.selected = this.viewModel.quantityReceived !== this.viewModel.amount && !this.viewModel.isSerialNrRequired && !this.viewModel.isBatchNrRequired;
10750
10799
  this._transactionReceiveGoodsService.lines.push(this.viewModel);
10751
10800
  }
10752
10801
  });
@@ -10754,27 +10803,27 @@ class TransactionReceiveGoodsLineComponent extends TransactionLinesLineBaseCompo
10754
10803
  changeLineAmount(amount) {
10755
10804
  }
10756
10805
  handleLineClicked(mouseClick) {
10806
+ const target = mouseClick.target;
10807
+ if (target && target.dataset && target.dataset['action'] && target.dataset['action'] === 'openSidePanel') {
10808
+ this._transactionEventService.openSidePanel.next(this.line);
10809
+ }
10757
10810
  }
10758
10811
  }
10759
10812
  TransactionReceiveGoodsLineComponent.decorators = [
10760
10813
  { type: Component, args: [{
10761
10814
  selector: "co-transaction-receive-goods-line",
10762
10815
  template: `
10763
- <co-transaction-base-line [line]="viewModel" [preview]="preview" [actionButtons]="false" (click)="handleLineClicked($event)">
10764
- <div class="line-content-wrapper">
10765
- <co-transaction-line-warehouse-button [transactionLine]="viewModel" [transactionInfo]="service.currentTransaction.transactionInfo"></co-transaction-line-warehouse-button>
10766
- <co-transaction-line-warehouse-location-button [readonly]="viewModel.quantityReceived === viewModel.amount" [line]="viewModel"></co-transaction-line-warehouse-location-button>
10816
+ <co-transaction-base-line [line]="viewModel" [preview]="preview" [actionButtons]="false" (click)="handleLineClicked($event)" observeVisibility (visible)="handleRowVisible()">
10817
+ <div class="line-content-wrapper" data-action="openSidePanel">
10818
+ <co-transaction-line-warehouse-button [transactionLine]="viewModel" [readonly]="viewModel.quantityReceived === viewModel.amount" [transactionInfo]="service.currentTransaction.transactionInfo"></co-transaction-line-warehouse-button>
10819
+ <co-transaction-line-warehouse-location-button [readonly]="viewModel.quantityReceived === viewModel.amount || !viewModel.isLocationRequired" [line]="viewModel"></co-transaction-line-warehouse-location-button>
10767
10820
  <co-editable-label class="transaction-line-totals-total price"
10768
10821
  [model]="viewModel.amount.toString() + 'x'"
10769
10822
  [readonly]="true"
10770
10823
  ></co-editable-label>
10771
- <co-editable-label class="transaction-line-totals-total price"
10772
- [class.fully-delivered]="viewModel.quantityReceived === viewModel.amount"
10773
- [class.partially-delivered]="viewModel.quantityReceived !== viewModel.amount"
10774
- [model]="(viewModel.amount - viewModel.quantityDelivered).toString()"
10775
- [readonly]="true"
10776
- ></co-editable-label>
10777
- <div class="transaction-line-totals-amount">
10824
+ <div class="transaction-line-totals-amount"
10825
+ [class.fully-delivered]="viewModel.quantityReceived === viewModel.amount"
10826
+ [class.partially-delivered]="viewModel.quantityReceived !== viewModel.amount">
10778
10827
  <co-input-number-picker class="amount-number-picker"
10779
10828
  [(model)]="viewModel.quantityToReceive"
10780
10829
  [min]="!allowPartialDelivery ? viewModel.amount : 1"
@@ -11149,12 +11198,15 @@ class TransactionLinesComponent {
11149
11198
  }
11150
11199
  _handleCategory() {
11151
11200
  return __awaiter(this, void 0, void 0, function* () {
11152
- this.hasComponent = !!this._mappingService.getTransactionLineComponent(this.service.currentTransaction.transactionInfo.transactionKind, this._activeCategory);
11153
11201
  if (this._activeCategory === TransactionTypeCategory.PurchaseOrderReceivedGoods) {
11154
11202
  if (this.transactionLines.find(l => l.isLocationRequired)) {
11155
11203
  const response = yield this._dialogService.showWarehouseLocation(this.transactionLines[0].warehouseNumber, false, false, true);
11156
11204
  if (response.button === AppPopupButtonType.Ok) {
11157
- this._receiveGoodsService.lines.forEach(line => line.locationNr = response.output);
11205
+ this._receiveGoodsService.lines.forEach(line => {
11206
+ if (line.isLocationRequired && !line.isBatchNrRequired && !line.isSerialNrRequired && line.quantityToReceive > 0) {
11207
+ line.locationNr = response.output;
11208
+ }
11209
+ });
11158
11210
  }
11159
11211
  }
11160
11212
  }
@@ -11178,7 +11230,7 @@ TransactionLinesComponent.decorators = [
11178
11230
  [class.show]="line === selectedTransactionLine && transactionLines.length > 1" cdkDragHandle
11179
11231
  [iconData]="iconCacheService.getIcon(icons.GripDotsVerticalSolid)">
11180
11232
  </co-icon>
11181
- <co-transaction-line *ngIf="hasComponent"
11233
+ <co-transaction-line
11182
11234
  [transactionType]="service.currentTransaction.transactionInfo.transactionKind"
11183
11235
  [activeCategory]="activeCategory"
11184
11236
  [transactionId]="transactionId"
@@ -11580,11 +11632,18 @@ DeliveryTypeTileModule.decorators = [
11580
11632
  },] }
11581
11633
  ];
11582
11634
 
11635
+ class PaymentViewmodel {
11636
+ constructor(method) {
11637
+ this.payment = method;
11638
+ }
11639
+ }
11640
+
11583
11641
  class PaymentService {
11584
- constructor(_adapterService, _selectMultipleCacheService, _transactionService) {
11642
+ constructor(_adapterService, _selectMultipleCacheService, _transactionService, _sharedService) {
11585
11643
  this._adapterService = _adapterService;
11586
11644
  this._selectMultipleCacheService = _selectMultipleCacheService;
11587
11645
  this._transactionService = _transactionService;
11646
+ this._sharedService = _sharedService;
11588
11647
  }
11589
11648
  updateHeaderTransactionToDownPay(uuid, downPayment) {
11590
11649
  return __awaiter(this, void 0, void 0, function* () {
@@ -11620,6 +11679,11 @@ class PaymentService {
11620
11679
  return this._adapterService.getPaymentLinkStatus(paymentLinkUUID);
11621
11680
  });
11622
11681
  }
11682
+ getDownPaymentInfo(uuid) {
11683
+ return __awaiter(this, void 0, void 0, function* () {
11684
+ return this._adapterService.getDownPaymentInfo(uuid);
11685
+ });
11686
+ }
11623
11687
  getPaymentMethods() {
11624
11688
  return __awaiter(this, void 0, void 0, function* () {
11625
11689
  return this._selectMultipleCacheService.requestCache(PaymentMethod, () => {
@@ -11627,8 +11691,33 @@ class PaymentService {
11627
11691
  }).getValue();
11628
11692
  });
11629
11693
  }
11694
+ getPaymentMethodsViewModels() {
11695
+ return __awaiter(this, void 0, void 0, function* () {
11696
+ const result = [];
11697
+ const methods = yield this.getPaymentMethods();
11698
+ methods.forEach((m) => __awaiter(this, void 0, void 0, function* () {
11699
+ const paymentViewModel = new PaymentViewmodel(m);
11700
+ const imageDocs = m.documents.filter(d => d.isImageDocument());
11701
+ if (imageDocs && imageDocs.length) {
11702
+ const image = imageDocs[0];
11703
+ if (image.filePath) {
11704
+ paymentViewModel.image = image.filePath;
11705
+ }
11706
+ else {
11707
+ if (!image.thumbnailBody) {
11708
+ const content = yield this._sharedService.getDocumentContent(image.documentId);
11709
+ image.thumbnailBody = content;
11710
+ }
11711
+ paymentViewModel.image = image.thumbnailBodyAsDataUri;
11712
+ }
11713
+ }
11714
+ result.push(paymentViewModel);
11715
+ }));
11716
+ return result;
11717
+ });
11718
+ }
11630
11719
  }
11631
- PaymentService.ɵprov = i0.ɵɵdefineInjectable({ factory: function PaymentService_Factory() { return new PaymentService(i0.ɵɵinject(TransactionConnectorAdapterService), i0.ɵɵinject(SelectMultipleCacheService), i0.ɵɵinject(TransactionService)); }, token: PaymentService, providedIn: "root" });
11720
+ PaymentService.ɵprov = i0.ɵɵdefineInjectable({ factory: function PaymentService_Factory() { return new PaymentService(i0.ɵɵinject(TransactionConnectorAdapterService), i0.ɵɵinject(SelectMultipleCacheService), i0.ɵɵinject(TransactionService), i0.ɵɵinject(SharedService)); }, token: PaymentService, providedIn: "root" });
11632
11721
  PaymentService.decorators = [
11633
11722
  { type: Injectable, args: [{
11634
11723
  providedIn: "root"
@@ -11637,12 +11726,14 @@ PaymentService.decorators = [
11637
11726
  PaymentService.ctorParameters = () => [
11638
11727
  { type: TransactionConnectorAdapterService },
11639
11728
  { type: SelectMultipleCacheService },
11640
- { type: TransactionService }
11729
+ { type: TransactionService },
11730
+ { type: SharedService }
11641
11731
  ];
11642
11732
 
11643
- class PaymentViewmodel {
11644
- constructor(method) {
11645
- this.payment = method;
11733
+ class DownPaymentViewModel {
11734
+ constructor(downPayment, paymentMethodViewmodel) {
11735
+ this.downPayment = downPayment;
11736
+ this.paymentMethod = paymentMethodViewmodel;
11646
11737
  }
11647
11738
  }
11648
11739
 
@@ -11652,27 +11743,38 @@ class PaymentComponent {
11652
11743
  this._sharedService = _sharedService;
11653
11744
  this._paymentService = _paymentService;
11654
11745
  this.icons = Icon;
11655
- this.amount = 0;
11656
11746
  this.payed = new EventEmitter();
11657
11747
  this.paymentMethodIdx = 0;
11658
11748
  this.cashRegisterIdx = 0;
11659
11749
  this.paymentMethods = [];
11750
+ this.downPayments = [];
11660
11751
  this.cashRegisters = [];
11661
11752
  this.showCashRegisters = false;
11662
11753
  this.showKeyPad = false;
11663
11754
  this.showPspQrCode = false;
11664
11755
  this.showLoader = true;
11756
+ this.showLoaderDownPayments = true;
11757
+ this.amountToPay = 0;
11758
+ this._amount = 0;
11665
11759
  this._paymentStatusPollIntervalMs = 5000;
11666
11760
  this._paymentStatusMaxPollInterval = 10;
11667
11761
  this._paymentStatusPollIntervalCount = 0;
11668
11762
  }
11763
+ set amount(value) {
11764
+ this._amount = value;
11765
+ this.amountToPay = this._amount;
11766
+ }
11767
+ get amount() {
11768
+ return this._amount;
11769
+ }
11669
11770
  showClass() {
11670
11771
  return true;
11671
11772
  }
11672
11773
  ngOnInit() {
11673
- this._paymentService.updateHeaderTransactionToDownPay(this.transactionUuid, this.amount).then(() => {
11774
+ this._paymentService.updateHeaderTransactionToDownPay(this.transactionUuid, this.amountToPay).then(() => {
11674
11775
  this._getPaymentMethods().then(() => {
11675
11776
  this.showLoader = false;
11777
+ this._getDownpaymentInfo();
11676
11778
  this._prepareCashRegisters();
11677
11779
  });
11678
11780
  });
@@ -11691,7 +11793,7 @@ class PaymentComponent {
11691
11793
  const currentPaymentViewModel = this.paymentMethods[this.paymentMethodIdx];
11692
11794
  this.currentPaymentMethod = currentPaymentViewModel.payment;
11693
11795
  if (this.currentPaymentMethod && this.currentPaymentMethod.externalSourceId) { // psp payment
11694
- this._paymentService.createIonePaymentLinkAndQRCode(this.transactionUuid, this.amount, this.currentPaymentMethod.code).then((response) => {
11796
+ this._paymentService.createIonePaymentLinkAndQRCode(this.transactionUuid, this.amountToPay, this.currentPaymentMethod.code).then((response) => {
11695
11797
  this._paymentResult = response;
11696
11798
  if (this._paymentResult && this._paymentResult.imageBase64) {
11697
11799
  this.qrCodeImage = this._dataUriToBase64(this._paymentResult.imageBase64, 'image/png');
@@ -11703,14 +11805,30 @@ class PaymentComponent {
11703
11805
  }
11704
11806
  else {
11705
11807
  const currentCashRegister = this.cashRegisters[this.cashRegisterIdx];
11706
- this._paymentService.registerSalesOrderPayment(this.transactionUuid, this.amount, this.currencyId, this.currentPaymentMethod.code, currentCashRegister.group).then(() => {
11808
+ this._paymentService.registerSalesOrderPayment(this.transactionUuid, this.amountToPay, this.currencyId, this.currentPaymentMethod.code, currentCashRegister.group).then(() => __awaiter(this, void 0, void 0, function* () {
11707
11809
  this.showKeyPad = false;
11708
- this.payed.emit();
11709
- });
11810
+ yield this._getDownpaymentInfo();
11811
+ if (this.amountToPay === 0) {
11812
+ this.payed.emit();
11813
+ }
11814
+ }));
11710
11815
  }
11711
11816
  }
11712
11817
  handleKeyPadModelChange(model) {
11713
- this.amount = model;
11818
+ this.amountToPay = model;
11819
+ }
11820
+ _getDownpaymentInfo() {
11821
+ this.downPayments.length = 0;
11822
+ this._paymentService.getDownPaymentInfo(this.transactionUuid).then((info) => {
11823
+ this.amountToPay = (info.toDownPayAmount ? info.toDownPayAmount : 0) - (info.payedDownAmount ? info.payedDownAmount : 0);
11824
+ if (info.downPayments) {
11825
+ info.downPayments.forEach((dp) => {
11826
+ const paymentMethod = this.paymentMethods.find(pm => pm.payment.code === dp.paymentMethodCode);
11827
+ this.downPayments.push(new DownPaymentViewModel(dp, paymentMethod));
11828
+ });
11829
+ }
11830
+ this.showLoaderDownPayments = false;
11831
+ });
11714
11832
  }
11715
11833
  _dataUriToBase64(uri, mimeType) {
11716
11834
  return uri ? "data:" + mimeType + ";base64," + uri : "";
@@ -11726,7 +11844,10 @@ class PaymentComponent {
11726
11844
  if (status.payedDate) {
11727
11845
  this._clearInterval();
11728
11846
  this.showPspQrCode = false;
11729
- this.payed.emit();
11847
+ yield this._getDownpaymentInfo();
11848
+ if (this.amountToPay === 0) {
11849
+ this.payed.emit();
11850
+ }
11730
11851
  }
11731
11852
  this._paymentStatusPollIntervalCount++;
11732
11853
  }
@@ -11763,26 +11884,12 @@ class PaymentComponent {
11763
11884
  });
11764
11885
  }
11765
11886
  _getPaymentMethods() {
11766
- this.paymentMethods.length = 0;
11767
- return this._paymentService.getPaymentMethods().then((methods) => {
11768
- methods.forEach((m) => __awaiter(this, void 0, void 0, function* () {
11769
- const paymentViewModel = new PaymentViewmodel(m);
11770
- const imageDocs = m.documents.filter(d => d.isImageDocument());
11771
- if (imageDocs && imageDocs.length) {
11772
- const image = imageDocs[0];
11773
- if (image.filePath) {
11774
- paymentViewModel.image = image.filePath;
11775
- }
11776
- else {
11777
- if (!image.thumbnailBody) {
11778
- const content = yield this._sharedService.getDocumentContent(image.documentId);
11779
- image.thumbnailBody = content;
11780
- }
11781
- paymentViewModel.image = image.thumbnailBodyAsDataUri;
11782
- }
11783
- }
11784
- this.paymentMethods.push(paymentViewModel);
11785
- }));
11887
+ return new Promise((resolve) => {
11888
+ this.paymentMethods.length = 0;
11889
+ this._paymentService.getPaymentMethodsViewModels().then((methods) => {
11890
+ this.paymentMethods = methods.slice();
11891
+ resolve();
11892
+ });
11786
11893
  });
11787
11894
  }
11788
11895
  }
@@ -11797,7 +11904,7 @@ PaymentComponent.decorators = [
11797
11904
  <span class="payment-header-title" [textContent]="'PAYMENT_METHOD' | localize:false"></span>
11798
11905
  </div>
11799
11906
  <div class="payment-methods">
11800
- <transaction-loader *ngIf="showLoader"></transaction-loader>
11907
+ <transaction-loader class="loader" *ngIf="showLoader"></transaction-loader>
11801
11908
  <ng-container *ngIf="!showLoader">
11802
11909
  <co-payment-tile *ngFor="let paymentMethod of paymentMethods; let index = index"
11803
11910
  [image]="paymentMethod.image"
@@ -11823,15 +11930,18 @@ PaymentComponent.decorators = [
11823
11930
  <div class="payment-to-pay-wrapper">
11824
11931
  <div class="payment-to-pay">
11825
11932
  <div [textContent]="'TO_PAY' | localize"></div>
11826
- <div class="payment-amount" [textContent]="amount | priceDisplay"></div>
11933
+ <div class="payment-amount" [textContent]="amountToPay === 0 ? amountToPay : (amountToPay | priceDisplay)"></div>
11827
11934
  </div>
11828
- <div class="payment-to-pay-button">
11829
- <co-button [label]="'PAY' | localize" (click)="handlePayment()"></co-button>
11935
+ <div class="payment-downpayment" [class.no-display]="!downPayments || downPayments.length === 0">
11936
+ <co-down-payment [transactionUuid]="transactionUuid" [downPayments]="downPayments" [showLoader]="showLoaderDownPayments"></co-down-payment>
11937
+ </div>
11938
+ <div class="payment-to-pay-button" [class.no-downpayments]="!downPayments || downPayments.length === 0">
11939
+ <co-button [label]="'PAY' | localize" (click)="handlePayment()" [disabled]="amountToPay === 0"></co-button>
11830
11940
  </div>
11831
11941
  <co-key-pad class="payment-to-pay-keypad"
11832
11942
  [showValue]="false"
11833
11943
  [emitModelChangeOnEnter]="false"
11834
- [model]="amount"
11944
+ [model]="amountToPay"
11835
11945
  (modelChange)="handleKeyPadModelChange($event)"
11836
11946
  (enterClick)="handlePayment()"
11837
11947
  ></co-key-pad>
@@ -11950,6 +12060,93 @@ PaymentQrCodeModule.decorators = [
11950
12060
  },] }
11951
12061
  ];
11952
12062
 
12063
+ class DownPaymentComponent {
12064
+ constructor(_paymentService) {
12065
+ this._paymentService = _paymentService;
12066
+ this.showLoader = true;
12067
+ this.paymentMethods = [];
12068
+ }
12069
+ showClass() {
12070
+ return true;
12071
+ }
12072
+ ngOnInit() {
12073
+ this._prepareData();
12074
+ }
12075
+ _getDownpaymentInfo() {
12076
+ this.downPayments.length = 0;
12077
+ this._paymentService.getDownPaymentInfo(this.transactionUuid).then((info) => {
12078
+ if (info.downPayments) {
12079
+ info.downPayments.forEach((dp) => {
12080
+ const paymentMethod = this.paymentMethods.find(pm => pm.payment.code === dp.paymentMethodCode);
12081
+ this.downPayments.push(new DownPaymentViewModel(dp, paymentMethod));
12082
+ });
12083
+ }
12084
+ });
12085
+ }
12086
+ _prepareData() {
12087
+ if (!this.downPayments) {
12088
+ this.downPayments = [];
12089
+ this.showLoader = true;
12090
+ this.paymentMethods.length = 0;
12091
+ this._paymentService.getPaymentMethodsViewModels().then((methods) => {
12092
+ this.paymentMethods = methods.slice();
12093
+ this._getDownpaymentInfo();
12094
+ this.showLoader = false;
12095
+ });
12096
+ }
12097
+ }
12098
+ }
12099
+ DownPaymentComponent.decorators = [
12100
+ { type: Component, args: [{
12101
+ selector: "co-down-payment",
12102
+ template: `
12103
+ <transaction-loader class="loader" *ngIf="showLoader"></transaction-loader>
12104
+ <div class="down-payment-payments-title" [textContent]="'PAYMENTS_MADE' | localize" *ngIf="downPayments && downPayments.length > 0"></div>
12105
+ <div class="down-payment-payments-wrapper">
12106
+ <div class="down-payment-payments" *ngFor="let payment of downPayments">
12107
+ <co-payment-tile
12108
+ [image]="payment.paymentMethod.image"
12109
+ [description]="payment.paymentMethod.payment.description"
12110
+ ></co-payment-tile>
12111
+ <div class="down-payment-amount-wrapper">
12112
+ <div class="down-payment-amount" [textContent]="payment.downPayment.downPaymentAmount | coCurrency"></div>
12113
+ <div class="down-payment-date" [textContent]="payment.downPayment.date | date:'d MMMM yyyy'"></div>
12114
+ </div>
12115
+ </div>
12116
+ </div>
12117
+ `,
12118
+ encapsulation: ViewEncapsulation.None
12119
+ },] }
12120
+ ];
12121
+ DownPaymentComponent.ctorParameters = () => [
12122
+ { type: PaymentService }
12123
+ ];
12124
+ DownPaymentComponent.propDecorators = {
12125
+ transactionUuid: [{ type: Input }],
12126
+ downPayments: [{ type: Input }],
12127
+ showLoader: [{ type: Input }],
12128
+ showClass: [{ type: HostBinding, args: ["class.co-down-payment",] }]
12129
+ };
12130
+
12131
+ class DownPaymentModule {
12132
+ }
12133
+ DownPaymentModule.decorators = [
12134
+ { type: NgModule, args: [{
12135
+ imports: [
12136
+ CommonModule,
12137
+ CoreModule,
12138
+ PipeModule,
12139
+ PaymentTileModule
12140
+ ],
12141
+ declarations: [
12142
+ DownPaymentComponent
12143
+ ],
12144
+ exports: [
12145
+ DownPaymentComponent
12146
+ ]
12147
+ },] }
12148
+ ];
12149
+
11953
12150
  class PaymentModule {
11954
12151
  }
11955
12152
  PaymentModule.decorators = [
@@ -11963,7 +12160,8 @@ PaymentModule.decorators = [
11963
12160
  KeyPadModule,
11964
12161
  CoDialogModule,
11965
12162
  ButtonModule,
11966
- PaymentQrCodeModule
12163
+ PaymentQrCodeModule,
12164
+ DownPaymentModule
11967
12165
  ],
11968
12166
  declarations: [
11969
12167
  PaymentComponent
@@ -12409,7 +12607,7 @@ RelationAddressesComponent.decorators = [
12409
12607
  ></co-relation-address>
12410
12608
  </co-form>
12411
12609
  <ng-template #templateHeader>
12412
- <div class="title" [textContent]="'NEW_ADDRESS' | localize"></div>
12610
+ <div class="co-transaction-dialog-header-title" [textContent]="'NEW_ADDRESS' | localize"></div>
12413
12611
  </ng-template>
12414
12612
  <ng-template #templateFooter>
12415
12613
  <div class="dialog-footer-button-wrapper">
@@ -13603,7 +13801,7 @@ DialogHeaderSearchComponent.decorators = [
13603
13801
  selector: "co-dialog-header-search",
13604
13802
  template: `
13605
13803
  <div class="dialog-header-search-wrapper">
13606
- <div class="dialog-header-search-title" [textContent]="title | localize"></div>
13804
+ <div class="co-transaction-dialog-header-title" [textContent]="title | localize"></div>
13607
13805
  <co-input-search [placeholder]="searchPlaceholder | localize" [noIcon]="true" (modelChange)="handleSearch($event)"></co-input-search>
13608
13806
  </div>
13609
13807
  `,
@@ -13872,8 +14070,8 @@ class TransactionHeaderDownpaymentPercentageComponent extends TransactionHeaderB
13872
14070
  }
13873
14071
  commitDownpaymentPercentage(amount) {
13874
14072
  return __awaiter(this, void 0, void 0, function* () {
13875
- if (this.transactionInfo.paymentInfo && this.transactionInfo.paymentInfo.toDownPayPercentage !== amount) {
13876
- const oldDownPayPercentage = this.transactionInfo.paymentInfo.toDownPayPercentage;
14073
+ if (this.transactionInfo && this.transactionInfo.toDownPayPercentage !== amount) {
14074
+ const oldDownPayPercentage = this.transactionInfo.toDownPayPercentage;
13877
14075
  const success = yield this._transactionService.updateHeaderTransactionDownpaymentPercentage(this.transactionInfo.uuid, amount);
13878
14076
  if (!success) {
13879
14077
  this.input.model = amount;
@@ -13891,13 +14089,13 @@ TransactionHeaderDownpaymentPercentageComponent.decorators = [
13891
14089
  { type: Component, args: [{
13892
14090
  selector: "co-transaction-header-downpayment-percentage",
13893
14091
  template: `
13894
- <span *ngIf="(!editMode || readonly) && !defaultEditMode" [textContent]="transactionInfo.paymentInfo?.toDownPayPercentage | append: '%'"></span>
14092
+ <span *ngIf="(!editMode || readonly) && !defaultEditMode" [textContent]="transactionInfo.toDownPayPercentage | append: '%'"></span>
13895
14093
  <co-input-text #input *ngIf="editMode || defaultEditMode"
13896
14094
  [type]="'number'"
13897
14095
  [placeholder]="showLabel ? ('DOWNPAYMENT_PERCENTAGE' | localize) : ''"
13898
14096
  [showSaveCancel]="!readonly"
13899
14097
  [readonly]="readonly"
13900
- [model]="transactionInfo.paymentInfo?.toDownPayPercentage"
14098
+ [model]="transactionInfo.toDownPayPercentage"
13901
14099
  (blur)="editMode = false"
13902
14100
  ></co-input-text>
13903
14101
  `,
@@ -13968,8 +14166,8 @@ class TransactionHeaderDownpaymentAmountComponent extends TransactionHeaderBaseC
13968
14166
  }
13969
14167
  commitDownpaymentAmount(amount) {
13970
14168
  return __awaiter(this, void 0, void 0, function* () {
13971
- if (this.transactionInfo.paymentInfo && this.transactionInfo.paymentInfo.toDownPayAmount !== amount) {
13972
- const oldDownPayPercentage = this.transactionInfo.paymentInfo.toDownPayAmount;
14169
+ if (this.transactionInfo && this.transactionInfo.toDownPayAmount !== amount) {
14170
+ const oldDownPayPercentage = this.transactionInfo.toDownPayAmount;
13973
14171
  const success = yield this._transactionService.updateHeaderTransactionDownpaymentAmount(this.transactionInfo.uuid, amount);
13974
14172
  if (!success) {
13975
14173
  this.input.model = amount;
@@ -13987,13 +14185,13 @@ TransactionHeaderDownpaymentAmountComponent.decorators = [
13987
14185
  { type: Component, args: [{
13988
14186
  selector: "co-transaction-header-downpayment-amount",
13989
14187
  template: `
13990
- <span *ngIf="(!editMode || readonly) && !defaultEditMode" [textContent]="transactionInfo.paymentInfo?.toDownPayAmount | coCurrency"></span>
14188
+ <span *ngIf="(!editMode || readonly) && !defaultEditMode" [textContent]="transactionInfo.toDownPayAmount | coCurrency"></span>
13991
14189
  <co-input-text #input *ngIf="editMode || defaultEditMode"
13992
14190
  [type]="'number'"
13993
14191
  [placeholder]="showLabel ? ('DOWNPAYMENT' | localize) : ''"
13994
14192
  [showSaveCancel]="!readonly"
13995
14193
  [readonly]="readonly"
13996
- [model]="transactionInfo.paymentInfo?.toDownPayAmount"
14194
+ [model]="transactionInfo.toDownPayAmount"
13997
14195
  (blur)="editMode = false"
13998
14196
  ></co-input-text>
13999
14197
  `,
@@ -14584,9 +14782,10 @@ TransactionLineSidePanelComponent.propDecorators = {
14584
14782
  };
14585
14783
 
14586
14784
  class TransactionComponent {
14587
- constructor(iconCacheService, _service, _dynamicComponentService, _transactionEventService) {
14785
+ constructor(iconCacheService, _service, _appRef, _dynamicComponentService, _transactionEventService) {
14588
14786
  this.iconCacheService = iconCacheService;
14589
14787
  this._service = _service;
14788
+ this._appRef = _appRef;
14590
14789
  this._dynamicComponentService = _dynamicComponentService;
14591
14790
  this._transactionEventService = _transactionEventService;
14592
14791
  this.viewModes = ContentViewMode;
@@ -14597,6 +14796,7 @@ class TransactionComponent {
14597
14796
  this.showButtonBar = true;
14598
14797
  this.activeViewMode = ContentViewMode.List;
14599
14798
  this.activeCategory = TransactionTypeCategory.SalesOrderOverview;
14799
+ this.sidePanelOpen = false;
14600
14800
  this._subs = [];
14601
14801
  this._transaction = new TransactionInfoResponse();
14602
14802
  this._subs.push(this._service.transactionUpdated.subscribe((transaction) => {
@@ -14643,6 +14843,12 @@ class TransactionComponent {
14643
14843
  this.activeCategory = button.category;
14644
14844
  }
14645
14845
  handleShowSidePanel(line) {
14846
+ var _a;
14847
+ const sidePanelComponent = (_a = this._dynamicComponentService.getComponentRefs()
14848
+ .find((ref) => ref.instance instanceof TransactionLineSidePanelComponent)) === null || _a === void 0 ? void 0 : _a.instance;
14849
+ if (sidePanelComponent) {
14850
+ sidePanelComponent.handleCancelClick();
14851
+ }
14646
14852
  this.sidePanelTransactionLine = line;
14647
14853
  this._dynamicComponentService.createComponent(TransactionLineSidePanelComponent, {
14648
14854
  transactionInfo: this.transaction.transactionInfo,
@@ -14719,6 +14925,7 @@ TransactionComponent.decorators = [
14719
14925
  TransactionComponent.ctorParameters = () => [
14720
14926
  { type: IconCacheService },
14721
14927
  { type: TransactionService },
14928
+ { type: ApplicationRef },
14722
14929
  { type: DynamicComponentService },
14723
14930
  { type: TransactionEventService }
14724
14931
  ];
@@ -14729,7 +14936,8 @@ TransactionComponent.propDecorators = {
14729
14936
  showHeader: [{ type: Input }],
14730
14937
  showQuickAccess: [{ type: HostBinding, args: ['class.show-quick-access',] }, { type: Input }],
14731
14938
  showButtonBar: [{ type: HostBinding, args: ['class.show-button-bar',] }, { type: Input }],
14732
- showClass: [{ type: HostBinding, args: ["class.co-transaction",] }]
14939
+ showClass: [{ type: HostBinding, args: ["class.co-transaction",] }],
14940
+ sidePanelComponents: [{ type: ViewChildren, args: [TransactionLineSidePanelComponent,] }]
14733
14941
  };
14734
14942
 
14735
14943
  class TransactionHeaderComponent {
@@ -15062,8 +15270,8 @@ TransactionHeaderOrderComponent.decorators = [
15062
15270
  <ng-template #secondBlock>
15063
15271
  <div class="transaction-line-button custom-width" (click)="handleShowDiscountDialog($event)">
15064
15272
  <span class="co-transaction-label" [textContent]="'DISCOUNT' | localize"></span>
15065
- <span class="co-transaction-overflow-ellipsis transaction-discount" [class.transaction-negative-value]="transactionTotal.discountAmount < 0"
15066
- [textContent]="transactionTotal.discountAmount | coCurrency"></span>
15273
+ <span class="co-transaction-overflow-ellipsis transaction-discount" [class.transaction-negative-value]="transactionTotal.totalDiscountAmount < 0"
15274
+ [textContent]="transactionTotal.totalDiscountAmount | coCurrency"></span>
15067
15275
  </div>
15068
15276
  </ng-template>
15069
15277
  <ng-template #thirdBlock>
@@ -15106,14 +15314,17 @@ TransactionHeaderOrderModule.decorators = [
15106
15314
  ];
15107
15315
 
15108
15316
  class TransactionHeaderPaymentComponent extends TransactionBaseComponent {
15109
- constructor(iconService, service) {
15317
+ constructor(iconService, service, _paymentService) {
15110
15318
  super(service);
15111
15319
  this.iconService = iconService;
15112
15320
  this.service = service;
15321
+ this._paymentService = _paymentService;
15113
15322
  this.icons = Icon;
15114
15323
  this.transactionKind = TransactionKind;
15115
15324
  this.showDialog = false;
15116
15325
  this.showPaymentDialog = false;
15326
+ this.paid = 0;
15327
+ this.toPay = 0;
15117
15328
  }
15118
15329
  showClass() {
15119
15330
  return true;
@@ -15123,6 +15334,17 @@ class TransactionHeaderPaymentComponent extends TransactionBaseComponent {
15123
15334
  event.stopPropagation();
15124
15335
  this.showPaymentDialog = true;
15125
15336
  }
15337
+ transactionSet() {
15338
+ this._getDownpaymentInfo();
15339
+ }
15340
+ _getDownpaymentInfo() {
15341
+ this._paymentService.getDownPaymentInfo(this.transactionInfo.uuid).then((info) => {
15342
+ if (info) {
15343
+ this.toPay = info.toDownPayAmount;
15344
+ this.paid = info.payedDownAmount;
15345
+ }
15346
+ });
15347
+ }
15126
15348
  }
15127
15349
  TransactionHeaderPaymentComponent.decorators = [
15128
15350
  { type: Component, args: [{
@@ -15141,9 +15363,14 @@ TransactionHeaderPaymentComponent.decorators = [
15141
15363
  <div class="header-block-balance" *ngIf="transactionInfo.transactionKind !== transactionKind.PurchaseOrder" (click)="openPayment($event)">
15142
15364
  <co-icon class="payment-icon" [iconData]="iconService.getIcon(icons.CreditCardSolid)"></co-icon>
15143
15365
  <div class="payment-payed-wrapper">
15144
- <span class="payment-paid" [textContent]="200 | priceDisplay"></span>
15145
- <span class="payment-divider" [textContent]="'/'"></span>
15146
- <span class="payment-to-pay" [textContent]="100 | priceDisplay"></span>
15366
+ <ng-container *ngIf="toPay === paid">
15367
+ <span class="payment-paid" [textContent]="paid | priceDisplay"></span>
15368
+ </ng-container>
15369
+ <ng-container *ngIf="toPay !== paid">
15370
+ <span class="payment-paid" [textContent]="paid | priceDisplay"></span>
15371
+ <span class="payment-divider" [textContent]="'/'"></span>
15372
+ <span class="payment-to-pay" [textContent]="toPay | priceDisplay"></span>
15373
+ </ng-container>
15147
15374
  </div>
15148
15375
  </div>
15149
15376
  </ng-template>
@@ -15196,7 +15423,8 @@ TransactionHeaderPaymentComponent.decorators = [
15196
15423
  ];
15197
15424
  TransactionHeaderPaymentComponent.ctorParameters = () => [
15198
15425
  { type: IconCacheService },
15199
- { type: TransactionService }
15426
+ { type: TransactionService },
15427
+ { type: PaymentService }
15200
15428
  ];
15201
15429
  TransactionHeaderPaymentComponent.propDecorators = {
15202
15430
  showClass: [{ type: HostBinding, args: ["class.co-transaction-header-payment",] }]
@@ -17673,7 +17901,7 @@ TransactionArticleTextOverviewComponent.decorators = [
17673
17901
  </div>
17674
17902
  </div>
17675
17903
  </co-dialog>
17676
- <ng-template #headerTemplate><span [textContent]="header"></span></ng-template>
17904
+ <ng-template #headerTemplate><span class="co-transaction-dialog-header-title" [textContent]="header"></span></ng-template>
17677
17905
  <ng-template #footerTemplate>
17678
17906
  <div class="button-wrapper">
17679
17907
  <co-button [label]="'OK' | localize" (click)="onOkClick($event)"></co-button>
@@ -18003,7 +18231,7 @@ DialogTransactionLineDiscountComponent.decorators = [
18003
18231
  </div>
18004
18232
  </co-dialog>
18005
18233
  <ng-template #dialogHeader>
18006
- <div class="dialog-header-title" [textContent]="'DISCOUNT_PRICE_INFORMATION' | localize"></div>
18234
+ <div class="co-transaction-dialog-header-title" [textContent]="'DISCOUNT_PRICE_INFORMATION' | localize"></div>
18007
18235
  <div class="transaction-line-button big" (click)="openThePriceListDialog()">
18008
18236
  <span class="co-transaction-overflow-ellipsis" [textContent]="transactionLine.priceListDescription"></span>
18009
18237
  </div>
@@ -18254,7 +18482,7 @@ DiscountComponent.decorators = [
18254
18482
  </co-form>
18255
18483
  </co-dialog>
18256
18484
  <ng-template #headerTemplate>
18257
- <div class="discount-header" [textContent]="discountHeader | localize"></div>
18485
+ <div class="co-transaction-dialog-header-title" [textContent]="discountHeader | localize"></div>
18258
18486
  </ng-template>
18259
18487
  <ng-template #footerTemplate>
18260
18488
  <div fxLayout="row" fxLayoutGap="10px" fxLayoutAlign="end">
@@ -18392,11 +18620,12 @@ TransactionQuickAccessReceivedGoodsModule.decorators = [
18392
18620
  { type: NgModule, args: [{
18393
18621
  imports: [
18394
18622
  CommonModule,
18623
+ IconModule,
18395
18624
  InputTextModule,
18396
18625
  PipeModule,
18397
18626
  InputCheckboxModule,
18398
18627
  InputDatePickerModule,
18399
- IconModule
18628
+ CheckmarkOverlayModule
18400
18629
  ],
18401
18630
  declarations: [
18402
18631
  TransactionQuickAccessReceivedGoodsComponent
@@ -18911,7 +19140,9 @@ class TransactionLineWarehouseLocationButtonComponent {
18911
19140
  return true;
18912
19141
  }
18913
19142
  openWarehouseLocationDialog(line) {
18914
- this._dialogService.showWarehouseLocation(line.warehouseNumber, true, true, true, line);
19143
+ if (!this.readonly) {
19144
+ this._dialogService.showWarehouseLocation(line.warehouseNumber, true, true, true, line);
19145
+ }
18915
19146
  }
18916
19147
  }
18917
19148
  TransactionLineWarehouseLocationButtonComponent.decorators = [
@@ -19226,7 +19457,7 @@ TransactionBaseLineComponent.decorators = [
19226
19457
  { type: Component, args: [{
19227
19458
  selector: "co-transaction-base-line",
19228
19459
  template: `
19229
- <div class="transaction-base-line-wrapper">
19460
+ <div class="transaction-base-line-wrapper" data-action="openSidePanel">
19230
19461
  <ng-container *ngIf="line.isArticle">
19231
19462
  <div class="transaction-base-line-section">
19232
19463
  <co-input-checkbox *ngIf="checkbox" class="transaction-line-checkbox"
@@ -19362,6 +19593,7 @@ class TransactionLineWarehouseButtonComponent extends TransactionLineBaseCompone
19362
19593
  this.iconCacheService = iconCacheService;
19363
19594
  this.service = service;
19364
19595
  this.icons = Icon;
19596
+ this.readonly = false;
19365
19597
  this.showDialogWarehouse = false;
19366
19598
  }
19367
19599
  showClass() {
@@ -19377,16 +19609,20 @@ class TransactionLineWarehouseButtonComponent extends TransactionLineBaseCompone
19377
19609
  }
19378
19610
  });
19379
19611
  }
19612
+ handleClick(event) {
19613
+ this.stopPropagation(event);
19614
+ this.showDialogWarehouse = true;
19615
+ }
19380
19616
  }
19381
19617
  TransactionLineWarehouseButtonComponent.decorators = [
19382
19618
  { type: Component, args: [{
19383
19619
  selector: "co-transaction-line-warehouse-button",
19384
19620
  template: `
19385
- <div class="transaction-line-button" [class.no-pointer]="readonly" (click)="showDialogWarehouse = true">
19621
+ <div class="transaction-line-button" [class.no-pointer]="readonly" (click)="handleClick($event)">
19386
19622
  <co-icon class="header-warehouse-icon" [iconData]="iconCacheService.getIcon(icons.Warehouse)"></co-icon>
19387
19623
  <span class="co-transaction-overflow-ellipsis" [textContent]="transactionLine.warehouseNumber"></span>
19388
19624
  </div>
19389
- <co-dialog-transaction-line-warehouse *ngIf="showDialogWarehouse"
19625
+ <co-dialog-transaction-line-warehouse *ngIf="showDialogWarehouse && !readonly"
19390
19626
  [autoClose]="true"
19391
19627
  [transactionInfo]="transactionInfo"
19392
19628
  [transactionLine]="transactionLine"
@@ -19401,6 +19637,7 @@ TransactionLineWarehouseButtonComponent.ctorParameters = () => [
19401
19637
  { type: TransactionService }
19402
19638
  ];
19403
19639
  TransactionLineWarehouseButtonComponent.propDecorators = {
19640
+ readonly: [{ type: Input }],
19404
19641
  showClass: [{ type: HostBinding, args: ["class.co-transaction-line-warehouse-button",] }]
19405
19642
  };
19406
19643
 
@@ -19609,7 +19846,8 @@ TransactionReceiveGoodsLineModule.decorators = [
19609
19846
  InputNumberPickerModule,
19610
19847
  InputCheckboxModule,
19611
19848
  IconModule,
19612
- TransactionLineWarehouseLocationButtonModule
19849
+ TransactionLineWarehouseLocationButtonModule,
19850
+ ObserveVisibilityModule
19613
19851
  ],
19614
19852
  declarations: [
19615
19853
  TransactionReceiveGoodsLineComponent
@@ -22340,5 +22578,5 @@ TransactionLineGridModule.decorators = [
22340
22578
  * Generated bundle index. Do not edit.
22341
22579
  */
22342
22580
 
22343
- 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 };
22581
+ 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, DownPaymentModule as ɵdi, DownPaymentComponent as ɵdj, PaymentService as ɵdk, PaymentComponent as ɵdl, RelationTypeModule as ɵdm, RelationTypeComponent as ɵdn, RelationGeneralModule as ɵdo, RelationSuggestionsListModule as ɵdp, RelationSuggestionsListItemModule as ɵdq, RelationSuggestionsListItemComponent as ɵdr, RelationSuggestionsListComponent as ɵds, RelationGeneralComponent as ɵdt, RelationAddressesModule as ɵdu, RelationAddressesComponent as ɵdv, RelationContactDetailsModule as ɵdw, RelationContactDetailsComponent as ɵdx, RelationPreferencesModule as ɵdy, RelationPreferencesComponent as ɵdz, DictionaryService as ɵe, TransactionHeaderBlockModule as ɵea, TransactionHeaderBlockComponent as ɵeb, TransactionHeaderDeliveryDateModule as ɵec, TransactionHeaderDeliveryDateComponent as ɵed, TransactionHeaderDeliveryOptionsModule as ɵee, TransactionHeaderDeliveryOptionsComponent as ɵef, TransactionHeaderRemarksModule as ɵeg, TransactionHeaderRemarksComponent as ɵeh, TransactionHeaderReferenceModule as ɵei, TransactionHeaderReferenceComponent as ɵej, TransactionHeaderRelationReferenceModule as ɵek, TransactionHeaderRelationReferenceComponent as ɵel, TransactionHeaderDeliveryMethodModule as ɵem, TransactionLineCheckboxModule as ɵen, TransactionLineCheckboxListComponent as ɵeo, TransactionHeaderDeliveryMethodComponent as ɵep, TransactionHeaderPreferredDeliveryDateModule as ɵeq, TransactionHeaderPreferredDeliveryDateComponent as ɵer, DialogTransactionHeaderDeliveryMethodModule as ɵes, DialogHeaderSearchModule as ɵet, DialogHeaderSearchComponent as ɵeu, DialogTransactionHeaderDeliveryMethodComponent as ɵev, TransactionHeaderPartialDeliveryModule as ɵew, TransactionHeaderPartialDeliveryComponent as ɵex, TransactionBaseComponent as ɵey, TransactionHeaderDownpaymentPercentageModule as ɵez, TransactionConnectorService as ɵf, TransactionHeaderDownpaymentPercentageComponent as ɵfa, TransactionHeaderDownpaymentAmountModule as ɵfb, TransactionHeaderDownpaymentAmountComponent as ɵfc, TransactionHeaderDefinitiveModule as ɵfd, TransactionHeaderDefinitiveComponent as ɵfe, TransactionHeaderBranchModule as ɵff, TransactionHeaderBranchComponent as ɵfg, TransactionHeaderAdministrativeRelationModule as ɵfh, TransactionHeaderAdministrativeRelationComponent as ɵfi, TransactionHeaderMarketingModule as ɵfj, TransactionHeaderMarketingComponent as ɵfk, CheckoutOverviewRelationEditComponent as ɵfl, CheckoutOverviewDeliveryEditComponent as ɵfm, CheckoutOverviewDeliveryAddressComponent as ɵfn, CheckoutOverviewPaymentComponent as ɵfo, CheckoutLoginComponent as ɵfp, TransactionFilterCategoriesModule as ɵfq, TransactionFilterCategoriesComponent as ɵfr, TransactionHeaderPaymentModule as ɵfs, TransactionHeaderPaymentComponent as ɵft, TransactionLinesGridModule as ɵfu, TransactionBaseGridModule as ɵfv, TransactionLineSidePanelModule as ɵfw, TransactionLineSidePanelDefaultModule as ɵfx, TransactionLinePriceModule as ɵfy, TransactionLinePriceComponent as ɵfz, TransactionConnectorAdapterService as ɵg, TransactionLinePriceListModule as ɵga, TransactionLinePriceListComponent as ɵgb, TransactionLineVatModule as ɵgc, TransactionLineVatComponent as ɵgd, TransactionLineQuantityModule as ɵge, TransactionLineQuantityComponent as ɵgf, TransactionLineLineDiscountModule as ɵgg, TransactionLineLineDiscountComponent as ɵgh, TransactionLineDeliveryMethodModule as ɵgi, TransactionLineDeliveryMethodComponent as ɵgj, TransactionLineDeliveryDateModule as ɵgk, TransactionLineDeliveryDateComponent as ɵgl, TransactionLineReferenceModule as ɵgm, TransactionLineReferenceComponent as ɵgn, TransactionLineCommissionCodeModule as ɵgo, TransactionLineCommissionCodeComponent as ɵgp, TransactionLineWarehouseModule as ɵgq, TransactionLineWarehouseComponent as ɵgr, TransactionLineDiscountAmountModule as ɵgs, TransactionLineDiscountAmountComponent as ɵgt, TransactionLineQuantumDiscountModule as ɵgu, TransactionLineQuantumDiscountComponent as ɵgv, TransactionLineSpecialDiscountModule as ɵgw, TransactionLineSpecialDiscountComponent as ɵgx, TransactionLineSupplierModule as ɵgy, TransactionLineSupplierComponent as ɵgz, SelectMultipleCacheService as ɵh, TransactionLineSidePanelDefaultComponent as ɵha, TransactionReceivingGoodsHistoryModule as ɵhb, TransactionHistoryGridModule as ɵhc, TransactionHistoryGridStatusModule as ɵhd, TransactionHistoryGridStatusComponent as ɵhe, TransactionHistoryGridComponent as ɵhf, TransactionReceivingGoodsHistoryComponent as ɵhg, TransactionReceivingGoodsDetailsModule as ɵhh, TransactionReceivingGoodsDetailsComponent as ɵhi, ArticleService as ɵhj, TransactionButtonBarModule as ɵhk, TransactionButtonBarComponent as ɵhl, TransactionButtonBarButtonComponent as ɵhm, TransactionLineSidePanelPurchaseModule as ɵhn, DefaultOkCancelButtonsModule as ɵho, DefaultOkCancelButtonsComponent as ɵhp, TransactionLineSidePanelPurchaseComponent as ɵhq, TransactionLineSidePanelComponent as ɵhr, DynamicBaseComponent as ɵhs, TransactionLineActionButtonsModule as ɵht, TransactionArticleTextOverviewModule as ɵhu, TransactionArticleTextOverviewComponent as ɵhv, TransactionLineActionButtonsComponent as ɵhw, TransactionBaseGridComponent as ɵhx, TransactionGridBaseComponent as ɵhy, DialogTransactionLineCommissionCodeModule as ɵhz, BusinessObjectCacheManagerService as ɵi, DialogTransactionLineCommissionCodeComponent as ɵia, DialogTransactionLineBaseComponent as ɵib, DialogTransactionLineWarehouseModule as ɵic, DialogTransactionLineWarehouseComponent as ɵid, DialogTransactionLineWarehouseCcModule as ɵie, DialogTransactionLineWarehouseCcComponent as ɵif, DialogTransactionLineDeliveryMethodModule as ɵig, DialogTransactionLineDeliveryMethodComponent as ɵih, DialogTransactionLineVatModule as ɵii, DialogTransactionLineVatComponent as ɵij, DialogTransactionLineDiscountModule as ɵik, DialogTransactionLinePriceListModule as ɵil, DialogTransactionLinePriceListComponent as ɵim, DialogTransactionLineDiscountComponent as ɵin, TransactionLinesGridComponent as ɵio, DiscountModule as ɵip, DiscountComponent as ɵiq, TransactionQuickAccessOverviewModule as ɵir, TransactionQuickAccessOverviewComponent as ɵis, TransactionQuickAccessOrderDeliveryModule as ɵit, TransactionQuickAccessOrderDeliveryComponent as ɵiu, TransactionOrderConfirmationGridModule as ɵiv, TransactionOrderConfirmationGridComponent as ɵiw, TransactionReceivedGoodsGridModule as ɵix, DialogTransactionLineWarehouseLocationModule as ɵiy, TransactionLineWarehouseLocationModule as ɵiz, CacheField as ɵj, TransactionLineWarehouseLocationComponent as ɵja, DialogTransactionLineWarehouseLocationComponent as ɵjb, TransactionLineWarehouseLocationButtonModule as ɵjc, TransactionLineWarehouseLocationButtonComponent as ɵjd, TransactionReceivedGoodsGridComponent as ɵje, ViewModeButtonsModule as ɵjf, ViewModeButtonsComponent as ɵjg, TransactionGridModule as ɵjh, TransactionGridComponent as ɵji, TransactionTileModule as ɵjj, TransactionTileComponent as ɵjk, TransactionOverviewLineModule as ɵjl, EditableLabelModule as ɵjm, EditableLabelComponent as ɵjn, TransactionBaseLineModule as ɵjo, TransactionBaseLineComponent as ɵjp, TransactionLinesLineBaseComponent as ɵjq, TransactionLineCommissionButtonModule as ɵjr, TransactionLineCommissionButtonComponent as ɵjs, TransactionLineWarehouseButtonModule as ɵjt, TransactionLineWarehouseButtonComponent as ɵju, TransactionLineDeliveryButtonModule as ɵjv, TransactionLineDeliveryButtonComponent as ɵjw, TransactionLineDeliveryDateButtonModule as ɵjx, TransactionLineDeliveryDateButtonComponent as ɵjy, TransactionOverviewLineComponent as ɵjz, SelectMultipleParameterizedCacheService as ɵk, TransactionOrderDeliveryLineModule as ɵka, TransactionOrderDeliveryLineComponent as ɵkb, TransactionReceiveGoodsLineModule as ɵkc, TransactionReceiveGoodsLineComponent as ɵkd, TransactionSearchResultModule as ɵke, TransactionSearchSalesOrderTileModule as ɵkf, TransactionSearchSalesOrderTileComponent as ɵkg, TransactionSearchTileBaseComponent as ɵkh, TransactionSearchPurchaseOrderTileModule as ɵki, TransactionSearchPurchaseOrderTileComponent as ɵkj, TransactionSearchSalesOrderGridModule as ɵkk, TransactionSearchSalesOrderGridComponent as ɵkl, TransactionSearchGridBaseComponent as ɵkm, TransactionSearchPurchaseOrderGridModule as ɵkn, TransactionSearchPurchaseOrderGridComponent as ɵko, TransactionSearchHeaderModule as ɵkp, TransactionSearchHeaderComponent as ɵkq, TransactionSearchGridModule as ɵkr, TransactionSearchGridComponent as ɵks, TransactionSearchTileModule as ɵkt, TransactionSearchTileComponent as ɵku, TransactionSearchResultComponent as ɵkv, TransactionSalesOrderFilterModule as ɵkw, TransactionSalesOrderFilterContentOrderModule as ɵkx, TransactionFilterItemModule as ɵky, TransactionFilterItemComponent as ɵkz, ErrorService as ɵl, TransactionSalesOrderFilterContentOrderComponent as ɵla, TransactionFilterContentBaseComponent as ɵlb, FilterRequestService as ɵlc, TransactionSalesOrderFilterContentLogisticsModule as ɵld, TransactionFilterHistoricStateModule as ɵle, TransactionFilterHistoricStateComponent as ɵlf, TransactionSalesOrderFilterContentLogisticsComponent as ɵlg, TransactionSalesOrderFilterContentArticleModule as ɵlh, TransactionSalesOrderFilterContentArticleComponent as ɵli, TransactionSalesOrderFilterComponent as ɵlj, TransactionFilterBaseComponent as ɵlk, TransactionPurchaseOrderFilterModule as ɵll, TransactionPurchaseOrderFilterContentOrderModule as ɵlm, TransactionPurchaseOrderFilterContentOrderComponent as ɵln, TransactionPurchaseOrderFilterContentLogisticsModule as ɵlo, TransactionPurchaseOrderFilterContentLogisticsComponent as ɵlp, TransactionPurchaseOrderFilterContentArticleModule as ɵlq, TransactionPurchaseOrderFilterContentArticleComponent as ɵlr, TransactionPurchaseOrderFilterComponent as ɵls, TransactionFilterModule as ɵlt, TransactionFilterComponent as ɵlu, 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 };
22344
22582
  //# sourceMappingURL=colijnit-transaction.js.map