@colijnit/transaction 261.20.51 → 261.20.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2560) hide show
  1. package/.browserslistrc +18 -0
  2. package/.editorconfig +16 -0
  3. package/.eslintrc.json +49 -0
  4. package/.nvmrc +1 -0
  5. package/README.md +13 -10
  6. package/angular.json +498 -0
  7. package/build.xml +34 -0
  8. package/custom-cart-bundle.webpack.config.js +3 -0
  9. package/custom-checkout-bundle.webpack.config.js +3 -0
  10. package/custom-service-wizard-bundle.webpack.config.js +3 -0
  11. package/custom-transaction-bundle.webpack.config.js +3 -0
  12. package/custom-transaction-search-bundle.webpack.config.js +3 -0
  13. package/e2e/protractor.conf.js +32 -0
  14. package/e2e/src/app.e2e-spec.ts +23 -0
  15. package/e2e/src/app.po.ts +11 -0
  16. package/e2e/tsconfig.json +13 -0
  17. package/karma.conf.js +32 -0
  18. package/move-assets.js +14 -0
  19. package/package.json +87 -39
  20. package/projects/transaction/README.md +24 -0
  21. package/projects/transaction/karma.conf.js +44 -0
  22. package/projects/transaction/ng-package.json +10 -0
  23. package/projects/transaction/package.json +27 -0
  24. package/projects/transaction/src/lib/assets/icons/arrow_left_regular.svg +1 -0
  25. package/projects/transaction/src/lib/assets/icons/arrow_point_down.svg +6 -0
  26. package/projects/transaction/src/lib/assets/icons/arrow_point_left.svg +8 -0
  27. package/projects/transaction/src/lib/assets/icons/arrow_point_right.svg +8 -0
  28. package/projects/transaction/src/lib/assets/icons/arrow_right_regular.svg +1 -0
  29. package/projects/transaction/src/lib/assets/icons/article.svg +1 -0
  30. package/projects/transaction/src/lib/assets/icons/at_solid.svg +1 -0
  31. package/projects/transaction/src/lib/assets/icons/attachments.svg +1 -0
  32. package/projects/transaction/src/lib/assets/icons/barcode_regular.svg +1 -0
  33. package/projects/transaction/src/lib/assets/icons/barcode_solid.svg +1 -0
  34. package/projects/transaction/src/lib/assets/icons/bars_filter.svg +1 -0
  35. package/projects/transaction/src/lib/assets/icons/box_open_full_regular.svg +1 -0
  36. package/projects/transaction/src/lib/assets/icons/boxes_packing_regular.svg +1 -0
  37. package/projects/transaction/src/lib/assets/icons/calculator_regular_full.svg +1 -0
  38. package/projects/transaction/src/lib/assets/icons/calendar_day.svg +37 -0
  39. package/projects/transaction/src/lib/assets/icons/calendar_day_regular.svg +1 -0
  40. package/projects/transaction/src/lib/assets/icons/calendar_lines_regular.svg +1 -0
  41. package/projects/transaction/src/lib/assets/icons/cancel.svg +1 -0
  42. package/projects/transaction/src/lib/assets/icons/caret_down_solid.svg +1 -0
  43. package/projects/transaction/src/lib/assets/icons/caret_up_solid.svg +1 -0
  44. package/projects/transaction/src/lib/assets/icons/cart_arrow_down_regular.svg +1 -0
  45. package/projects/transaction/src/lib/assets/icons/cart_check.svg +1 -0
  46. package/projects/transaction/src/lib/assets/icons/cart_flatbed_boxes_regular.svg +1 -0
  47. package/projects/transaction/src/lib/assets/icons/cart_flatbed_boxes_solid.svg +1 -0
  48. package/projects/transaction/src/lib/assets/icons/cart_minus_regular.svg +1 -0
  49. package/projects/transaction/src/lib/assets/icons/cart_plus_regular.svg +1 -0
  50. package/projects/transaction/src/lib/assets/icons/cart_shopping_gear.svg +1 -0
  51. package/projects/transaction/src/lib/assets/icons/cart_shopping_regular.svg +1 -0
  52. package/projects/transaction/src/lib/assets/icons/cart_shopping_solid.svg +5 -0
  53. package/projects/transaction/src/lib/assets/icons/cash_register.svg +1 -0
  54. package/projects/transaction/src/lib/assets/icons/chart_pie_simple_regular.svg +1 -0
  55. package/projects/transaction/src/lib/assets/icons/check.svg +1 -0
  56. package/projects/transaction/src/lib/assets/icons/check_dialog.svg +1 -0
  57. package/projects/transaction/src/lib/assets/icons/check_duotone.svg +1 -0
  58. package/projects/transaction/src/lib/assets/icons/check_thin.svg +1 -0
  59. package/projects/transaction/src/lib/assets/icons/chevron_down_regular.svg +1 -0
  60. package/projects/transaction/src/lib/assets/icons/chevron_right_regular.svg +1 -0
  61. package/projects/transaction/src/lib/assets/icons/chevron_up_regular.svg +1 -0
  62. package/projects/transaction/src/lib/assets/icons/circle_exclamation_regular.svg +1 -0
  63. package/projects/transaction/src/lib/assets/icons/circle_info_regular.svg +1 -0
  64. package/projects/transaction/src/lib/assets/icons/close_dialog.svg +1 -0
  65. package/projects/transaction/src/lib/assets/icons/code_regular.svg +1 -0
  66. package/projects/transaction/src/lib/assets/icons/container_storage_regular_full.svg +1 -0
  67. package/projects/transaction/src/lib/assets/icons/credit_card_regular.svg +1 -0
  68. package/projects/transaction/src/lib/assets/icons/credit_card_regular_check.svg +1 -0
  69. package/projects/transaction/src/lib/assets/icons/credit_card_solid.svg +1 -0
  70. package/projects/transaction/src/lib/assets/icons/crossskinny.svg +1 -0
  71. package/projects/transaction/src/lib/assets/icons/cubes_stacked_solid.svg +1 -0
  72. package/projects/transaction/src/lib/assets/icons/delivery_truck.svg +1 -0
  73. package/projects/transaction/src/lib/assets/icons/delivery_truck_fast.svg +1 -0
  74. package/projects/transaction/src/lib/assets/icons/detail_view.svg +1 -0
  75. package/projects/transaction/src/lib/assets/icons/down_from_line_regular_full.svg +1 -0
  76. package/projects/transaction/src/lib/assets/icons/edit_pencil.svg +1 -0
  77. package/projects/transaction/src/lib/assets/icons/ellipsis_light.svg +1 -0
  78. package/projects/transaction/src/lib/assets/icons/ellipsis_vertical_open.svg +1 -0
  79. package/projects/transaction/src/lib/assets/icons/ellipsis_vertical_solid.svg +1 -0
  80. package/projects/transaction/src/lib/assets/icons/equals_solid.svg +1 -0
  81. package/projects/transaction/src/lib/assets/icons/expand_solid.svg +1 -0
  82. package/projects/transaction/src/lib/assets/icons/file_circle_info_regular.svg +1 -0
  83. package/projects/transaction/src/lib/assets/icons/file_circle_info_solid.svg +1 -0
  84. package/projects/transaction/src/lib/assets/icons/file_export_regular.svg +1 -0
  85. package/projects/transaction/src/lib/assets/icons/file_export_solid.svg +1 -0
  86. package/projects/transaction/src/lib/assets/icons/file_pdf_regular.svg +1 -0
  87. package/projects/transaction/src/lib/assets/icons/file_pdf_solid.svg +1 -0
  88. package/projects/transaction/src/lib/assets/icons/gear_solid.svg +1 -0
  89. package/projects/transaction/src/lib/assets/icons/greater_than_solid.svg +1 -0
  90. package/projects/transaction/src/lib/assets/icons/grip_dots_vertical_solid.svg +1 -0
  91. package/projects/transaction/src/lib/assets/icons/ideal_logo.svg +38 -0
  92. package/projects/transaction/src/lib/assets/icons/inbox_in_solid.svg +1 -0
  93. package/projects/transaction/src/lib/assets/icons/industry_regular.svg +1 -0
  94. package/projects/transaction/src/lib/assets/icons/industry_solid.svg +1 -0
  95. package/projects/transaction/src/lib/assets/icons/invoice.svg +1 -0
  96. package/projects/transaction/src/lib/assets/icons/less_than_solid.svg +1 -0
  97. package/projects/transaction/src/lib/assets/icons/light_credit_card_check.svg +1 -0
  98. package/projects/transaction/src/lib/assets/icons/light_euro_sign_minus.svg +1 -0
  99. package/projects/transaction/src/lib/assets/icons/link_regular.svg +1 -0
  100. package/projects/transaction/src/lib/assets/icons/link_simple_solid.svg +1 -0
  101. package/projects/transaction/src/lib/assets/icons/list_regular.svg +1 -0
  102. package/projects/transaction/src/lib/assets/icons/list_timeline_regular.svg +1 -0
  103. package/projects/transaction/src/lib/assets/icons/list_view.svg +8 -0
  104. package/projects/transaction/src/lib/assets/icons/location_dot_solid.svg +1 -0
  105. package/projects/transaction/src/lib/assets/icons/lock.svg +1 -0
  106. package/projects/transaction/src/lib/assets/icons/lock_keyhole_open_solid.svg +1 -0
  107. package/projects/transaction/src/lib/assets/icons/lock_keyhole_solid.svg +1 -0
  108. package/projects/transaction/src/lib/assets/icons/magnifier.svg +12 -0
  109. package/projects/transaction/src/lib/assets/icons/map_marker.svg +1 -0
  110. package/projects/transaction/src/lib/assets/icons/master_detail.svg +1 -0
  111. package/projects/transaction/src/lib/assets/icons/memo_circle_check_regular.svg +1 -0
  112. package/projects/transaction/src/lib/assets/icons/memo_circle_check_solid.svg +1 -0
  113. package/projects/transaction/src/lib/assets/icons/menu.svg +1 -0
  114. package/projects/transaction/src/lib/assets/icons/message_sms_regular.svg +1 -0
  115. package/projects/transaction/src/lib/assets/icons/message_sms_solid.svg +1 -0
  116. package/projects/transaction/src/lib/assets/icons/money_bill.svg +1 -0
  117. package/projects/transaction/src/lib/assets/icons/object_intersect_solid.svg +1 -0
  118. package/projects/transaction/src/lib/assets/icons/pallet_boxes_rotate.svg +1 -0
  119. package/projects/transaction/src/lib/assets/icons/pallet_boxes_sharp_regular.svg +1 -0
  120. package/projects/transaction/src/lib/assets/icons/pallet_boxes_solid.svg +1 -0
  121. package/projects/transaction/src/lib/assets/icons/pdf.svg +15 -0
  122. package/projects/transaction/src/lib/assets/icons/pencil_regular_full.svg +1 -0
  123. package/projects/transaction/src/lib/assets/icons/pencil_solid_full.svg +1 -0
  124. package/projects/transaction/src/lib/assets/icons/percent_solid.svg +1 -0
  125. package/projects/transaction/src/lib/assets/icons/plus_round.svg +9 -0
  126. package/projects/transaction/src/lib/assets/icons/plus_simple.svg +1 -0
  127. package/projects/transaction/src/lib/assets/icons/print_price_tag.svg +1 -0
  128. package/projects/transaction/src/lib/assets/icons/print_regular.svg +1 -0
  129. package/projects/transaction/src/lib/assets/icons/print_solid.svg +1 -0
  130. package/projects/transaction/src/lib/assets/icons/purchase.svg +15 -0
  131. package/projects/transaction/src/lib/assets/icons/regular_box_open_circle_check.svg +1 -0
  132. package/projects/transaction/src/lib/assets/icons/regular_box_open_full_circle_check.svg +1 -0
  133. package/projects/transaction/src/lib/assets/icons/regular_boxes_packing_circle_check.svg +1 -0
  134. package/projects/transaction/src/lib/assets/icons/regular_calendar_day_lock.svg +1 -0
  135. package/projects/transaction/src/lib/assets/icons/regular_cart_flatbed_boxes_circle_check.svg +1 -0
  136. package/projects/transaction/src/lib/assets/icons/regular_cart_shopping_check.svg +1 -0
  137. package/projects/transaction/src/lib/assets/icons/regular_cart_shopping_circle_question.svg +1 -0
  138. package/projects/transaction/src/lib/assets/icons/regular_cart_shopping_clock.svg +1 -0
  139. package/projects/transaction/src/lib/assets/icons/regular_cart_shopping_tag.svg +1 -0
  140. package/projects/transaction/src/lib/assets/icons/regular_container_storage_circle_arrow_left.svg +1 -0
  141. package/projects/transaction/src/lib/assets/icons/regular_container_storage_circle_arrow_right.svg +1 -0
  142. package/projects/transaction/src/lib/assets/icons/regular_container_storage_circle_check.svg +1 -0
  143. package/projects/transaction/src/lib/assets/icons/regular_container_storage_circle_info.svg +1 -0
  144. package/projects/transaction/src/lib/assets/icons/regular_euro_sign_minus.svg +1 -0
  145. package/projects/transaction/src/lib/assets/icons/regular_industry_clock.svg +1 -0
  146. package/projects/transaction/src/lib/assets/icons/regular_industry_tag.svg +1 -0
  147. package/projects/transaction/src/lib/assets/icons/regular_receipt_slash.svg +1 -0
  148. package/projects/transaction/src/lib/assets/icons/regular_truck_moving_circle_exclamation.svg +1 -0
  149. package/projects/transaction/src/lib/assets/icons/regular_truck_moving_circle_user.svg +1 -0
  150. package/projects/transaction/src/lib/assets/icons/regular_truck_moving_clock.svg +1 -0
  151. package/projects/transaction/src/lib/assets/icons/regular_warehouse_circle_arrow_left.svg +1 -0
  152. package/projects/transaction/src/lib/assets/icons/regular_warehouse_circle_arrow_right.svg +1 -0
  153. package/projects/transaction/src/lib/assets/icons/regular_warehouse_clock.svg +1 -0
  154. package/projects/transaction/src/lib/assets/icons/remark.svg +1 -0
  155. package/projects/transaction/src/lib/assets/icons/resize.svg +3 -0
  156. package/projects/transaction/src/lib/assets/icons/screwdriver_wrench_light.svg +1 -0
  157. package/projects/transaction/src/lib/assets/icons/screwdriver_wrench_regular.svg +1 -0
  158. package/projects/transaction/src/lib/assets/icons/service_cart_regular.svg +1 -0
  159. package/projects/transaction/src/lib/assets/icons/share_sharp_regular.svg +1 -0
  160. package/projects/transaction/src/lib/assets/icons/share_solid.svg +1 -0
  161. package/projects/transaction/src/lib/assets/icons/sharp_light_truck_moving_clock.svg +1 -0
  162. package/projects/transaction/src/lib/assets/icons/sharp_regular_barcode_read_tag.svg +1 -0
  163. package/projects/transaction/src/lib/assets/icons/shelves_light.svg +1 -0
  164. package/projects/transaction/src/lib/assets/icons/shelves_open.svg +1 -0
  165. package/projects/transaction/src/lib/assets/icons/shelves_regular.svg +1 -0
  166. package/projects/transaction/src/lib/assets/icons/shelves_solid.svg +1 -0
  167. package/projects/transaction/src/lib/assets/icons/side_panel.svg +7 -0
  168. package/projects/transaction/src/lib/assets/icons/sidebar_flip_regular.svg +1 -0
  169. package/projects/transaction/src/lib/assets/icons/slide_in.svg +1 -0
  170. package/projects/transaction/src/lib/assets/icons/sliders_up_regular.svg +1 -0
  171. package/projects/transaction/src/lib/assets/icons/split_regular_full.svg +1 -0
  172. package/projects/transaction/src/lib/assets/icons/square_full.svg +1 -0
  173. package/projects/transaction/src/lib/assets/icons/square_full_solid.svg +1 -0
  174. package/projects/transaction/src/lib/assets/icons/store_light.svg +1 -0
  175. package/projects/transaction/src/lib/assets/icons/sync_alt.svg +3 -0
  176. package/projects/transaction/src/lib/assets/icons/table_list.svg +1 -0
  177. package/projects/transaction/src/lib/assets/icons/tag.svg +1 -0
  178. package/projects/transaction/src/lib/assets/icons/tag_light.svg +1 -0
  179. package/projects/transaction/src/lib/assets/icons/tag_lines.svg +1 -0
  180. package/projects/transaction/src/lib/assets/icons/text_size_solid.svg +1 -0
  181. package/projects/transaction/src/lib/assets/icons/text_solid.svg +1 -0
  182. package/projects/transaction/src/lib/assets/icons/thick_lines.svg +1 -0
  183. package/projects/transaction/src/lib/assets/icons/thin_lines.svg +1 -0
  184. package/projects/transaction/src/lib/assets/icons/toolbox.svg +1 -0
  185. package/projects/transaction/src/lib/assets/icons/toolbox_regular.svg +1 -0
  186. package/projects/transaction/src/lib/assets/icons/trash_bin.svg +1 -0
  187. package/projects/transaction/src/lib/assets/icons/trash_can_light.svg +1 -0
  188. package/projects/transaction/src/lib/assets/icons/trash_can_regular.svg +1 -0
  189. package/projects/transaction/src/lib/assets/icons/triangle_down.svg +1 -0
  190. package/projects/transaction/src/lib/assets/icons/triangle_up.svg +1 -0
  191. package/projects/transaction/src/lib/assets/icons/truck.svg +1 -0
  192. package/projects/transaction/src/lib/assets/icons/truck_arrow_right_solid.svg +1 -0
  193. package/projects/transaction/src/lib/assets/icons/truck_container_duo.svg +1 -0
  194. package/projects/transaction/src/lib/assets/icons/truck_container_solid.svg +1 -0
  195. package/projects/transaction/src/lib/assets/icons/truck_fast_solid.svg +1 -0
  196. package/projects/transaction/src/lib/assets/icons/truck_moving_regular.svg +1 -0
  197. package/projects/transaction/src/lib/assets/icons/truck_moving_solid.svg +1 -0
  198. package/projects/transaction/src/lib/assets/icons/txt.svg +9 -0
  199. package/projects/transaction/src/lib/assets/icons/unlock.svg +1 -0
  200. package/projects/transaction/src/lib/assets/icons/up_from_line_regular.svg +1 -0
  201. package/projects/transaction/src/lib/assets/icons/up_from_line_regular_full.svg +1 -0
  202. package/projects/transaction/src/lib/assets/icons/user_regular.svg +1 -0
  203. package/projects/transaction/src/lib/assets/icons/warehouse.svg +1 -0
  204. package/projects/transaction/src/lib/assets/icons/work_in_progress_circle_large.svg +1 -0
  205. package/projects/transaction/src/lib/assets/icons/x_solid.svg +1 -0
  206. package/projects/transaction/src/lib/cache/cache-field.ts +91 -0
  207. package/projects/transaction/src/lib/cache/parameter-cache-field.ts +63 -0
  208. package/projects/transaction/src/lib/cache/service/transaction-business-object-cache-manager.service.ts +199 -0
  209. package/projects/transaction/src/lib/cache/service/transaction-select-multiple-cache.service.ts +36 -0
  210. package/projects/transaction/src/lib/cache/service/transaction-select-multiple-parameterized-cache.service.ts +46 -0
  211. package/projects/transaction/src/lib/cache/service/transaction-select-single-cache.service.ts +31 -0
  212. package/projects/transaction/src/lib/cache/service/transaction-select-single-parameterized-cache.service.ts +47 -0
  213. package/projects/transaction/src/lib/component/add-product/add-product.component.ts +352 -0
  214. package/projects/transaction/src/lib/component/add-product/add-product.module.ts +27 -0
  215. package/projects/transaction/src/lib/component/alternate-supplier-tile/alternate-supplier-tile.component.ts +104 -0
  216. package/projects/transaction/src/lib/component/alternate-supplier-tile/alternate-supplier-tile.module.ts +21 -0
  217. package/projects/transaction/src/lib/component/animated-checkbox/animated-checkbox.component.ts +32 -0
  218. package/projects/transaction/src/lib/component/animated-checkbox/animated-checkbox.module.ts +19 -0
  219. package/projects/transaction/src/lib/component/avatar/avatar.component.ts +199 -0
  220. package/projects/transaction/src/lib/component/avatar/avatar.module.ts +20 -0
  221. package/projects/transaction/src/lib/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.ts +300 -0
  222. package/projects/transaction/src/lib/component/checkout/checkout-overview-payment/checkout-overview-payment.component.ts +132 -0
  223. package/projects/transaction/src/lib/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component.ts +591 -0
  224. package/projects/transaction/src/lib/component/checkout/checkout.component.ts +452 -0
  225. package/projects/transaction/src/lib/component/checkout/checkout.module.ts +134 -0
  226. package/projects/transaction/src/lib/component/checkout/service/checkout-module.service.ts +7 -0
  227. package/projects/transaction/src/lib/component/click-block/click-block.component.ts +39 -0
  228. package/projects/transaction/src/lib/component/click-block/click-block.module.ts +17 -0
  229. package/projects/transaction/src/lib/component/co-transaction-article-stock/transaction-article-stock.component.ts +65 -0
  230. package/projects/transaction/src/lib/component/co-transaction-article-stock/transaction-article-stock.module.ts +26 -0
  231. package/projects/transaction/src/lib/component/confirmation-dialog/confirmation-dialog.component.ts +89 -0
  232. package/projects/transaction/src/lib/component/confirmation-dialog/confirmation-dialog.module.ts +24 -0
  233. package/projects/transaction/src/lib/component/core/base/components/characteristic-answer/characteristic-answer.component.ts +114 -0
  234. package/projects/transaction/src/lib/component/core/base/components/characteristic-answer/characteristic-answer.module.ts +25 -0
  235. package/projects/transaction/src/lib/component/core/base/components/default-confirm-cancel-buttons/default-confirm-cancel-buttons.component.ts +52 -0
  236. package/projects/transaction/src/lib/component/core/base/components/default-confirm-cancel-buttons/default-confirm-cancel-buttons.module.ts +19 -0
  237. package/projects/transaction/src/lib/component/core/base/components/default-ok-cancel-buttons/default-ok-cancel-buttons.component.ts +51 -0
  238. package/projects/transaction/src/lib/component/core/base/components/default-ok-cancel-buttons/default-ok-cancel-buttons.module.ts +20 -0
  239. package/projects/transaction/src/lib/component/core/base/components/transaction-header-block/transaction-header-block.component.ts +104 -0
  240. package/projects/transaction/src/lib/component/core/base/components/transaction-header-block/transaction-header-block.module.ts +19 -0
  241. package/projects/transaction/src/lib/component/core/base/components/voucher-code-pending-reason-dialog/voucher-code-pending-reason-dialog.component.ts +51 -0
  242. package/projects/transaction/src/lib/component/core/base/components/voucher-code-pending-reason-dialog/voucher-code-pending-reason-dialog.module.ts +24 -0
  243. package/projects/transaction/src/lib/component/core/base/components/warehouse/warehouse.component.ts +66 -0
  244. package/projects/transaction/src/lib/component/core/base/components/warehouse/warehouse.module.ts +24 -0
  245. package/projects/transaction/src/lib/component/core/base/dialog-base.component.ts +8 -0
  246. package/projects/transaction/src/lib/component/core/base/dialog-transaction-header-base.component.ts +56 -0
  247. package/projects/transaction/src/lib/component/core/base/dialog-transaction-line-base.component.ts +57 -0
  248. package/projects/transaction/src/lib/component/core/base/dynamic-base-component.ts +8 -0
  249. package/projects/transaction/src/lib/component/core/base/service/transaction-header.service.ts +303 -0
  250. package/projects/transaction/src/lib/component/core/base/service/transaction-line.service.ts +121 -0
  251. package/projects/transaction/src/lib/component/core/base/stepper-base.component.ts +66 -0
  252. package/projects/transaction/src/lib/component/core/base/transaction-base.component.ts +198 -0
  253. package/projects/transaction/src/lib/component/core/base/transaction-filter-base.component.ts +60 -0
  254. package/projects/transaction/src/lib/component/core/base/transaction-filter-content-base.component.ts +96 -0
  255. package/projects/transaction/src/lib/component/core/base/transaction-filter-popup-header-base.component.ts +114 -0
  256. package/projects/transaction/src/lib/component/core/base/transaction-filter-popup-line-base.component.ts +125 -0
  257. package/projects/transaction/src/lib/component/core/base/transaction-grid-base.component.ts +45 -0
  258. package/projects/transaction/src/lib/component/core/base/transaction-header-base.component.ts +193 -0
  259. package/projects/transaction/src/lib/component/core/base/transaction-header-filter-popup-base.component.ts +124 -0
  260. package/projects/transaction/src/lib/component/core/base/transaction-input-header-field-base.component.ts +52 -0
  261. package/projects/transaction/src/lib/component/core/base/transaction-input-line-field-base.component.ts +53 -0
  262. package/projects/transaction/src/lib/component/core/base/transaction-line-base.component.ts +260 -0
  263. package/projects/transaction/src/lib/component/core/base/transaction-line-sidepanel-base.component.ts +32 -0
  264. package/projects/transaction/src/lib/component/core/base/transaction-lines-base.component.ts +152 -0
  265. package/projects/transaction/src/lib/component/core/base/transaction-lines-grid-view-base.component.ts +6 -0
  266. package/projects/transaction/src/lib/component/core/base/transaction-lines-list-view-base.component.ts +6 -0
  267. package/projects/transaction/src/lib/component/core/base/transaction-payment-base.component.ts +346 -0
  268. package/projects/transaction/src/lib/component/core/base/transaction-search-grid-base.component.ts +24 -0
  269. package/projects/transaction/src/lib/component/core/base/transaction-search-tile-base.component.ts +63 -0
  270. package/projects/transaction/src/lib/component/core/characteristic-answer/characteristic-answer.component.ts +110 -0
  271. package/projects/transaction/src/lib/component/core/core.module.ts +72 -0
  272. package/projects/transaction/src/lib/component/core/directive/lazy-render-master.directive.ts +48 -0
  273. package/projects/transaction/src/lib/component/core/directive/lazy-render.directive.ts +38 -0
  274. package/projects/transaction/src/lib/component/core/enum/app-popup-button-type.enum.ts +9 -0
  275. package/projects/transaction/src/lib/component/core/enum/app-popup-type.enum.ts +6 -0
  276. package/projects/transaction/src/lib/component/core/icon/icon.component.ts +34 -0
  277. package/projects/transaction/src/lib/component/core/image-display/image-display.component.ts +48 -0
  278. package/projects/transaction/src/lib/component/core/relation/customer-groups.component.ts +94 -0
  279. package/projects/transaction/src/lib/component/core/relation/customer-languages.component.ts +91 -0
  280. package/projects/transaction/src/lib/component/core/relation/customer-titles.component.ts +91 -0
  281. package/projects/transaction/src/lib/component/core/relation/vat-code.component.ts +91 -0
  282. package/projects/transaction/src/lib/component/core/relation/vat-payment.component.ts +74 -0
  283. package/projects/transaction/src/lib/component/core/sla/sla-product-tile.component.ts +44 -0
  284. package/projects/transaction/src/lib/component/core/stock-status-indicator/stock-status-indicator.component.ts +26 -0
  285. package/projects/transaction/src/lib/component/delivery-planning/delivery-planning.component.ts +83 -0
  286. package/projects/transaction/src/lib/component/delivery-planning/delivery-planning.module.ts +20 -0
  287. package/projects/transaction/src/lib/component/delivery-planning/service/delivery-planning.service.ts +452 -0
  288. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-mode-selection/delivery-planning-mode-selection.component.ts +54 -0
  289. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-mode-selection/delivery-planning-mode-selection.module.ts +21 -0
  290. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-popup/delivery-planning-overview-popup.component.ts +347 -0
  291. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-short-line/delivery-planning-overview-short-line.component.ts +42 -0
  292. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-short-line/delivery-planning-overview-short-line.module.ts +24 -0
  293. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-tile-dropdown/delivery-planning-overview-tile-dropdown.component.ts +35 -0
  294. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-tile-dropdown/delivery-planning-overview-tile-dropdown.module.ts +19 -0
  295. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-tile-line/delivery-planning-overview-tile-line.component.ts +227 -0
  296. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-tile-line/delivery-planning-overview-tile-line.module.ts +28 -0
  297. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-tile-status/delivery-planning-tile-status.component.ts +122 -0
  298. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-tile-status/delivery-planning-tile-status.module.ts +19 -0
  299. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/delivery-planning-overview-tile.component.ts +543 -0
  300. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/delivery-planning-overview-tile.module.ts +57 -0
  301. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile-settings-popup/delivery-planning-overview-tile-settings-popup.component.ts +246 -0
  302. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-overview/delivery-planning-overview.component.ts +825 -0
  303. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-overview/delivery-planning-overview.module.ts +53 -0
  304. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-plan-order-list/delivery-planning-plan-order-list.component.ts +67 -0
  305. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-plan-order-list-tile/delivery-planning-plan-order-list-tile.component.ts +32 -0
  306. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-selection/delivery-planning-selection.component.ts +93 -0
  307. package/projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-selection/delivery-planning-selection.module.ts +20 -0
  308. package/projects/transaction/src/lib/component/delivery-planning-main/delivery-planning-main.component.ts +231 -0
  309. package/projects/transaction/src/lib/component/delivery-planning-main/delivery-planning-main.module.ts +41 -0
  310. package/projects/transaction/src/lib/component/delivery-type-tile/delivery-type-tile.component.ts +47 -0
  311. package/projects/transaction/src/lib/component/delivery-type-tile/delivery-type-tile.module.ts +27 -0
  312. package/projects/transaction/src/lib/component/deposit-payment/deposit-payment.component.ts +115 -0
  313. package/projects/transaction/src/lib/component/deposit-payment/deposit-payment.module.ts +25 -0
  314. package/projects/transaction/src/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.component.ts +460 -0
  315. package/projects/transaction/src/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.module.ts +38 -0
  316. package/projects/transaction/src/lib/component/dialog/catalog/dialog-catalog/service/catalog-screen-configuration.service.ts +42 -0
  317. package/projects/transaction/src/lib/component/dialog/dialog-branch/dialog-branch.component.ts +156 -0
  318. package/projects/transaction/src/lib/component/dialog/dialog-branch/dialog-branch.module.ts +24 -0
  319. package/projects/transaction/src/lib/component/dialog/dialog-header-search/dialog-header-search.component.ts +58 -0
  320. package/projects/transaction/src/lib/component/dialog/dialog-header-search/dialog-header-search.module.ts +22 -0
  321. package/projects/transaction/src/lib/component/dialog/discount-codes-popup.component.ts +125 -0
  322. package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-branch/dialog-transaction-header-branch.component.ts +49 -0
  323. package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-branch/dialog-transaction-header-branch.module.ts +26 -0
  324. package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-delivery-method/dialog-transaction-header-delivery-method.component.ts +48 -0
  325. package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-delivery-method/dialog-transaction-header-delivery-method.module.ts +26 -0
  326. package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-discount/dialog-transaction-header-discount.component.ts +199 -0
  327. package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-discount/dialog-transaction-header-discount.module.ts +64 -0
  328. package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-price-list/dialog-transaction-header-price-list.component.ts +37 -0
  329. package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-price-list/dialog-transaction-header-price-list.module.ts +30 -0
  330. package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-planning-request/dialog-transaction-planning-request.component.ts +238 -0
  331. package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-planning-request/dialog-transaction-planning-request.module.ts +30 -0
  332. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-commission-code/dialog-transaction-line-commission-code.component.ts +34 -0
  333. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-commission-code/dialog-transaction-line-commission-code.module.ts +26 -0
  334. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-delivery-method/dialog-transaction-line-delivery-method.component.ts +41 -0
  335. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-delivery-method/dialog-transaction-line-delivery-method.module.ts +26 -0
  336. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-direct-sell/dialog-transaction-line-direct-sell.component.ts +88 -0
  337. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-direct-sell/dialog-transaction-line-direct-sell.module.ts +28 -0
  338. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-discount/dialog-transaction-line-discount.component.ts +296 -0
  339. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-discount/dialog-transaction-line-discount.module.ts +47 -0
  340. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-price-list/dialog-transaction-line-price-list.component.ts +37 -0
  341. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-price-list/dialog-transaction-line-price-list.module.ts +26 -0
  342. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-supplier/dialog-transaction-line-supplier.component.ts +41 -0
  343. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-supplier/dialog-transaction-line-supplier.module.ts +26 -0
  344. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-vat/dialog-transaction-line-vat.component.ts +43 -0
  345. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-vat/dialog-transaction-line-vat.module.ts +26 -0
  346. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse/dialog-transaction-line-warehouse.component.ts +269 -0
  347. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse/dialog-transaction-line-warehouse.module.ts +28 -0
  348. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/component/transaction-line-warehouse-cc-base.component.ts +52 -0
  349. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/component/transaction-line-warehouse-cc-directsell.component.ts +64 -0
  350. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/component/transaction-line-warehouse-cc-general.component.ts +110 -0
  351. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/component/transaction-line-warehouse-cc-interbranch.component.ts +131 -0
  352. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/dialog-transaction-line-warehouse-cc.component.ts +379 -0
  353. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/dialog-transaction-line-warehouse-cc.module.ts +53 -0
  354. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/dialog-transaction-line-warehouse-location.component.ts +44 -0
  355. package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/dialog-transaction-line-warehouse-location.module.ts +26 -0
  356. package/projects/transaction/src/lib/component/dialog/transaction-search/components/transaction-search-header/transaction-search-header.component.ts +54 -0
  357. package/projects/transaction/src/lib/component/dialog/transaction-search/components/transaction-search-header/transaction-search-header.module.ts +22 -0
  358. package/projects/transaction/src/lib/component/dialog/transaction-search/dialog-transaction-search.component.ts +90 -0
  359. package/projects/transaction/src/lib/component/dialog/transaction-search/dialog-transaction-search.module.ts +39 -0
  360. package/projects/transaction/src/lib/component/digital-signature/digital-signature.component.ts +77 -0
  361. package/projects/transaction/src/lib/component/digital-signature/digital-signature.module.ts +21 -0
  362. package/projects/transaction/src/lib/component/document-sign/document-sign.component.ts +86 -0
  363. package/projects/transaction/src/lib/component/document-sign/document-sign.module.ts +23 -0
  364. package/projects/transaction/src/lib/component/drop-shipment/drop-shipment.component.ts +301 -0
  365. package/projects/transaction/src/lib/component/drop-shipment/drop-shipment.module.ts +28 -0
  366. package/projects/transaction/src/lib/component/editable-label/editable-label.component.ts +111 -0
  367. package/projects/transaction/src/lib/component/editable-label/editable-label.module.ts +20 -0
  368. package/projects/transaction/src/lib/component/loader/loader.component.ts +50 -0
  369. package/projects/transaction/src/lib/component/loader/loader.module.ts +17 -0
  370. package/projects/transaction/src/lib/component/order-confirmation-create/order-confirmation-create.component.ts +43 -0
  371. package/projects/transaction/src/lib/component/order-confirmation-create/order-confirmation-create.module.ts +26 -0
  372. package/projects/transaction/src/lib/component/payment/payment.component.ts +127 -0
  373. package/projects/transaction/src/lib/component/payment/payment.module.ts +47 -0
  374. package/projects/transaction/src/lib/component/payment-qr-code/payment-qr-code.component.ts +61 -0
  375. package/projects/transaction/src/lib/component/payment-qr-code/payment-qr-code.module.ts +23 -0
  376. package/projects/transaction/src/lib/component/payment-tile/payment-tile.component.ts +46 -0
  377. package/projects/transaction/src/lib/component/payment-tile/payment-tile.module.ts +24 -0
  378. package/projects/transaction/src/lib/component/payment-to-pay/payment-to-pay.component.ts +29 -0
  379. package/projects/transaction/src/lib/component/payment-to-pay/payment-to-pay.module.ts +19 -0
  380. package/projects/transaction/src/lib/component/purchase-confirmation-lines/purchase-confirmation-lines.component.ts +204 -0
  381. package/projects/transaction/src/lib/component/purchase-confirmation-lines/purchase-confirmation-lines.module.ts +26 -0
  382. package/projects/transaction/src/lib/component/quick-send-button/quick-send-button.component.ts +78 -0
  383. package/projects/transaction/src/lib/component/quick-send-button/quick-send-button.module.ts +25 -0
  384. package/projects/transaction/src/lib/component/registered-payment/registered-payment.component.ts +118 -0
  385. package/projects/transaction/src/lib/component/registered-payment/registered-payment.module.ts +23 -0
  386. package/projects/transaction/src/lib/component/relation/relation-address/relation-address.component.ts +247 -0
  387. package/projects/transaction/src/lib/component/relation/relation-address/relation-address.module.ts +29 -0
  388. package/projects/transaction/src/lib/component/relation/relation-address-select/relation-address-select.component.ts +173 -0
  389. package/projects/transaction/src/lib/component/relation/relation-address-select/relation-address-select.module.ts +32 -0
  390. package/projects/transaction/src/lib/component/relation/relation-address-tile/relation-address-tile.component.ts +77 -0
  391. package/projects/transaction/src/lib/component/relation/relation-address-tile/relation-address-tile.module.ts +31 -0
  392. package/projects/transaction/src/lib/component/relation/relation-addresses/relation-addresses.component.ts +196 -0
  393. package/projects/transaction/src/lib/component/relation/relation-addresses/relation-addresses.module.ts +31 -0
  394. package/projects/transaction/src/lib/component/relation/relation-base.component.ts +94 -0
  395. package/projects/transaction/src/lib/component/relation/relation-contact-details/relation-contact-details.component.ts +108 -0
  396. package/projects/transaction/src/lib/component/relation/relation-contact-details/relation-contact-details.module.ts +25 -0
  397. package/projects/transaction/src/lib/component/relation/relation-general/relation-general.component.ts +249 -0
  398. package/projects/transaction/src/lib/component/relation/relation-general/relation-general.module.ts +28 -0
  399. package/projects/transaction/src/lib/component/relation/relation-general-contact-person-dialog/relation-general-contact-person-dialog.component.ts +66 -0
  400. package/projects/transaction/src/lib/component/relation/relation-general-contact-person-dialog/relation-general-contact-person-dialog.module.ts +27 -0
  401. package/projects/transaction/src/lib/component/relation/relation-preferences/relation-preferences.component.ts +67 -0
  402. package/projects/transaction/src/lib/component/relation/relation-preferences/relation-preferences.module.ts +19 -0
  403. package/projects/transaction/src/lib/component/relation/relation-suggestions-list/relation-suggestions-list.component.ts +33 -0
  404. package/projects/transaction/src/lib/component/relation/relation-suggestions-list/relation-suggestions-list.module.ts +21 -0
  405. package/projects/transaction/src/lib/component/relation/relation-suggestions-list-item/relation-suggestions-list-item.component.ts +45 -0
  406. package/projects/transaction/src/lib/component/relation/relation-suggestions-list-item/relation-suggestions-list-item.module.ts +17 -0
  407. package/projects/transaction/src/lib/component/relation/relation-type/relation-type.component.ts +64 -0
  408. package/projects/transaction/src/lib/component/relation/relation-type/relation-type.module.ts +21 -0
  409. package/projects/transaction/src/lib/component/relation/suggestions-sidebar/suggestions-sidebar.component.ts +166 -0
  410. package/projects/transaction/src/lib/component/relation/suggestions-sidebar/suggestions-sidebar.module.ts +23 -0
  411. package/projects/transaction/src/lib/component/returns/return-wizard/delivery-chooser/delivery-chooser.component.ts +114 -0
  412. package/projects/transaction/src/lib/component/returns/return-wizard/delivery-chooser/delivery-chooser.module.ts +26 -0
  413. package/projects/transaction/src/lib/component/returns/return-wizard/delivery-method-chooser/delivery-method-chooser.component.ts +57 -0
  414. package/projects/transaction/src/lib/component/returns/return-wizard/delivery-method-chooser/delivery-method-chooser.module.ts +19 -0
  415. package/projects/transaction/src/lib/component/returns/return-wizard/delivery-method-chooser/delivery-method-tile/delivery-method-tile.component.ts +34 -0
  416. package/projects/transaction/src/lib/component/returns/return-wizard/delivery-method-chooser/delivery-method-tile/delivery-method-tile.module.ts +19 -0
  417. package/projects/transaction/src/lib/component/returns/return-wizard/return-lines-wizard/return-lines-wizard.component.ts +164 -0
  418. package/projects/transaction/src/lib/component/returns/return-wizard/return-lines-wizard/return-lines-wizard.module.ts +36 -0
  419. package/projects/transaction/src/lib/component/returns/return-wizard/return-wizard.component.ts +152 -0
  420. package/projects/transaction/src/lib/component/returns/return-wizard/return-wizard.module.ts +48 -0
  421. package/projects/transaction/src/lib/component/returns/return-wizard/wizard-return-line-display/wizard-return-line-display.component.ts +33 -0
  422. package/projects/transaction/src/lib/component/returns/return-wizard/wizard-return-line-display/wizard-return-line-display.module.ts +30 -0
  423. package/projects/transaction/src/lib/component/returns/return-wizard/wizard-return-line-display-tile/wizard-return-line-display-tile.component.ts +138 -0
  424. package/projects/transaction/src/lib/component/returns/return-wizard/wizard-return-line-display-tile/wizard-return-line-display-tile.module.ts +25 -0
  425. package/projects/transaction/src/lib/component/sales-order-convert-dialog/sales-order-convert-dialog.component.ts +104 -0
  426. package/projects/transaction/src/lib/component/sales-order-convert-dialog/sales-order-convert-dialog.module.ts +32 -0
  427. package/projects/transaction/src/lib/component/save-cancel-buttons/save-cancel-buttons.component.ts +124 -0
  428. package/projects/transaction/src/lib/component/save-cancel-buttons/save-cancel-buttons.module.ts +22 -0
  429. package/projects/transaction/src/lib/component/search/search-feature.module.ts +25 -0
  430. package/projects/transaction/src/lib/component/search/search-filter-panel/search-filter-panel.component.ts +72 -0
  431. package/projects/transaction/src/lib/component/search/search-filter-panel/search-filter-panel.module.ts +22 -0
  432. package/projects/transaction/src/lib/component/search/search-header-buttons/search-header-buttons.component.ts +149 -0
  433. package/projects/transaction/src/lib/component/search/search-header-buttons/search-header-buttons.module.ts +23 -0
  434. package/projects/transaction/src/lib/component/search/search-view-mode.service.ts +75 -0
  435. package/projects/transaction/src/lib/component/search/search.component.ts +122 -0
  436. package/projects/transaction/src/lib/component/service-wizard-qa/question-answer-item/question-answer-item.component.ts +113 -0
  437. package/projects/transaction/src/lib/component/service-wizard-qa/question-answer-item/question-answer-item.module.ts +22 -0
  438. package/projects/transaction/src/lib/component/service-wizard-qa/service-wizard-qa.component.ts +74 -0
  439. package/projects/transaction/src/lib/component/service-wizard-qa/service-wizard-qa.module.ts +23 -0
  440. package/projects/transaction/src/lib/component/shared/conversion-assistant/transaction-line-conversion-assistant.component.ts +115 -0
  441. package/projects/transaction/src/lib/component/shared/conversion-assistant/transaction-line-conversion-assistant.module.ts +37 -0
  442. package/projects/transaction/src/lib/component/shared/transaction-article-text/transaction-article-text.component.ts +467 -0
  443. package/projects/transaction/src/lib/component/shared/transaction-article-text/transaction-article-text.module.ts +47 -0
  444. package/projects/transaction/src/lib/component/shared/transaction-article-text-overview/transaction-article-text-overview.component.ts +150 -0
  445. package/projects/transaction/src/lib/component/shared/transaction-article-text-overview/transaction-article-text-overview.module.ts +28 -0
  446. package/projects/transaction/src/lib/component/shopping-cart/shopping-cart.component.ts +109 -0
  447. package/projects/transaction/src/lib/component/shopping-cart/shopping-cart.module.ts +31 -0
  448. package/projects/transaction/src/lib/component/shopping-cart-preview/shopping-cart-preview.component.ts +119 -0
  449. package/projects/transaction/src/lib/component/shopping-cart-preview/shopping-cart-preview.module.ts +29 -0
  450. package/projects/transaction/src/lib/component/simple-vertical-stepper/co-simple-vertical-stepper.component.ts +172 -0
  451. package/projects/transaction/src/lib/component/simple-vertical-stepper/co-simple-vertical-stepper.module.ts +29 -0
  452. package/projects/transaction/src/lib/component/stepper/stepper.component.ts +164 -0
  453. package/projects/transaction/src/lib/component/stepper/stepper.module.ts +26 -0
  454. package/projects/transaction/src/lib/component/stepper-step/stepper-step.component.ts +46 -0
  455. package/projects/transaction/src/lib/component/stepper-step/stepper-step.module.ts +26 -0
  456. package/projects/transaction/src/lib/component/tile/tile.component.ts +40 -0
  457. package/projects/transaction/src/lib/component/tile/tile.module.ts +20 -0
  458. package/projects/transaction/src/lib/component/toast/toast.component.ts +38 -0
  459. package/projects/transaction/src/lib/component/toast/toast.module.ts +17 -0
  460. package/projects/transaction/src/lib/component/transaction/style/_material-definition.scss +0 -0
  461. package/projects/transaction/src/lib/component/transaction/transaction.component.ts +196 -0
  462. package/projects/transaction/src/lib/component/transaction/transaction.module.ts +34 -0
  463. package/projects/transaction/src/lib/component/transaction-allocate-goods-history/transaction-allocate-goods-history.component.ts +79 -0
  464. package/projects/transaction/src/lib/component/transaction-allocate-goods-history/transaction-allocate-goods-history.module.ts +26 -0
  465. package/projects/transaction/src/lib/component/transaction-batch-order-picking/fast-date-range-picker/fast-date-range-picker.component.ts +76 -0
  466. package/projects/transaction/src/lib/component/transaction-batch-order-picking/fast-date-range-picker/fast-date-range-picker.module.ts +19 -0
  467. package/projects/transaction/src/lib/component/transaction-batch-order-picking/transaction-batch-order-picking.component.ts +21 -0
  468. package/projects/transaction/src/lib/component/transaction-batch-order-picking/transaction-batch-order-picking.module.ts +19 -0
  469. package/projects/transaction/src/lib/component/transaction-button/transaction-button.component.ts +120 -0
  470. package/projects/transaction/src/lib/component/transaction-button/transaction-button.module.ts +22 -0
  471. package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-activities-button-bar-button.component.ts +29 -0
  472. package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button-base.component.ts +71 -0
  473. package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button.component.ts +103 -0
  474. package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-purchase-confirmation-button-bar-button.component.ts +45 -0
  475. package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-purchase-invoice-button-bar-button.component.ts +45 -0
  476. package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-purchase-overview-button-bar-button.component.ts +125 -0
  477. package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-purchase-receive-goods-button-bar-button.component.ts +45 -0
  478. package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-sales-allocation-button-bar-button.component.ts +46 -0
  479. package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-sales-delivery-button-bar-button.component.ts +45 -0
  480. package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-sales-invoice-button-bar-button.component.ts +45 -0
  481. package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-sales-overview-button-bar-button.component.ts +137 -0
  482. package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-sales-picking-button-bar-button.component.ts +149 -0
  483. package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-sales-planning-button-bar-button.component.ts +46 -0
  484. package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-sales-purchase-button-bar-button.component.ts +49 -0
  485. package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-sales-quotation-button-bar-button.component.ts +136 -0
  486. package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-service-service-button-bar-button.component.ts +42 -0
  487. package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar.component.ts +168 -0
  488. package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar.module.ts +133 -0
  489. package/projects/transaction/src/lib/component/transaction-card/transaction-card/transaction-card.component.ts +210 -0
  490. package/projects/transaction/src/lib/component/transaction-card/transaction-card/transaction-card.module.ts +112 -0
  491. package/projects/transaction/src/lib/component/transaction-card/transaction-card-cash-register/transaction-card-cash-register.component.ts +95 -0
  492. package/projects/transaction/src/lib/component/transaction-card/transaction-card-cash-register/transaction-card-cash-register.module.ts +47 -0
  493. package/projects/transaction/src/lib/component/transaction-card/transaction-card-footer/transaction-card-footer.component.ts +36 -0
  494. package/projects/transaction/src/lib/component/transaction-card/transaction-card-footer/transaction-card-footer.module.ts +29 -0
  495. package/projects/transaction/src/lib/component/transaction-card/transaction-card-goods-allocation/transaction-card-goods-allocation.component.ts +151 -0
  496. package/projects/transaction/src/lib/component/transaction-card/transaction-card-goods-allocation/transaction-card-goods-allocation.module.ts +57 -0
  497. package/projects/transaction/src/lib/component/transaction-card/transaction-card-header/transaction-card-header.component.ts +127 -0
  498. package/projects/transaction/src/lib/component/transaction-card/transaction-card-header/transaction-card-header.module.ts +32 -0
  499. package/projects/transaction/src/lib/component/transaction-card/transaction-card-invoice/transaction-card-invoice.component.ts +147 -0
  500. package/projects/transaction/src/lib/component/transaction-card/transaction-card-invoice/transaction-card-invoice.module.ts +55 -0
  501. package/projects/transaction/src/lib/component/transaction-card/transaction-card-margin/transaction-card-margin.component.ts +187 -0
  502. package/projects/transaction/src/lib/component/transaction-card/transaction-card-margin/transaction-card-margin.module.ts +58 -0
  503. package/projects/transaction/src/lib/component/transaction-card/transaction-card-order-delivery/transaction-card-order-delivery.component.ts +155 -0
  504. package/projects/transaction/src/lib/component/transaction-card/transaction-card-order-delivery/transaction-card-order-delivery.module.ts +55 -0
  505. package/projects/transaction/src/lib/component/transaction-card/transaction-card-picked/transaction-card-picked.component.ts +148 -0
  506. package/projects/transaction/src/lib/component/transaction-card/transaction-card-picked/transaction-card-picked.module.ts +58 -0
  507. package/projects/transaction/src/lib/component/transaction-card/transaction-card-planning/transaction-card-planning.component.ts +193 -0
  508. package/projects/transaction/src/lib/component/transaction-card/transaction-card-planning/transaction-card-planning.module.ts +60 -0
  509. package/projects/transaction/src/lib/component/transaction-card/transaction-card-purchase/transaction-card-purchase.component.ts +155 -0
  510. package/projects/transaction/src/lib/component/transaction-card/transaction-card-purchase/transaction-card-purchase.module.ts +69 -0
  511. package/projects/transaction/src/lib/component/transaction-card/transaction-card-purchase-confirmation/transaction-card-purchase-confirmation.component.ts +185 -0
  512. package/projects/transaction/src/lib/component/transaction-card/transaction-card-purchase-confirmation/transaction-card-purchase-confirmation.module.ts +67 -0
  513. package/projects/transaction/src/lib/component/transaction-card/transaction-card-purchase-order-stickers/transaction-card-purchase-order-stickers.component.ts +139 -0
  514. package/projects/transaction/src/lib/component/transaction-card/transaction-card-purchase-order-stickers/transaction-card-purchase-order-stickers.module.ts +50 -0
  515. package/projects/transaction/src/lib/component/transaction-card/transaction-card-purchase-overview/transaction-card-purchase-overview.component.ts +187 -0
  516. package/projects/transaction/src/lib/component/transaction-card/transaction-card-purchase-overview/transaction-card-purchase-overview.module.ts +73 -0
  517. package/projects/transaction/src/lib/component/transaction-card/transaction-card-receive-goods/transaction-card-receive-goods.component.ts +128 -0
  518. package/projects/transaction/src/lib/component/transaction-card/transaction-card-receive-goods/transaction-card-receive-goods.module.ts +48 -0
  519. package/projects/transaction/src/lib/component/transaction-card/transaction-card-reserve-goods/transaction-card-reserve-goods.component.ts +126 -0
  520. package/projects/transaction/src/lib/component/transaction-card/transaction-card-reserve-goods/transaction-card-reserve-goods.module.ts +50 -0
  521. package/projects/transaction/src/lib/component/transaction-card/transaction-card-sales-overview/transaction-card-sales-overview.component.ts +143 -0
  522. package/projects/transaction/src/lib/component/transaction-card/transaction-card-sales-overview/transaction-card-sales-overview.module.ts +56 -0
  523. package/projects/transaction/src/lib/component/transaction-card/transaction-card-to-be-picked/transaction-card-to-be-picked.component.ts +150 -0
  524. package/projects/transaction/src/lib/component/transaction-card/transaction-card-to-be-picked/transaction-card-to-be-picked.module.ts +57 -0
  525. package/projects/transaction/src/lib/component/transaction-cards/transaction-cards.component.ts +48 -0
  526. package/projects/transaction/src/lib/component/transaction-cards/transaction-cards.module.ts +21 -0
  527. package/projects/transaction/src/lib/component/transaction-cash-register-dialog/transaction-cash-register-dialog.component.ts +256 -0
  528. package/projects/transaction/src/lib/component/transaction-cash-register-dialog/transaction-cash-register-dialog.module.ts +27 -0
  529. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-link-relation/transaction-cash-register-link-relation.component.ts +99 -0
  530. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-link-relation/transaction-cash-register-link-relation.module.ts +22 -0
  531. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-order-expense-dialog/transaction-cash-register-order-expense-dialog.component.ts +123 -0
  532. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-order-expense-dialog/transaction-cash-register-order-expense-dialog.module.ts +33 -0
  533. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-order-receipt-dialog/transaction-cash-register-order-receipt-dialog.component.ts +336 -0
  534. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-order-receipt-dialog/transaction-cash-register-order-receipt-dialog.module.ts +23 -0
  535. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/components/transaction-cash-register-payment-buttons.component.ts +34 -0
  536. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/components/transaction-cash-register-payment-buttons.module.ts +21 -0
  537. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/components/transaction-cash-register-payment-cash.component.ts +78 -0
  538. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/components/transaction-cash-register-payment-cash.module.ts +32 -0
  539. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/components/transaction-cash-register-payment-done.component.ts +173 -0
  540. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/components/transaction-cash-register-payment-done.module.ts +21 -0
  541. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/components/transaction-cash-register-payment-method.component.ts +66 -0
  542. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/components/transaction-cash-register-payment-method.module.ts +21 -0
  543. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/components/transaction-cash-register-payment-pin.component.ts +85 -0
  544. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/components/transaction-cash-register-payment-pin.module.ts +21 -0
  545. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/components/transaction-cash-register-payment-qr-code.component.ts +31 -0
  546. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/components/transaction-cash-register-payment-qr-code.module.ts +21 -0
  547. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/components/transaction-cash-register-payment-voucher-popup.component.ts +101 -0
  548. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/components/transaction-cash-register-payment-voucher.component.ts +157 -0
  549. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/components/transaction-cash-register-payment-voucher.module.ts +37 -0
  550. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/ione_payment_image.png +0 -0
  551. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/transaction-cash-register-payment-dialog.component.ts +223 -0
  552. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/transaction-cash-register-payment-dialog.module.ts +51 -0
  553. package/projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/transaction-cash-register-payment-state.enum.ts +8 -0
  554. package/projects/transaction/src/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.ts +123 -0
  555. package/projects/transaction/src/lib/component/transaction-confirmation-history/transaction-confirmation-history.module.ts +38 -0
  556. package/projects/transaction/src/lib/component/transaction-container-connection/transaction-container/transaction-container.component.ts +193 -0
  557. package/projects/transaction/src/lib/component/transaction-container-connection/transaction-container/transaction-container.module.ts +41 -0
  558. package/projects/transaction/src/lib/component/transaction-container-connection/transaction-container-choice-dialog/transaction-container-choice-dialog.component.ts +304 -0
  559. package/projects/transaction/src/lib/component/transaction-container-connection/transaction-container-choice-dialog/transaction-container-choice-dialog.module.ts +36 -0
  560. package/projects/transaction/src/lib/component/transaction-copy-order/transaction-copy-order.component.ts +212 -0
  561. package/projects/transaction/src/lib/component/transaction-copy-order/transaction-copy-order.module.ts +35 -0
  562. package/projects/transaction/src/lib/component/transaction-create-date-label/transaction-create-date-label.component.ts +42 -0
  563. package/projects/transaction/src/lib/component/transaction-create-date-label/transaction-create-date-label.module.ts +17 -0
  564. package/projects/transaction/src/lib/component/transaction-create-wizard/components/service-wizard-art-or-trans.component.ts +351 -0
  565. package/projects/transaction/src/lib/component/transaction-create-wizard/components/service-wizard-create-service.component.ts +139 -0
  566. package/projects/transaction/src/lib/component/transaction-create-wizard/components/service-wizard-questions.component.ts +45 -0
  567. package/projects/transaction/src/lib/component/transaction-create-wizard/components/service-wizard-relation.component.ts +537 -0
  568. package/projects/transaction/src/lib/component/transaction-create-wizard/components/service-wizard-search-bundle.component.ts +97 -0
  569. package/projects/transaction/src/lib/component/transaction-create-wizard/components/service-wizard-service-fields.component.ts +55 -0
  570. package/projects/transaction/src/lib/component/transaction-create-wizard/components/service-wizard-sla.component.ts +86 -0
  571. package/projects/transaction/src/lib/component/transaction-create-wizard/transaction-create-wizard.component.ts +361 -0
  572. package/projects/transaction/src/lib/component/transaction-create-wizard/transaction-create-wizard.module.ts +95 -0
  573. package/projects/transaction/src/lib/component/transaction-date-select/transaction-date-select.component.ts +34 -0
  574. package/projects/transaction/src/lib/component/transaction-date-select/transaction-date-select.module.ts +19 -0
  575. package/projects/transaction/src/lib/component/transaction-direct-sell/transaction-direct-sell-button.component.ts +30 -0
  576. package/projects/transaction/src/lib/component/transaction-direct-sell/transaction-direct-sell-button.module.ts +19 -0
  577. package/projects/transaction/src/lib/component/transaction-documents/transaction-documents.component.ts +54 -0
  578. package/projects/transaction/src/lib/component/transaction-documents/transaction-documents.module.ts +19 -0
  579. package/projects/transaction/src/lib/component/transaction-grid/transaction-available-stock-grid/transaction-available-stock-grid.component.ts +76 -0
  580. package/projects/transaction/src/lib/component/transaction-grid/transaction-available-stock-grid/transaction-available-stock-grid.module.ts +23 -0
  581. package/projects/transaction/src/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.component.ts +135 -0
  582. package/projects/transaction/src/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.module.ts +26 -0
  583. package/projects/transaction/src/lib/component/transaction-grid/transaction-purchase-info-grid/transaction-purchase-info-grid.component.ts +75 -0
  584. package/projects/transaction/src/lib/component/transaction-grid/transaction-purchase-info-grid/transaction-purchase-info-grid.module.ts +20 -0
  585. package/projects/transaction/src/lib/component/transaction-grid/transaction-transport-history-grid/transaction-history-transport-grid.component.ts +130 -0
  586. package/projects/transaction/src/lib/component/transaction-grid/transaction-transport-history-grid/transaction-history-transport-grid.module.ts +28 -0
  587. package/projects/transaction/src/lib/component/transaction-header/transaction-header/transaction-header.component.ts +88 -0
  588. package/projects/transaction/src/lib/component/transaction-header/transaction-header/transaction-header.module.ts +32 -0
  589. package/projects/transaction/src/lib/component/transaction-header/transaction-header-customer-portal/transaction-header-customer-portal.component.ts +215 -0
  590. package/projects/transaction/src/lib/component/transaction-header/transaction-header-customer-portal/transaction-header-customer-portal.module.ts +38 -0
  591. package/projects/transaction/src/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.component.ts +193 -0
  592. package/projects/transaction/src/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.module.ts +82 -0
  593. package/projects/transaction/src/lib/component/transaction-header/transaction-header-order/transaction-header-order.component.ts +160 -0
  594. package/projects/transaction/src/lib/component/transaction-header/transaction-header-order/transaction-header-order.module.ts +64 -0
  595. package/projects/transaction/src/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.ts +260 -0
  596. package/projects/transaction/src/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.module.ts +46 -0
  597. package/projects/transaction/src/lib/component/transaction-header/transaction-header-popup/cash-on-delivery-modal.component.ts +161 -0
  598. package/projects/transaction/src/lib/component/transaction-header/transaction-header-popup/project-code-modal.component.ts +142 -0
  599. package/projects/transaction/src/lib/component/transaction-header/transaction-header-popup/transaction-header-popup-base.component.ts +183 -0
  600. package/projects/transaction/src/lib/component/transaction-header/transaction-header-popup/transaction-header-popup-delivery.component.ts +46 -0
  601. package/projects/transaction/src/lib/component/transaction-header/transaction-header-popup/transaction-header-popup-order.component.ts +96 -0
  602. package/projects/transaction/src/lib/component/transaction-header/transaction-header-popup/transaction-header-popup-payment.component.ts +589 -0
  603. package/projects/transaction/src/lib/component/transaction-header/transaction-header-popup/transaction-header-popup-relation.component.ts +587 -0
  604. package/projects/transaction/src/lib/component/transaction-header/transaction-header-popup/transaction-header-popup.component.ts +207 -0
  605. package/projects/transaction/src/lib/component/transaction-header/transaction-header-popup/transaction-header-popup.module.ts +212 -0
  606. package/projects/transaction/src/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.component.ts +195 -0
  607. package/projects/transaction/src/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.module.ts +58 -0
  608. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-administrative-relation.component.ts +83 -0
  609. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-administrative-relation.module.ts +23 -0
  610. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-amount-to-settle.component.ts +58 -0
  611. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-amount-to-settle.module.ts +23 -0
  612. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-assembly-date.component.ts +83 -0
  613. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-assembly-date.module.ts +24 -0
  614. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-auto-recalculate-deposit.component.ts +37 -0
  615. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-auto-recalculate-deposit.module.ts +23 -0
  616. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-branch.component.ts +113 -0
  617. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-branch.module.ts +26 -0
  618. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-currency.component.ts +73 -0
  619. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-currency.module.ts +24 -0
  620. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-definitive.component.ts +66 -0
  621. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-definitive.module.ts +29 -0
  622. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-date-button.component.ts +35 -0
  623. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-date.component.ts +62 -0
  624. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-date.module.ts +23 -0
  625. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-method-button/transaction-header-delivery-method-button.component.ts +110 -0
  626. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-method-button/transaction-header-delivery-method-button.module.ts +31 -0
  627. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-method.component.ts +120 -0
  628. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-method.module.ts +27 -0
  629. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-options/transaction-header-delivery-options.component.ts +134 -0
  630. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-options/transaction-header-delivery-options.module.ts +23 -0
  631. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-deliverydate-definitive-button/transaction-header-deliverydate-definitive-button.component.ts +111 -0
  632. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-deliverydate-definitive-button/transaction-header-deliverydate-definitive-button.module.ts +25 -0
  633. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-deposit-amount.component.ts +99 -0
  634. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-deposit-amount.module.ts +23 -0
  635. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-deposit-percentage.component.ts +61 -0
  636. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-deposit-percentage.module.ts +23 -0
  637. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-amount.component.ts +70 -0
  638. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-amount.module.ts +23 -0
  639. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-on-order-line.component.ts +47 -0
  640. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-on-order-line.module.ts +29 -0
  641. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-percentage.component.ts +70 -0
  642. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-percentage.module.ts +23 -0
  643. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-transaction-total.component.ts +92 -0
  644. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-transaction-total.module.ts +23 -0
  645. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-district/transaction-header-district.component.ts +88 -0
  646. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-district/transaction-header-district.module.ts +31 -0
  647. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-divide-evenly.component.ts +37 -0
  648. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-divide-evenly.module.ts +23 -0
  649. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-hold-codes.component.ts +64 -0
  650. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-hold-codes.module.ts +26 -0
  651. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-marketing.component.ts +51 -0
  652. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-marketing.module.ts +25 -0
  653. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-partial-delivery/transaction-header-partial-delivery.component.ts +83 -0
  654. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-partial-delivery/transaction-header-partial-delivery.module.ts +31 -0
  655. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-payment-button/transaction-header-payment-button.component.ts +129 -0
  656. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-payment-button/transaction-header-payment-button.module.ts +27 -0
  657. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-payment-condition.component.ts +61 -0
  658. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-payment-condition.module.ts +24 -0
  659. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-preferred-delivery-date.component.ts +83 -0
  660. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-preferred-delivery-date.module.ts +23 -0
  661. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-preferred-delivery-time.component.ts +91 -0
  662. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-preferred-delivery-time.module.ts +29 -0
  663. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-price-kind.component.ts +70 -0
  664. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-price-kind.module.ts +24 -0
  665. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-price-list-button/transaction-header-price-list-button.component.ts +86 -0
  666. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-price-list-button/transaction-header-price-list-button.module.ts +31 -0
  667. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-price-list.component.ts +50 -0
  668. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-price-list.module.ts +39 -0
  669. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-project-code.component.ts +66 -0
  670. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-project-code.module.ts +20 -0
  671. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-reference.component.ts +57 -0
  672. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-reference.module.ts +23 -0
  673. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-relation-date.component.ts +70 -0
  674. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-relation-date.module.ts +24 -0
  675. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-relation-reference.component.ts +57 -0
  676. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-relation-reference.module.ts +23 -0
  677. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-remaining-amount.component.ts +103 -0
  678. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-remaining-amount.module.ts +22 -0
  679. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-remarks.component.ts +57 -0
  680. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-remarks.module.ts +23 -0
  681. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-retail-stadium.component.ts +59 -0
  682. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-retail-stadium.module.ts +21 -0
  683. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-sales-person.component.ts +60 -0
  684. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-sales-person.module.ts +23 -0
  685. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-scoring-chance.component.ts +66 -0
  686. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-scoring-chance.module.ts +21 -0
  687. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-scoring-date.component.ts +65 -0
  688. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-scoring-date.module.ts +21 -0
  689. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-targer-warehouse.module.ts +26 -0
  690. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-target-warehouse.component.ts +68 -0
  691. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-total-assembly-time.component.ts +34 -0
  692. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-total-assembly-time.module.ts +29 -0
  693. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-type.module.ts +24 -0
  694. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-type.ts +72 -0
  695. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-use-deposit-rule.component.ts +38 -0
  696. package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-use-deposit-rule.module.ts +23 -0
  697. package/projects/transaction/src/lib/component/transaction-header-handled-by/transaction-header-handled-by.component.ts +51 -0
  698. package/projects/transaction/src/lib/component/transaction-header-handled-by/transaction-header-handled-by.module.ts +19 -0
  699. package/projects/transaction/src/lib/component/transaction-header-simple/transaction-header-simple.component.ts +69 -0
  700. package/projects/transaction/src/lib/component/transaction-header-simple/transaction-header-simple.module.ts +27 -0
  701. package/projects/transaction/src/lib/component/transaction-history-grid-status/transaction-history-grid-status.component.ts +52 -0
  702. package/projects/transaction/src/lib/component/transaction-history-grid-status/transaction-history-grid-status.module.ts +21 -0
  703. package/projects/transaction/src/lib/component/transaction-internal/transaction-internal.component.ts +910 -0
  704. package/projects/transaction/src/lib/component/transaction-internal/transaction-internal.module.ts +119 -0
  705. package/projects/transaction/src/lib/component/transaction-labeled-price-input/transaction-labeled-price-input.component.ts +112 -0
  706. package/projects/transaction/src/lib/component/transaction-labeled-price-input/transaction-labeled-price-input.module.ts +20 -0
  707. package/projects/transaction/src/lib/component/transaction-labeled-warehouse-location-button/transaction-labeled-warehouse-location-button.component.ts +105 -0
  708. package/projects/transaction/src/lib/component/transaction-labeled-warehouse-location-button/transaction-labeled-warehouse-location-button.module.ts +25 -0
  709. package/projects/transaction/src/lib/component/transaction-line/transaction-base-card/transaction-base-card.component.ts +103 -0
  710. package/projects/transaction/src/lib/component/transaction-line/transaction-base-card/transaction-base-card.module.ts +17 -0
  711. package/projects/transaction/src/lib/component/transaction-line/transaction-base-line/transaction-base-line.component.ts +231 -0
  712. package/projects/transaction/src/lib/component/transaction-line/transaction-base-line/transaction-base-line.module.ts +28 -0
  713. package/projects/transaction/src/lib/component/transaction-line/transaction-cash-register-order-line/transaction-cash-register-order-line.component.ts +80 -0
  714. package/projects/transaction/src/lib/component/transaction-line/transaction-cash-register-order-line/transaction-cash-register-order-line.module.ts +38 -0
  715. package/projects/transaction/src/lib/component/transaction-line/transaction-customer-portal-line/transaction-customer-portal-line.component.ts +176 -0
  716. package/projects/transaction/src/lib/component/transaction-line/transaction-customer-portal-line/transaction-customer-portal-line.module.ts +82 -0
  717. package/projects/transaction/src/lib/component/transaction-line/transaction-customer-portal-return-line/transaction-customer-portal-return-line.component.ts +102 -0
  718. package/projects/transaction/src/lib/component/transaction-line/transaction-customer-portal-return-line/transaction-customer-portal-return-line.module.ts +82 -0
  719. package/projects/transaction/src/lib/component/transaction-line/transaction-goods-allocation-line/transaction-goods-allocation-line.component.ts +154 -0
  720. package/projects/transaction/src/lib/component/transaction-line/transaction-goods-allocation-line/transaction-goods-allocation-line.module.ts +55 -0
  721. package/projects/transaction/src/lib/component/transaction-line/transaction-interbranch-receive-goods-line/transaction-interbranch-receive-goods-line-base.component.ts +98 -0
  722. package/projects/transaction/src/lib/component/transaction-line/transaction-interbranch-receive-goods-line/transaction-interbranch-receive-goods-line.component.ts +183 -0
  723. package/projects/transaction/src/lib/component/transaction-line/transaction-interbranch-receive-goods-line/transaction-interbranch-receive-goods-line.module.ts +52 -0
  724. package/projects/transaction/src/lib/component/transaction-line/transaction-invoice-line/transaction-invoice-line-base.component.ts +106 -0
  725. package/projects/transaction/src/lib/component/transaction-line/transaction-invoice-line/transaction-invoice-line.component.ts +119 -0
  726. package/projects/transaction/src/lib/component/transaction-line/transaction-invoice-line/transaction-invoice-line.module.ts +52 -0
  727. package/projects/transaction/src/lib/component/transaction-line/transaction-line/transaction-line.component.ts +281 -0
  728. package/projects/transaction/src/lib/component/transaction-line/transaction-line/transaction-line.module.ts +139 -0
  729. package/projects/transaction/src/lib/component/transaction-line/transaction-line-label/transaction-line-label.component.ts +19 -0
  730. package/projects/transaction/src/lib/component/transaction-line/transaction-line-label/transaction-line-label.module.ts +21 -0
  731. package/projects/transaction/src/lib/component/transaction-line/transaction-line-toolbar/transaction-line-toolbar.component.ts +230 -0
  732. package/projects/transaction/src/lib/component/transaction-line/transaction-line-toolbar/transaction-line-toolbar.module.ts +24 -0
  733. package/projects/transaction/src/lib/component/transaction-line/transaction-margin-info-line/transaction-margin-info-line.component.ts +222 -0
  734. package/projects/transaction/src/lib/component/transaction-line/transaction-margin-info-line/transaction-margin-info-line.module.ts +76 -0
  735. package/projects/transaction/src/lib/component/transaction-line/transaction-order-delivery-line/transaction-order-delivery-line-base.component.ts +108 -0
  736. package/projects/transaction/src/lib/component/transaction-line/transaction-order-delivery-line/transaction-order-delivery-line.component.ts +126 -0
  737. package/projects/transaction/src/lib/component/transaction-line/transaction-order-delivery-line/transaction-order-delivery-line.module.ts +50 -0
  738. package/projects/transaction/src/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.component.ts +247 -0
  739. package/projects/transaction/src/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.module.ts +72 -0
  740. package/projects/transaction/src/lib/component/transaction-line/transaction-picked-line/transaction-picked-line.component.ts +148 -0
  741. package/projects/transaction/src/lib/component/transaction-line/transaction-picked-line/transaction-picked-line.module.ts +49 -0
  742. package/projects/transaction/src/lib/component/transaction-line/transaction-planning-line/components/transaction-planning-line-planned-resource/transaction-planning-line-planned-resource.component.ts +34 -0
  743. package/projects/transaction/src/lib/component/transaction-line/transaction-planning-line/transaction-planning-line.component.ts +381 -0
  744. package/projects/transaction/src/lib/component/transaction-line/transaction-planning-line/transaction-planning-line.module.ts +79 -0
  745. package/projects/transaction/src/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line-base.component.ts +104 -0
  746. package/projects/transaction/src/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.component.ts +177 -0
  747. package/projects/transaction/src/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.module.ts +78 -0
  748. package/projects/transaction/src/lib/component/transaction-line/transaction-purchase-order-line/transaction-purchase-order-line-base.component.ts +205 -0
  749. package/projects/transaction/src/lib/component/transaction-line/transaction-purchase-order-line/transaction-purchase-order-line.component.ts +171 -0
  750. package/projects/transaction/src/lib/component/transaction-line/transaction-purchase-order-line/transaction-purchase-order-line.module.ts +85 -0
  751. package/projects/transaction/src/lib/component/transaction-line/transaction-purchase-order-stickers-line/transaction-purchase-order-stickers-line-base.component.ts +63 -0
  752. package/projects/transaction/src/lib/component/transaction-line/transaction-purchase-order-stickers-line/transaction-purchase-order-stickers-line.component.ts +131 -0
  753. package/projects/transaction/src/lib/component/transaction-line/transaction-purchase-order-stickers-line/transaction-purchase-order-stickers-line.module.ts +47 -0
  754. package/projects/transaction/src/lib/component/transaction-line/transaction-purchase-overview-line/transaction-purchase-overview-line.component.ts +200 -0
  755. package/projects/transaction/src/lib/component/transaction-line/transaction-purchase-overview-line/transaction-purchase-overview-line.module.ts +51 -0
  756. package/projects/transaction/src/lib/component/transaction-line/transaction-purchase-transport-line/transaction-purchase-transport-line-base.component.ts +194 -0
  757. package/projects/transaction/src/lib/component/transaction-line/transaction-purchase-transport-line/transaction-purchase-transport-line.component.ts +136 -0
  758. package/projects/transaction/src/lib/component/transaction-line/transaction-purchase-transport-line/transaction-purchase-transport-line.module.ts +91 -0
  759. package/projects/transaction/src/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line-base.component.ts +98 -0
  760. package/projects/transaction/src/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.component.ts +199 -0
  761. package/projects/transaction/src/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.module.ts +54 -0
  762. package/projects/transaction/src/lib/component/transaction-line/transaction-reserve-goods-line/transaction-reserve-goods-line-base.component.ts +63 -0
  763. package/projects/transaction/src/lib/component/transaction-line/transaction-reserve-goods-line/transaction-reserve-goods-line.component.ts +127 -0
  764. package/projects/transaction/src/lib/component/transaction-line/transaction-reserve-goods-line/transaction-reserve-goods-line.module.ts +52 -0
  765. package/projects/transaction/src/lib/component/transaction-line/transaction-sales-order-quotation-line/transaction-sales-order-quotation-line.component.ts +120 -0
  766. package/projects/transaction/src/lib/component/transaction-line/transaction-sales-order-quotation-line/transaction-sales-order-quotation-line.module.ts +56 -0
  767. package/projects/transaction/src/lib/component/transaction-line/transaction-text-line/transaction-text-line.component.ts +95 -0
  768. package/projects/transaction/src/lib/component/transaction-line/transaction-text-line/transaction-text-line.module.ts +21 -0
  769. package/projects/transaction/src/lib/component/transaction-line/transaction-to-be-picked-line/transaction-to-be-picked-line.component.ts +155 -0
  770. package/projects/transaction/src/lib/component/transaction-line/transaction-to-be-picked-line/transaction-to-be-picked-line.module.ts +49 -0
  771. package/projects/transaction/src/lib/component/transaction-line-action-buttons/transaction-line-action-buttons-popup.component.ts +180 -0
  772. package/projects/transaction/src/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.component.ts +243 -0
  773. package/projects/transaction/src/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.module.ts +33 -0
  774. package/projects/transaction/src/lib/component/transaction-line-activities/components/transaction-line-activities-contact-moments/components/transaction-line-activities-contact-moments-add-moment-dialog/transaction-line-activities-contact-moments-add-moment-dialog.component.ts +141 -0
  775. package/projects/transaction/src/lib/component/transaction-line-activities/components/transaction-line-activities-contact-moments/components/transaction-line-activities-contact-moments-add-moment-dialog/transaction-line-activities-contact-moments-add-moment-dialog.module.ts +17 -0
  776. package/projects/transaction/src/lib/component/transaction-line-activities/components/transaction-line-activities-contact-moments/components/transaction-line-activities-contact-moments-block/transaction-line-activities-contact-moments-block.component.ts +57 -0
  777. package/projects/transaction/src/lib/component/transaction-line-activities/components/transaction-line-activities-contact-moments/components/transaction-line-activities-contact-moments-block/transaction-line-activities-contact-moments-block.module.ts +17 -0
  778. package/projects/transaction/src/lib/component/transaction-line-activities/components/transaction-line-activities-contact-moments/transaction-line-activities-contact-moments.component.ts +93 -0
  779. package/projects/transaction/src/lib/component/transaction-line-activities/components/transaction-line-activities-contact-moments/transaction-line-activities-contact-moments.module.ts +17 -0
  780. package/projects/transaction/src/lib/component/transaction-line-activities/transaction-line-activities.component.ts +65 -0
  781. package/projects/transaction/src/lib/component/transaction-line-activities/transaction-line-activities.module.ts +28 -0
  782. package/projects/transaction/src/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.component.ts +98 -0
  783. package/projects/transaction/src/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.module.ts +25 -0
  784. package/projects/transaction/src/lib/component/transaction-line-delivery-history/transaction-line-delivery-history.component.ts +36 -0
  785. package/projects/transaction/src/lib/component/transaction-line-delivery-history/transaction-line-delivery-history.module.ts +25 -0
  786. package/projects/transaction/src/lib/component/transaction-line-fields/dialog-transaction-line-purchase-description/dialog-transaction-line-purchase-description.component.ts +53 -0
  787. package/projects/transaction/src/lib/component/transaction-line-fields/dialog-transaction-line-purchase-description/dialog-transaction-line-purchase-description.module.ts +25 -0
  788. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-amount.component.ts +100 -0
  789. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-amount.module.ts +21 -0
  790. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-assembly-time/transaction-line-assembly-time.component.ts +139 -0
  791. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-assembly-time/transaction-line-assembly-time.module.ts +24 -0
  792. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-commission-button.component.ts +78 -0
  793. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-commission-button.module.ts +28 -0
  794. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-commission-code.component.ts +86 -0
  795. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-commission-code.module.ts +24 -0
  796. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-confirmed-delivery-date-button.component.ts +135 -0
  797. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-confirmed-delivery-date-button.module.ts +23 -0
  798. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-confirmed-price/transaction-line-confirmed-price.component.ts +103 -0
  799. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-confirmed-price/transaction-line-confirmed-price.module.ts +24 -0
  800. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-date-button.component.ts +142 -0
  801. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-date-button.module.ts +28 -0
  802. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-button.component.ts +80 -0
  803. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-button.module.ts +28 -0
  804. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-date-button.component.ts +137 -0
  805. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-date-button.module.ts +28 -0
  806. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-date.component.ts +60 -0
  807. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-date.module.ts +23 -0
  808. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-method.component.ts +63 -0
  809. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-method.module.ts +24 -0
  810. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-description.component.ts +159 -0
  811. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-description.module.ts +25 -0
  812. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-direct-sell/transaction-line-direct-sell.component.ts +259 -0
  813. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-direct-sell/transaction-line-direct-sell.module.ts +25 -0
  814. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-direct-sell-button.component.ts +80 -0
  815. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-direct-sell-button.module.ts +25 -0
  816. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-discount-amount.component.ts +64 -0
  817. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-discount-amount.module.ts +21 -0
  818. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-discount-button.component.ts +87 -0
  819. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-discount-button.module.ts +30 -0
  820. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-discount-percentage.component.ts +64 -0
  821. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-discount-percentage.module.ts +21 -0
  822. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-drop-shipment-button.component.ts +135 -0
  823. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-drop-shipment-button.module.ts +29 -0
  824. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-interbranch-warehouse-location-button.component.ts +116 -0
  825. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-interbranch-warehouse-location-button.module.ts +34 -0
  826. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.component.ts +166 -0
  827. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.module.ts +24 -0
  828. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-price-list.component.ts +45 -0
  829. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-price-list.module.ts +23 -0
  830. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-quantum-discount.component.ts +64 -0
  831. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-quantum-discount.module.ts +21 -0
  832. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-reference.component.ts +58 -0
  833. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-reference.module.ts +23 -0
  834. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-special-discount.component.ts +64 -0
  835. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-special-discount.module.ts +21 -0
  836. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier-artnr/transaction-line-supplier-artnr.component.ts +117 -0
  837. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier-artnr/transaction-line-supplier-artnr.module.ts +24 -0
  838. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier-button.component.ts +189 -0
  839. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier-button.module.ts +37 -0
  840. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier-delivery-date-button.component.ts +128 -0
  841. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier-delivery-date-button.module.ts +28 -0
  842. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier.component.ts +95 -0
  843. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier.module.ts +21 -0
  844. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-vat-button.component.ts +86 -0
  845. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-vat-button.module.ts +24 -0
  846. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-vat.component.ts +63 -0
  847. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-vat.module.ts +25 -0
  848. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse-button.component.ts +81 -0
  849. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse-button.module.ts +30 -0
  850. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse-location-button.component.ts +116 -0
  851. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse-location-button.module.ts +33 -0
  852. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse-location.component.ts +80 -0
  853. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse-location.module.ts +21 -0
  854. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse.component.ts +63 -0
  855. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse.module.ts +30 -0
  856. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-purchase-portal-line-confirmed-delivery-date.component.ts +37 -0
  857. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-purchase-portal-line-confirmed-delivery-date.module.ts +27 -0
  858. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-purchase-portal-line-delivery-date.component.ts +34 -0
  859. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-purchase-portal-line-delivery-date.module.ts +24 -0
  860. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-purchase-portal-line-gross-order-price.component.ts +57 -0
  861. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-purchase-portal-line-gross-order-price.module.ts +21 -0
  862. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-purchase-portal-line-net-order-price.component.ts +58 -0
  863. package/projects/transaction/src/lib/component/transaction-line-fields/transaction-purchase-portal-line-net-order-price.module.ts +23 -0
  864. package/projects/transaction/src/lib/component/transaction-line-grid/transaction-line-grid.component.ts +21 -0
  865. package/projects/transaction/src/lib/component/transaction-line-grid/transaction-line-grid.module.ts +19 -0
  866. package/projects/transaction/src/lib/component/transaction-line-image-and-description/transaction-line-image-and-description.component.ts +266 -0
  867. package/projects/transaction/src/lib/component/transaction-line-image-and-description/transaction-line-image-and-description.module.ts +27 -0
  868. package/projects/transaction/src/lib/component/transaction-line-interbranch-receive-goods/transaction-line-interbranch-receive-goods.component.ts +399 -0
  869. package/projects/transaction/src/lib/component/transaction-line-interbranch-receive-goods/transaction-line-interbranch-receive-goods.module.ts +54 -0
  870. package/projects/transaction/src/lib/component/transaction-line-invoice-history/transaction-line-invoice-history.component.ts +36 -0
  871. package/projects/transaction/src/lib/component/transaction-line-invoice-history/transaction-line-invoice-history.module.ts +25 -0
  872. package/projects/transaction/src/lib/component/transaction-line-purchase-confirmation/transaction-line-purchase-confirmation.component.ts +321 -0
  873. package/projects/transaction/src/lib/component/transaction-line-purchase-confirmation/transaction-line-purchase-confirmation.module.ts +45 -0
  874. package/projects/transaction/src/lib/component/transaction-line-purchase-receive-goods/transaction-line-purchase-receive-goods.component.ts +403 -0
  875. package/projects/transaction/src/lib/component/transaction-line-purchase-receive-goods/transaction-line-purchase-receive-goods.module.ts +54 -0
  876. package/projects/transaction/src/lib/component/transaction-line-purchase-transport/transaction-line-purchase-transport.component.ts +195 -0
  877. package/projects/transaction/src/lib/component/transaction-line-purchase-transport/transaction-line-purchase-transport.module.ts +65 -0
  878. package/projects/transaction/src/lib/component/transaction-line-sales-allocation/transaction-line-sales-allocation.component.ts +227 -0
  879. package/projects/transaction/src/lib/component/transaction-line-sales-allocation/transaction-line-sales-allocation.module.ts +43 -0
  880. package/projects/transaction/src/lib/component/transaction-line-sales-delivery/transaction-line-sales-delivery.component.ts +50 -0
  881. package/projects/transaction/src/lib/component/transaction-line-sales-delivery/transaction-line-sales-delivery.module.ts +21 -0
  882. package/projects/transaction/src/lib/component/transaction-line-sales-invoice/transaction-line-sales-invoice.component.ts +51 -0
  883. package/projects/transaction/src/lib/component/transaction-line-sales-invoice/transaction-line-sales-invoice.module.ts +21 -0
  884. package/projects/transaction/src/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.ts +150 -0
  885. package/projects/transaction/src/lib/component/transaction-line-side-panel/transaction-line-side-panel.module.ts +43 -0
  886. package/projects/transaction/src/lib/component/transaction-line-side-panel-article-details/transaction-line-side-panel-article-details.component.ts +359 -0
  887. package/projects/transaction/src/lib/component/transaction-line-side-panel-article-details/transaction-line-side-panel-article-details.module.ts +36 -0
  888. package/projects/transaction/src/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.component.ts +178 -0
  889. package/projects/transaction/src/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.module.ts +65 -0
  890. package/projects/transaction/src/lib/component/transaction-line-side-panel-internal-delivery/transaction-line-side-panel-internal-delivery.component.ts +48 -0
  891. package/projects/transaction/src/lib/component/transaction-line-side-panel-internal-delivery/transaction-line-side-panel-internal-delivery.module.ts +66 -0
  892. package/projects/transaction/src/lib/component/transaction-line-side-panel-planning/transaction-line-side-panel-planning.component.ts +29 -0
  893. package/projects/transaction/src/lib/component/transaction-line-side-panel-planning/transaction-line-side-panel-planning.module.ts +46 -0
  894. package/projects/transaction/src/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.ts +35 -0
  895. package/projects/transaction/src/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.module.ts +37 -0
  896. package/projects/transaction/src/lib/component/transaction-line-side-panel-replenishment-article-details/transaction-line-side-panel-replenishment-article-details.component.ts +241 -0
  897. package/projects/transaction/src/lib/component/transaction-line-side-panel-replenishment-article-details/transaction-line-side-panel-replenishment-article-details.module.ts +36 -0
  898. package/projects/transaction/src/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-picked/transaction-line-side-panel-picked.component.ts +58 -0
  899. package/projects/transaction/src/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-picked/transaction-line-side-panel-picked.module.ts +23 -0
  900. package/projects/transaction/src/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-sales.component.ts +51 -0
  901. package/projects/transaction/src/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-sales.module.ts +66 -0
  902. package/projects/transaction/src/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-to-be-picked/transaction-line-side-panel-to-be-picked.component.ts +63 -0
  903. package/projects/transaction/src/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-to-be-picked/transaction-line-side-panel-to-be-picked.module.ts +21 -0
  904. package/projects/transaction/src/lib/component/transaction-line-side-panel-sales-purchase/transaction-line-side-panel-sales-purchase.component.ts +99 -0
  905. package/projects/transaction/src/lib/component/transaction-line-side-panel-sales-purchase/transaction-line-side-panel-sales-purchase.module.ts +45 -0
  906. package/projects/transaction/src/lib/component/transaction-line-statusbar/transaction-line-statusbar.component.ts +216 -0
  907. package/projects/transaction/src/lib/component/transaction-line-statusbar/transaction-line-statusbar.module.ts +21 -0
  908. package/projects/transaction/src/lib/component/transaction-lines/transaction-lines.component.ts +182 -0
  909. package/projects/transaction/src/lib/component/transaction-lines/transaction-lines.module.ts +35 -0
  910. package/projects/transaction/src/lib/component/transaction-lines-popup/transaction-lines-popup.component.ts +58 -0
  911. package/projects/transaction/src/lib/component/transaction-lines-popup/transaction-lines-popup.module.ts +22 -0
  912. package/projects/transaction/src/lib/component/transaction-lines-side-panel/transaction-lines-side-panel/transaction-lines-side-panel.component.ts +96 -0
  913. package/projects/transaction/src/lib/component/transaction-lines-side-panel/transaction-lines-side-panel/transaction-lines-side-panel.module.ts +36 -0
  914. package/projects/transaction/src/lib/component/transaction-lines-side-panel/transaction-lines-side-panel-cash-desk/transaction-lines-side-panel-cash-desk.component.ts +192 -0
  915. package/projects/transaction/src/lib/component/transaction-lines-side-panel/transaction-lines-side-panel-cash-desk/transaction-lines-side-panel-cash-desk.module.ts +36 -0
  916. package/projects/transaction/src/lib/component/transaction-lines-side-panel/transaction-lines-side-panel-service-order/transaction-lines-side-panel-service-order.component.ts +145 -0
  917. package/projects/transaction/src/lib/component/transaction-lines-side-panel/transaction-lines-side-panel-service-order/transaction-lines-side-panel-service-order.module.ts +32 -0
  918. package/projects/transaction/src/lib/component/transaction-margin/component/transaction-margin-block/transaction-margin-block.component.ts +34 -0
  919. package/projects/transaction/src/lib/component/transaction-margin/transaction-margin.component.ts +26 -0
  920. package/projects/transaction/src/lib/component/transaction-margin/transaction-margin.module.ts +35 -0
  921. package/projects/transaction/src/lib/component/transaction-navigation-button/transaction-navigation-button.component.ts +69 -0
  922. package/projects/transaction/src/lib/component/transaction-navigation-button/transaction-navigation-button.module.ts +23 -0
  923. package/projects/transaction/src/lib/component/transaction-navigation-button-list/transaction-navigation-button-list.component.ts +171 -0
  924. package/projects/transaction/src/lib/component/transaction-navigation-button-list/transaction-navigation-button-list.module.ts +28 -0
  925. package/projects/transaction/src/lib/component/transaction-number-label/transaction-number-label.component.ts +42 -0
  926. package/projects/transaction/src/lib/component/transaction-number-label/transaction-number-label.module.ts +17 -0
  927. package/projects/transaction/src/lib/component/transaction-picking-history/transaction-picking-history.component.ts +49 -0
  928. package/projects/transaction/src/lib/component/transaction-picking-history/transaction-picking-history.module.ts +26 -0
  929. package/projects/transaction/src/lib/component/transaction-print-package-sticker/transaction-print-package-sticker.component.ts +114 -0
  930. package/projects/transaction/src/lib/component/transaction-print-package-sticker/transaction-print-package-sticker.module.ts +25 -0
  931. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.component.ts +137 -0
  932. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.module.ts +130 -0
  933. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-goods-allocation/transaction-quick-access-goods-allocation.component.ts +81 -0
  934. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-goods-allocation/transaction-quick-access-goods-allocation.module.ts +26 -0
  935. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/transaction-quick-access-interbranch-order-purchase.component.ts +239 -0
  936. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/transaction-quick-access-interbranch-order-purchase.module.ts +28 -0
  937. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/transaction-quick-access-interbranch-received-goods.component.ts +285 -0
  938. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/transaction-quick-access-interbranch-received-goods.module.ts +48 -0
  939. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-invoice/transaction-quick-access-invoice.component.ts +306 -0
  940. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-invoice/transaction-quick-access-invoice.module.ts +31 -0
  941. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-activities/transaction-quick-access-order-activities.component.ts +228 -0
  942. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-activities/transaction-quick-access-order-activities.module.ts +36 -0
  943. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.ts +240 -0
  944. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.module.ts +38 -0
  945. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-delivery/transaction-quick-access-order-delivery.component.ts +292 -0
  946. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-delivery/transaction-quick-access-order-delivery.module.ts +36 -0
  947. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-purchase/transaction-quick-access-order-purchase.component.ts +264 -0
  948. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-purchase/transaction-quick-access-order-purchase.module.ts +28 -0
  949. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-sticker/transaction-quick-access-order-sticker.component.ts +186 -0
  950. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-sticker/transaction-quick-access-order-sticker.module.ts +27 -0
  951. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-transport/transaction-quick-access-order-transport.component.ts +141 -0
  952. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-transport/transaction-quick-access-order-transport.module.ts +38 -0
  953. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.component.ts +277 -0
  954. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.module.ts +34 -0
  955. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-picked/transaction-quick-access-picked.component.ts +62 -0
  956. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-picked/transaction-quick-access-picked.module.ts +23 -0
  957. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-planning/component/transaction-quick-access-planning-popup/transaction-quick-access-planning-popup.component.ts +285 -0
  958. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-planning/transaction-quick-access-planning.component.ts +177 -0
  959. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-planning/transaction-quick-access-planning.module.ts +58 -0
  960. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/transaction-quick-access-purchase-order-overview.component.ts +231 -0
  961. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/transaction-quick-access-purchase-order-overview.module.ts +30 -0
  962. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.ts +311 -0
  963. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.module.ts +48 -0
  964. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-reserve/transaction-quick-access-reserve.component.ts +198 -0
  965. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-reserve/transaction-quick-access-reserve.module.ts +27 -0
  966. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-sales-quotation/transaction-quick-access-sales-quotation.component.ts +314 -0
  967. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-sales-quotation/transaction-quick-access-sales-quotation.module.ts +38 -0
  968. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-send-method-base.component.ts +357 -0
  969. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-service-order/transaction-quick-access-service-order.component.ts +170 -0
  970. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-service-order/transaction-quick-access-service-order.module.ts +30 -0
  971. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-to-be-picked/transaction-quick-access-to-be-picked.component.ts +93 -0
  972. package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-to-be-picked/transaction-quick-access-to-be-picked.module.ts +24 -0
  973. package/projects/transaction/src/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.component.ts +62 -0
  974. package/projects/transaction/src/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.module.ts +28 -0
  975. package/projects/transaction/src/lib/component/transaction-reservation/service/transaction-sales-reservation.service.ts +119 -0
  976. package/projects/transaction/src/lib/component/transaction-reservation/transaction-sales-reservation-popup/transaction-sales-reservation-popup.component.ts +103 -0
  977. package/projects/transaction/src/lib/component/transaction-sales-person-input/transaction-sales-person-input.component.ts +93 -0
  978. package/projects/transaction/src/lib/component/transaction-sales-person-input/transaction-sales-person-input.module.ts +36 -0
  979. package/projects/transaction/src/lib/component/transaction-search/service/filter-request.service.ts +194 -0
  980. package/projects/transaction/src/lib/component/transaction-search/service/transaction-filter-content.service.ts +8 -0
  981. package/projects/transaction/src/lib/component/transaction-search/service/transaction-search.service.ts +214 -0
  982. package/projects/transaction/src/lib/component/transaction-search/transaction-batch-process-dialog/transaction-batch-process-dialog.component.ts +110 -0
  983. package/projects/transaction/src/lib/component/transaction-search/transaction-batch-process-dialog/transaction-batch-process-dialog.module.ts +25 -0
  984. package/projects/transaction/src/lib/component/transaction-search/transaction-date-pick-dialog/transaction-date-pick-dialog.component.ts +69 -0
  985. package/projects/transaction/src/lib/component/transaction-search/transaction-date-pick-dialog/transaction-date-pick-dialog.module.ts +27 -0
  986. package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-cash-desk-filter/transaction-cash-desk-filter.component.ts +41 -0
  987. package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-cash-desk-filter/transaction-cash-desk-filter.module.ts +50 -0
  988. package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-filter/transaction-filter.component.ts +103 -0
  989. package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-filter/transaction-filter.module.ts +17 -0
  990. package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-inter-branch-order-filter/transaction-inter-branch-order-filter.component.ts +49 -0
  991. package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-inter-branch-order-filter/transaction-inter-branch-order-filter.module.ts +50 -0
  992. package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/transaction-purchase-order-filter.component.ts +32 -0
  993. package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/transaction-purchase-order-filter.module.ts +40 -0
  994. package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/transaction-sales-order-filter.component.ts +49 -0
  995. package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/transaction-sales-order-filter.module.ts +38 -0
  996. package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-sales-quotation-filter/transaction-sales-quotation-filter.component.ts +36 -0
  997. package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-sales-quotation-filter/transaction-sales-quotation-filter.module.ts +33 -0
  998. package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-service-order-filter/transaction-service-order-filter.component.ts +41 -0
  999. package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-service-order-filter/transaction-service-order-filter.module.ts +38 -0
  1000. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-categories/transaction-filter-categories.component.ts +47 -0
  1001. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-categories/transaction-filter-categories.module.ts +17 -0
  1002. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/cash-desk-filter-content/transaction-cash-desk-filter-content-article/transaction-cash-desk-filter-content-article.component.ts +125 -0
  1003. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/cash-desk-filter-content/transaction-cash-desk-filter-content-article/transaction-cash-desk-filter-content-article.module.ts +29 -0
  1004. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/cash-desk-filter-content/transaction-cash-desk-filter-content-logistics/transaction-cash-desk-filter-content-logistics.component.ts +252 -0
  1005. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/cash-desk-filter-content/transaction-cash-desk-filter-content-logistics/transaction-cash-desk-filter-content-logistics.module.ts +35 -0
  1006. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/cash-desk-filter-content/transaction-cash-desk-filter-content-order/transaction-cash-desk-filter-content-order.component.ts +318 -0
  1007. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/cash-desk-filter-content/transaction-cash-desk-filter-content-order/transaction-cash-desk-filter-content-order.module.ts +37 -0
  1008. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/enum/search-placeholder.enum.ts +27 -0
  1009. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/inter-branch-order-filter-content/transaction-inter-branch-order-filter-content-article/transaction-inter-branch-order-filter-content-article.component.ts +130 -0
  1010. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/inter-branch-order-filter-content/transaction-inter-branch-order-filter-content-article/transaction-inter-branch-order-filter-content-article.module.ts +27 -0
  1011. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/inter-branch-order-filter-content/transaction-inter-branch-order-filter-content-logistics/transaction-inter-branch-order-filter-content-logistics.component.ts +298 -0
  1012. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/inter-branch-order-filter-content/transaction-inter-branch-order-filter-content-logistics/transaction-inter-branch-order-filter-content-logistics.module.ts +33 -0
  1013. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/inter-branch-order-filter-content/transaction-inter-branch-order-filter-content-order/transaction-inter-branch-order-filter-content-order.component.ts +400 -0
  1014. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/inter-branch-order-filter-content/transaction-inter-branch-order-filter-content-order/transaction-inter-branch-order-filter-content-order.module.ts +37 -0
  1015. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/transaction-purchase-order-filter-content-article.component.ts +113 -0
  1016. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/transaction-purchase-order-filter-content-article.module.ts +27 -0
  1017. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/transaction-purchase-order-filter-content-logistics.component.ts +240 -0
  1018. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/transaction-purchase-order-filter-content-logistics.module.ts +33 -0
  1019. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/transaction-purchase-order-filter-content-order.component.ts +352 -0
  1020. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/transaction-purchase-order-filter-content-order.module.ts +37 -0
  1021. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/transaction-sales-order-filter-content-article.component.ts +130 -0
  1022. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/transaction-sales-order-filter-content-article.module.ts +27 -0
  1023. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/transaction-sales-order-filter-content-logistics.component.ts +298 -0
  1024. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/transaction-sales-order-filter-content-logistics.module.ts +33 -0
  1025. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.component.ts +430 -0
  1026. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.module.ts +37 -0
  1027. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-article/transaction-sales-quotation-filter-content-article.component.ts +128 -0
  1028. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-article/transaction-sales-quotation-filter-content-article.module.ts +19 -0
  1029. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-logistics/transaction-sales-quotation-filter-content-logistics.component.ts +93 -0
  1030. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-logistics/transaction-sales-quotation-filter-content-logistics.module.ts +23 -0
  1031. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-order/transaction-sales-quotation-filter-content-order.component.ts +351 -0
  1032. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-order/transaction-sales-quotation-filter-content-order.module.ts +19 -0
  1033. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-article/transaction-service-order-filter-content-article.component.ts +125 -0
  1034. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-article/transaction-service-order-filter-content-article.module.ts +27 -0
  1035. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-logistics/transaction-service-order-filter-content-logistics.component.ts +252 -0
  1036. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-logistics/transaction-service-order-filter-content-logistics.module.ts +33 -0
  1037. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-order/transaction-service-order-filter-content-order.component.ts +373 -0
  1038. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-order/transaction-service-order-filter-content-order.module.ts +37 -0
  1039. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-historic-state/transaction-filter-historic-state.component.ts +98 -0
  1040. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-historic-state/transaction-filter-historic-state.module.ts +24 -0
  1041. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-item/transaction-filter-item.component.ts +154 -0
  1042. package/projects/transaction/src/lib/component/transaction-search/transaction-filter-item/transaction-filter-item.module.ts +21 -0
  1043. package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/transaction-search-grid.component.ts +94 -0
  1044. package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/transaction-search-grid.module.ts +17 -0
  1045. package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-grid-sales-quotation-grid/transaction-search-sales-quotation-grid.component.ts +73 -0
  1046. package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-grid-sales-quotation-grid/transaction-search-sales-quotation-grid.module.ts +22 -0
  1047. package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-pos-grid/transaction-search-pos-grid.component.ts +85 -0
  1048. package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-pos-grid/transaction-search-pos-grid.module.ts +22 -0
  1049. package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.component.ts +85 -0
  1050. package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.module.ts +23 -0
  1051. package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.component.ts +92 -0
  1052. package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.module.ts +25 -0
  1053. package/projects/transaction/src/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.ts +500 -0
  1054. package/projects/transaction/src/lib/component/transaction-search/transaction-search-result/transaction-search-result.module.ts +102 -0
  1055. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-invoice-check-order-tile/transaction-invoice-check-order-tile.component.ts +232 -0
  1056. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-invoice-check-order-tile/transaction-invoice-check-order-tile.module.ts +31 -0
  1057. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-purchase-reservation-order-tile/transaction-purchase-reservation-order-tile.component.ts +89 -0
  1058. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-purchase-reservation-order-tile/transaction-purchase-reservation-order-tile.module.ts +29 -0
  1059. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-inter-branch-order-tile/transaction-search-inter-branch-order-tile.component.ts +118 -0
  1060. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-inter-branch-order-tile/transaction-search-inter-branch-order-tile.module.ts +32 -0
  1061. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-pos-order-tile/transaction-search-pos-order-tile.component.ts +104 -0
  1062. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-pos-order-tile/transaction-search-pos-order-tile.module.ts +27 -0
  1063. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.component.ts +192 -0
  1064. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.module.ts +29 -0
  1065. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/style/_material-definition.scss +0 -0
  1066. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/transaction-line-tile/style/_material-definition.scss +0 -0
  1067. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/transaction-line-tile/transaction-line-tile.component.ts +68 -0
  1068. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/transaction-line-tile/transaction-line-tile.module.ts +28 -0
  1069. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/transaction-order-tile/style/_material-definition.scss +0 -0
  1070. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/transaction-order-tile/transaction-order-tile.component.ts +183 -0
  1071. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/transaction-order-tile/transaction-order-tile.module.ts +32 -0
  1072. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/transaction-search-sales-line-select-tile.component.ts +196 -0
  1073. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/transaction-search-sales-line-select-tile.module.ts +33 -0
  1074. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/style/_material-definition.scss +0 -0
  1075. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.component.ts +121 -0
  1076. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.module.ts +32 -0
  1077. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-quotation-tile/style/_material-definition.scss +0 -0
  1078. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-quotation-tile/transaction-search-sales-quotation-tile.component.ts +85 -0
  1079. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-quotation-tile/transaction-search-sales-quotation-tile.module.ts +24 -0
  1080. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/transaction-search-tile.component.ts +120 -0
  1081. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/transaction-search-tile.module.ts +17 -0
  1082. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-statusbar/transaction-statusbar.component.ts +215 -0
  1083. package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-statusbar/transaction-statusbar.module.ts +21 -0
  1084. package/projects/transaction/src/lib/component/transaction-search/transaction-search.component.ts +143 -0
  1085. package/projects/transaction/src/lib/component/transaction-search/transaction-search.module.ts +75 -0
  1086. package/projects/transaction/src/lib/component/transaction-search/transaction-shipping-method-dialog/transaction-shipping-method-dialog.component.ts +277 -0
  1087. package/projects/transaction/src/lib/component/transaction-search/transaction-shipping-method-dialog/transaction-shipping-method-dialog.module.ts +29 -0
  1088. package/projects/transaction/src/lib/component/transaction-send-documents/style/_material-definition.scss +0 -0
  1089. package/projects/transaction/src/lib/component/transaction-send-documents/transaction-send-documents.component.ts +195 -0
  1090. package/projects/transaction/src/lib/component/transaction-send-documents/transaction-send-documents.module.ts +22 -0
  1091. package/projects/transaction/src/lib/component/transaction-service-overview/components/transaction-service-message.component.ts +50 -0
  1092. package/projects/transaction/src/lib/component/transaction-service-overview/components/transaction-service-message.module.ts +23 -0
  1093. package/projects/transaction/src/lib/component/transaction-service-overview/transaction-service-overview.component.ts +380 -0
  1094. package/projects/transaction/src/lib/component/transaction-service-overview/transaction-service-overview.module.ts +50 -0
  1095. package/projects/transaction/src/lib/component/transaction-tags/transaction-tag.component.ts +44 -0
  1096. package/projects/transaction/src/lib/component/transaction-tags/transaction-tags.component.ts +144 -0
  1097. package/projects/transaction/src/lib/component/transaction-tags/transaction-tags.module.ts +26 -0
  1098. package/projects/transaction/src/lib/component/transaction-tile/style/_material-definition.scss +0 -0
  1099. package/projects/transaction/src/lib/component/transaction-tile/transaction-tile.component.ts +113 -0
  1100. package/projects/transaction/src/lib/component/transaction-tile/transaction-tile.module.ts +27 -0
  1101. package/projects/transaction/src/lib/component/transaction-totals/transaction-confirm-totals.component.ts +73 -0
  1102. package/projects/transaction/src/lib/component/transaction-totals/transaction-totals.component.ts +74 -0
  1103. package/projects/transaction/src/lib/component/transaction-totals/transaction-totals.module.ts +26 -0
  1104. package/projects/transaction/src/lib/component/transaction-undo-delivery/style/_material-definition.scss +0 -0
  1105. package/projects/transaction/src/lib/component/transaction-undo-delivery/style/material.scss +4 -0
  1106. package/projects/transaction/src/lib/component/transaction-undo-delivery/transaction-undo-delivery.component.ts +127 -0
  1107. package/projects/transaction/src/lib/component/transaction-undo-delivery/transaction-undo-delivery.module.ts +24 -0
  1108. package/projects/transaction/src/lib/enum/batch-delivery-category.enum.ts +14 -0
  1109. package/projects/transaction/src/lib/enum/checkout-cfg-name.enum.ts +53 -0
  1110. package/projects/transaction/src/lib/enum/date-period.enum.ts +9 -0
  1111. package/projects/transaction/src/lib/enum/delivery-planning-calendar-modes.enum.ts +5 -0
  1112. package/projects/transaction/src/lib/enum/delivery-planning-modes.enum.ts +6 -0
  1113. package/projects/transaction/src/lib/enum/delivery-planning-tile-modes.enum.ts +4 -0
  1114. package/projects/transaction/src/lib/enum/delivery-planning-update-actions.enum.ts +7 -0
  1115. package/projects/transaction/src/lib/enum/delivery-planning-view-modes.enum.ts +4 -0
  1116. package/projects/transaction/src/lib/enum/direction.enum.ts +7 -0
  1117. package/projects/transaction/src/lib/enum/icon.enum.ts +186 -0
  1118. package/projects/transaction/src/lib/enum/language-code.enum.ts +6 -0
  1119. package/projects/transaction/src/lib/enum/lsp-dialog-type.enum.ts +4 -0
  1120. package/projects/transaction/src/lib/enum/order-discount-type.enum.ts +5 -0
  1121. package/projects/transaction/src/lib/enum/position-grid-row.enum.ts +4 -0
  1122. package/projects/transaction/src/lib/enum/search-view-mode.enum.ts +5 -0
  1123. package/projects/transaction/src/lib/enum/searchbar-view-mode.enum.ts +5 -0
  1124. package/projects/transaction/src/lib/enum/status-type.enum.ts +5 -0
  1125. package/projects/transaction/src/lib/enum/time-size.type.ts +8 -0
  1126. package/projects/transaction/src/lib/enum/transaction-cfg-name.enum.ts +259 -0
  1127. package/projects/transaction/src/lib/enum/transaction-picking-button-category.enum.ts +8 -0
  1128. package/projects/transaction/src/lib/enum/transaction-type-category.enum.ts +67 -0
  1129. package/projects/transaction/src/lib/interface/action-buttons-cfg-names.interface.ts +7 -0
  1130. package/projects/transaction/src/lib/interface/checkbox-list-property.interface.ts +5 -0
  1131. package/projects/transaction/src/lib/interface/dialog-response.interface.ts +7 -0
  1132. package/projects/transaction/src/lib/interface/image-and-description-cfg-names.interface.ts +9 -0
  1133. package/projects/transaction/src/lib/interface/invoice-check-order-line.interface.ts +27 -0
  1134. package/projects/transaction/src/lib/interface/invoice-check-order.interface.ts +12 -0
  1135. package/projects/transaction/src/lib/interface/line-discount-cfg-names.interface.ts +7 -0
  1136. package/projects/transaction/src/lib/interface/order-confirmation-dropped.interface.ts +6 -0
  1137. package/projects/transaction/src/lib/interface/relation-address-cfg-names.interface.ts +8 -0
  1138. package/projects/transaction/src/lib/interface/relation-contact-details-cfg-names.interface.ts +5 -0
  1139. package/projects/transaction/src/lib/interface/relation-general-cfg-names.interface.ts +11 -0
  1140. package/projects/transaction/src/lib/interface/relation-suggestions-request.interface.ts +14 -0
  1141. package/projects/transaction/src/lib/interface/status-bar-cfg-names.interface.ts +16 -0
  1142. package/projects/transaction/src/lib/model/alternate-supplier.viewmodel.ts +6 -0
  1143. package/projects/transaction/src/lib/model/article-characteristic-text-question-answer.ts +8 -0
  1144. package/projects/transaction/src/lib/model/delivery-type.ts +8 -0
  1145. package/projects/transaction/src/lib/model/deposit-payment-view-model.ts +13 -0
  1146. package/projects/transaction/src/lib/model/icon-svg.ts +186 -0
  1147. package/projects/transaction/src/lib/model/payment-transaction-view-model.ts +13 -0
  1148. package/projects/transaction/src/lib/model/payment.viewmodel.ts +10 -0
  1149. package/projects/transaction/src/lib/model/pos-order-data.ts +11 -0
  1150. package/projects/transaction/src/lib/model/registered-payment-view-model.ts +13 -0
  1151. package/projects/transaction/src/lib/model/standard-text.ts +8 -0
  1152. package/projects/transaction/src/lib/model/text-value-container.ts +4 -0
  1153. package/projects/transaction/src/lib/model/transaction-bar-button.ts +17 -0
  1154. package/projects/transaction/src/lib/model/transaction-invoice-check-order-line.ts +35 -0
  1155. package/projects/transaction/src/lib/model/transaction-invoice-check-order.ts +20 -0
  1156. package/projects/transaction/src/lib/model/transaction-line-view-model.ts +10 -0
  1157. package/projects/transaction/src/lib/model/transaction-search-result.ts +6 -0
  1158. package/projects/transaction/src/lib/model/transaction-settings-options.ts +4 -0
  1159. package/projects/transaction/src/lib/model/transaction-settings.ts +9 -0
  1160. package/projects/transaction/src/lib/model/type-doc-standard-text.ts +6 -0
  1161. package/projects/transaction/src/lib/model/voucher-type.enum.ts +6 -0
  1162. package/projects/transaction/src/lib/pipe/append.pipe.ts +20 -0
  1163. package/projects/transaction/src/lib/pipe/co-currency.pipe.ts +48 -0
  1164. package/projects/transaction/src/lib/pipe/date-duration.pipe.ts +54 -0
  1165. package/projects/transaction/src/lib/pipe/delivery-time.pipe.ts +37 -0
  1166. package/projects/transaction/src/lib/pipe/localize.pipe.ts +24 -0
  1167. package/projects/transaction/src/lib/pipe/pipe.module.ts +36 -0
  1168. package/projects/transaction/src/lib/pipe/prepend.pipe.ts +20 -0
  1169. package/projects/transaction/src/lib/pipe/safe-html.pipe.ts +15 -0
  1170. package/projects/transaction/src/lib/pipe/safe-style.pipe.ts +15 -0
  1171. package/projects/transaction/src/lib/provider/token/all-icons.token.ts +4 -0
  1172. package/projects/transaction/src/lib/service/article-connector.service.ts +182 -0
  1173. package/projects/transaction/src/lib/service/article.service.ts +55 -0
  1174. package/projects/transaction/src/lib/service/cart-screen-configuration.service.ts +51 -0
  1175. package/projects/transaction/src/lib/service/dialog.service.ts +71 -0
  1176. package/projects/transaction/src/lib/service/dictionary.service.ts +69 -0
  1177. package/projects/transaction/src/lib/service/dynamic-component.service.ts +101 -0
  1178. package/projects/transaction/src/lib/service/error.service.ts +89 -0
  1179. package/projects/transaction/src/lib/service/icon-cache.service.ts +51 -0
  1180. package/projects/transaction/src/lib/service/line-selection.service.ts +119 -0
  1181. package/projects/transaction/src/lib/service/order-line-set-service.ts +8 -0
  1182. package/projects/transaction/src/lib/service/pending-reason.service.ts +264 -0
  1183. package/projects/transaction/src/lib/service/purchase-confirmation.service.ts +154 -0
  1184. package/projects/transaction/src/lib/service/purchase-reservation.service.ts +46 -0
  1185. package/projects/transaction/src/lib/service/relation-suggestions.service.ts +84 -0
  1186. package/projects/transaction/src/lib/service/shared-connector.service.ts +59 -0
  1187. package/projects/transaction/src/lib/service/test-data.service.ts +78 -0
  1188. package/projects/transaction/src/lib/service/transaction-base.service.ts +843 -0
  1189. package/projects/transaction/src/lib/service/transaction-connector-adapter.service.ts +5641 -0
  1190. package/projects/transaction/src/lib/service/transaction-connector.service.ts +2122 -0
  1191. package/projects/transaction/src/lib/service/transaction-create.service.ts +90 -0
  1192. package/projects/transaction/src/lib/service/transaction-creation.service.ts +104 -0
  1193. package/projects/transaction/src/lib/service/transaction-dialog.service.ts +108 -0
  1194. package/projects/transaction/src/lib/service/transaction-event.service.ts +201 -0
  1195. package/projects/transaction/src/lib/service/transaction-image.service.ts +45 -0
  1196. package/projects/transaction/src/lib/service/transaction-initializer.service.ts +39 -0
  1197. package/projects/transaction/src/lib/service/transaction-mapping.service.ts +124 -0
  1198. package/projects/transaction/src/lib/service/transaction-payment-connector.service.ts +176 -0
  1199. package/projects/transaction/src/lib/service/transaction-payment.service.ts +369 -0
  1200. package/projects/transaction/src/lib/service/transaction-relation-connector.service.ts +313 -0
  1201. package/projects/transaction/src/lib/service/transaction-relation.service.ts +275 -0
  1202. package/projects/transaction/src/lib/service/transaction-screen-configuration.service.ts +47 -0
  1203. package/projects/transaction/src/lib/service/transaction-settings.service.ts +66 -0
  1204. package/projects/transaction/src/lib/service/transaction.service.ts +3336 -0
  1205. package/projects/transaction/src/lib/service/transport-notification-line-selection.service.ts +294 -0
  1206. package/projects/transaction/src/lib/token/transaction-dialog-mapping.token.ts +12 -0
  1207. package/projects/transaction/src/lib/token/transaction-mapping.token.ts +40 -0
  1208. package/projects/transaction/src/lib/transaction-version.ts +7 -0
  1209. package/projects/transaction/src/lib/utils/color-utils.ts +32 -0
  1210. package/projects/transaction/src/public_api.ts +161 -0
  1211. package/projects/transaction/src/test.ts +13 -0
  1212. package/projects/transaction/tsconfig.lib.json +19 -0
  1213. package/projects/transaction/tsconfig.lib.prod.json +18 -0
  1214. package/projects/transaction/tsconfig.spec.json +17 -0
  1215. package/script/build-bundles.js +59 -0
  1216. package/script/create-bundle-version.js +19 -0
  1217. package/script/create-dictionaries.js +41 -0
  1218. package/script/create-version.js +19 -0
  1219. package/script/merge-icons.js +39 -0
  1220. package/src/app/app-transaction.component.ts +47 -0
  1221. package/src/app/app.component.scss +68 -0
  1222. package/src/app/app.component.ts +832 -0
  1223. package/src/app/app.module.ts +107 -0
  1224. package/src/app/bundle/base/service/local-storage.service.ts +42 -0
  1225. package/src/app/bundle/base/transaction-bundle-base.component.ts +66 -0
  1226. package/src/app/bundle/bundle-styles.scss +132 -0
  1227. package/src/app/bundle/cart/transaction-cart-bundle.component.ts +36 -0
  1228. package/src/app/bundle/cart/transaction-cart-bundle.module.ts +37 -0
  1229. package/src/app/bundle/checkout/transaction-checkout-bundle.component.ts +54 -0
  1230. package/src/app/bundle/checkout/transaction-checkout-bundle.module.ts +39 -0
  1231. package/src/app/bundle/directive/transaction-service.directive.ts +23 -0
  1232. package/src/app/bundle/index.html +14 -0
  1233. package/src/app/bundle/main-cart-bundle.ts +11 -0
  1234. package/src/app/bundle/main-checkout-bundle.ts +11 -0
  1235. package/src/app/bundle/main-service-wizard-bundle.ts +13 -0
  1236. package/src/app/bundle/main-transaction-bundle.ts +11 -0
  1237. package/src/app/bundle/main-transaction-search-bundle.ts +11 -0
  1238. package/src/app/bundle/polyfills.ts +53 -0
  1239. package/src/app/bundle/service-wizard/transaction-service-wizard-bundle.component.ts +128 -0
  1240. package/src/app/bundle/service-wizard/transaction-service-wizard-bundle.module.ts +37 -0
  1241. package/src/app/bundle/transaction/transaction-bundle.component.ts +94 -0
  1242. package/src/app/bundle/transaction/transaction-bundle.module.ts +47 -0
  1243. package/src/app/bundle/transaction-search/transaction-search-bundle.component.ts +62 -0
  1244. package/src/app/bundle/transaction-search/transaction-search-bundle.module.ts +39 -0
  1245. package/src/app/bundle/transaction-version.ts +7 -0
  1246. package/src/app/test-order-advice.component.ts +91 -0
  1247. package/src/environments/environment.bundle.prod.ts +3 -0
  1248. package/src/environments/environment.prod.ts +3 -0
  1249. package/src/environments/environment.ts +16 -0
  1250. package/src/favicon.ico +0 -0
  1251. package/src/index.html +17 -0
  1252. package/src/lib/threedconfigurator-standalone.bundle.min.js +3 -0
  1253. package/src/main.ts +12 -0
  1254. package/src/polyfills.ts +53 -0
  1255. package/src/styles.scss +272 -0
  1256. package/src/test.ts +14 -0
  1257. package/src/transaction.unit.test.ts +60 -0
  1258. package/tsconfig.app.json +15 -0
  1259. package/tsconfig.cart.bundle.json +38 -0
  1260. package/tsconfig.checkout.bundle.json +38 -0
  1261. package/tsconfig.json +39 -0
  1262. package/tsconfig.service-wizard.bundle.json +38 -0
  1263. package/tsconfig.spec.json +18 -0
  1264. package/tsconfig.transaction-search.bundle.json +38 -0
  1265. package/tsconfig.transaction.bundle.json +38 -0
  1266. package/webpack.cart.bundle.config.js +32 -0
  1267. package/webpack.checkout.bundle.config.js +32 -0
  1268. package/webpack.service-wizard.bundle.config.js +32 -0
  1269. package/webpack.transaction-search.bundle.config.js +32 -0
  1270. package/webpack.transaction.bundle.config.js +32 -0
  1271. package/fesm2022/colijnit-transaction.mjs +0 -109703
  1272. package/fesm2022/colijnit-transaction.mjs.map +0 -1
  1273. package/index.d.ts +0 -17267
  1274. /package/{lib/component/alternate-supplier-tile/style/_material-definition.scss → projects/transaction/src/lib/assets/.gitkeep} +0 -0
  1275. /package/{lib → projects/transaction/src/lib}/component/add-product/style/_layout.scss +0 -0
  1276. /package/{lib → projects/transaction/src/lib}/component/add-product/style/_material-definition.scss +0 -0
  1277. /package/{lib → projects/transaction/src/lib}/component/add-product/style/_theme.scss +0 -0
  1278. /package/{lib → projects/transaction/src/lib}/component/add-product/style/material.scss +0 -0
  1279. /package/{lib → projects/transaction/src/lib}/component/alternate-supplier-tile/style/_layout.scss +0 -0
  1280. /package/{lib/component/click-block → projects/transaction/src/lib/component/alternate-supplier-tile}/style/_material-definition.scss +0 -0
  1281. /package/{lib → projects/transaction/src/lib}/component/alternate-supplier-tile/style/_theme.scss +0 -0
  1282. /package/{lib → projects/transaction/src/lib}/component/alternate-supplier-tile/style/material.scss +0 -0
  1283. /package/{lib → projects/transaction/src/lib}/component/animated-checkbox/style/_layout.scss +0 -0
  1284. /package/{lib → projects/transaction/src/lib}/component/animated-checkbox/style/_material-definition.scss +0 -0
  1285. /package/{lib → projects/transaction/src/lib}/component/animated-checkbox/style/_theme.scss +0 -0
  1286. /package/{lib → projects/transaction/src/lib}/component/animated-checkbox/style/material.scss +0 -0
  1287. /package/{lib → projects/transaction/src/lib}/component/avatar/style/_layout.scss +0 -0
  1288. /package/{lib → projects/transaction/src/lib}/component/avatar/style/_material-definition.scss +0 -0
  1289. /package/{lib → projects/transaction/src/lib}/component/avatar/style/_theme.scss +0 -0
  1290. /package/{lib → projects/transaction/src/lib}/component/avatar/style/material.scss +0 -0
  1291. /package/{lib → projects/transaction/src/lib}/component/checkout/checkout-overview-delivery-edit/style/_layout.scss +0 -0
  1292. /package/{lib → projects/transaction/src/lib}/component/checkout/checkout-overview-delivery-edit/style/_material-definition.scss +0 -0
  1293. /package/{lib → projects/transaction/src/lib}/component/checkout/checkout-overview-delivery-edit/style/_theme.scss +0 -0
  1294. /package/{lib → projects/transaction/src/lib}/component/checkout/checkout-overview-delivery-edit/style/material.scss +0 -0
  1295. /package/{lib → projects/transaction/src/lib}/component/checkout/checkout-overview-payment/style/_layout.scss +0 -0
  1296. /package/{lib → projects/transaction/src/lib}/component/checkout/checkout-overview-payment/style/_material-definition.scss +0 -0
  1297. /package/{lib → projects/transaction/src/lib}/component/checkout/checkout-overview-payment/style/_theme.scss +0 -0
  1298. /package/{lib → projects/transaction/src/lib}/component/checkout/checkout-overview-payment/style/material.scss +0 -0
  1299. /package/{lib → projects/transaction/src/lib}/component/checkout/checkout-overview-relation-edit/style/_layout.scss +0 -0
  1300. /package/{lib → projects/transaction/src/lib}/component/checkout/checkout-overview-relation-edit/style/_material-definition.scss +0 -0
  1301. /package/{lib → projects/transaction/src/lib}/component/checkout/checkout-overview-relation-edit/style/_theme.scss +0 -0
  1302. /package/{lib → projects/transaction/src/lib}/component/checkout/checkout-overview-relation-edit/style/material.scss +0 -0
  1303. /package/{lib → projects/transaction/src/lib}/component/checkout/style/_layout.scss +0 -0
  1304. /package/{lib → projects/transaction/src/lib}/component/checkout/style/_material-definition.scss +0 -0
  1305. /package/{lib → projects/transaction/src/lib}/component/checkout/style/_theme.scss +0 -0
  1306. /package/{lib → projects/transaction/src/lib}/component/checkout/style/material.scss +0 -0
  1307. /package/{lib → projects/transaction/src/lib}/component/click-block/style/_layout.scss +0 -0
  1308. /package/{lib/component/core/base/components/characteristic-answer → projects/transaction/src/lib/component/click-block}/style/_material-definition.scss +0 -0
  1309. /package/{lib → projects/transaction/src/lib}/component/click-block/style/_theme.scss +0 -0
  1310. /package/{lib → projects/transaction/src/lib}/component/click-block/style/material.scss +0 -0
  1311. /package/{lib → projects/transaction/src/lib}/component/co-transaction-article-stock/style/_layout.scss +0 -0
  1312. /package/{lib → projects/transaction/src/lib}/component/co-transaction-article-stock/style/_material-definition.scss +0 -0
  1313. /package/{lib → projects/transaction/src/lib}/component/co-transaction-article-stock/style/_theme.scss +0 -0
  1314. /package/{lib → projects/transaction/src/lib}/component/co-transaction-article-stock/style/material.scss +0 -0
  1315. /package/{lib → projects/transaction/src/lib}/component/confirmation-dialog/style/_layout.scss +0 -0
  1316. /package/{lib → projects/transaction/src/lib}/component/confirmation-dialog/style/_material-definition.scss +0 -0
  1317. /package/{lib → projects/transaction/src/lib}/component/confirmation-dialog/style/_theme.scss +0 -0
  1318. /package/{lib → projects/transaction/src/lib}/component/confirmation-dialog/style/material.scss +0 -0
  1319. /package/{lib → projects/transaction/src/lib}/component/core/base/components/characteristic-answer/style/_layout.scss +0 -0
  1320. /package/{lib/component/core/base/components/default-confirm-cancel-buttons → projects/transaction/src/lib/component/core/base/components/characteristic-answer}/style/_material-definition.scss +0 -0
  1321. /package/{lib → projects/transaction/src/lib}/component/core/base/components/characteristic-answer/style/_theme.scss +0 -0
  1322. /package/{lib → projects/transaction/src/lib}/component/core/base/components/characteristic-answer/style/material.scss +0 -0
  1323. /package/{lib → projects/transaction/src/lib}/component/core/base/components/default-confirm-cancel-buttons/style/_layout.scss +0 -0
  1324. /package/{lib/component/core/base/components/default-ok-cancel-buttons → projects/transaction/src/lib/component/core/base/components/default-confirm-cancel-buttons}/style/_material-definition.scss +0 -0
  1325. /package/{lib → projects/transaction/src/lib}/component/core/base/components/default-confirm-cancel-buttons/style/_theme.scss +0 -0
  1326. /package/{lib → projects/transaction/src/lib}/component/core/base/components/default-confirm-cancel-buttons/style/material.scss +0 -0
  1327. /package/{lib → projects/transaction/src/lib}/component/core/base/components/default-ok-cancel-buttons/style/_layout.scss +0 -0
  1328. /package/{lib/component/core/base/components/voucher-code-pending-reason-dialog → projects/transaction/src/lib/component/core/base/components/default-ok-cancel-buttons}/style/_material-definition.scss +0 -0
  1329. /package/{lib → projects/transaction/src/lib}/component/core/base/components/default-ok-cancel-buttons/style/_theme.scss +0 -0
  1330. /package/{lib → projects/transaction/src/lib}/component/core/base/components/default-ok-cancel-buttons/style/material.scss +0 -0
  1331. /package/{lib → projects/transaction/src/lib}/component/core/base/components/transaction-header-block/style/_layout.scss +0 -0
  1332. /package/{lib → projects/transaction/src/lib}/component/core/base/components/transaction-header-block/style/_material-definition.scss +0 -0
  1333. /package/{lib → projects/transaction/src/lib}/component/core/base/components/transaction-header-block/style/_theme.scss +0 -0
  1334. /package/{lib → projects/transaction/src/lib}/component/core/base/components/transaction-header-block/style/material.scss +0 -0
  1335. /package/{lib → projects/transaction/src/lib}/component/core/base/components/voucher-code-pending-reason-dialog/style/_layout.scss +0 -0
  1336. /package/{lib/component/core/base/components/warehouse → projects/transaction/src/lib/component/core/base/components/voucher-code-pending-reason-dialog}/style/_material-definition.scss +0 -0
  1337. /package/{lib → projects/transaction/src/lib}/component/core/base/components/voucher-code-pending-reason-dialog/style/_theme.scss +0 -0
  1338. /package/{lib → projects/transaction/src/lib}/component/core/base/components/voucher-code-pending-reason-dialog/style/material.scss +0 -0
  1339. /package/{lib → projects/transaction/src/lib}/component/core/base/components/warehouse/style/_layout.scss +0 -0
  1340. /package/{lib/component/delivery-planning-main/component/delivery-planning-mode-selection → projects/transaction/src/lib/component/core/base/components/warehouse}/style/_material-definition.scss +0 -0
  1341. /package/{lib → projects/transaction/src/lib}/component/core/base/components/warehouse/style/_theme.scss +0 -0
  1342. /package/{lib → projects/transaction/src/lib}/component/core/base/components/warehouse/style/material.scss +0 -0
  1343. /package/{lib → projects/transaction/src/lib}/component/core/icon/icon.component.scss +0 -0
  1344. /package/{lib → projects/transaction/src/lib}/component/core/image-display/style/_layout.scss +0 -0
  1345. /package/{lib → projects/transaction/src/lib}/component/core/image-display/style/_material-definition.scss +0 -0
  1346. /package/{lib → projects/transaction/src/lib}/component/core/image-display/style/_theme.scss +0 -0
  1347. /package/{lib → projects/transaction/src/lib}/component/core/image-display/style/material.scss +0 -0
  1348. /package/{lib → projects/transaction/src/lib}/component/core/relation/relation-customer-groups.component.scss +0 -0
  1349. /package/{lib → projects/transaction/src/lib}/component/core/relation/relation-customer-languages.component.scss +0 -0
  1350. /package/{lib → projects/transaction/src/lib}/component/core/relation/relation-customer-titles.component.scss +0 -0
  1351. /package/{lib → projects/transaction/src/lib}/component/core/sla/style/_layout.scss +0 -0
  1352. /package/{lib → projects/transaction/src/lib}/component/core/sla/style/_material-definition.scss +0 -0
  1353. /package/{lib → projects/transaction/src/lib}/component/core/sla/style/_theme.scss +0 -0
  1354. /package/{lib → projects/transaction/src/lib}/component/core/sla/style/material.scss +0 -0
  1355. /package/{lib → projects/transaction/src/lib}/component/core/stock-status-indicator/stock-status-indicator.component.scss +0 -0
  1356. /package/{lib → projects/transaction/src/lib}/component/delivery-planning/style/_layout.scss +0 -0
  1357. /package/{lib → projects/transaction/src/lib}/component/delivery-planning/style/_material-definition.scss +0 -0
  1358. /package/{lib → projects/transaction/src/lib}/component/delivery-planning/style/_theme.scss +0 -0
  1359. /package/{lib → projects/transaction/src/lib}/component/delivery-planning/style/material.scss +0 -0
  1360. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-mode-selection/style/_layout.scss +0 -0
  1361. /package/{lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-popup → projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-mode-selection}/style/_material-definition.scss +0 -0
  1362. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-mode-selection/style/_theme.scss +0 -0
  1363. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-mode-selection/style/material.scss +0 -0
  1364. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-popup/style/_layout.scss +0 -0
  1365. /package/{lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile-settings-popup → projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-popup}/style/_material-definition.scss +0 -0
  1366. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-popup/style/_theme.scss +0 -0
  1367. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-popup/style/material.scss +0 -0
  1368. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-short-line/style/_layout.scss +0 -0
  1369. /package/{lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-tile-line → projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-short-line}/style/_material-definition.scss +0 -0
  1370. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-short-line/style/_theme.scss +0 -0
  1371. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-short-line/style/material.scss +0 -0
  1372. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-tile-dropdown/style/_layout.scss +0 -0
  1373. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-tile-dropdown/style/_material-definition.scss +0 -0
  1374. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-tile-dropdown/style/_theme.scss +0 -0
  1375. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-tile-dropdown/style/material.scss +0 -0
  1376. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-tile-line/style/_layout.scss +0 -0
  1377. /package/{lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-tile-status → projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-tile-line}/style/_material-definition.scss +0 -0
  1378. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-tile-line/style/_theme.scss +0 -0
  1379. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-tile-line/style/material.scss +0 -0
  1380. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-tile-status/style/_layout.scss +0 -0
  1381. /package/{lib/component/delivery-planning-main/component/delivery-planning-plan-order-list-tile → projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-tile-status}/style/_material-definition.scss +0 -0
  1382. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-tile-status/style/_theme.scss +0 -0
  1383. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-tile-status/style/material.scss +0 -0
  1384. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/style/_layout.scss +0 -0
  1385. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/style/_material-definition.scss +0 -0
  1386. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/style/_theme.scss +0 -0
  1387. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/style/material.scss +0 -0
  1388. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile-settings-popup/style/_layout.scss +0 -0
  1389. /package/{lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-short-line → projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile-settings-popup}/style/_material-definition.scss +0 -0
  1390. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile-settings-popup/style/_theme.scss +0 -0
  1391. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile-settings-popup/style/material.scss +0 -0
  1392. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/style/_layout.scss +0 -0
  1393. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/style/_material-definition.scss +0 -0
  1394. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/style/_theme.scss +0 -0
  1395. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-overview/style/material.scss +0 -0
  1396. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-plan-order-list/style/_layout.scss +0 -0
  1397. /package/{lib/component/delivery-planning-main/component/delivery-planning-selection → projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-plan-order-list}/style/_material-definition.scss +0 -0
  1398. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-plan-order-list/style/_theme.scss +0 -0
  1399. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-plan-order-list/style/material.scss +0 -0
  1400. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-plan-order-list-tile/style/_layout.scss +0 -0
  1401. /package/{lib/component/delivery-planning-main/component/delivery-planning-plan-order-list → projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-plan-order-list-tile}/style/_material-definition.scss +0 -0
  1402. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-plan-order-list-tile/style/_theme.scss +0 -0
  1403. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-plan-order-list-tile/style/material.scss +0 -0
  1404. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-selection/style/_layout.scss +0 -0
  1405. /package/{lib/component/delivery-planning-main → projects/transaction/src/lib/component/delivery-planning-main/component/delivery-planning-selection}/style/_material-definition.scss +0 -0
  1406. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-selection/style/_theme.scss +0 -0
  1407. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/component/delivery-planning-selection/style/material.scss +0 -0
  1408. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/style/_layout.scss +0 -0
  1409. /package/{lib/component/digital-signature → projects/transaction/src/lib/component/delivery-planning-main}/style/_material-definition.scss +0 -0
  1410. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/style/_theme.scss +0 -0
  1411. /package/{lib → projects/transaction/src/lib}/component/delivery-planning-main/style/material.scss +0 -0
  1412. /package/{lib → projects/transaction/src/lib}/component/delivery-type-tile/style/_layout.scss +0 -0
  1413. /package/{lib → projects/transaction/src/lib}/component/delivery-type-tile/style/_material-definition.scss +0 -0
  1414. /package/{lib → projects/transaction/src/lib}/component/delivery-type-tile/style/_theme.scss +0 -0
  1415. /package/{lib → projects/transaction/src/lib}/component/delivery-type-tile/style/material.scss +0 -0
  1416. /package/{lib → projects/transaction/src/lib}/component/deposit-payment/style/_layout.scss +0 -0
  1417. /package/{lib → projects/transaction/src/lib}/component/deposit-payment/style/_material-definition.scss +0 -0
  1418. /package/{lib → projects/transaction/src/lib}/component/deposit-payment/style/_theme.scss +0 -0
  1419. /package/{lib → projects/transaction/src/lib}/component/deposit-payment/style/material.scss +0 -0
  1420. /package/{lib → projects/transaction/src/lib}/component/dialog/catalog/dialog-catalog/style/_layout.scss +0 -0
  1421. /package/{lib → projects/transaction/src/lib}/component/dialog/catalog/dialog-catalog/style/_material-definition.scss +0 -0
  1422. /package/{lib → projects/transaction/src/lib}/component/dialog/catalog/dialog-catalog/style/_theme.scss +0 -0
  1423. /package/{lib → projects/transaction/src/lib}/component/dialog/catalog/dialog-catalog/style/material.scss +0 -0
  1424. /package/{lib → projects/transaction/src/lib}/component/dialog/dialog-branch/style/_layout.scss +0 -0
  1425. /package/{lib → projects/transaction/src/lib}/component/dialog/dialog-branch/style/_material-definition.scss +0 -0
  1426. /package/{lib → projects/transaction/src/lib}/component/dialog/dialog-branch/style/_theme.scss +0 -0
  1427. /package/{lib → projects/transaction/src/lib}/component/dialog/dialog-branch/style/material.scss +0 -0
  1428. /package/{lib → projects/transaction/src/lib}/component/dialog/dialog-header-search/style/_layout.scss +0 -0
  1429. /package/{lib → projects/transaction/src/lib}/component/dialog/dialog-header-search/style/_material-definition.scss +0 -0
  1430. /package/{lib → projects/transaction/src/lib}/component/dialog/dialog-header-search/style/_theme.scss +0 -0
  1431. /package/{lib → projects/transaction/src/lib}/component/dialog/dialog-header-search/style/material.scss +0 -0
  1432. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-header/dialog-transaction-header-branch/style/_layout.scss +0 -0
  1433. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-header/dialog-transaction-header-branch/style/_material-definition.scss +0 -0
  1434. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-header/dialog-transaction-header-branch/style/_theme.scss +0 -0
  1435. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-header/dialog-transaction-header-branch/style/material.scss +0 -0
  1436. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-header/dialog-transaction-header-delivery-method/style/_layout.scss +0 -0
  1437. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-header/dialog-transaction-header-delivery-method/style/_material-definition.scss +0 -0
  1438. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-header/dialog-transaction-header-delivery-method/style/_theme.scss +0 -0
  1439. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-header/dialog-transaction-header-delivery-method/style/material.scss +0 -0
  1440. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-header/dialog-transaction-header-discount/style/_layout.scss +0 -0
  1441. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-header/dialog-transaction-header-discount/style/_material-definition.scss +0 -0
  1442. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-header/dialog-transaction-header-discount/style/_theme.scss +0 -0
  1443. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-header/dialog-transaction-header-discount/style/material.scss +0 -0
  1444. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-header/dialog-transaction-planning-request/style/_layout.scss +0 -0
  1445. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-header/dialog-transaction-planning-request/style/_material-definition.scss +0 -0
  1446. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-header/dialog-transaction-planning-request/style/_theme.scss +0 -0
  1447. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-header/dialog-transaction-planning-request/style/material.scss +0 -0
  1448. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-commission-code/style/_layout.scss +0 -0
  1449. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-commission-code/style/_material-definition.scss +0 -0
  1450. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-commission-code/style/_theme.scss +0 -0
  1451. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-commission-code/style/material.scss +0 -0
  1452. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-delivery-method/style/_layout.scss +0 -0
  1453. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-delivery-method/style/_material-definition.scss +0 -0
  1454. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-delivery-method/style/_theme.scss +0 -0
  1455. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-delivery-method/style/material.scss +0 -0
  1456. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-direct-sell/style/_layout.scss +0 -0
  1457. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-direct-sell/style/_material-definition.scss +0 -0
  1458. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-direct-sell/style/_theme.scss +0 -0
  1459. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-direct-sell/style/material.scss +0 -0
  1460. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-discount/style/_layout.scss +0 -0
  1461. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-discount/style/_material-definition.scss +0 -0
  1462. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-discount/style/_theme.scss +0 -0
  1463. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-discount/style/material.scss +0 -0
  1464. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-price-list/style/_layout.scss +0 -0
  1465. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-price-list/style/_material-definition.scss +0 -0
  1466. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-price-list/style/_theme.scss +0 -0
  1467. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-price-list/style/material.scss +0 -0
  1468. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-supplier/style/_layout.scss +0 -0
  1469. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-supplier/style/_material-definition.scss +0 -0
  1470. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-supplier/style/_theme.scss +0 -0
  1471. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-supplier/style/material.scss +0 -0
  1472. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-vat/style/_layout.scss +0 -0
  1473. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-vat/style/_material-definition.scss +0 -0
  1474. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-vat/style/_theme.scss +0 -0
  1475. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-vat/style/material.scss +0 -0
  1476. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse/style/_layout.scss +0 -0
  1477. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse/style/_material-definition.scss +0 -0
  1478. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse/style/_theme.scss +0 -0
  1479. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse/style/material.scss +0 -0
  1480. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/style/_layout.scss +0 -0
  1481. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/style/_material-definition.scss +0 -0
  1482. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/style/_theme.scss +0 -0
  1483. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/style/material.scss +0 -0
  1484. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/style/_layout.scss +0 -0
  1485. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/style/_material-definition.scss +0 -0
  1486. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/style/_theme.scss +0 -0
  1487. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/style/material.scss +0 -0
  1488. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-search/components/transaction-search-header/style/_layout.scss +0 -0
  1489. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-search/components/transaction-search-header/style/_material-definition.scss +0 -0
  1490. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-search/components/transaction-search-header/style/_theme.scss +0 -0
  1491. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-search/components/transaction-search-header/style/material.scss +0 -0
  1492. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-search/style/_layout.scss +0 -0
  1493. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-search/style/_material-definition.scss +0 -0
  1494. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-search/style/_theme.scss +0 -0
  1495. /package/{lib → projects/transaction/src/lib}/component/dialog/transaction-search/style/material.scss +0 -0
  1496. /package/{lib → projects/transaction/src/lib}/component/digital-signature/style/_layout.scss +0 -0
  1497. /package/{lib/component/document-sign → projects/transaction/src/lib/component/digital-signature}/style/_material-definition.scss +0 -0
  1498. /package/{lib → projects/transaction/src/lib}/component/digital-signature/style/_theme.scss +0 -0
  1499. /package/{lib → projects/transaction/src/lib}/component/digital-signature/style/material.scss +0 -0
  1500. /package/{lib → projects/transaction/src/lib}/component/document-sign/style/_layout.scss +0 -0
  1501. /package/{lib/component/payment-tile → projects/transaction/src/lib/component/document-sign}/style/_material-definition.scss +0 -0
  1502. /package/{lib → projects/transaction/src/lib}/component/document-sign/style/_theme.scss +0 -0
  1503. /package/{lib → projects/transaction/src/lib}/component/document-sign/style/material.scss +0 -0
  1504. /package/{lib → projects/transaction/src/lib}/component/drop-shipment/style/_layout.scss +0 -0
  1505. /package/{lib → projects/transaction/src/lib}/component/drop-shipment/style/_material-definition.scss +0 -0
  1506. /package/{lib → projects/transaction/src/lib}/component/drop-shipment/style/_theme.scss +0 -0
  1507. /package/{lib → projects/transaction/src/lib}/component/drop-shipment/style/material.scss +0 -0
  1508. /package/{lib → projects/transaction/src/lib}/component/editable-label/style/_layout.scss +0 -0
  1509. /package/{lib → projects/transaction/src/lib}/component/editable-label/style/_material-definition.scss +0 -0
  1510. /package/{lib → projects/transaction/src/lib}/component/editable-label/style/_theme.scss +0 -0
  1511. /package/{lib → projects/transaction/src/lib}/component/editable-label/style/material.scss +0 -0
  1512. /package/{lib → projects/transaction/src/lib}/component/loader/style/_layout.scss +0 -0
  1513. /package/{lib → projects/transaction/src/lib}/component/loader/style/_material-definition.scss +0 -0
  1514. /package/{lib → projects/transaction/src/lib}/component/loader/style/_theme.scss +0 -0
  1515. /package/{lib → projects/transaction/src/lib}/component/loader/style/material.scss +0 -0
  1516. /package/{lib → projects/transaction/src/lib}/component/order-confirmation-create/style/_layout.scss +0 -0
  1517. /package/{lib → projects/transaction/src/lib}/component/order-confirmation-create/style/_material-definition.scss +0 -0
  1518. /package/{lib → projects/transaction/src/lib}/component/order-confirmation-create/style/_theme.scss +0 -0
  1519. /package/{lib → projects/transaction/src/lib}/component/order-confirmation-create/style/material.scss +0 -0
  1520. /package/{lib → projects/transaction/src/lib}/component/payment/style/_layout.scss +0 -0
  1521. /package/{lib → projects/transaction/src/lib}/component/payment/style/_material-definition.scss +0 -0
  1522. /package/{lib → projects/transaction/src/lib}/component/payment/style/_theme.scss +0 -0
  1523. /package/{lib → projects/transaction/src/lib}/component/payment/style/material.scss +0 -0
  1524. /package/{lib → projects/transaction/src/lib}/component/payment-qr-code/style/_layout.scss +0 -0
  1525. /package/{lib → projects/transaction/src/lib}/component/payment-qr-code/style/_material-definition.scss +0 -0
  1526. /package/{lib → projects/transaction/src/lib}/component/payment-qr-code/style/_theme.scss +0 -0
  1527. /package/{lib → projects/transaction/src/lib}/component/payment-qr-code/style/material.scss +0 -0
  1528. /package/{lib → projects/transaction/src/lib}/component/payment-tile/style/_layout.scss +0 -0
  1529. /package/{lib/component/relation/relation-general-contact-person-dialog → projects/transaction/src/lib/component/payment-tile}/style/_material-definition.scss +0 -0
  1530. /package/{lib → projects/transaction/src/lib}/component/payment-tile/style/_theme.scss +0 -0
  1531. /package/{lib → projects/transaction/src/lib}/component/payment-tile/style/material.scss +0 -0
  1532. /package/{lib → projects/transaction/src/lib}/component/payment-to-pay/style/_layout.scss +0 -0
  1533. /package/{lib → projects/transaction/src/lib}/component/payment-to-pay/style/_material-definition.scss +0 -0
  1534. /package/{lib → projects/transaction/src/lib}/component/payment-to-pay/style/_theme.scss +0 -0
  1535. /package/{lib → projects/transaction/src/lib}/component/payment-to-pay/style/material.scss +0 -0
  1536. /package/{lib → projects/transaction/src/lib}/component/purchase-confirmation-lines/style/_layout.scss +0 -0
  1537. /package/{lib → projects/transaction/src/lib}/component/purchase-confirmation-lines/style/_material-definition.scss +0 -0
  1538. /package/{lib → projects/transaction/src/lib}/component/purchase-confirmation-lines/style/_theme.scss +0 -0
  1539. /package/{lib → projects/transaction/src/lib}/component/purchase-confirmation-lines/style/material.scss +0 -0
  1540. /package/{lib → projects/transaction/src/lib}/component/quick-send-button/style/_layout.scss +0 -0
  1541. /package/{lib → projects/transaction/src/lib}/component/quick-send-button/style/_material-definition.scss +0 -0
  1542. /package/{lib → projects/transaction/src/lib}/component/quick-send-button/style/_theme.scss +0 -0
  1543. /package/{lib → projects/transaction/src/lib}/component/quick-send-button/style/material.scss +0 -0
  1544. /package/{lib → projects/transaction/src/lib}/component/registered-payment/style/_layout.scss +0 -0
  1545. /package/{lib → projects/transaction/src/lib}/component/registered-payment/style/_material-definition.scss +0 -0
  1546. /package/{lib → projects/transaction/src/lib}/component/registered-payment/style/_theme.scss +0 -0
  1547. /package/{lib → projects/transaction/src/lib}/component/registered-payment/style/material.scss +0 -0
  1548. /package/{lib → projects/transaction/src/lib}/component/relation/relation-address/style/_layout.scss +0 -0
  1549. /package/{lib → projects/transaction/src/lib}/component/relation/relation-address/style/_material-definition.scss +0 -0
  1550. /package/{lib → projects/transaction/src/lib}/component/relation/relation-address/style/_theme.scss +0 -0
  1551. /package/{lib → projects/transaction/src/lib}/component/relation/relation-address/style/material.scss +0 -0
  1552. /package/{lib → projects/transaction/src/lib}/component/relation/relation-address-select/style/_layout.scss +0 -0
  1553. /package/{lib → projects/transaction/src/lib}/component/relation/relation-address-select/style/_material-definition.scss +0 -0
  1554. /package/{lib → projects/transaction/src/lib}/component/relation/relation-address-select/style/_theme.scss +0 -0
  1555. /package/{lib → projects/transaction/src/lib}/component/relation/relation-address-select/style/material.scss +0 -0
  1556. /package/{lib → projects/transaction/src/lib}/component/relation/relation-address-tile/style/_layout.scss +0 -0
  1557. /package/{lib → projects/transaction/src/lib}/component/relation/relation-address-tile/style/_material-definition.scss +0 -0
  1558. /package/{lib → projects/transaction/src/lib}/component/relation/relation-address-tile/style/_theme.scss +0 -0
  1559. /package/{lib → projects/transaction/src/lib}/component/relation/relation-address-tile/style/material.scss +0 -0
  1560. /package/{lib → projects/transaction/src/lib}/component/relation/relation-addresses/style/_layout.scss +0 -0
  1561. /package/{lib → projects/transaction/src/lib}/component/relation/relation-addresses/style/_material-definition.scss +0 -0
  1562. /package/{lib → projects/transaction/src/lib}/component/relation/relation-addresses/style/_theme.scss +0 -0
  1563. /package/{lib → projects/transaction/src/lib}/component/relation/relation-addresses/style/material.scss +0 -0
  1564. /package/{lib → projects/transaction/src/lib}/component/relation/relation-contact-details/style/_layout.scss +0 -0
  1565. /package/{lib → projects/transaction/src/lib}/component/relation/relation-contact-details/style/_material-definition.scss +0 -0
  1566. /package/{lib → projects/transaction/src/lib}/component/relation/relation-contact-details/style/_theme.scss +0 -0
  1567. /package/{lib → projects/transaction/src/lib}/component/relation/relation-contact-details/style/material.scss +0 -0
  1568. /package/{lib → projects/transaction/src/lib}/component/relation/relation-general/style/_layout.scss +0 -0
  1569. /package/{lib → projects/transaction/src/lib}/component/relation/relation-general/style/_material-definition.scss +0 -0
  1570. /package/{lib → projects/transaction/src/lib}/component/relation/relation-general/style/_theme.scss +0 -0
  1571. /package/{lib → projects/transaction/src/lib}/component/relation/relation-general/style/material.scss +0 -0
  1572. /package/{lib → projects/transaction/src/lib}/component/relation/relation-general-contact-person-dialog/style/_layout.scss +0 -0
  1573. /package/{lib/component/relation/relation-suggestions-list → projects/transaction/src/lib/component/relation/relation-general-contact-person-dialog}/style/_material-definition.scss +0 -0
  1574. /package/{lib → projects/transaction/src/lib}/component/relation/relation-general-contact-person-dialog/style/_theme.scss +0 -0
  1575. /package/{lib → projects/transaction/src/lib}/component/relation/relation-general-contact-person-dialog/style/material.scss +0 -0
  1576. /package/{lib → projects/transaction/src/lib}/component/relation/relation-preferences/style/_layout.scss +0 -0
  1577. /package/{lib → projects/transaction/src/lib}/component/relation/relation-preferences/style/_material-definition.scss +0 -0
  1578. /package/{lib → projects/transaction/src/lib}/component/relation/relation-preferences/style/_theme.scss +0 -0
  1579. /package/{lib → projects/transaction/src/lib}/component/relation/relation-preferences/style/material.scss +0 -0
  1580. /package/{lib → projects/transaction/src/lib}/component/relation/relation-suggestions-list/style/_layout.scss +0 -0
  1581. /package/{lib/component/relation/relation-type → projects/transaction/src/lib/component/relation/relation-suggestions-list}/style/_material-definition.scss +0 -0
  1582. /package/{lib → projects/transaction/src/lib}/component/relation/relation-suggestions-list/style/_theme.scss +0 -0
  1583. /package/{lib → projects/transaction/src/lib}/component/relation/relation-suggestions-list/style/material.scss +0 -0
  1584. /package/{lib → projects/transaction/src/lib}/component/relation/relation-suggestions-list-item/style/_layout.scss +0 -0
  1585. /package/{lib → projects/transaction/src/lib}/component/relation/relation-suggestions-list-item/style/_material-definition.scss +0 -0
  1586. /package/{lib → projects/transaction/src/lib}/component/relation/relation-suggestions-list-item/style/_theme.scss +0 -0
  1587. /package/{lib → projects/transaction/src/lib}/component/relation/relation-suggestions-list-item/style/material.scss +0 -0
  1588. /package/{lib → projects/transaction/src/lib}/component/relation/relation-type/style/_layout.scss +0 -0
  1589. /package/{lib/component/returns/return-wizard → projects/transaction/src/lib/component/relation/relation-type}/style/_material-definition.scss +0 -0
  1590. /package/{lib → projects/transaction/src/lib}/component/relation/relation-type/style/_theme.scss +0 -0
  1591. /package/{lib → projects/transaction/src/lib}/component/relation/relation-type/style/material.scss +0 -0
  1592. /package/{lib → projects/transaction/src/lib}/component/relation/suggestions-sidebar/style/_layout.scss +0 -0
  1593. /package/{lib → projects/transaction/src/lib}/component/relation/suggestions-sidebar/style/_material-definition.scss +0 -0
  1594. /package/{lib → projects/transaction/src/lib}/component/relation/suggestions-sidebar/style/_theme.scss +0 -0
  1595. /package/{lib → projects/transaction/src/lib}/component/relation/suggestions-sidebar/style/material.scss +0 -0
  1596. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/delivery-chooser/style/_layout.scss +0 -0
  1597. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/delivery-chooser/style/_material-definition.scss +0 -0
  1598. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/delivery-chooser/style/_theme.scss +0 -0
  1599. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/delivery-chooser/style/material.scss +0 -0
  1600. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/delivery-method-chooser/delivery-method-tile/style/_layout.scss +0 -0
  1601. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/delivery-method-chooser/delivery-method-tile/style/_material-definition.scss +0 -0
  1602. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/delivery-method-chooser/delivery-method-tile/style/_theme.scss +0 -0
  1603. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/delivery-method-chooser/delivery-method-tile/style/material.scss +0 -0
  1604. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/delivery-method-chooser/style/_layout.scss +0 -0
  1605. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/delivery-method-chooser/style/_material-definition.scss +0 -0
  1606. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/delivery-method-chooser/style/_theme.scss +0 -0
  1607. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/delivery-method-chooser/style/material.scss +0 -0
  1608. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/return-lines-wizard/style/_layout.scss +0 -0
  1609. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/return-lines-wizard/style/_material-definition.scss +0 -0
  1610. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/return-lines-wizard/style/_theme.scss +0 -0
  1611. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/return-lines-wizard/style/material.scss +0 -0
  1612. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/style/_layout.scss +0 -0
  1613. /package/{lib/component/transaction-allocate-goods-history → projects/transaction/src/lib/component/returns/return-wizard}/style/_material-definition.scss +0 -0
  1614. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/style/_theme.scss +0 -0
  1615. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/style/material.scss +0 -0
  1616. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/wizard-return-line-display/style/_layout.scss +0 -0
  1617. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/wizard-return-line-display/style/_material-definition.scss +0 -0
  1618. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/wizard-return-line-display/style/_theme.scss +0 -0
  1619. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/wizard-return-line-display/style/material.scss +0 -0
  1620. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/wizard-return-line-display-tile/style/_layout.scss +0 -0
  1621. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/wizard-return-line-display-tile/style/_material-definition.scss +0 -0
  1622. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/wizard-return-line-display-tile/style/_theme.scss +0 -0
  1623. /package/{lib → projects/transaction/src/lib}/component/returns/return-wizard/wizard-return-line-display-tile/style/material.scss +0 -0
  1624. /package/{lib → projects/transaction/src/lib}/component/sales-order-convert-dialog/style/_layout.scss +0 -0
  1625. /package/{lib → projects/transaction/src/lib}/component/sales-order-convert-dialog/style/_material-definition.scss +0 -0
  1626. /package/{lib → projects/transaction/src/lib}/component/sales-order-convert-dialog/style/_theme.scss +0 -0
  1627. /package/{lib → projects/transaction/src/lib}/component/sales-order-convert-dialog/style/material.scss +0 -0
  1628. /package/{lib → projects/transaction/src/lib}/component/save-cancel-buttons/style/_layout.scss +0 -0
  1629. /package/{lib → projects/transaction/src/lib}/component/save-cancel-buttons/style/_material-definition.scss +0 -0
  1630. /package/{lib → projects/transaction/src/lib}/component/save-cancel-buttons/style/_theme.scss +0 -0
  1631. /package/{lib → projects/transaction/src/lib}/component/save-cancel-buttons/style/material.scss +0 -0
  1632. /package/{lib → projects/transaction/src/lib}/component/search/search-filter-panel/style/_layout.scss +0 -0
  1633. /package/{lib → projects/transaction/src/lib}/component/search/search-filter-panel/style/_material-definition.scss +0 -0
  1634. /package/{lib → projects/transaction/src/lib}/component/search/search-filter-panel/style/_theme.scss +0 -0
  1635. /package/{lib → projects/transaction/src/lib}/component/search/search-filter-panel/style/material.scss +0 -0
  1636. /package/{lib → projects/transaction/src/lib}/component/search/search-header-buttons/style/_layout.scss +0 -0
  1637. /package/{lib → projects/transaction/src/lib}/component/search/search-header-buttons/style/_material-definition.scss +0 -0
  1638. /package/{lib → projects/transaction/src/lib}/component/search/search-header-buttons/style/_theme.scss +0 -0
  1639. /package/{lib → projects/transaction/src/lib}/component/search/search-header-buttons/style/material.scss +0 -0
  1640. /package/{lib → projects/transaction/src/lib}/component/search/style/_layout.scss +0 -0
  1641. /package/{lib → projects/transaction/src/lib}/component/search/style/_material-definition.scss +0 -0
  1642. /package/{lib → projects/transaction/src/lib}/component/search/style/_theme.scss +0 -0
  1643. /package/{lib → projects/transaction/src/lib}/component/search/style/material.scss +0 -0
  1644. /package/{lib → projects/transaction/src/lib}/component/service-wizard-qa/question-answer-item/style/_layout.scss +0 -0
  1645. /package/{lib → projects/transaction/src/lib}/component/service-wizard-qa/question-answer-item/style/_material-definition.scss +0 -0
  1646. /package/{lib → projects/transaction/src/lib}/component/service-wizard-qa/question-answer-item/style/_theme.scss +0 -0
  1647. /package/{lib → projects/transaction/src/lib}/component/service-wizard-qa/question-answer-item/style/material.scss +0 -0
  1648. /package/{lib → projects/transaction/src/lib}/component/shared/conversion-assistant/style/_layout.scss +0 -0
  1649. /package/{lib → projects/transaction/src/lib}/component/shared/conversion-assistant/style/_material-definition.scss +0 -0
  1650. /package/{lib → projects/transaction/src/lib}/component/shared/conversion-assistant/style/_theme.scss +0 -0
  1651. /package/{lib → projects/transaction/src/lib}/component/shared/conversion-assistant/style/material.scss +0 -0
  1652. /package/{lib → projects/transaction/src/lib}/component/shared/transaction-article-text/style/_layout.scss +0 -0
  1653. /package/{lib → projects/transaction/src/lib}/component/shared/transaction-article-text/style/_material-definition.scss +0 -0
  1654. /package/{lib → projects/transaction/src/lib}/component/shared/transaction-article-text/style/_theme.scss +0 -0
  1655. /package/{lib → projects/transaction/src/lib}/component/shared/transaction-article-text/style/material.scss +0 -0
  1656. /package/{lib → projects/transaction/src/lib}/component/shared/transaction-article-text-overview/style/_layout.scss +0 -0
  1657. /package/{lib → projects/transaction/src/lib}/component/shared/transaction-article-text-overview/style/_material-definition.scss +0 -0
  1658. /package/{lib → projects/transaction/src/lib}/component/shared/transaction-article-text-overview/style/_theme.scss +0 -0
  1659. /package/{lib → projects/transaction/src/lib}/component/shared/transaction-article-text-overview/style/material.scss +0 -0
  1660. /package/{lib → projects/transaction/src/lib}/component/shopping-cart/style/_layout.scss +0 -0
  1661. /package/{lib → projects/transaction/src/lib}/component/shopping-cart/style/_material-definition.scss +0 -0
  1662. /package/{lib → projects/transaction/src/lib}/component/shopping-cart/style/_theme.scss +0 -0
  1663. /package/{lib → projects/transaction/src/lib}/component/shopping-cart/style/material.scss +0 -0
  1664. /package/{lib → projects/transaction/src/lib}/component/shopping-cart-preview/style/_layout.scss +0 -0
  1665. /package/{lib → projects/transaction/src/lib}/component/shopping-cart-preview/style/_material-definition.scss +0 -0
  1666. /package/{lib → projects/transaction/src/lib}/component/shopping-cart-preview/style/_theme.scss +0 -0
  1667. /package/{lib → projects/transaction/src/lib}/component/shopping-cart-preview/style/material.scss +0 -0
  1668. /package/{lib → projects/transaction/src/lib}/component/simple-vertical-stepper/style/_layout.scss +0 -0
  1669. /package/{lib → projects/transaction/src/lib}/component/simple-vertical-stepper/style/_material-definition.scss +0 -0
  1670. /package/{lib → projects/transaction/src/lib}/component/simple-vertical-stepper/style/_theme.scss +0 -0
  1671. /package/{lib → projects/transaction/src/lib}/component/simple-vertical-stepper/style/material.scss +0 -0
  1672. /package/{lib → projects/transaction/src/lib}/component/stepper/style/_layout.scss +0 -0
  1673. /package/{lib → projects/transaction/src/lib}/component/stepper/style/_material-definition.scss +0 -0
  1674. /package/{lib → projects/transaction/src/lib}/component/stepper/style/_theme.scss +0 -0
  1675. /package/{lib → projects/transaction/src/lib}/component/stepper/style/material.scss +0 -0
  1676. /package/{lib → projects/transaction/src/lib}/component/stepper-step/style/_layout.scss +0 -0
  1677. /package/{lib → projects/transaction/src/lib}/component/stepper-step/style/_material-definition.scss +0 -0
  1678. /package/{lib → projects/transaction/src/lib}/component/stepper-step/style/_theme.scss +0 -0
  1679. /package/{lib → projects/transaction/src/lib}/component/stepper-step/style/material.scss +0 -0
  1680. /package/{lib → projects/transaction/src/lib}/component/tile/style/_layout.scss +0 -0
  1681. /package/{lib → projects/transaction/src/lib}/component/tile/style/_material-definition.scss +0 -0
  1682. /package/{lib → projects/transaction/src/lib}/component/tile/style/_theme.scss +0 -0
  1683. /package/{lib → projects/transaction/src/lib}/component/tile/style/material.scss +0 -0
  1684. /package/{lib → projects/transaction/src/lib}/component/toast/style/_layout.scss +0 -0
  1685. /package/{lib → projects/transaction/src/lib}/component/toast/style/_material-definition.scss +0 -0
  1686. /package/{lib → projects/transaction/src/lib}/component/toast/style/_theme.scss +0 -0
  1687. /package/{lib → projects/transaction/src/lib}/component/toast/style/material.scss +0 -0
  1688. /package/{lib → projects/transaction/src/lib}/component/transaction/style/_layout.scss +0 -0
  1689. /package/{lib → projects/transaction/src/lib}/component/transaction/style/_theme.scss +0 -0
  1690. /package/{lib → projects/transaction/src/lib}/component/transaction/style/material.scss +0 -0
  1691. /package/{lib → projects/transaction/src/lib}/component/transaction-allocate-goods-history/style/_layout.scss +0 -0
  1692. /package/{lib/component/transaction-batch-order-picking/fast-date-range-picker → projects/transaction/src/lib/component/transaction-allocate-goods-history}/style/_material-definition.scss +0 -0
  1693. /package/{lib → projects/transaction/src/lib}/component/transaction-allocate-goods-history/style/_theme.scss +0 -0
  1694. /package/{lib → projects/transaction/src/lib}/component/transaction-allocate-goods-history/style/material.scss +0 -0
  1695. /package/{lib → projects/transaction/src/lib}/component/transaction-batch-order-picking/fast-date-range-picker/style/_layout.scss +0 -0
  1696. /package/{lib/component/transaction-batch-order-picking → projects/transaction/src/lib/component/transaction-batch-order-picking/fast-date-range-picker}/style/_material-definition.scss +0 -0
  1697. /package/{lib → projects/transaction/src/lib}/component/transaction-batch-order-picking/fast-date-range-picker/style/_theme.scss +0 -0
  1698. /package/{lib → projects/transaction/src/lib}/component/transaction-batch-order-picking/fast-date-range-picker/style/material.scss +0 -0
  1699. /package/{lib → projects/transaction/src/lib}/component/transaction-batch-order-picking/style/_layout.scss +0 -0
  1700. /package/{lib/component/transaction-card/transaction-card-cash-register → projects/transaction/src/lib/component/transaction-batch-order-picking}/style/_material-definition.scss +0 -0
  1701. /package/{lib → projects/transaction/src/lib}/component/transaction-batch-order-picking/style/_theme.scss +0 -0
  1702. /package/{lib → projects/transaction/src/lib}/component/transaction-batch-order-picking/style/material.scss +0 -0
  1703. /package/{lib → projects/transaction/src/lib}/component/transaction-button/style/_layout.scss +0 -0
  1704. /package/{lib → projects/transaction/src/lib}/component/transaction-button/style/_material-definition.scss +0 -0
  1705. /package/{lib → projects/transaction/src/lib}/component/transaction-button/style/_theme.scss +0 -0
  1706. /package/{lib → projects/transaction/src/lib}/component/transaction-button/style/material.scss +0 -0
  1707. /package/{lib → projects/transaction/src/lib}/component/transaction-button-bar/style/_layout.scss +0 -0
  1708. /package/{lib → projects/transaction/src/lib}/component/transaction-button-bar/style/_material-definition.scss +0 -0
  1709. /package/{lib → projects/transaction/src/lib}/component/transaction-button-bar/style/_theme.scss +0 -0
  1710. /package/{lib → projects/transaction/src/lib}/component/transaction-button-bar/style/material.scss +0 -0
  1711. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card/style/_layout.scss +0 -0
  1712. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card/style/_material-definition.scss +0 -0
  1713. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card/style/_theme.scss +0 -0
  1714. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card/style/material.scss +0 -0
  1715. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-cash-register/style/_layout.scss +0 -0
  1716. /package/{lib/component/transaction-card/transaction-card-footer → projects/transaction/src/lib/component/transaction-card/transaction-card-cash-register}/style/_material-definition.scss +0 -0
  1717. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-cash-register/style/_theme.scss +0 -0
  1718. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-cash-register/style/material.scss +0 -0
  1719. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-footer/style/_layout.scss +0 -0
  1720. /package/{lib/component/transaction-card/transaction-card-goods-allocation → projects/transaction/src/lib/component/transaction-card/transaction-card-footer}/style/_material-definition.scss +0 -0
  1721. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-footer/style/_theme.scss +0 -0
  1722. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-footer/style/material.scss +0 -0
  1723. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-goods-allocation/style/_layout.scss +0 -0
  1724. /package/{lib/component/transaction-card/transaction-card-header → projects/transaction/src/lib/component/transaction-card/transaction-card-goods-allocation}/style/_material-definition.scss +0 -0
  1725. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-goods-allocation/style/_theme.scss +0 -0
  1726. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-goods-allocation/style/material.scss +0 -0
  1727. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-header/style/_layout.scss +0 -0
  1728. /package/{lib/component/transaction-card/transaction-card-invoice → projects/transaction/src/lib/component/transaction-card/transaction-card-header}/style/_material-definition.scss +0 -0
  1729. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-header/style/_theme.scss +0 -0
  1730. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-header/style/material.scss +0 -0
  1731. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-invoice/style/_layout.scss +0 -0
  1732. /package/{lib/component/transaction-card/transaction-card-margin → projects/transaction/src/lib/component/transaction-card/transaction-card-invoice}/style/_material-definition.scss +0 -0
  1733. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-invoice/style/_theme.scss +0 -0
  1734. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-invoice/style/material.scss +0 -0
  1735. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-margin/style/_layout.scss +0 -0
  1736. /package/{lib/component/transaction-card/transaction-card-order-delivery → projects/transaction/src/lib/component/transaction-card/transaction-card-margin}/style/_material-definition.scss +0 -0
  1737. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-margin/style/_theme.scss +0 -0
  1738. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-margin/style/material.scss +0 -0
  1739. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-order-delivery/style/_layout.scss +0 -0
  1740. /package/{lib/component/transaction-card/transaction-card-picked → projects/transaction/src/lib/component/transaction-card/transaction-card-order-delivery}/style/_material-definition.scss +0 -0
  1741. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-order-delivery/style/_theme.scss +0 -0
  1742. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-order-delivery/style/material.scss +0 -0
  1743. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-picked/style/_layout.scss +0 -0
  1744. /package/{lib/component/transaction-card/transaction-card-planning → projects/transaction/src/lib/component/transaction-card/transaction-card-picked}/style/_material-definition.scss +0 -0
  1745. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-picked/style/_theme.scss +0 -0
  1746. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-picked/style/material.scss +0 -0
  1747. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-planning/style/_layout.scss +0 -0
  1748. /package/{lib/component/transaction-card/transaction-card-purchase-order-stickers → projects/transaction/src/lib/component/transaction-card/transaction-card-planning}/style/_material-definition.scss +0 -0
  1749. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-planning/style/_theme.scss +0 -0
  1750. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-planning/style/material.scss +0 -0
  1751. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-purchase/style/_layout.scss +0 -0
  1752. /package/{lib/component/transaction-card/transaction-card-receive-goods → projects/transaction/src/lib/component/transaction-card/transaction-card-purchase}/style/_material-definition.scss +0 -0
  1753. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-purchase/style/_theme.scss +0 -0
  1754. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-purchase/style/material.scss +0 -0
  1755. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-purchase-confirmation/style/_layout.component.ts.child.1.scss +0 -0
  1756. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-purchase-confirmation/style/_material-definition.component.ts.child.4.scss +0 -0
  1757. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-purchase-confirmation/style/_theme.component.ts.child.2.scss +0 -0
  1758. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-purchase-confirmation/style/material.component.ts.child.3.scss +0 -0
  1759. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-purchase-order-stickers/style/_layout.scss +0 -0
  1760. /package/{lib/component/transaction-card/transaction-card-purchase-overview → projects/transaction/src/lib/component/transaction-card/transaction-card-purchase-order-stickers}/style/_material-definition.scss +0 -0
  1761. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-purchase-order-stickers/style/_theme.scss +0 -0
  1762. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-purchase-order-stickers/style/material.scss +0 -0
  1763. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-purchase-overview/style/_layout.scss +0 -0
  1764. /package/{lib/component/transaction-card/transaction-card-purchase → projects/transaction/src/lib/component/transaction-card/transaction-card-purchase-overview}/style/_material-definition.scss +0 -0
  1765. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-purchase-overview/style/_theme.scss +0 -0
  1766. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-purchase-overview/style/material.scss +0 -0
  1767. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-receive-goods/style/_layout.scss +0 -0
  1768. /package/{lib/component/transaction-card/transaction-card-reserve-goods → projects/transaction/src/lib/component/transaction-card/transaction-card-receive-goods}/style/_material-definition.scss +0 -0
  1769. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-receive-goods/style/_theme.scss +0 -0
  1770. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-receive-goods/style/material.scss +0 -0
  1771. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-reserve-goods/style/_layout.scss +0 -0
  1772. /package/{lib/component/transaction-card/transaction-card-sales-overview → projects/transaction/src/lib/component/transaction-card/transaction-card-reserve-goods}/style/_material-definition.scss +0 -0
  1773. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-reserve-goods/style/_theme.scss +0 -0
  1774. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-reserve-goods/style/material.scss +0 -0
  1775. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-sales-overview/style/_layout.scss +0 -0
  1776. /package/{lib/component/transaction-card/transaction-card-to-be-picked → projects/transaction/src/lib/component/transaction-card/transaction-card-sales-overview}/style/_material-definition.scss +0 -0
  1777. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-sales-overview/style/_theme.scss +0 -0
  1778. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-sales-overview/style/material.scss +0 -0
  1779. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-to-be-picked/style/_layout.scss +0 -0
  1780. /package/{lib/component/transaction-cards → projects/transaction/src/lib/component/transaction-card/transaction-card-to-be-picked}/style/_material-definition.scss +0 -0
  1781. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-to-be-picked/style/_theme.scss +0 -0
  1782. /package/{lib → projects/transaction/src/lib}/component/transaction-card/transaction-card-to-be-picked/style/material.scss +0 -0
  1783. /package/{lib → projects/transaction/src/lib}/component/transaction-cards/style/_layout.scss +0 -0
  1784. /package/{lib/component/transaction-cash-register-order/transaction-cash-register-link-relation → projects/transaction/src/lib/component/transaction-cards}/style/_material-definition.scss +0 -0
  1785. /package/{lib → projects/transaction/src/lib}/component/transaction-cards/style/_theme.scss +0 -0
  1786. /package/{lib → projects/transaction/src/lib}/component/transaction-cards/style/material.scss +0 -0
  1787. /package/{lib → projects/transaction/src/lib}/component/transaction-cash-register-dialog/style/_layout.scss +0 -0
  1788. /package/{lib → projects/transaction/src/lib}/component/transaction-cash-register-dialog/style/_material-definition.scss +0 -0
  1789. /package/{lib → projects/transaction/src/lib}/component/transaction-cash-register-dialog/style/_theme.scss +0 -0
  1790. /package/{lib → projects/transaction/src/lib}/component/transaction-cash-register-dialog/style/material.scss +0 -0
  1791. /package/{lib → projects/transaction/src/lib}/component/transaction-cash-register-order/transaction-cash-register-link-relation/style/_layout.scss +0 -0
  1792. /package/{lib/component/transaction-cash-register-order/transaction-cash-register-order-expense-dialog → projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-link-relation}/style/_material-definition.scss +0 -0
  1793. /package/{lib → projects/transaction/src/lib}/component/transaction-cash-register-order/transaction-cash-register-link-relation/style/_theme.scss +0 -0
  1794. /package/{lib → projects/transaction/src/lib}/component/transaction-cash-register-order/transaction-cash-register-link-relation/style/material.scss +0 -0
  1795. /package/{lib → projects/transaction/src/lib}/component/transaction-cash-register-order/transaction-cash-register-order-expense-dialog/style/_layout.scss +0 -0
  1796. /package/{lib/component/transaction-cash-register-order/transaction-cash-register-order-receipt-dialog → projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-order-expense-dialog}/style/_material-definition.scss +0 -0
  1797. /package/{lib → projects/transaction/src/lib}/component/transaction-cash-register-order/transaction-cash-register-order-expense-dialog/style/_theme.scss +0 -0
  1798. /package/{lib → projects/transaction/src/lib}/component/transaction-cash-register-order/transaction-cash-register-order-expense-dialog/style/material.scss +0 -0
  1799. /package/{lib → projects/transaction/src/lib}/component/transaction-cash-register-order/transaction-cash-register-order-receipt-dialog/style/_layout.scss +0 -0
  1800. /package/{lib/component/transaction-copy-order → projects/transaction/src/lib/component/transaction-cash-register-order/transaction-cash-register-order-receipt-dialog}/style/_material-definition.scss +0 -0
  1801. /package/{lib → projects/transaction/src/lib}/component/transaction-cash-register-order/transaction-cash-register-order-receipt-dialog/style/_theme.scss +0 -0
  1802. /package/{lib → projects/transaction/src/lib}/component/transaction-cash-register-order/transaction-cash-register-order-receipt-dialog/style/material.scss +0 -0
  1803. /package/{lib → projects/transaction/src/lib}/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/style/_layout.scss +0 -0
  1804. /package/{lib → projects/transaction/src/lib}/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/style/_material-definition.scss +0 -0
  1805. /package/{lib → projects/transaction/src/lib}/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/style/_theme.scss +0 -0
  1806. /package/{lib → projects/transaction/src/lib}/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/style/material.scss +0 -0
  1807. /package/{lib → projects/transaction/src/lib}/component/transaction-confirmation-history/style/_layout.scss +0 -0
  1808. /package/{lib → projects/transaction/src/lib}/component/transaction-confirmation-history/style/_material-definition.scss +0 -0
  1809. /package/{lib → projects/transaction/src/lib}/component/transaction-confirmation-history/style/_theme.scss +0 -0
  1810. /package/{lib → projects/transaction/src/lib}/component/transaction-confirmation-history/style/material.scss +0 -0
  1811. /package/{lib → projects/transaction/src/lib}/component/transaction-container-connection/transaction-container/style/_layout.scss +0 -0
  1812. /package/{lib → projects/transaction/src/lib}/component/transaction-container-connection/transaction-container/style/_material-definition.scss +0 -0
  1813. /package/{lib → projects/transaction/src/lib}/component/transaction-container-connection/transaction-container/style/_theme.scss +0 -0
  1814. /package/{lib → projects/transaction/src/lib}/component/transaction-container-connection/transaction-container/style/material.scss +0 -0
  1815. /package/{lib → projects/transaction/src/lib}/component/transaction-container-connection/transaction-container-choice-dialog/style/_layout.scss +0 -0
  1816. /package/{lib → projects/transaction/src/lib}/component/transaction-container-connection/transaction-container-choice-dialog/style/_material-definition.scss +0 -0
  1817. /package/{lib → projects/transaction/src/lib}/component/transaction-container-connection/transaction-container-choice-dialog/style/_theme.scss +0 -0
  1818. /package/{lib → projects/transaction/src/lib}/component/transaction-container-connection/transaction-container-choice-dialog/style/material.scss +0 -0
  1819. /package/{lib → projects/transaction/src/lib}/component/transaction-copy-order/style/_layout.scss +0 -0
  1820. /package/{lib/component/transaction-grid/transaction-available-stock-grid → projects/transaction/src/lib/component/transaction-copy-order}/style/_material-definition.scss +0 -0
  1821. /package/{lib → projects/transaction/src/lib}/component/transaction-copy-order/style/_theme.scss +0 -0
  1822. /package/{lib → projects/transaction/src/lib}/component/transaction-copy-order/style/material.scss +0 -0
  1823. /package/{lib → projects/transaction/src/lib}/component/transaction-create-date-label/style/_layout.scss +0 -0
  1824. /package/{lib → projects/transaction/src/lib}/component/transaction-create-date-label/style/_material-definition.scss +0 -0
  1825. /package/{lib → projects/transaction/src/lib}/component/transaction-create-date-label/style/_theme.scss +0 -0
  1826. /package/{lib → projects/transaction/src/lib}/component/transaction-create-date-label/style/material.scss +0 -0
  1827. /package/{lib → projects/transaction/src/lib}/component/transaction-create-wizard/style/_layout.scss +0 -0
  1828. /package/{lib → projects/transaction/src/lib}/component/transaction-create-wizard/style/_material-definition.scss +0 -0
  1829. /package/{lib → projects/transaction/src/lib}/component/transaction-create-wizard/style/_theme.scss +0 -0
  1830. /package/{lib → projects/transaction/src/lib}/component/transaction-create-wizard/style/material.scss +0 -0
  1831. /package/{lib → projects/transaction/src/lib}/component/transaction-date-select/style/_layout.scss +0 -0
  1832. /package/{lib → projects/transaction/src/lib}/component/transaction-date-select/style/_material-definition.scss +0 -0
  1833. /package/{lib → projects/transaction/src/lib}/component/transaction-date-select/style/_theme.scss +0 -0
  1834. /package/{lib → projects/transaction/src/lib}/component/transaction-date-select/style/material.scss +0 -0
  1835. /package/{lib → projects/transaction/src/lib}/component/transaction-direct-sell/style/_layout.scss +0 -0
  1836. /package/{lib → projects/transaction/src/lib}/component/transaction-direct-sell/style/_material-definition.scss +0 -0
  1837. /package/{lib → projects/transaction/src/lib}/component/transaction-direct-sell/style/_theme.scss +0 -0
  1838. /package/{lib → projects/transaction/src/lib}/component/transaction-direct-sell/style/material.scss +0 -0
  1839. /package/{lib → projects/transaction/src/lib}/component/transaction-documents/style/_layout.scss +0 -0
  1840. /package/{lib → projects/transaction/src/lib}/component/transaction-documents/style/_material-definition.scss +0 -0
  1841. /package/{lib → projects/transaction/src/lib}/component/transaction-documents/style/_theme.scss +0 -0
  1842. /package/{lib → projects/transaction/src/lib}/component/transaction-documents/style/material.scss +0 -0
  1843. /package/{lib → projects/transaction/src/lib}/component/transaction-grid/transaction-available-stock-grid/style/_layout.scss +0 -0
  1844. /package/{lib/component/transaction-header-fields/transaction-header-delivery-method-button → projects/transaction/src/lib/component/transaction-grid/transaction-available-stock-grid}/style/_material-definition.scss +0 -0
  1845. /package/{lib → projects/transaction/src/lib}/component/transaction-grid/transaction-available-stock-grid/style/_theme.scss +0 -0
  1846. /package/{lib → projects/transaction/src/lib}/component/transaction-grid/transaction-available-stock-grid/style/material.scss +0 -0
  1847. /package/{lib → projects/transaction/src/lib}/component/transaction-grid/transaction-history-grid/style/_layout.scss +0 -0
  1848. /package/{lib → projects/transaction/src/lib}/component/transaction-grid/transaction-history-grid/style/_material-definition.scss +0 -0
  1849. /package/{lib → projects/transaction/src/lib}/component/transaction-grid/transaction-history-grid/style/_theme.scss +0 -0
  1850. /package/{lib → projects/transaction/src/lib}/component/transaction-grid/transaction-history-grid/style/material.scss +0 -0
  1851. /package/{lib → projects/transaction/src/lib}/component/transaction-grid/transaction-purchase-info-grid/style/_layout.scss +0 -0
  1852. /package/{lib → projects/transaction/src/lib}/component/transaction-grid/transaction-purchase-info-grid/style/_material-definition.scss +0 -0
  1853. /package/{lib → projects/transaction/src/lib}/component/transaction-grid/transaction-purchase-info-grid/style/_theme.scss +0 -0
  1854. /package/{lib → projects/transaction/src/lib}/component/transaction-grid/transaction-purchase-info-grid/style/material.scss +0 -0
  1855. /package/{lib → projects/transaction/src/lib}/component/transaction-grid/transaction-transport-history-grid/style/_layout.scss +0 -0
  1856. /package/{lib → projects/transaction/src/lib}/component/transaction-grid/transaction-transport-history-grid/style/_material-definition.scss +0 -0
  1857. /package/{lib → projects/transaction/src/lib}/component/transaction-grid/transaction-transport-history-grid/style/_theme.scss +0 -0
  1858. /package/{lib → projects/transaction/src/lib}/component/transaction-grid/transaction-transport-history-grid/style/material.scss +0 -0
  1859. /package/{lib → projects/transaction/src/lib}/component/transaction-header/style/_layout.scss +0 -0
  1860. /package/{lib → projects/transaction/src/lib}/component/transaction-header/style/_material-definition.scss +0 -0
  1861. /package/{lib → projects/transaction/src/lib}/component/transaction-header/style/_theme.scss +0 -0
  1862. /package/{lib → projects/transaction/src/lib}/component/transaction-header/style/material.scss +0 -0
  1863. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header/style/_layout.scss +0 -0
  1864. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header/style/_material-definition.scss +0 -0
  1865. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header/style/_theme.scss +0 -0
  1866. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header/style/material.scss +0 -0
  1867. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-customer-portal/style/_layout.scss +0 -0
  1868. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-customer-portal/style/_material-definition.scss +0 -0
  1869. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-customer-portal/style/_theme.scss +0 -0
  1870. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-customer-portal/style/material.scss +0 -0
  1871. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-delivery/style/_layout.scss +0 -0
  1872. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-delivery/style/_material-definition.scss +0 -0
  1873. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-delivery/style/_theme.scss +0 -0
  1874. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-delivery/style/material.scss +0 -0
  1875. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-order/style/_layout.scss +0 -0
  1876. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-order/style/_material-definition.scss +0 -0
  1877. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-order/style/_theme.scss +0 -0
  1878. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-order/style/material.scss +0 -0
  1879. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-payment/style/_layout.scss +0 -0
  1880. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-payment/style/_material-definition.scss +0 -0
  1881. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-payment/style/_theme.scss +0 -0
  1882. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-payment/style/material.scss +0 -0
  1883. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-popup/style/_layout.scss +0 -0
  1884. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-popup/style/_material-definition.scss +0 -0
  1885. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-popup/style/_theme.scss +0 -0
  1886. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-popup/style/material.scss +0 -0
  1887. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-relation/style/_layout.scss +0 -0
  1888. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-relation/style/_material-definition.scss +0 -0
  1889. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-relation/style/_theme.scss +0 -0
  1890. /package/{lib → projects/transaction/src/lib}/component/transaction-header/transaction-header-relation/style/material.scss +0 -0
  1891. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-delivery-method-button/style/_layout.scss +0 -0
  1892. /package/{lib/component/transaction-header-fields/transaction-header-district → projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-method-button}/style/_material-definition.scss +0 -0
  1893. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-delivery-method-button/style/_theme.scss +0 -0
  1894. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-delivery-method-button/style/material.scss +0 -0
  1895. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-delivery-options/style/_layout.scss +0 -0
  1896. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-delivery-options/style/_material-definition.scss +0 -0
  1897. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-delivery-options/style/_theme.scss +0 -0
  1898. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-delivery-options/style/material.scss +0 -0
  1899. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-deliverydate-definitive-button/style/_layout.scss +0 -0
  1900. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-deliverydate-definitive-button/style/_material-definition.scss +0 -0
  1901. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-deliverydate-definitive-button/style/_theme.scss +0 -0
  1902. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-deliverydate-definitive-button/style/material.scss +0 -0
  1903. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-district/style/_layout.scss +0 -0
  1904. /package/{lib/component/transaction-header-fields/transaction-header-partial-delivery → projects/transaction/src/lib/component/transaction-header-fields/transaction-header-district}/style/_material-definition.scss +0 -0
  1905. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-district/style/_theme.scss +0 -0
  1906. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-district/style/material.scss +0 -0
  1907. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-partial-delivery/style/_layout.scss +0 -0
  1908. /package/{lib/component/transaction-header-simple → projects/transaction/src/lib/component/transaction-header-fields/transaction-header-partial-delivery}/style/_material-definition.scss +0 -0
  1909. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-partial-delivery/style/_theme.scss +0 -0
  1910. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-partial-delivery/style/material.scss +0 -0
  1911. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-payment-button/style/_layout.scss +0 -0
  1912. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-payment-button/style/_material-definition.scss +0 -0
  1913. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-payment-button/style/_theme.scss +0 -0
  1914. /package/{lib → projects/transaction/src/lib}/component/transaction-header-fields/transaction-header-payment-button/style/material.scss +0 -0
  1915. /package/{lib → projects/transaction/src/lib}/component/transaction-header-handled-by/style/_layout.scss +0 -0
  1916. /package/{lib → projects/transaction/src/lib}/component/transaction-header-handled-by/style/_material-definition.scss +0 -0
  1917. /package/{lib → projects/transaction/src/lib}/component/transaction-header-handled-by/style/_theme.scss +0 -0
  1918. /package/{lib → projects/transaction/src/lib}/component/transaction-header-handled-by/style/material.scss +0 -0
  1919. /package/{lib → projects/transaction/src/lib}/component/transaction-header-simple/style/_layout.scss +0 -0
  1920. /package/{lib/component/transaction-labeled-price-input → projects/transaction/src/lib/component/transaction-header-simple}/style/_material-definition.scss +0 -0
  1921. /package/{lib → projects/transaction/src/lib}/component/transaction-header-simple/style/_theme.scss +0 -0
  1922. /package/{lib → projects/transaction/src/lib}/component/transaction-header-simple/style/material.scss +0 -0
  1923. /package/{lib → projects/transaction/src/lib}/component/transaction-history-grid-status/style/_layout.scss +0 -0
  1924. /package/{lib → projects/transaction/src/lib}/component/transaction-history-grid-status/style/_material-definition.scss +0 -0
  1925. /package/{lib → projects/transaction/src/lib}/component/transaction-history-grid-status/style/_theme.scss +0 -0
  1926. /package/{lib → projects/transaction/src/lib}/component/transaction-history-grid-status/style/material.scss +0 -0
  1927. /package/{lib → projects/transaction/src/lib}/component/transaction-internal/style/_layout.scss +0 -0
  1928. /package/{lib → projects/transaction/src/lib}/component/transaction-internal/style/_material-definition.scss +0 -0
  1929. /package/{lib → projects/transaction/src/lib}/component/transaction-internal/style/_theme.scss +0 -0
  1930. /package/{lib → projects/transaction/src/lib}/component/transaction-internal/style/material.scss +0 -0
  1931. /package/{lib → projects/transaction/src/lib}/component/transaction-labeled-price-input/style/_layout.scss +0 -0
  1932. /package/{lib/component/transaction-line-activities/components/transaction-line-activities-contact-moments/components/transaction-line-activities-contact-moments-add-moment-dialog → projects/transaction/src/lib/component/transaction-labeled-price-input}/style/_material-definition.scss +0 -0
  1933. /package/{lib → projects/transaction/src/lib}/component/transaction-labeled-price-input/style/_theme.scss +0 -0
  1934. /package/{lib → projects/transaction/src/lib}/component/transaction-labeled-price-input/style/material.scss +0 -0
  1935. /package/{lib → projects/transaction/src/lib}/component/transaction-labeled-warehouse-location-button/style/_layout.scss +0 -0
  1936. /package/{lib → projects/transaction/src/lib}/component/transaction-labeled-warehouse-location-button/style/_material-definition.scss +0 -0
  1937. /package/{lib → projects/transaction/src/lib}/component/transaction-labeled-warehouse-location-button/style/_theme.scss +0 -0
  1938. /package/{lib → projects/transaction/src/lib}/component/transaction-labeled-warehouse-location-button/style/material.scss +0 -0
  1939. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-base-card/style/_layout.scss +0 -0
  1940. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-base-card/style/_material-definition.scss +0 -0
  1941. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-base-card/style/_theme.scss +0 -0
  1942. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-base-card/style/material.scss +0 -0
  1943. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-base-line/style/_layout.scss +0 -0
  1944. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-base-line/style/_material-definition.scss +0 -0
  1945. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-base-line/style/_theme.scss +0 -0
  1946. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-base-line/style/material.scss +0 -0
  1947. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-cash-register-order-line/style/_layout.scss +0 -0
  1948. /package/{lib/component/transaction-line/transaction-picked-line → projects/transaction/src/lib/component/transaction-line/transaction-cash-register-order-line}/style/_material-definition.scss +0 -0
  1949. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-cash-register-order-line/style/_theme.scss +0 -0
  1950. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-cash-register-order-line/style/material.scss +0 -0
  1951. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-customer-portal-line/style/_layout.scss +0 -0
  1952. /package/{lib/component/transaction-line/transaction-planning-line/components/transaction-planning-line-planned-resource → projects/transaction/src/lib/component/transaction-line/transaction-customer-portal-line}/style/_material-definition.scss +0 -0
  1953. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-customer-portal-line/style/_theme.scss +0 -0
  1954. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-customer-portal-line/style/material.scss +0 -0
  1955. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-customer-portal-return-line/style/_layout.scss +0 -0
  1956. /package/{lib/component/transaction-line/transaction-planning-line → projects/transaction/src/lib/component/transaction-line/transaction-customer-portal-return-line}/style/_material-definition.scss +0 -0
  1957. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-customer-portal-return-line/style/_theme.scss +0 -0
  1958. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-customer-portal-return-line/style/material.scss +0 -0
  1959. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-goods-allocation-line/style/_layout.scss +0 -0
  1960. /package/{lib/component/transaction-line/transaction-purchase-order-line → projects/transaction/src/lib/component/transaction-line/transaction-goods-allocation-line}/style/_material-definition.scss +0 -0
  1961. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-goods-allocation-line/style/_theme.scss +0 -0
  1962. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-goods-allocation-line/style/material.scss +0 -0
  1963. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-interbranch-receive-goods-line/style/_layout.scss +0 -0
  1964. /package/{lib/component/transaction-line/transaction-purchase-order-stickers-line → projects/transaction/src/lib/component/transaction-line/transaction-interbranch-receive-goods-line}/style/_material-definition.scss +0 -0
  1965. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-interbranch-receive-goods-line/style/_theme.scss +0 -0
  1966. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-interbranch-receive-goods-line/style/material.scss +0 -0
  1967. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-invoice-line/style/_layout.scss +0 -0
  1968. /package/{lib/component/transaction-line/transaction-purchase-overview-line → projects/transaction/src/lib/component/transaction-line/transaction-invoice-line}/style/_material-definition.scss +0 -0
  1969. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-invoice-line/style/_theme.scss +0 -0
  1970. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-invoice-line/style/material.scss +0 -0
  1971. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-line/style/_layout.scss +0 -0
  1972. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-line/style/_material-definition.scss +0 -0
  1973. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-line/style/_theme.scss +0 -0
  1974. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-line/style/material.scss +0 -0
  1975. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-line-label/style/_layout.scss +0 -0
  1976. /package/{lib/component/transaction-line/transaction-purchase-transport-line → projects/transaction/src/lib/component/transaction-line/transaction-line-label}/style/_material-definition.scss +0 -0
  1977. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-line-label/style/_theme.scss +0 -0
  1978. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-line-label/style/material.scss +0 -0
  1979. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-line-toolbar/style/_layout.scss +0 -0
  1980. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-line-toolbar/style/_material-definition.scss +0 -0
  1981. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-line-toolbar/style/_theme.scss +0 -0
  1982. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-line-toolbar/style/material.scss +0 -0
  1983. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-margin-info-line/style/_layout.scss +0 -0
  1984. /package/{lib/component/transaction-line/transaction-receive-goods-line → projects/transaction/src/lib/component/transaction-line/transaction-margin-info-line}/style/_material-definition.scss +0 -0
  1985. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-margin-info-line/style/_theme.scss +0 -0
  1986. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-margin-info-line/style/material.scss +0 -0
  1987. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-order-delivery-line/style/_layout.scss +0 -0
  1988. /package/{lib/component/transaction-line/transaction-reserve-goods-line → projects/transaction/src/lib/component/transaction-line/transaction-order-delivery-line}/style/_material-definition.scss +0 -0
  1989. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-order-delivery-line/style/_theme.scss +0 -0
  1990. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-order-delivery-line/style/material.scss +0 -0
  1991. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-overview-line/style/_layout.scss +0 -0
  1992. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-overview-line/style/_material-definition.scss +0 -0
  1993. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-overview-line/style/_theme.scss +0 -0
  1994. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-overview-line/style/material.scss +0 -0
  1995. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-picked-line/style/_layout.scss +0 -0
  1996. /package/{lib/component/transaction-line/transaction-sales-order-quotation-line → projects/transaction/src/lib/component/transaction-line/transaction-picked-line}/style/_material-definition.scss +0 -0
  1997. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-picked-line/style/_theme.scss +0 -0
  1998. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-picked-line/style/material.scss +0 -0
  1999. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-planning-line/components/transaction-planning-line-planned-resource/style/_layout.scss +0 -0
  2000. /package/{lib/component/transaction-line/transaction-to-be-picked-line → projects/transaction/src/lib/component/transaction-line/transaction-planning-line/components/transaction-planning-line-planned-resource}/style/_material-definition.scss +0 -0
  2001. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-planning-line/components/transaction-planning-line-planned-resource/style/_theme.scss +0 -0
  2002. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-planning-line/components/transaction-planning-line-planned-resource/style/material.scss +0 -0
  2003. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-planning-line/style/_layout.scss +0 -0
  2004. /package/{lib/component/transaction-navigation-button → projects/transaction/src/lib/component/transaction-line/transaction-planning-line}/style/_material-definition.scss +0 -0
  2005. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-planning-line/style/_theme.scss +0 -0
  2006. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-planning-line/style/material.scss +0 -0
  2007. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-purchase-line/style/_layout.scss +0 -0
  2008. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-purchase-line/style/_material-definition.scss +0 -0
  2009. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-purchase-line/style/_theme.scss +0 -0
  2010. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-purchase-line/style/material.scss +0 -0
  2011. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-purchase-order-line/style/_layout.scss +0 -0
  2012. /package/{lib/component/transaction-picking-history → projects/transaction/src/lib/component/transaction-line/transaction-purchase-order-line}/style/_material-definition.scss +0 -0
  2013. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-purchase-order-line/style/_theme.scss +0 -0
  2014. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-purchase-order-line/style/material.scss +0 -0
  2015. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-purchase-order-stickers-line/style/_layout.scss +0 -0
  2016. /package/{lib/component/transaction-print-package-sticker → projects/transaction/src/lib/component/transaction-line/transaction-purchase-order-stickers-line}/style/_material-definition.scss +0 -0
  2017. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-purchase-order-stickers-line/style/_theme.scss +0 -0
  2018. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-purchase-order-stickers-line/style/material.scss +0 -0
  2019. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-purchase-overview-line/style/_layout.scss +0 -0
  2020. /package/{lib/component/transaction-quick-access/transaction-quick-access-goods-allocation → projects/transaction/src/lib/component/transaction-line/transaction-purchase-overview-line}/style/_material-definition.scss +0 -0
  2021. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-purchase-overview-line/style/_theme.scss +0 -0
  2022. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-purchase-overview-line/style/material.scss +0 -0
  2023. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-purchase-transport-line/style/_layout.scss +0 -0
  2024. /package/{lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods → projects/transaction/src/lib/component/transaction-line/transaction-purchase-transport-line}/style/_material-definition.scss +0 -0
  2025. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-purchase-transport-line/style/_theme.scss +0 -0
  2026. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-purchase-transport-line/style/material.scss +0 -0
  2027. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-receive-goods-line/style/_layout.scss +0 -0
  2028. /package/{lib/component/transaction-quick-access/transaction-quick-access-invoice → projects/transaction/src/lib/component/transaction-line/transaction-receive-goods-line}/style/_material-definition.scss +0 -0
  2029. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-receive-goods-line/style/_theme.scss +0 -0
  2030. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-receive-goods-line/style/material.scss +0 -0
  2031. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-reserve-goods-line/style/_layout.scss +0 -0
  2032. /package/{lib/component/transaction-quick-access/transaction-quick-access-order-confirmation → projects/transaction/src/lib/component/transaction-line/transaction-reserve-goods-line}/style/_material-definition.scss +0 -0
  2033. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-reserve-goods-line/style/_theme.scss +0 -0
  2034. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-reserve-goods-line/style/material.scss +0 -0
  2035. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-sales-order-quotation-line/style/_layout.scss +0 -0
  2036. /package/{lib/component/transaction-quick-access/transaction-quick-access-order-delivery → projects/transaction/src/lib/component/transaction-line/transaction-sales-order-quotation-line}/style/_material-definition.scss +0 -0
  2037. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-sales-order-quotation-line/style/_theme.scss +0 -0
  2038. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-sales-order-quotation-line/style/material.scss +0 -0
  2039. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-text-line/style/_layout.scss +0 -0
  2040. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-text-line/style/_material-definition.scss +0 -0
  2041. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-text-line/style/_theme.scss +0 -0
  2042. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-text-line/style/material.scss +0 -0
  2043. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-to-be-picked-line/style/_layout.scss +0 -0
  2044. /package/{lib/component/transaction-quick-access/transaction-quick-access-order-sticker → projects/transaction/src/lib/component/transaction-line/transaction-to-be-picked-line}/style/_material-definition.scss +0 -0
  2045. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-to-be-picked-line/style/_theme.scss +0 -0
  2046. /package/{lib → projects/transaction/src/lib}/component/transaction-line/transaction-to-be-picked-line/style/material.scss +0 -0
  2047. /package/{lib → projects/transaction/src/lib}/component/transaction-line-action-buttons/style/_layout.scss +0 -0
  2048. /package/{lib → projects/transaction/src/lib}/component/transaction-line-action-buttons/style/_material-definition.scss +0 -0
  2049. /package/{lib → projects/transaction/src/lib}/component/transaction-line-action-buttons/style/_theme.scss +0 -0
  2050. /package/{lib → projects/transaction/src/lib}/component/transaction-line-action-buttons/style/material.scss +0 -0
  2051. /package/{lib → projects/transaction/src/lib}/component/transaction-line-activities/components/transaction-line-activities-contact-moments/components/transaction-line-activities-contact-moments-add-moment-dialog/style/_layout.scss +0 -0
  2052. /package/{lib/component/transaction-line-activities/components/transaction-line-activities-contact-moments/components/transaction-line-activities-contact-moments-block → projects/transaction/src/lib/component/transaction-line-activities/components/transaction-line-activities-contact-moments/components/transaction-line-activities-contact-moments-add-moment-dialog}/style/_material-definition.scss +0 -0
  2053. /package/{lib → projects/transaction/src/lib}/component/transaction-line-activities/components/transaction-line-activities-contact-moments/components/transaction-line-activities-contact-moments-add-moment-dialog/style/_theme.scss +0 -0
  2054. /package/{lib → projects/transaction/src/lib}/component/transaction-line-activities/components/transaction-line-activities-contact-moments/components/transaction-line-activities-contact-moments-add-moment-dialog/style/material.scss +0 -0
  2055. /package/{lib → projects/transaction/src/lib}/component/transaction-line-activities/components/transaction-line-activities-contact-moments/components/transaction-line-activities-contact-moments-block/style/_layout.scss +0 -0
  2056. /package/{lib/component/transaction-line-activities/components/transaction-line-activities-contact-moments → projects/transaction/src/lib/component/transaction-line-activities/components/transaction-line-activities-contact-moments/components/transaction-line-activities-contact-moments-block}/style/_material-definition.scss +0 -0
  2057. /package/{lib → projects/transaction/src/lib}/component/transaction-line-activities/components/transaction-line-activities-contact-moments/components/transaction-line-activities-contact-moments-block/style/_theme.scss +0 -0
  2058. /package/{lib → projects/transaction/src/lib}/component/transaction-line-activities/components/transaction-line-activities-contact-moments/components/transaction-line-activities-contact-moments-block/style/material.scss +0 -0
  2059. /package/{lib → projects/transaction/src/lib}/component/transaction-line-activities/components/transaction-line-activities-contact-moments/style/_layout.scss +0 -0
  2060. /package/{lib/component/transaction-line-activities → projects/transaction/src/lib/component/transaction-line-activities/components/transaction-line-activities-contact-moments}/style/_material-definition.scss +0 -0
  2061. /package/{lib → projects/transaction/src/lib}/component/transaction-line-activities/components/transaction-line-activities-contact-moments/style/_theme.scss +0 -0
  2062. /package/{lib → projects/transaction/src/lib}/component/transaction-line-activities/components/transaction-line-activities-contact-moments/style/material.scss +0 -0
  2063. /package/{lib → projects/transaction/src/lib}/component/transaction-line-activities/style/_layout.scss +0 -0
  2064. /package/{lib/component/transaction-line-delivery-history → projects/transaction/src/lib/component/transaction-line-activities}/style/_material-definition.scss +0 -0
  2065. /package/{lib → projects/transaction/src/lib}/component/transaction-line-activities/style/_theme.scss +0 -0
  2066. /package/{lib → projects/transaction/src/lib}/component/transaction-line-activities/style/material.scss +0 -0
  2067. /package/{lib → projects/transaction/src/lib}/component/transaction-line-checkbox-list/style/_layout.scss +0 -0
  2068. /package/{lib → projects/transaction/src/lib}/component/transaction-line-checkbox-list/style/_material-definition.scss +0 -0
  2069. /package/{lib → projects/transaction/src/lib}/component/transaction-line-checkbox-list/style/_theme.scss +0 -0
  2070. /package/{lib → projects/transaction/src/lib}/component/transaction-line-checkbox-list/style/material.scss +0 -0
  2071. /package/{lib → projects/transaction/src/lib}/component/transaction-line-delivery-history/style/_layout.scss +0 -0
  2072. /package/{lib/component/transaction-line-grid → projects/transaction/src/lib/component/transaction-line-delivery-history}/style/_material-definition.scss +0 -0
  2073. /package/{lib → projects/transaction/src/lib}/component/transaction-line-delivery-history/style/_theme.scss +0 -0
  2074. /package/{lib → projects/transaction/src/lib}/component/transaction-line-delivery-history/style/material.scss +0 -0
  2075. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/dialog-transaction-line-purchase-description/style/_layout.scss +0 -0
  2076. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/dialog-transaction-line-purchase-description/style/_material-definition.scss +0 -0
  2077. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/dialog-transaction-line-purchase-description/style/_theme.scss +0 -0
  2078. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/dialog-transaction-line-purchase-description/style/material.scss +0 -0
  2079. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-assembly-time/style/_layout.scss +0 -0
  2080. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-assembly-time/style/_material-definition.scss +0 -0
  2081. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-assembly-time/style/_theme.scss +0 -0
  2082. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-assembly-time/style/material.scss +0 -0
  2083. /package/{lib/component/transaction-line-invoice-history/style/_material-definition.scss → projects/transaction/src/lib/component/transaction-line-fields/transaction-line-assembly-time.component.ts} +0 -0
  2084. /package/{lib/component/transaction-line-sales-allocation/style/_material-definition.scss → projects/transaction/src/lib/component/transaction-line-fields/transaction-line-assembly-time.module.ts} +0 -0
  2085. /package/{lib/component/transaction-line-sales-delivery/style/_material-definition.scss → projects/transaction/src/lib/component/transaction-line-fields/transaction-line-collection-code.component.ts} +0 -0
  2086. /package/{lib/component/transaction-line-sales-invoice/style/_material-definition.scss → projects/transaction/src/lib/component/transaction-line-fields/transaction-line-collection-code.module.ts} +0 -0
  2087. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-confirmed-price/style/_layout.scss +0 -0
  2088. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-confirmed-price/style/_material-definition.scss +0 -0
  2089. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-confirmed-price/style/_theme.scss +0 -0
  2090. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-confirmed-price/style/material.scss +0 -0
  2091. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-direct-sell/style/_layout.scss +0 -0
  2092. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-direct-sell/style/_material-definition.scss +0 -0
  2093. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-direct-sell/style/_theme.scss +0 -0
  2094. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-direct-sell/style/material.scss +0 -0
  2095. /package/{lib/component/transaction-line-side-panel-article-details/style/_material-definition.scss → projects/transaction/src/lib/component/transaction-line-fields/transaction-line-edit-time.component.ts} +0 -0
  2096. /package/{lib/component/transaction-line-side-panel-internal-delivery/style/_material-definition.scss → projects/transaction/src/lib/component/transaction-line-fields/transaction-line-edit-time.module.ts} +0 -0
  2097. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-price/style/_layout.scss +0 -0
  2098. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-price/style/_material-definition.scss +0 -0
  2099. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-price/style/_theme.scss +0 -0
  2100. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-price/style/material.scss +0 -0
  2101. /package/{lib/component/transaction-line-side-panel-purchase/style/_material-definition.scss → projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier-article-number.component.ts} +0 -0
  2102. /package/{lib/component/transaction-line-side-panel-replenishment-article-details/style/_material-definition.scss → projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier-article-number.module.ts} +0 -0
  2103. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-supplier-artnr/style/_layout.scss +0 -0
  2104. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-supplier-artnr/style/_material-definition.scss +0 -0
  2105. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-supplier-artnr/style/_theme.scss +0 -0
  2106. /package/{lib → projects/transaction/src/lib}/component/transaction-line-fields/transaction-line-supplier-artnr/style/material.scss +0 -0
  2107. /package/{lib → projects/transaction/src/lib}/component/transaction-line-grid/style/_layout.scss +0 -0
  2108. /package/{lib/component/transaction-line-side-panel-sales-purchase → projects/transaction/src/lib/component/transaction-line-grid}/style/_material-definition.scss +0 -0
  2109. /package/{lib → projects/transaction/src/lib}/component/transaction-line-grid/style/_theme.scss +0 -0
  2110. /package/{lib → projects/transaction/src/lib}/component/transaction-line-grid/style/material.scss +0 -0
  2111. /package/{lib → projects/transaction/src/lib}/component/transaction-line-image-and-description/style/_layout.scss +0 -0
  2112. /package/{lib → projects/transaction/src/lib}/component/transaction-line-image-and-description/style/_material-definition.scss +0 -0
  2113. /package/{lib → projects/transaction/src/lib}/component/transaction-line-image-and-description/style/_theme.scss +0 -0
  2114. /package/{lib → projects/transaction/src/lib}/component/transaction-line-image-and-description/style/material.scss +0 -0
  2115. /package/{lib → projects/transaction/src/lib}/component/transaction-line-interbranch-receive-goods/style/_layout.scss +0 -0
  2116. /package/{lib → projects/transaction/src/lib}/component/transaction-line-interbranch-receive-goods/style/_material-definition.scss +0 -0
  2117. /package/{lib → projects/transaction/src/lib}/component/transaction-line-interbranch-receive-goods/style/_theme.scss +0 -0
  2118. /package/{lib → projects/transaction/src/lib}/component/transaction-line-interbranch-receive-goods/style/material.scss +0 -0
  2119. /package/{lib → projects/transaction/src/lib}/component/transaction-line-invoice-history/style/_layout.scss +0 -0
  2120. /package/{lib/component/transaction-line-side-panel-sales → projects/transaction/src/lib/component/transaction-line-invoice-history}/style/_material-definition.scss +0 -0
  2121. /package/{lib → projects/transaction/src/lib}/component/transaction-line-invoice-history/style/_theme.scss +0 -0
  2122. /package/{lib → projects/transaction/src/lib}/component/transaction-line-invoice-history/style/material.scss +0 -0
  2123. /package/{lib → projects/transaction/src/lib}/component/transaction-line-purchase-confirmation/style/_layout.scss +0 -0
  2124. /package/{lib → projects/transaction/src/lib}/component/transaction-line-purchase-confirmation/style/_material-definition.scss +0 -0
  2125. /package/{lib → projects/transaction/src/lib}/component/transaction-line-purchase-confirmation/style/_theme.scss +0 -0
  2126. /package/{lib → projects/transaction/src/lib}/component/transaction-line-purchase-confirmation/style/material.scss +0 -0
  2127. /package/{lib → projects/transaction/src/lib}/component/transaction-line-purchase-receive-goods/style/_layout.scss +0 -0
  2128. /package/{lib → projects/transaction/src/lib}/component/transaction-line-purchase-receive-goods/style/_material-definition.scss +0 -0
  2129. /package/{lib → projects/transaction/src/lib}/component/transaction-line-purchase-receive-goods/style/_theme.scss +0 -0
  2130. /package/{lib → projects/transaction/src/lib}/component/transaction-line-purchase-receive-goods/style/material.scss +0 -0
  2131. /package/{lib → projects/transaction/src/lib}/component/transaction-line-purchase-transport/style/_layout.scss +0 -0
  2132. /package/{lib → projects/transaction/src/lib}/component/transaction-line-purchase-transport/style/_material-definition.scss +0 -0
  2133. /package/{lib → projects/transaction/src/lib}/component/transaction-line-purchase-transport/style/_theme.scss +0 -0
  2134. /package/{lib → projects/transaction/src/lib}/component/transaction-line-purchase-transport/style/material.scss +0 -0
  2135. /package/{lib → projects/transaction/src/lib}/component/transaction-line-sales-allocation/style/_layout.scss +0 -0
  2136. /package/{lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-picked → projects/transaction/src/lib/component/transaction-line-sales-allocation}/style/_material-definition.scss +0 -0
  2137. /package/{lib → projects/transaction/src/lib}/component/transaction-line-sales-allocation/style/_theme.scss +0 -0
  2138. /package/{lib → projects/transaction/src/lib}/component/transaction-line-sales-allocation/style/material.scss +0 -0
  2139. /package/{lib → projects/transaction/src/lib}/component/transaction-line-sales-delivery/style/_layout.scss +0 -0
  2140. /package/{lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-to-be-picked → projects/transaction/src/lib/component/transaction-line-sales-delivery}/style/_material-definition.scss +0 -0
  2141. /package/{lib → projects/transaction/src/lib}/component/transaction-line-sales-delivery/style/_theme.scss +0 -0
  2142. /package/{lib → projects/transaction/src/lib}/component/transaction-line-sales-delivery/style/material.scss +0 -0
  2143. /package/{lib → projects/transaction/src/lib}/component/transaction-line-sales-invoice/style/_layout.scss +0 -0
  2144. /package/{lib/component/transaction-line/transaction-cash-register-order-line → projects/transaction/src/lib/component/transaction-line-sales-invoice}/style/_material-definition.scss +0 -0
  2145. /package/{lib → projects/transaction/src/lib}/component/transaction-line-sales-invoice/style/_theme.scss +0 -0
  2146. /package/{lib → projects/transaction/src/lib}/component/transaction-line-sales-invoice/style/material.scss +0 -0
  2147. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel/style/_layout.scss +0 -0
  2148. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel/style/_material-definition.scss +0 -0
  2149. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel/style/_theme.scss +0 -0
  2150. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel/style/material.scss +0 -0
  2151. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-article-details/style/_layout.scss +0 -0
  2152. /package/{lib/component/transaction-line/transaction-customer-portal-line → projects/transaction/src/lib/component/transaction-line-side-panel-article-details}/style/_material-definition.scss +0 -0
  2153. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-article-details/style/_theme.scss +0 -0
  2154. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-article-details/style/material.scss +0 -0
  2155. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-default/style/_layout.scss +0 -0
  2156. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-default/style/_material-definition.scss +0 -0
  2157. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-default/style/_theme.scss +0 -0
  2158. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-default/style/material.scss +0 -0
  2159. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-internal-delivery/style/_layout.scss +0 -0
  2160. /package/{lib/component/transaction-line/transaction-customer-portal-return-line → projects/transaction/src/lib/component/transaction-line-side-panel-internal-delivery}/style/_material-definition.scss +0 -0
  2161. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-internal-delivery/style/_theme.scss +0 -0
  2162. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-internal-delivery/style/material.scss +0 -0
  2163. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-planning/style/_layout.scss +0 -0
  2164. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-planning/style/_material-definition.scss +0 -0
  2165. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-planning/style/_theme.scss +0 -0
  2166. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-planning/style/material.scss +0 -0
  2167. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-purchase/style/_layout.scss +0 -0
  2168. /package/{lib/component/transaction-line/transaction-goods-allocation-line → projects/transaction/src/lib/component/transaction-line-side-panel-purchase}/style/_material-definition.scss +0 -0
  2169. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-purchase/style/_theme.scss +0 -0
  2170. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-purchase/style/material.scss +0 -0
  2171. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-replenishment-article-details/style/_layout.scss +0 -0
  2172. /package/{lib/component/transaction-line/transaction-interbranch-receive-goods-line → projects/transaction/src/lib/component/transaction-line-side-panel-replenishment-article-details}/style/_material-definition.scss +0 -0
  2173. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-replenishment-article-details/style/_theme.scss +0 -0
  2174. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-replenishment-article-details/style/material.scss +0 -0
  2175. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-sales/style/_layout.scss +0 -0
  2176. /package/{lib/component/transaction-line/transaction-line-label → projects/transaction/src/lib/component/transaction-line-side-panel-sales}/style/_material-definition.scss +0 -0
  2177. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-sales/style/_theme.scss +0 -0
  2178. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-sales/style/material.scss +0 -0
  2179. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-sales/transaction-line-side-panel-picked/style/_layout.scss +0 -0
  2180. /package/{lib/component/transaction-line/transaction-margin-info-line → projects/transaction/src/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-picked}/style/_material-definition.scss +0 -0
  2181. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-sales/transaction-line-side-panel-picked/style/_theme.scss +0 -0
  2182. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-sales/transaction-line-side-panel-picked/style/material.scss +0 -0
  2183. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-sales/transaction-line-side-panel-to-be-picked/style/_layout.scss +0 -0
  2184. /package/{lib/component/transaction-line/transaction-order-delivery-line → projects/transaction/src/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-to-be-picked}/style/_material-definition.scss +0 -0
  2185. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-sales/transaction-line-side-panel-to-be-picked/style/_theme.scss +0 -0
  2186. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-sales/transaction-line-side-panel-to-be-picked/style/material.scss +0 -0
  2187. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-sales-purchase/style/_layout.scss +0 -0
  2188. /package/{lib/component/transaction-line/transaction-invoice-line → projects/transaction/src/lib/component/transaction-line-side-panel-sales-purchase}/style/_material-definition.scss +0 -0
  2189. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-sales-purchase/style/_theme.scss +0 -0
  2190. /package/{lib → projects/transaction/src/lib}/component/transaction-line-side-panel-sales-purchase/style/material.scss +0 -0
  2191. /package/{lib → projects/transaction/src/lib}/component/transaction-line-statusbar/style/_layout.scss +0 -0
  2192. /package/{lib → projects/transaction/src/lib}/component/transaction-line-statusbar/style/_material-definition.scss +0 -0
  2193. /package/{lib → projects/transaction/src/lib}/component/transaction-line-statusbar/style/_theme.scss +0 -0
  2194. /package/{lib → projects/transaction/src/lib}/component/transaction-line-statusbar/style/material.scss +0 -0
  2195. /package/{lib → projects/transaction/src/lib}/component/transaction-lines/style/_layout.scss +0 -0
  2196. /package/{lib → projects/transaction/src/lib}/component/transaction-lines/style/_material-definition.scss +0 -0
  2197. /package/{lib → projects/transaction/src/lib}/component/transaction-lines/style/_theme.scss +0 -0
  2198. /package/{lib → projects/transaction/src/lib}/component/transaction-lines/style/material.scss +0 -0
  2199. /package/{lib → projects/transaction/src/lib}/component/transaction-lines-popup/style/_layout.scss +0 -0
  2200. /package/{lib → projects/transaction/src/lib}/component/transaction-lines-popup/style/_material-definition.scss +0 -0
  2201. /package/{lib → projects/transaction/src/lib}/component/transaction-lines-popup/style/_theme.scss +0 -0
  2202. /package/{lib → projects/transaction/src/lib}/component/transaction-lines-popup/style/material.scss +0 -0
  2203. /package/{lib → projects/transaction/src/lib}/component/transaction-lines-side-panel/transaction-lines-side-panel/style/_layout.scss +0 -0
  2204. /package/{lib → projects/transaction/src/lib}/component/transaction-lines-side-panel/transaction-lines-side-panel/style/_material-definition.scss +0 -0
  2205. /package/{lib → projects/transaction/src/lib}/component/transaction-lines-side-panel/transaction-lines-side-panel/style/_theme.scss +0 -0
  2206. /package/{lib → projects/transaction/src/lib}/component/transaction-lines-side-panel/transaction-lines-side-panel/style/material.scss +0 -0
  2207. /package/{lib → projects/transaction/src/lib}/component/transaction-lines-side-panel/transaction-lines-side-panel-cash-desk/style/_layout.scss +0 -0
  2208. /package/{lib → projects/transaction/src/lib}/component/transaction-lines-side-panel/transaction-lines-side-panel-cash-desk/style/_material-definition.scss +0 -0
  2209. /package/{lib → projects/transaction/src/lib}/component/transaction-lines-side-panel/transaction-lines-side-panel-cash-desk/style/_theme.scss +0 -0
  2210. /package/{lib → projects/transaction/src/lib}/component/transaction-lines-side-panel/transaction-lines-side-panel-cash-desk/style/material.scss +0 -0
  2211. /package/{lib → projects/transaction/src/lib}/component/transaction-lines-side-panel/transaction-lines-side-panel-service-order/style/_layout.scss +0 -0
  2212. /package/{lib → projects/transaction/src/lib}/component/transaction-lines-side-panel/transaction-lines-side-panel-service-order/style/_material-definition.scss +0 -0
  2213. /package/{lib → projects/transaction/src/lib}/component/transaction-lines-side-panel/transaction-lines-side-panel-service-order/style/_theme.scss +0 -0
  2214. /package/{lib → projects/transaction/src/lib}/component/transaction-lines-side-panel/transaction-lines-side-panel-service-order/style/material.scss +0 -0
  2215. /package/{lib → projects/transaction/src/lib}/component/transaction-margin/component/transaction-margin-block/style/_layout.scss +0 -0
  2216. /package/{lib → projects/transaction/src/lib}/component/transaction-margin/component/transaction-margin-block/style/_material-definition.scss +0 -0
  2217. /package/{lib → projects/transaction/src/lib}/component/transaction-margin/component/transaction-margin-block/style/_theme.scss +0 -0
  2218. /package/{lib → projects/transaction/src/lib}/component/transaction-margin/component/transaction-margin-block/style/material.scss +0 -0
  2219. /package/{lib → projects/transaction/src/lib}/component/transaction-margin/style/_layout.scss +0 -0
  2220. /package/{lib → projects/transaction/src/lib}/component/transaction-margin/style/_material-definition.scss +0 -0
  2221. /package/{lib → projects/transaction/src/lib}/component/transaction-margin/style/_theme.scss +0 -0
  2222. /package/{lib → projects/transaction/src/lib}/component/transaction-margin/style/material.scss +0 -0
  2223. /package/{lib → projects/transaction/src/lib}/component/transaction-navigation-button/style/_layout.scss +0 -0
  2224. /package/{lib/component/transaction-quick-access/transaction-quick-access-order-transport → projects/transaction/src/lib/component/transaction-navigation-button}/style/_material-definition.scss +0 -0
  2225. /package/{lib → projects/transaction/src/lib}/component/transaction-navigation-button/style/_theme.scss +0 -0
  2226. /package/{lib → projects/transaction/src/lib}/component/transaction-navigation-button/style/material.scss +0 -0
  2227. /package/{lib → projects/transaction/src/lib}/component/transaction-navigation-button-list/style/_layout.scss +0 -0
  2228. /package/{lib → projects/transaction/src/lib}/component/transaction-navigation-button-list/style/_material-definition.scss +0 -0
  2229. /package/{lib → projects/transaction/src/lib}/component/transaction-navigation-button-list/style/_theme.scss +0 -0
  2230. /package/{lib → projects/transaction/src/lib}/component/transaction-navigation-button-list/style/material.scss +0 -0
  2231. /package/{lib → projects/transaction/src/lib}/component/transaction-number-label/style/_layout.scss +0 -0
  2232. /package/{lib → projects/transaction/src/lib}/component/transaction-number-label/style/_material-definition.scss +0 -0
  2233. /package/{lib → projects/transaction/src/lib}/component/transaction-number-label/style/_theme.scss +0 -0
  2234. /package/{lib → projects/transaction/src/lib}/component/transaction-number-label/style/material.scss +0 -0
  2235. /package/{lib → projects/transaction/src/lib}/component/transaction-picking-history/style/_layout.scss +0 -0
  2236. /package/{lib/component/transaction-quick-access/transaction-quick-access-received-goods → projects/transaction/src/lib/component/transaction-picking-history}/style/_material-definition.scss +0 -0
  2237. /package/{lib → projects/transaction/src/lib}/component/transaction-picking-history/style/_theme.scss +0 -0
  2238. /package/{lib → projects/transaction/src/lib}/component/transaction-picking-history/style/material.scss +0 -0
  2239. /package/{lib → projects/transaction/src/lib}/component/transaction-print-package-sticker/style/_layout.scss +0 -0
  2240. /package/{lib/component/transaction-quick-access/transaction-quick-access-reserve → projects/transaction/src/lib/component/transaction-print-package-sticker}/style/_material-definition.scss +0 -0
  2241. /package/{lib → projects/transaction/src/lib}/component/transaction-print-package-sticker/style/_theme.scss +0 -0
  2242. /package/{lib → projects/transaction/src/lib}/component/transaction-print-package-sticker/style/material.scss +0 -0
  2243. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access/style/_layout.scss +0 -0
  2244. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access/style/_material-definition.scss +0 -0
  2245. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access/style/_theme.scss +0 -0
  2246. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access/style/material.scss +0 -0
  2247. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-goods-allocation/style/_layout.scss +0 -0
  2248. /package/{lib/component/transaction-quick-access/transaction-quick-access-sales-quotation → projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-goods-allocation}/style/_material-definition.scss +0 -0
  2249. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-goods-allocation/style/_theme.scss +0 -0
  2250. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-goods-allocation/style/material.scss +0 -0
  2251. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_layout.scss +0 -0
  2252. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_material-definition.scss +0 -0
  2253. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_theme.scss +0 -0
  2254. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/material.scss +0 -0
  2255. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_layout.scss +0 -0
  2256. /package/{lib/component/transaction-quick-access/transaction-quick-access-to-be-picked → projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods}/style/_material-definition.scss +0 -0
  2257. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_theme.scss +0 -0
  2258. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/material.scss +0 -0
  2259. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-invoice/style/_layout.scss +0 -0
  2260. /package/{lib/component/transaction-reservation/transaction-sales-reservation-popup → projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-invoice}/style/_material-definition.scss +0 -0
  2261. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-invoice/style/_theme.scss +0 -0
  2262. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-invoice/style/material.scss +0 -0
  2263. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-activities/style/_layout.scss +0 -0
  2264. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-activities/style/_material-definition.scss +0 -0
  2265. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-activities/style/_theme.scss +0 -0
  2266. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-activities/style/material.scss +0 -0
  2267. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/_layout.scss +0 -0
  2268. /package/{lib/component/transaction-search/transaction-filter-categories → projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation}/style/_material-definition.scss +0 -0
  2269. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/_theme.scss +0 -0
  2270. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/material.scss +0 -0
  2271. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-delivery/style/_layout.scss +0 -0
  2272. /package/{lib/component/transaction-search/transaction-filter-content/cash-desk-filter-content/transaction-cash-desk-filter-content-logistics → projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-delivery}/style/_material-definition.scss +0 -0
  2273. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-delivery/style/_theme.scss +0 -0
  2274. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-delivery/style/material.scss +0 -0
  2275. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-purchase/style/_layout.scss +0 -0
  2276. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-purchase/style/_material-definition.scss +0 -0
  2277. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-purchase/style/_theme.scss +0 -0
  2278. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-purchase/style/material.scss +0 -0
  2279. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-sticker/style/_layout.scss +0 -0
  2280. /package/{lib/component/transaction-search/transaction-filter-content/inter-branch-order-filter-content/transaction-inter-branch-order-filter-content-logistics → projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-sticker}/style/_material-definition.scss +0 -0
  2281. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-sticker/style/_theme.scss +0 -0
  2282. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-sticker/style/material.scss +0 -0
  2283. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-transport/style/_layout.scss +0 -0
  2284. /package/{lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics → projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-transport}/style/_material-definition.scss +0 -0
  2285. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-transport/style/_theme.scss +0 -0
  2286. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-order-transport/style/material.scss +0 -0
  2287. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-overview/style/_layout.scss +0 -0
  2288. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-overview/style/_material-definition.scss +0 -0
  2289. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-overview/style/_theme.scss +0 -0
  2290. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-overview/style/material.scss +0 -0
  2291. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-picked/style/_layout.component.ts.child.3.scss +0 -0
  2292. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-picked/style/_material-definition.component.ts.child.0.scss +0 -0
  2293. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-picked/style/_theme.component.ts.child.2.scss +0 -0
  2294. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-picked/style/material.component.ts.child.1.scss +0 -0
  2295. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-planning/component/transaction-quick-access-planning-popup/style/_layout.scss +0 -0
  2296. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-planning/component/transaction-quick-access-planning-popup/style/_material-definition.scss +0 -0
  2297. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-planning/component/transaction-quick-access-planning-popup/style/_theme.scss +0 -0
  2298. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-planning/component/transaction-quick-access-planning-popup/style/material.scss +0 -0
  2299. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-planning/style/_layout.scss +0 -0
  2300. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-planning/style/_material-definition.scss +0 -0
  2301. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-planning/style/_theme.scss +0 -0
  2302. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-planning/style/material.scss +0 -0
  2303. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/style/_layout.scss +0 -0
  2304. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/style/_material-definition.scss +0 -0
  2305. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/style/_theme.scss +0 -0
  2306. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/style/material.scss +0 -0
  2307. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-received-goods/style/_layout.scss +0 -0
  2308. /package/{lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics → projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-received-goods}/style/_material-definition.scss +0 -0
  2309. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-received-goods/style/_theme.scss +0 -0
  2310. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-received-goods/style/material.scss +0 -0
  2311. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-reserve/style/_layout.scss +0 -0
  2312. /package/{lib/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-article → projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-reserve}/style/_material-definition.scss +0 -0
  2313. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-reserve/style/_theme.scss +0 -0
  2314. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-reserve/style/material.scss +0 -0
  2315. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-sales-quotation/style/_layout.scss +0 -0
  2316. /package/{lib/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-logistics → projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-sales-quotation}/style/_material-definition.scss +0 -0
  2317. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-sales-quotation/style/_theme.scss +0 -0
  2318. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-sales-quotation/style/material.scss +0 -0
  2319. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-service-order/style/_layout.scss +0 -0
  2320. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-service-order/style/_material-definition.scss +0 -0
  2321. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-service-order/style/_theme.scss +0 -0
  2322. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-service-order/style/material.scss +0 -0
  2323. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-to-be-picked/style/_layout.scss +0 -0
  2324. /package/{lib/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-order → projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-to-be-picked}/style/_material-definition.scss +0 -0
  2325. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-to-be-picked/style/_theme.scss +0 -0
  2326. /package/{lib → projects/transaction/src/lib}/component/transaction-quick-access/transaction-quick-access-to-be-picked/style/material.scss +0 -0
  2327. /package/{lib → projects/transaction/src/lib}/component/transaction-receiving-goods-history/style/_layout.scss +0 -0
  2328. /package/{lib → projects/transaction/src/lib}/component/transaction-receiving-goods-history/style/_material-definition.scss +0 -0
  2329. /package/{lib → projects/transaction/src/lib}/component/transaction-receiving-goods-history/style/_theme.scss +0 -0
  2330. /package/{lib → projects/transaction/src/lib}/component/transaction-receiving-goods-history/style/material.scss +0 -0
  2331. /package/{lib → projects/transaction/src/lib}/component/transaction-reservation/transaction-sales-reservation-popup/style/_layout.scss +0 -0
  2332. /package/{lib/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-logistics → projects/transaction/src/lib/component/transaction-reservation/transaction-sales-reservation-popup}/style/_material-definition.scss +0 -0
  2333. /package/{lib → projects/transaction/src/lib}/component/transaction-reservation/transaction-sales-reservation-popup/style/_theme.scss +0 -0
  2334. /package/{lib → projects/transaction/src/lib}/component/transaction-reservation/transaction-sales-reservation-popup/style/material.scss +0 -0
  2335. /package/{lib → projects/transaction/src/lib}/component/transaction-sales-person-input/style/_layout.scss +0 -0
  2336. /package/{lib → projects/transaction/src/lib}/component/transaction-sales-person-input/style/_material-definition.scss +0 -0
  2337. /package/{lib → projects/transaction/src/lib}/component/transaction-sales-person-input/style/_theme.scss +0 -0
  2338. /package/{lib → projects/transaction/src/lib}/component/transaction-sales-person-input/style/material.scss +0 -0
  2339. /package/{lib → projects/transaction/src/lib}/component/transaction-search/style/_layout.scss +0 -0
  2340. /package/{lib → projects/transaction/src/lib}/component/transaction-search/style/_material-definition.scss +0 -0
  2341. /package/{lib → projects/transaction/src/lib}/component/transaction-search/style/_theme.scss +0 -0
  2342. /package/{lib → projects/transaction/src/lib}/component/transaction-search/style/material.scss +0 -0
  2343. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-batch-process-dialog/style/_layout.scss +0 -0
  2344. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-batch-process-dialog/style/_material-definition.scss +0 -0
  2345. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-batch-process-dialog/style/_theme.scss +0 -0
  2346. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-batch-process-dialog/style/material.scss +0 -0
  2347. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-date-pick-dialog/style/_layout.scss +0 -0
  2348. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-date-pick-dialog/style/_material-definition.scss +0 -0
  2349. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-date-pick-dialog/style/_theme.scss +0 -0
  2350. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-date-pick-dialog/style/material.scss +0 -0
  2351. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-cash-desk-filter/style/_layout.scss +0 -0
  2352. /package/{lib/component/transaction-search/transaction-search-tile/transaction-search-pos-order-tile → projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-cash-desk-filter}/style/_material-definition.scss +0 -0
  2353. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-cash-desk-filter/style/_theme.scss +0 -0
  2354. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-cash-desk-filter/style/material.scss +0 -0
  2355. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-filter/style/_layout.scss +0 -0
  2356. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-filter/style/_material-definition.scss +0 -0
  2357. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-filter/style/_theme.scss +0 -0
  2358. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-filter/style/material.scss +0 -0
  2359. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-inter-branch-order-filter/style/_layout.scss +0 -0
  2360. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-inter-branch-order-filter/style/_material-definition.scss +0 -0
  2361. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-inter-branch-order-filter/style/_theme.scss +0 -0
  2362. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-inter-branch-order-filter/style/material.scss +0 -0
  2363. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-purchase-order-filter/style/_layout.scss +0 -0
  2364. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-purchase-order-filter/style/_material-definition.scss +0 -0
  2365. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-purchase-order-filter/style/_theme.scss +0 -0
  2366. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-purchase-order-filter/style/material.scss +0 -0
  2367. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-sales-order-filter/style/_layout.scss +0 -0
  2368. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-sales-order-filter/style/_material-definition.scss +0 -0
  2369. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-sales-order-filter/style/_theme.scss +0 -0
  2370. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-sales-order-filter/style/material.scss +0 -0
  2371. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-sales-quotation-filter/style/_layout.scss +0 -0
  2372. /package/{lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile → projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-sales-quotation-filter}/style/_material-definition.scss +0 -0
  2373. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-sales-quotation-filter/style/_theme.scss +0 -0
  2374. /package/{lib/component/transaction-search/transaction-search-grid/transaction-search-grid-sales-quotation-grid/style/material.scss → projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-sales-quotation-filter/style/materialscss} +0 -0
  2375. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-service-order-filter/style/_layout.scss +0 -0
  2376. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-service-order-filter/style/_material-definition.scss +0 -0
  2377. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-service-order-filter/style/_theme.scss +0 -0
  2378. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter/transaction-service-order-filter/style/material.scss +0 -0
  2379. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-categories/style/_layout.scss +0 -0
  2380. /package/{lib/component/transaction-search/transaction-filter-content → projects/transaction/src/lib/component/transaction-search/transaction-filter-categories}/style/_material-definition.scss +0 -0
  2381. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-categories/style/_theme.scss +0 -0
  2382. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-categories/style/material.scss +0 -0
  2383. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/cash-desk-filter-content/transaction-cash-desk-filter-content-article/style/_layout.scss +0 -0
  2384. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/cash-desk-filter-content/transaction-cash-desk-filter-content-article/style/_material-definition.scss +0 -0
  2385. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/cash-desk-filter-content/transaction-cash-desk-filter-content-article/style/_theme.scss +0 -0
  2386. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/cash-desk-filter-content/transaction-cash-desk-filter-content-article/style/material.scss +0 -0
  2387. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/cash-desk-filter-content/transaction-cash-desk-filter-content-logistics/style/_layout.scss +0 -0
  2388. /package/{lib/component/transaction-search/transaction-filter-historic-state → projects/transaction/src/lib/component/transaction-search/transaction-filter-content/cash-desk-filter-content/transaction-cash-desk-filter-content-logistics}/style/_material-definition.scss +0 -0
  2389. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/cash-desk-filter-content/transaction-cash-desk-filter-content-logistics/style/_theme.scss +0 -0
  2390. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/cash-desk-filter-content/transaction-cash-desk-filter-content-logistics/style/material.scss +0 -0
  2391. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/cash-desk-filter-content/transaction-cash-desk-filter-content-order/style/_layout.scss +0 -0
  2392. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/cash-desk-filter-content/transaction-cash-desk-filter-content-order/style/_material-definition.scss +0 -0
  2393. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/cash-desk-filter-content/transaction-cash-desk-filter-content-order/style/_theme.scss +0 -0
  2394. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/cash-desk-filter-content/transaction-cash-desk-filter-content-order/style/material.scss +0 -0
  2395. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/inter-branch-order-filter-content/transaction-inter-branch-order-filter-content-article/style/_layout.scss +0 -0
  2396. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/inter-branch-order-filter-content/transaction-inter-branch-order-filter-content-article/style/_material-definition.scss +0 -0
  2397. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/inter-branch-order-filter-content/transaction-inter-branch-order-filter-content-article/style/_theme.scss +0 -0
  2398. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/inter-branch-order-filter-content/transaction-inter-branch-order-filter-content-article/style/material.scss +0 -0
  2399. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/inter-branch-order-filter-content/transaction-inter-branch-order-filter-content-logistics/style/_layout.scss +0 -0
  2400. /package/{lib/component/transaction-search/transaction-filter-item → projects/transaction/src/lib/component/transaction-search/transaction-filter-content/inter-branch-order-filter-content/transaction-inter-branch-order-filter-content-logistics}/style/_material-definition.scss +0 -0
  2401. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/inter-branch-order-filter-content/transaction-inter-branch-order-filter-content-logistics/style/_theme.scss +0 -0
  2402. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/inter-branch-order-filter-content/transaction-inter-branch-order-filter-content-logistics/style/material.scss +0 -0
  2403. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/inter-branch-order-filter-content/transaction-inter-branch-order-filter-content-order/style/_layout.scss +0 -0
  2404. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/inter-branch-order-filter-content/transaction-inter-branch-order-filter-content-order/style/_material-definition.scss +0 -0
  2405. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/inter-branch-order-filter-content/transaction-inter-branch-order-filter-content-order/style/_theme.scss +0 -0
  2406. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/inter-branch-order-filter-content/transaction-inter-branch-order-filter-content-order/style/material.scss +0 -0
  2407. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/style/_layout.scss +0 -0
  2408. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/style/_material-definition.scss +0 -0
  2409. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/style/_theme.scss +0 -0
  2410. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/style/material.scss +0 -0
  2411. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/style/_layout.scss +0 -0
  2412. /package/{lib/component/transaction-search/transaction-filter/transaction-cash-desk-filter → projects/transaction/src/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics}/style/_material-definition.scss +0 -0
  2413. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/style/_theme.scss +0 -0
  2414. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/style/material.scss +0 -0
  2415. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/style/_layout.scss +0 -0
  2416. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/style/_material-definition.scss +0 -0
  2417. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/style/_theme.scss +0 -0
  2418. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/style/material.scss +0 -0
  2419. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/style/_layout.scss +0 -0
  2420. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/style/_material-definition.scss +0 -0
  2421. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/style/_theme.scss +0 -0
  2422. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/style/material.scss +0 -0
  2423. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/style/_layout.scss +0 -0
  2424. /package/{lib/component/transaction-search/transaction-filter/transaction-sales-quotation-filter → projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics}/style/_material-definition.scss +0 -0
  2425. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/style/_theme.scss +0 -0
  2426. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/style/material.scss +0 -0
  2427. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/style/_layout.scss +0 -0
  2428. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/style/_material-definition.scss +0 -0
  2429. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/style/_theme.scss +0 -0
  2430. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/style/material.scss +0 -0
  2431. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-article/style/_layout.scss +0 -0
  2432. /package/{lib/component/transaction-search/transaction-search-grid/transaction-search-grid-sales-quotation-grid → projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-article}/style/_material-definition.scss +0 -0
  2433. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-article/style/_theme.scss +0 -0
  2434. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-article/style/material.scss +0 -0
  2435. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-logistics/style/_layout.scss +0 -0
  2436. /package/{lib/component/transaction-search/transaction-search-grid/transaction-search-grid → projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-logistics}/style/_material-definition.scss +0 -0
  2437. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-logistics/style/_theme.scss +0 -0
  2438. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-logistics/style/material.scss +0 -0
  2439. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-order/style/_layout.scss +0 -0
  2440. /package/{lib/component/transaction-search/transaction-search-grid/transaction-search-pos-grid → projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-order}/style/_material-definition.scss +0 -0
  2441. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-order/style/_theme.scss +0 -0
  2442. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-order/style/material.scss +0 -0
  2443. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-article/style/_layout.scss +0 -0
  2444. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-article/style/_material-definition.scss +0 -0
  2445. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-article/style/_theme.scss +0 -0
  2446. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-article/style/material.scss +0 -0
  2447. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-logistics/style/_layout.scss +0 -0
  2448. /package/{lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid → projects/transaction/src/lib/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-logistics}/style/_material-definition.scss +0 -0
  2449. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-logistics/style/_theme.scss +0 -0
  2450. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-logistics/style/material.scss +0 -0
  2451. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-order/style/_layout.scss +0 -0
  2452. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-order/style/_material-definition.scss +0 -0
  2453. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-order/style/_theme.scss +0 -0
  2454. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-order/style/material.scss +0 -0
  2455. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/style/_layout.scss +0 -0
  2456. /package/{lib/component/transaction-search/transaction-search-tile/transaction-invoice-check-order-tile → projects/transaction/src/lib/component/transaction-search/transaction-filter-content}/style/_material-definition.scss +0 -0
  2457. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/style/_theme.scss +0 -0
  2458. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-content/style/material.scss +0 -0
  2459. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-historic-state/style/_layout.scss +0 -0
  2460. /package/{lib/component/transaction-search/transaction-search-tile/transaction-purchase-reservation-order-tile → projects/transaction/src/lib/component/transaction-search/transaction-filter-historic-state}/style/_material-definition.scss +0 -0
  2461. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-historic-state/style/_theme.scss +0 -0
  2462. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-historic-state/style/material.scss +0 -0
  2463. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-item/style/_layout.scss +0 -0
  2464. /package/{lib/component/transaction-search/transaction-search-tile/transaction-search-inter-branch-order-tile → projects/transaction/src/lib/component/transaction-search/transaction-filter-item}/style/_material-definition.scss +0 -0
  2465. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-item/style/_theme.scss +0 -0
  2466. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-filter-item/style/material.scss +0 -0
  2467. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-grid/transaction-search-grid/style/_layout.scss +0 -0
  2468. /package/{lib/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/transaction-line-tile → projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-grid}/style/_material-definition.scss +0 -0
  2469. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-grid/transaction-search-grid/style/_theme.scss +0 -0
  2470. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-grid/transaction-search-grid/style/material.scss +0 -0
  2471. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-grid/transaction-search-grid-sales-quotation-grid/style/_layout.scss +0 -0
  2472. /package/{lib/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile → projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-grid-sales-quotation-grid}/style/_material-definition.scss +0 -0
  2473. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-grid/transaction-search-grid-sales-quotation-grid/style/_theme.scss +0 -0
  2474. /package/{lib/component/transaction-search/transaction-search-grid/transaction-search-pos-grid → projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-grid-sales-quotation-grid}/style/material.scss +0 -0
  2475. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-grid/transaction-search-pos-grid/style/_layout.scss +0 -0
  2476. /package/{lib/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/transaction-order-tile → projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-pos-grid}/style/_material-definition.scss +0 -0
  2477. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-grid/transaction-search-pos-grid/style/_theme.scss +0 -0
  2478. /package/{lib/component/transaction-search/transaction-search-tile/transaction-search-pos-order-tile → projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-pos-grid}/style/material.scss +0 -0
  2479. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/style/_layout.scss +0 -0
  2480. /package/{lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile → projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid}/style/_material-definition.scss +0 -0
  2481. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/style/_theme.scss +0 -0
  2482. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/style/material.scss +0 -0
  2483. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/style/_layout.scss +0 -0
  2484. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/style/_material-definition.scss +0 -0
  2485. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/style/_theme.scss +0 -0
  2486. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/style/material.scss +0 -0
  2487. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-result/style/_layout.scss +0 -0
  2488. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-result/style/_material-definition.scss +0 -0
  2489. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-result/style/_theme.scss +0 -0
  2490. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-result/style/material.scss +0 -0
  2491. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-invoice-check-order-tile/style/_layout.scss +0 -0
  2492. /package/{lib/component/transaction-search/transaction-search-tile/transaction-search-sales-quotation-tile → projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-invoice-check-order-tile}/style/_material-definition.scss +0 -0
  2493. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-invoice-check-order-tile/style/_theme.scss +0 -0
  2494. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-invoice-check-order-tile/style/material.scss +0 -0
  2495. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-purchase-reservation-order-tile/style/_layout.scss +0 -0
  2496. /package/{lib/component/transaction-send-documents → projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-purchase-reservation-order-tile}/style/_material-definition.scss +0 -0
  2497. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-purchase-reservation-order-tile/style/_theme.scss +0 -0
  2498. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-purchase-reservation-order-tile/style/material.scss +0 -0
  2499. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-inter-branch-order-tile/style/_layout.scss +0 -0
  2500. /package/{lib/component/transaction-tile → projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-inter-branch-order-tile}/style/_material-definition.scss +0 -0
  2501. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-inter-branch-order-tile/style/_theme.scss +0 -0
  2502. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-inter-branch-order-tile/style/material.scss +0 -0
  2503. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-pos-order-tile/style/_layout.scss +0 -0
  2504. /package/{lib/component/transaction-undo-delivery → projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-pos-order-tile}/style/_material-definition.scss +0 -0
  2505. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-pos-order-tile/style/_theme.scss +0 -0
  2506. /package/{lib/component/transaction-search/transaction-search-tile/transaction-search-sales-quotation-tile → projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-pos-order-tile}/style/material.scss +0 -0
  2507. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/style/_layout.scss +0 -0
  2508. /package/{lib/component/transaction → projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile}/style/_material-definition.scss +0 -0
  2509. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/style/_theme.scss +0 -0
  2510. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/style/material.scss +0 -0
  2511. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/style/_layout.scss +0 -0
  2512. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/style/_theme.scss +0 -0
  2513. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/style/material.scss +0 -0
  2514. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/transaction-line-tile/style/_layout.scss +0 -0
  2515. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/transaction-line-tile/style/_theme.scss +0 -0
  2516. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/transaction-line-tile/style/material.scss +0 -0
  2517. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/transaction-order-tile/style/_layout.scss +0 -0
  2518. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/transaction-order-tile/style/_theme.scss +0 -0
  2519. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/transaction-order-tile/style/material.scss +0 -0
  2520. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/style/_layout.scss +0 -0
  2521. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/style/_theme.scss +0 -0
  2522. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/style/material.scss +0 -0
  2523. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-quotation-tile/style/_layout.scss +0 -0
  2524. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-quotation-tile/style/_theme.scss +0 -0
  2525. /package/{lib/component/transaction-send-documents → projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-quotation-tile}/style/material.scss +0 -0
  2526. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-tile/style/_layout.scss +0 -0
  2527. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-tile/style/_material-definition.scss +0 -0
  2528. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-tile/style/_theme.scss +0 -0
  2529. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-search-tile/style/material.scss +0 -0
  2530. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-statusbar/style/_layout.scss +0 -0
  2531. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-statusbar/style/_material-definition.scss +0 -0
  2532. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-statusbar/style/_theme.scss +0 -0
  2533. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-search-tile/transaction-statusbar/style/material.scss +0 -0
  2534. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-shipping-method-dialog/style/_layout.scss +0 -0
  2535. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-shipping-method-dialog/style/_material-definition.scss +0 -0
  2536. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-shipping-method-dialog/style/_theme.scss +0 -0
  2537. /package/{lib → projects/transaction/src/lib}/component/transaction-search/transaction-shipping-method-dialog/style/material.scss +0 -0
  2538. /package/{lib → projects/transaction/src/lib}/component/transaction-send-documents/style/_layout.scss +0 -0
  2539. /package/{lib → projects/transaction/src/lib}/component/transaction-send-documents/style/_theme.scss +0 -0
  2540. /package/{lib/component/transaction-service-overview → projects/transaction/src/lib/component/transaction-send-documents}/style/material.scss +0 -0
  2541. /package/{lib → projects/transaction/src/lib}/component/transaction-service-overview/style/_layout.scss +0 -0
  2542. /package/{lib → projects/transaction/src/lib}/component/transaction-service-overview/style/_material-definition.scss +0 -0
  2543. /package/{lib → projects/transaction/src/lib}/component/transaction-service-overview/style/_theme.scss +0 -0
  2544. /package/{lib/component/transaction-tags → projects/transaction/src/lib/component/transaction-service-overview}/style/material.scss +0 -0
  2545. /package/{lib → projects/transaction/src/lib}/component/transaction-tags/style/_layout.scss +0 -0
  2546. /package/{lib → projects/transaction/src/lib}/component/transaction-tags/style/_material-definition.scss +0 -0
  2547. /package/{lib → projects/transaction/src/lib}/component/transaction-tags/style/_theme.scss +0 -0
  2548. /package/{lib/component/transaction-undo-delivery → projects/transaction/src/lib/component/transaction-tags}/style/material.scss +0 -0
  2549. /package/{lib → projects/transaction/src/lib}/component/transaction-tile/style/_layout.scss +0 -0
  2550. /package/{lib → projects/transaction/src/lib}/component/transaction-tile/style/_theme.scss +0 -0
  2551. /package/{lib → projects/transaction/src/lib}/component/transaction-tile/style/material.scss +0 -0
  2552. /package/{lib → projects/transaction/src/lib}/component/transaction-totals/style/_layout.scss +0 -0
  2553. /package/{lib → projects/transaction/src/lib}/component/transaction-totals/style/_material-definition.scss +0 -0
  2554. /package/{lib → projects/transaction/src/lib}/component/transaction-totals/style/_theme.scss +0 -0
  2555. /package/{lib → projects/transaction/src/lib}/component/transaction-totals/style/material.scss +0 -0
  2556. /package/{lib → projects/transaction/src/lib}/component/transaction-undo-delivery/style/_layout.scss +0 -0
  2557. /package/{lib → projects/transaction/src/lib}/component/transaction-undo-delivery/style/_theme.scss +0 -0
  2558. /package/{lib → projects/transaction/src/lib}/style/_mixin.scss +0 -0
  2559. /package/{lib → projects/transaction/src/lib}/style/_variables.scss +0 -0
  2560. /package/{lib → projects/transaction/src/lib}/style/transaction-globals.scss +0 -0
@@ -0,0 +1,3336 @@
1
+ import {Injectable} from '@angular/core';
2
+ import {DiscountType} from '@colijnit/transactionapi/build/enum/discount-type.enum';
3
+ import {SequenceName} from '@colijnit/transactionapi/build/enum/sequence-name.enum';
4
+ import {ArticleFullObject} from '@colijnit/transactionapi/build/model/article-full-object';
5
+ import {CashRegister} from '@colijnit/transactionapi/build/model/cash-register';
6
+ import {CashOnDeliveryData} from '@colijnit/transactionapi/build/model/cash-on-delivery-data';
7
+ import {ChangeHeaderCashOnDeliveryAmountRequest} from '@colijnit/transactionapi/build/model/change-header-cash-on-delivery-amount-request';
8
+ import {CodeDescription} from '@colijnit/transactionapi/build/model/code-description';
9
+ import {Country} from '@colijnit/transactionapi/build/model/country.bo';
10
+ import {CustomerGroup} from '@colijnit/transactionapi/build/model/customer-group.bo';
11
+ import {DeliveryMethod} from '@colijnit/transactionapi/build/model/delivery-method.bo';
12
+ import {DeliveryOption} from '@colijnit/transactionapi/build/model/delivery-option.bo';
13
+ import {Marketing} from '@colijnit/transactionapi/build/model/marketing.bo';
14
+ import {OnHoldCode} from '@colijnit/transactionapi/build/model/on-hold-code.bo';
15
+ import {PriceList} from '@colijnit/transactionapi/build/model/price-list';
16
+ import {TransactionArticleWarehouse} from '@colijnit/transactionapi/build/model/transaction-article-warehouse.bo';
17
+ import {TransactionInfoResponse} from '@colijnit/transactionapi/build/model/transaction-info-response.bo';
18
+ import {TransactionLineInfo} from '@colijnit/transactionapi/build/model/transaction-line-info.bo';
19
+ import {ValidationResult} from '@colijnit/ioneconnector/build/model/validation-result';
20
+ import {Vat} from '@colijnit/transactionapi/build/model/vat';
21
+ import {Warehouse} from '@colijnit/transactionapi/build/model/warehouse.bo';
22
+ import {throwError} from 'rxjs';
23
+ import {StandardText} from '../model/standard-text';
24
+ import {PendingReasonService} from './pending-reason.service';
25
+ import {ReceiveGoodsForOrderRequest} from '@colijnit/transactionapi/build/model/receive-goods-for-order-request.bo';
26
+ import {ReceiveGoodsForPurchaseOrderCorrectionRequest} from '@colijnit/transactionapi/build/model/receive-goods-for-purchase-order-correction-request.bo';
27
+ import {ArticleExtendedRequest} from '@colijnit/articleapi/build/model/article-extended-request';
28
+ import {ArticleLight} from '@colijnit/articleapi/build/model/article-light.bo';
29
+ import {TurnoverGroupImage} from '@colijnit/articleapi/build/model/turnover-group-image.bo';
30
+ import {MainArticle} from '@colijnit/articleapi/build/model/main-article.bo';
31
+ import {PurchasePortalLine} from '@colijnit/transactionapi/build/model/purchase-portal-line.bo';
32
+ import {GetPurchaseOrderConfirmation} from '@colijnit/transactionapi/build/model/get-purchase-order-confirmation';
33
+ import {Tag} from '@colijnit/mainapi/build/model/tag';
34
+ import {CoDomainValue} from '@colijnit/mainapi/build/model/co-domain-value.bo';
35
+ import {RelationPrivacySetting} from '@colijnit/relationapi/build/model/relation-privacy-setting.bo';
36
+ import {SalesPerson} from '@colijnit/relationapi/build/model/sales-person.bo';
37
+ import {AvailableStock} from '@colijnit/transactionapi/build/model/available-stock.bo';
38
+ import {AllocateGoodsForSalesOrderRequest} from '@colijnit/transactionapi/build/model/allocate-goods-for-sales-order-request';
39
+ import {AllocateGoodsForSalesOrderCorrectionRequest} from '@colijnit/transactionapi/build/model/allocate-goods-for-sales-order-correction-request';
40
+ import {ReportLayoutSelectionEmail} from '@colijnit/mainapi/build/model/report-layout-selection-email.bo';
41
+ import {ReportLayoutSelectionPrint} from '@colijnit/mainapi/build/model/report-layout-selection-print.bo';
42
+ import {CreateSalesOrderRequest} from '@colijnit/transactionapi/build/model/create-sales-order-request';
43
+ import {CreateCashRegisterOrderRequest} from '@colijnit/transactionapi/build/model/create-cash-register-order-request';
44
+ import {CreatePurchaseOrderRequest} from '@colijnit/transactionapi/build/model/create-purchase-order-request';
45
+ import {CreateServiceOrderRequest} from '@colijnit/transactionapi/build/model/create-service-order-request';
46
+ import {CreateSalesQuotationRequest} from '@colijnit/transactionapi/build/model/create-sales-quotation-request';
47
+ import {TransactionKind} from '@colijnit/transactionapi/build/enum/transaction-kind.enum';
48
+ import {CreateTransactionRequest} from '@colijnit/transactionapi/build/model/create-transaction-request';
49
+ import {RelationKind} from '@colijnit/articleapi/build/enum/relation-kind.enum';
50
+ import {PurchaseAdviceLine} from '@colijnit/transactionapi/build/model/purchase-advice-line.bo';
51
+ import {PurchaseAdviceFilters} from '@colijnit/transactionapi/build/model/purchase-advice-filters';
52
+ import {EmailDeliveryNoteRequest} from '@colijnit/transactionapi/build/model/email-delivery-note-request';
53
+ import {PdfDeliveryNoteRequest} from '@colijnit/transactionapi/build/model/pdf-delivery-note-request';
54
+ import {PrintDeliveryNoteRequest} from '@colijnit/transactionapi/build/model/print-delivery-note-request';
55
+ import {PrintDeliveryNotesRequest} from '@colijnit/transactionapi/build/model/print-delivery-notes-request';
56
+ import {TransactionTypeCategory} from '../enum/transaction-type-category.enum';
57
+ import {EmailInvoiceRequest} from '@colijnit/transactionapi/build/model/email-invoice-request';
58
+ import {PdfInvoiceRequest} from '@colijnit/transactionapi/build/model/pdf-invoice-request';
59
+ import {PrintInvoiceRequest} from '@colijnit/transactionapi/build/model/print-invoice-request';
60
+ import {DialogResponseInterface} from '../interface/dialog-response.interface';
61
+ import {AppPopupButtonType} from '../component/core/enum/app-popup-button-type.enum';
62
+ import {PurchaseOrderLineReceiptDetails} from '@colijnit/transactionapi/build/model/purchase-order-line-receipt-details.bo';
63
+ import {SalesOrderLineAllocationDetails} from '@colijnit/transactionapi/build/model/sales-order-line-allocation-details';
64
+ import {TagTreeItem} from '@colijnit/mainapi/build/model/tag-tree-item.bo';
65
+ import {GoodsReceiptHistory} from '@colijnit/transactionapi/build/model/goods-receipt-history.bo';
66
+ import {GoodsAllocationHistory} from '@colijnit/transactionapi/build/model/goods-allocation-history.bo';
67
+ import {TransactionInfoHistory} from '@colijnit/transactionapi/build/model/transaction-info-history.bo';
68
+ import {LayoutCode} from '@colijnit/transactionapi/build/enum/layout-code.enum';
69
+ import {HistoricReport} from '@colijnit/transactionapi/build/model/historic-report.bo';
70
+ import {Printer} from '@colijnit/mainapi/build/model/printer.bo';
71
+ import {Currency} from '@colijnit/mainapi/build/model/currency.bo';
72
+ import {PaymentCondition} from '@colijnit/mainapi/build/model/payment-condition.bo';
73
+ import {GoodsToBePickedForOrderRequest} from '@colijnit/transactionapi/build/model/goods-to-be-picked-for-order-request';
74
+ import {GoodsToBePickedForOrderRequestLine} from '@colijnit/transactionapi/build/model/goods-to-be-picked-for-order-request-line';
75
+ import {WarehouseStockInfo} from '@colijnit/transactionapi/build/model/warehouse-stock-info.bo';
76
+ import {GoodsToBePickedHistory} from '@colijnit/transactionapi/build/model/goods-to-be-picked-history';
77
+ import {GoodsPickedHistory} from '@colijnit/transactionapi/build/model/goods-picked-history';
78
+ import {PurchaseHistory} from '@colijnit/transactionapi/build/model/purchase-history';
79
+ import {PdfHistoricDeliveryNoteRequest} from '@colijnit/transactionapi/build/model/pdf-historic-delivery-note-request';
80
+ import {EmailHistoricDeliveryNoteRequest} from '@colijnit/transactionapi/build/model/email-historic-delivery-note-request';
81
+ import {PrintHistoricDeliveryNoteRequest} from '@colijnit/transactionapi/build/model/print-historic-delivery-note-request';
82
+ import {BatchTransactionSendingRequest} from '@colijnit/transactionapi/build/model/batch-transaction-sending-request';
83
+ import {BatchJobProgress} from '@colijnit/transactionapi/build/model/batch-job-progress.bo';
84
+ import {EmailHistoricOrderConfirmationRequest} from '@colijnit/transactionapi/build/model/email-historic-order-confirmation-request';
85
+ import {PdfHistoricInvoiceRequest} from '@colijnit/transactionapi/build/model/pdf-historic-invoice-request';
86
+ import {PrintHistoricInvoiceRequest} from '@colijnit/transactionapi/build/model/print-historic-invoice-request';
87
+ import {EmailHistoricInvoiceRequest} from '@colijnit/transactionapi/build/model/email-historic-invoice-request';
88
+ import {PrintOrderConfirmationRequest} from '@colijnit/transactionapi/build/model/print-order-confirmation-request';
89
+ import {PrintPurchaseOrderRequest} from '@colijnit/transactionapi/build/model/print-purchase-order-request';
90
+ import {PdfPurchaseOrderRequest} from '@colijnit/transactionapi/build/model/pdf-purchase-order-request';
91
+ import {PdfOrderConfirmationRequest} from '@colijnit/transactionapi/build/model/pdf-order-confirmation-request';
92
+ import {EmailOrderConfirmationRequest} from '@colijnit/transactionapi/build/model/email-order-confirmation-request';
93
+ import {EmailPurchaseOrderRequest} from '@colijnit/transactionapi/build/model/email-purchase-order-request';
94
+ import {ObjectConfiguration} from '@colijnit/ioneconnector/build/model/object-configuration';
95
+ import {CoDocument} from '@colijnit/mainapi/build/model/co-document.bo';
96
+ import {GoodsPickedRequest} from '@colijnit/transactionapi/build/model/goods-picked-request';
97
+ import {GoodsPickedRequestLine} from '@colijnit/transactionapi/build/model/goods-picked-request-line';
98
+ import {DeleteGoodsPickedForOrderRequest} from '@colijnit/transactionapi/build/model/delete-goods-picked-for-order-request';
99
+ import {DeleteGoodsToBePickedForOrderRequest} from '@colijnit/transactionapi/build/model/delete-goods-to-be-picked-for-order-request';
100
+ import {CashDrawersRequest} from '@colijnit/transactionapi/build/model/cash-drawers-request';
101
+ import {CashDrawer} from '@colijnit/transactionapi/build/model/cash-drawer.bo';
102
+ import {PrintPosReceiptRequest} from '@colijnit/transactionapi/build/model/print-pos-receipt-request';
103
+ import {PrintHistoricPosReceiptRequest} from '@colijnit/transactionapi/build/model/print-historic-pos-receipt-request';
104
+ import {EmailPosReceiptRequest} from '@colijnit/transactionapi/build/model/email-pos-receipt-request';
105
+ import {EmailHistoricPosReceiptRequest} from '@colijnit/transactionapi/build/model/email-historic-pos-receipt-request';
106
+ import {TagCategory} from '@colijnit/mainapi/build/enum/tab-category.enum';
107
+ import {EmailQuotationRequest} from '@colijnit/transactionapi/build/model/email-quotation-request';
108
+ import {EmailHistoricQuotationRequest} from '@colijnit/transactionapi/build/model/email-historic-quotation-request';
109
+ import {PdfQuotationRequest} from '@colijnit/transactionapi/build/model/pdf-quotation-request';
110
+ import {PdfHistoricQuotationRequest} from '@colijnit/transactionapi/build/model/pdf-historic-quotation-request';
111
+ import {PrintQuotationRequest} from '@colijnit/transactionapi/build/model/print-quotation-request';
112
+ import {PrintHistoricQuotationRequest} from '@colijnit/transactionapi/build/model/print-historic-quotation-request';
113
+ import {ChangeHeaderScoringChanceRequest} from '@colijnit/transactionapi/build/model/change-header-scoring-chance-request';
114
+ import {ChangeHeaderExpectedScoringDateRequest} from '@colijnit/transactionapi/build/model/change-header-expected-scoring-date-request';
115
+ import {ChangeHeaderRetailStadiumRequest} from '@colijnit/transactionapi/build/model/change-header-retail-stadium-request';
116
+ import {RetailStadium} from '@colijnit/transactionapi/build/model/retail-stadium.bo';
117
+ import {WorkFlowStatusName} from '@colijnit/transactionapi/build/model/workflow-status-name.bo';
118
+ import {ArticleFlatTreeDTO} from '@colijnit/articleapi/build/model/article-flat-tree.bo';
119
+ import {BusinessObjectFactory} from '@colijnit/ioneconnector/build/service/business-object-factory';
120
+ import {ChangeLineQuantitySelectedLineRequest} from '@colijnit/transactionapi/build/model/change-line-quantity-selected-line-request';
121
+ import {ExternalCatalogAddArticleRequest} from '@colijnit/transactionapi/build/model/external-catalog-add-article-request';
122
+ import {OrderLineSetCategory} from '@colijnit/mainapi/build/model/order-line-set-category.bo';
123
+ import {OrderLineSetDTO} from '@colijnit/transactionapi/build/model/order-line-set-dto';
124
+ import {TransactionAddOrderLineSetTextLineRequest} from '@colijnit/transactionapi/build/model/transaction-add-order-line-set-text-line-request';
125
+ import {TransactionSearchViewRequest} from '@colijnit/transactionapi/build/model/transaction-search-view-request';
126
+ import {ArticleExtended} from '@colijnit/articleapi/build/model/article-extended.bo';
127
+ import {CauseCode} from '@colijnit/transactionapi/build/model/cause-code.bo';
128
+ import {PdfPosReceiptRequest} from '@colijnit/transactionapi/build/model/pdf-pos-receipt-request';
129
+ import {OrderConfirmationTransactionLink} from '@colijnit/transactionapi/build/model/order-confirmation-transaction-link.bo';
130
+ import {PdfPosReceiptResponse} from '@colijnit/transactionapi/build/model/pdf-pos-receipt-response.bo';
131
+ import {ProjectCode} from '@colijnit/transactionapi/build/model/project-code.bo';
132
+ import {CashType} from '@colijnit/transactionapi/build/model/cash-type.bo';
133
+ import {PosGroup} from '@colijnit/transactionapi/build/model/pos-group.bo';
134
+ import {PdfTransactionSearchOverviewResponse} from '@colijnit/transactionapi/build/model/pdf-transaction-search-overview-response';
135
+ import {Activity} from '@colijnit/mainapi/build/model/activity.bo';
136
+ import {TransactionMarginInfo} from '@colijnit/transactionapi/build/model/transaction-margin-info.bo';
137
+ // import {
138
+ // TransactionLspInformationRequest
139
+ // } from "@colijnit/transactionapi/build/model/transaction-lsp-information.request";
140
+ // import {PackageLSP} from "@colijnit/transactionapi/build/model/package-lsp.bo";
141
+ import {DataServiceResponseData} from '@colijnit/ioneconnector/build/model/data-service-response-data';
142
+ import {OrderLinesPlannedRequest} from '@colijnit/transactionapi/build/model/order-lines-planned-request.bo';
143
+ import {PlanOrderLine} from '@colijnit/transactionapi/build/model/plan-order-line.bo';
144
+ import {PlanOrder} from '@colijnit/transactionapi/build/model/plan-order.bo';
145
+ import {SupplierArticleStockForecast} from '@colijnit/transactionapi/build/model/supplier-article-stock-forecast';
146
+ import {ServiceWizard} from '@colijnit/transactionapi/build/model/service-wizard';
147
+ import {ChangeServiceHeaderReportMessageRequest} from '@colijnit/transactionapi/build/model/change-service-header-report-message-request';
148
+ import {CreateServiceOrderWithSourceTransactionLineRequest} from '@colijnit/transactionapi/build/model/create-service-order-with-source-transaction-line-request';
149
+ import {ServiceType} from '@colijnit/transactionapi/build/model/service-type';
150
+ import {OrderReservationSalesOrderLinesRequest} from '@colijnit/transactionapi/build/model/order-reservation-sales-order-lines-request.bo';
151
+ import {PurchaseReservation} from '@colijnit/transactionapi/build/model/purchase-reservation.bo';
152
+ import {ProcessOrderReservationRequest} from '@colijnit/transactionapi/build/model/process-order-reservation-request.bo';
153
+ import {RelationSmallObject} from '@colijnit/mainapi/build/model/relation-small-object.bo';
154
+ import {AddHeaderImageRequest} from '@colijnit/transactionapi/build/model/add-header-image-request';
155
+ import {DeleteHeaderImageRequest} from '@colijnit/transactionapi/build/model/delete-header-image-request';
156
+ import {ChangeServiceHeaderCauseCodeRequest} from '@colijnit/transactionapi/build/model/change-service-headercause-code-request';
157
+ import {ChangeServiceHeaderPriorityRequest} from '@colijnit/transactionapi/build/model/change-service-header-priority-request';
158
+ import {ChangeServiceHeaderEntryTypeRequest} from '@colijnit/transactionapi/build/model/change-service-header-entry-type-request';
159
+ import {TransactionLineSearchIndex} from '@colijnit/transactionapi/build/model/transaction-line-search-index.bo';
160
+ import {ChangeServiceHeaderServiceTypeRequest} from '@colijnit/transactionapi/build/model/change-service-header-service-type-request';
161
+ import {ChangeServiceHeaderWizardDataRequest} from '@colijnit/transactionapi/build/model/change-service-header-wizard-data-request';
162
+ import {TransactionInfo} from '@colijnit/transactionapi/build/model/transaction-info.bo';
163
+ import {SLAProduct} from '@colijnit/transactionapi/build/model/SLA-product';
164
+ import {TransactionDeliveryCostLineInfo} from '@colijnit/transactionapi/build/model/transaction-delivery-cost-line-info.bo';
165
+ import {TransactionLineCopyRequest} from '@colijnit/transactionapi/build/model/transaction-line-copy-request.bo';
166
+ import {ReportingPdfBaseResponse} from '@colijnit/transactionapi/build/model/reporting-pdf-base-response.bo';
167
+ import {PlanTimes} from '@colijnit/transactionapi/build/model/plan-times.bo';
168
+ import {PackageLSP} from '@colijnit/transactionapi/build/model/package-lsp.bo';
169
+ import {SupplierProduct} from '@colijnit/transactionapi/build/model/supplier-product.bo';
170
+ import {GetDocsToSignForTransRequest} from '@colijnit/transactionapi/build/model/get-docs-to-sign-for-trans-request.bo';
171
+ import {ReportListObject} from '@colijnit/transactionapi/build/model/report-list-object';
172
+ import {PlannedResourceForTransactionLine} from '@colijnit/transactionapi/build/model/planned-resource-for-transaction-line.bo';
173
+ import {PrintPackageStickerRequest} from '@colijnit/transactionapi/build/model/print-package-sticker-request.bo';
174
+ import {PdfPackageStickerRequest} from '@colijnit/transactionapi/build/model/pdf-package-sticker-request.bo';
175
+ import {PurchaseInfo} from '@colijnit/transactionapi/build/model/purchase-info';
176
+ import {InternalDefault} from '@colijnit/mainapi/build/enum/internal-default.enum';
177
+ import {Voucher} from '@colijnit/transactionapi/build/model/voucher.bo';
178
+ import {UserRoleType} from '@colijnit/ioneconnector/build/enum/user-role-type.enum';
179
+ import {AddExpenseToCashRegisterOrderRequest} from '@colijnit/transactionapi/build/model/add-expense-to-cash-register-order-request';
180
+ import {AddReceiptToCashRegisterOrderRequest} from '@colijnit/transactionapi/build/model/add-receipt-to-cash-register-order-request';
181
+ import {GeneratePurchaseOrdersForDirectSellSalesOrdersRequest} from '@colijnit/transactionapi/build/model/generate-purchase-orders-for-direct-sell-sales-orders-request';
182
+ import {PrintReservationStickerRequest} from '@colijnit/transactionapi/build/model/print-reservation-sticker-request';
183
+ import {PdfReservationStickerRequest} from '@colijnit/transactionapi/build/model/pdf-reservation-sticker-request';
184
+ import {PrintOrderingStickerRequest} from '@colijnit/transactionapi/build/model/print-ordering-sticker-request';
185
+ import {PdfOrderingStickerRequest} from '@colijnit/transactionapi/build/model/pdf-ordering-sticker-request';
186
+ import {PrintServiceOrderRequest} from '@colijnit/transactionapi/build/model/print-service-order-request';
187
+ import {EmailServiceOrderRequest} from '@colijnit/transactionapi/build/model/email-service-order-request';
188
+ import {PdfServiceOrderRequest} from '@colijnit/transactionapi/build/model/pdf-service-order-request';
189
+ import {PrintHistoricServiceOrderRequest} from '@colijnit/transactionapi/build/model/print-historic-service-order-request';
190
+ import {EmailHistoricServiceOrderRequest} from '@colijnit/transactionapi/build/model/email-historic-service-order-request';
191
+ import {PdfHistoricServiceOrderRequest} from '@colijnit/transactionapi/build/model/pdf-historic-service-order-request';
192
+ import {District} from '@colijnit/transactionapi/build/model/district.bo';
193
+ import {GenerateAndSendPurchaseOrdersRequest} from '@colijnit/transactionapi/build/model/generate-and-send-purchase-orders-request';
194
+ import {ChangeHeaderRelationTransactionDateRequest} from '@colijnit/transactionapi/build/model/change-header-relation-transaction-date-request';
195
+ import {PrintPurchaseOrderForTransactionRequest} from '@colijnit/mainapi/build/model/print-purchase-order-for-transaction-request';
196
+ import {PrintLspPackageInfoRequest} from '@colijnit/transactionapi/build/model/print-lsp-package-info-request.bo';
197
+ import {DropshipmentInfo} from '@colijnit/transactionapi/build/model/dropshipment-info';
198
+ import {ChangeHeaderDropshipmentInfoRequest} from '@colijnit/transactionapi/build/model/change-header-dropshipment-info-request';
199
+ import {GetRouteDepartureRequest} from '@colijnit/transactionapi/build/model/get-route-departure-request';
200
+ import {InterBranchFilters} from '@colijnit/transactionapi/build/model/inter-branch-filters';
201
+ import {StockReplenishment} from '@colijnit/transactionapi/build/model/stock-replenishment.bo';
202
+ import {ChangeHeadersTransactionsDefinitiveRequest} from '@colijnit/transactionapi/build/model/change-headers-transactions-definitive-request';
203
+
204
+ import {TransportNotificationInfo} from '@colijnit/transactionapi/build/model/transport-notification-info';
205
+ import {TransportNotificationTotals} from '@colijnit/transactionapi/build/model/transport-notification-totals';
206
+ import {Container} from '@colijnit/mainapi/build/model/container.bo';
207
+ import {ContainerInfo} from '@colijnit/mainapi/build/model/container-info.bo';
208
+ import {ContainerType} from '@colijnit/mainapi/build/model/container-type.bo';
209
+ import {TransportNotificationLineSelectRequest} from '@colijnit/transactionapi/build/model/transport-notification-line-select-request';
210
+ import {SetTransportNotificationOnSelectedLinesRequest} from '@colijnit/transactionapi/build/model/set-transport-notification-on-selected-lines-request';
211
+ import {RenewTransportNotificationOnSelectedLinesRequest} from '@colijnit/transactionapi/build/model/renew-transport-notification-on-selected-lines-request';
212
+ import {SetTransportNotificationLineRequest} from '@colijnit/transactionapi/build/model/set-transport-notification-line-request';
213
+ import {SetTransportNotificationInContainerOnSelectedLinesRequest} from '@colijnit/transactionapi/build/model/set-transport-notification-in-container-on-selected-lines-request';
214
+ import {SetTransportNotificationLineInContainerRequest} from '@colijnit/transactionapi/build/model/set-transport-notification-line-in-container-request';
215
+ import {TableName} from '@colijnit/mainapi/build/enum/table-name.enum';
216
+ import {ContactMoment} from '@colijnit/transactionapi/build/model/contact-moment.bo';
217
+ import {MergeContactMomentsRequest} from '@colijnit/transactionapi/build/model/merge-contact-moments-request';
218
+ import {
219
+ PdfHistoricPurchaseOrderRequest
220
+ } from '@colijnit/transactionapi/build/model/pdf-historic-purchase-order-request';
221
+ import {
222
+ PrintHistoricPurchaseOrderRequest
223
+ } from '@colijnit/transactionapi/build/model/print-historic-purchase-order-request';
224
+ import {
225
+ EmailHistoricPurchaseOrderRequest
226
+ } from '@colijnit/transactionapi/build/model/email-historic-purchase-order-request';
227
+ import {PrintWorkOrderRequest} from '@colijnit/transactionapi/build/model/print-work-order-request';
228
+ import {PrintHistoricWorkOrderRequest} from '@colijnit/transactionapi/build/model/print-historic-work-order-request';
229
+ import {EmailWorkOrderRequest} from '@colijnit/transactionapi/build/model/email-work-order-request';
230
+ import {EmailHistoricWorkOrderRequest} from '@colijnit/transactionapi/build/model/email-historic-work-order-request';
231
+ import {PdfWorkOrderRequest} from '@colijnit/transactionapi/build/model/pdf-work-order-request';
232
+ import {PdfWorkOrderResponse} from '@colijnit/transactionapi/build/model/pdf-work-order-response.bo';
233
+ import {PdfHistoricWorkOrderRequest} from '@colijnit/transactionapi/build/model/pdf-historic-work-order-request';
234
+ import {PdfHistoricWorkOrderResponse} from '@colijnit/transactionapi/build/model/pdf-historic-work-order-response.bo';
235
+ import {TransactionLspInformationRequest} from '@colijnit/transactionapi/build/model/transaction-lsp-information-request';
236
+ import {LspWmsDeliveryNotePrintRequest} from '@colijnit/transactionapi/build/model/lsp-wms-delivery-note-print-request';
237
+ import {CreateSalesReturnRequest} from "@colijnit/transactionapi/build/model/create-sales-return-request";
238
+ import {AddSalesReturnLineRequest} from "@colijnit/transactionapi/build/model/add-sales-return-line-request";
239
+ import {DiscountCode} from '@colijnit/transactionapi/build/model/discount-code.bo';
240
+ import {SetTransactionDiscountsRequest} from '@colijnit/transactionapi/build/model/set-transaction-discounts-request';
241
+ import {ChangeLineDiscountRequest} from '@colijnit/transactionapi/build/model/change-line-discount-request';
242
+ import {AgendaEvent, AgendaEventPerDay} from "@colijnit/sharedcomponents";
243
+ import {PlanDaypart} from "@colijnit/transactionapi/build/model/plan-daypart.bo";
244
+ import {
245
+ DoDeliveryPlanningRequestInputParams
246
+ } from "@colijnit/transactionapi/build/model/do-delivery-planning-request-input-params.bo";
247
+ import {PdfHistoricPosReceiptRequest} from "@colijnit/transactionapi/build/model/pdf-historic-pos-receipt-request";
248
+ import {RoundUpRequest} from '@colijnit/transactionapi/build/model/round-up-request';
249
+
250
+ type CreateTransactionFn = (request: CreateTransactionRequest) => Promise<boolean>;
251
+
252
+ @Injectable({
253
+ providedIn: 'root'
254
+ })
255
+ export class TransactionService extends PendingReasonService {
256
+
257
+ public remainingAmount: number = 0;
258
+
259
+ private readonly _createTransactionMethods: Map<TransactionKind, CreateTransactionFn> = new Map<TransactionKind, CreateTransactionFn>([
260
+ [TransactionKind.SalesOrder, (request: CreateSalesOrderRequest) => this.createSalesOrder(request)],
261
+ [TransactionKind.PurchaseOrder, (request: CreatePurchaseOrderRequest) => this.createPurchaseOrder(request)],
262
+ [TransactionKind.SalesQuotation, (request: CreateSalesQuotationRequest) => this.createSalesQuotation(request)],
263
+ [TransactionKind.ServiceOrder, (request: CreateSalesQuotationRequest) => this.createServiceOrder(request)]
264
+ ]);
265
+
266
+ private readonly _relationKindFromTransactionKind: Map<TransactionKind, RelationKind> = new Map<TransactionKind, RelationKind>([
267
+ [TransactionKind.SalesOrder, RelationKind.Customer],
268
+ [TransactionKind.PurchaseOrder, RelationKind.Supplier],
269
+ [TransactionKind.SalesQuotation, RelationKind.Customer],
270
+ [TransactionKind.CashDesk, RelationKind.Customer],
271
+ [TransactionKind.ServiceOrder, RelationKind.Customer],
272
+ [TransactionKind.InternalDelivery, RelationKind.Branch]
273
+ ]);
274
+
275
+ private readonly _focusStatusIndex: Map<TransactionTypeCategory, number> = new Map<TransactionTypeCategory, number>([
276
+ [TransactionTypeCategory.SalesOrderPurchase, 0],
277
+ [TransactionTypeCategory.SalesOrderAllocation, 1],
278
+ [TransactionTypeCategory.SalesOrderDeliveryNote, 7],
279
+ [TransactionTypeCategory.SalesOrderInvoice, 8],
280
+ [TransactionTypeCategory.PurchaseOrderOrderConfirmation, 1],
281
+ [TransactionTypeCategory.PurchaseOrderReceivedGoods, 3]
282
+ ]);
283
+
284
+ private _restrictedUserRoles: UserRoleType[] = [UserRoleType.Customer, UserRoleType.SupplierContract, UserRoleType.SupplierContract, UserRoleType.DepartmentManager,
285
+ UserRoleType.CustomerContact, UserRoleType.CustomerAdminUser, UserRoleType.AbsenceSupservisor];
286
+
287
+ public set transForServiceFromSalesTransactionLine(value: TransactionInfoResponse) {
288
+ this._transForServiceFromSalesTransactionLine = value;
289
+ }
290
+
291
+ public get transForServiceFromSalesTransactionLine(): TransactionInfoResponse {
292
+ return this._transForServiceFromSalesTransactionLine;
293
+ }
294
+
295
+ public set loggedInUser(value: RelationSmallObject) {
296
+ this._loggedInUser = value;
297
+ }
298
+
299
+ public get loggedInUser(): RelationSmallObject {
300
+ return this._loggedInUser;
301
+ }
302
+
303
+ public set loggedInUserRole(value: UserRoleType) {
304
+ this._loggedInUserRole = value;
305
+ }
306
+
307
+ public get loggedInUserRole(): UserRoleType {
308
+ return this._loggedInUserRole;
309
+ }
310
+
311
+ public set lineNrForServiceFromSalesTransactionLine(value: number) {
312
+ this._lineNrForServiceFromSalesTransactionLine = value;
313
+ }
314
+
315
+ public get lineNrForServiceFromSalesTransactionLine(): number {
316
+ return this._lineNrForServiceFromSalesTransactionLine;
317
+ }
318
+
319
+ private _boFactory: BusinessObjectFactory = new BusinessObjectFactory();
320
+ private _transForServiceFromSalesTransactionLine: TransactionInfoResponse;
321
+ private _lineNrForServiceFromSalesTransactionLine: number;
322
+ private _loggedInUser: RelationSmallObject;
323
+ private _loggedInUserRole: UserRoleType;
324
+
325
+ public async logOut(): Promise<void> {
326
+ await this.connector.logOut();
327
+ this.resetCurrentTransaction();
328
+ this.logout.next();
329
+ }
330
+
331
+ public getFocusStatusIndex(category: TransactionTypeCategory): number {
332
+ return this._focusStatusIndex.get(category);
333
+ }
334
+
335
+ public getRelationKindFromTransactionKind(): RelationKind {
336
+ if (this._relationKindFromTransactionKind.has(this.transactionKind)) {
337
+ return this._relationKindFromTransactionKind.get(this.transactionKind);
338
+ } else {
339
+ return RelationKind.Customer;
340
+ }
341
+ }
342
+
343
+ public async showWarehouseLocationPopup(): Promise<string> {
344
+ if (this.currentTransaction.transactionLines) {
345
+ const linesThatShouldHaveLocation: TransactionLineInfo[] =
346
+ this.currentTransaction.transactionLines.filter(l => l.isLocationRequired && l.articleLineStatus.quantityToReceive > 0);
347
+ if (linesThatShouldHaveLocation.length > 0) {
348
+ const response: DialogResponseInterface = await this.dialogService.showWarehouseLocation(0, false, false, true);
349
+ if (response.button === AppPopupButtonType.Ok) {
350
+ linesThatShouldHaveLocation.forEach(l => {
351
+ l.locationNr = response.output;
352
+ this.transactionEventService.transactionLineChanged.next(l);
353
+ });
354
+ return response.output;
355
+ }
356
+ }
357
+ }
358
+ }
359
+
360
+ public async getCashOnDeliveryData(uuid: string): Promise<CashOnDeliveryData> {
361
+ return await this.connector.getCashOnDeliveryData(uuid);
362
+ }
363
+
364
+ public async changeHeaderCashOnDeliveryAmount(request: ChangeHeaderCashOnDeliveryAmountRequest): Promise<void> {
365
+ return await this.connector.changeHeaderCashOnDeliveryAmount(request);
366
+ }
367
+
368
+ public async deleteTransaction(): Promise<void> {
369
+ if (this.currentTransaction && this.currentTransaction.transactionInfo && this.currentTransaction.transactionInfo.id) {
370
+ const lockSuccess: boolean = await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
371
+ if (lockSuccess) {
372
+ const response: DialogResponseInterface = await this.dialogService.showYesNo('DELETE', 'DELETE_TRANSACTION_QUESTION');
373
+ const shouldDelete: boolean = response.button === AppPopupButtonType.Yes;
374
+ if (shouldDelete) {
375
+ const response: TransactionInfoResponse = await this.connector.deleteTransactionByUuId(this.currentTransaction.transactionInfo.uuid);
376
+ let success: boolean = true;
377
+ if (!response.isSuccess) {
378
+ success = await this.handleHeaderOperationStatuses(response, false, false, false);
379
+ }
380
+ if (success) {
381
+ success = await this.commit();
382
+ if (success) {
383
+ this.resetCurrentTransaction();
384
+ this.transactionEventService.transactionDeleted.next();
385
+ }
386
+ }
387
+ }
388
+ }
389
+ }
390
+ }
391
+
392
+ public async cancelCashRegisterOrder(): Promise<void> {
393
+ if (this.currentTransaction) {
394
+ const response: DialogResponseInterface = await this.dialogService.showYesNo('CANCEL', 'CANCEL_TRANSACTION_QUESTION');
395
+ const shouldDelete: boolean = response.button === AppPopupButtonType.Yes;
396
+ if (shouldDelete) {
397
+ const lockSuccess: boolean = await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
398
+ if (lockSuccess) {
399
+ const response: TransactionInfoResponse = await this.connector.cancelTransactionByUuId(this.currentTransaction.transactionInfo.uuid);
400
+ let success: boolean = await this.handleHeaderOperationStatuses(response, false);
401
+ if (success) {
402
+ success = await this.commit();
403
+ if (success) {
404
+ this.transactionEventService.transactionDeleted.next();
405
+ this.currentTransaction = undefined;
406
+ }
407
+ }
408
+ }
409
+ }
410
+ }
411
+ }
412
+
413
+ public async updateHeaderTransactionDefinitive(uuid: string, definitive: boolean, saveTransaction: boolean): Promise<boolean> {
414
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionDefinitive(uuid, definitive);
415
+ if (response) {
416
+ this.transactionDirty = true;
417
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
418
+ }
419
+ return false;
420
+ }
421
+
422
+ public async updateHeaderDiscountOnOrderLine(uuid: string, discount: boolean, saveTransaction: boolean): Promise<boolean> {
423
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderDiscountOnOrderLine(uuid, discount);
424
+ if (response) {
425
+ this.transactionDirty = true;
426
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
427
+ }
428
+ return false;
429
+ }
430
+
431
+ public async updateHeaderDeliveryAddress(uuid: string, newNawNr: number, saveTransaction: boolean = true): Promise<boolean> {
432
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderDeliveryAddress(uuid, newNawNr);
433
+ if (response) {
434
+ this.transactionDirty = true;
435
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
436
+ }
437
+ return false;
438
+ }
439
+
440
+ public async updateHeaderInvoiceAddress(uuid: string, newNawNr: number, saveTransaction: boolean = true): Promise<boolean> {
441
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderInvoiceAddress(uuid, newNawNr);
442
+ if (response) {
443
+ this.transactionDirty = true;
444
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
445
+ }
446
+ return false;
447
+ }
448
+
449
+ public async updateHeaderTransactionDeliveryDate(uuid: string, date: Date, saveTransaction: boolean): Promise<boolean> {
450
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionDeliveryDate(uuid, date);
451
+ if (response) {
452
+ this.transactionDirty = true;
453
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
454
+ }
455
+ return false;
456
+ }
457
+
458
+ public async updateHeaderTransactionDeliveryDateDefinitive(uuid: string, definitive: boolean, saveTransaction: boolean): Promise<boolean> {
459
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionDeliveryDateDefinitive(uuid, definitive);
460
+ if (response) {
461
+ this.transactionDirty = true;
462
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
463
+ }
464
+ return false;
465
+ }
466
+
467
+ public async updateHeaderTransactionRemark(uuid: string, remark: string, saveTransaction: boolean): Promise<boolean> {
468
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionRemark(uuid, remark);
469
+ if (response) {
470
+ this.transactionDirty = true;
471
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
472
+ }
473
+ return false;
474
+ }
475
+
476
+ public async updateHeaderTransactionReference(uuid: string, reference: string, saveTransaction: boolean): Promise<boolean> {
477
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionReference(uuid, reference);
478
+ if (response) {
479
+ this.transactionDirty = true;
480
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
481
+ }
482
+ return false;
483
+ }
484
+
485
+ public async updateHeaderTransactionRelationReference(uuid: string, reference: string, saveTransaction: boolean): Promise<boolean> {
486
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionRelationReference(uuid, reference);
487
+ if (response) {
488
+ this.transactionDirty = true;
489
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
490
+ }
491
+ return false;
492
+ }
493
+
494
+ public async updateHeaderTransactionDepositAmount(uuid: string, amount: number, saveTransaction: boolean): Promise<boolean> {
495
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderDepositAmount(uuid, amount);
496
+ if (response) {
497
+ this.transactionDirty = true;
498
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
499
+ }
500
+ return false;
501
+ }
502
+
503
+ public async updateHeaderTransactionDepositPercentage(uuid: string, amount: number, saveTransaction: boolean): Promise<boolean> {
504
+ const response: TransactionInfoResponse = await this.connector.changeHeaderDepositPercentage(uuid, amount);
505
+ if (response) {
506
+ this.transactionDirty = true;
507
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
508
+ } else {
509
+ return false;
510
+ }
511
+ }
512
+
513
+ public async updateHeaderTransactionPreferredDeliveryDate(uuid: string, date: Date, saveTransaction: boolean, option: string): Promise<boolean> {
514
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionPreferredDeliveryDate(uuid, date, option);
515
+ if (response) {
516
+ this.transactionDirty = true;
517
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
518
+ }
519
+ return false;
520
+ }
521
+
522
+ public async updateHeaderTransactionAssemblyDate(uuid: string, date: Date, saveTransaction: boolean, option: string): Promise<boolean> {
523
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderAssemblyDate(uuid, date, option);
524
+ if (response) {
525
+ this.transactionDirty = true;
526
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
527
+ }
528
+ return false;
529
+ }
530
+
531
+ public async updateHeaderTransactionDeliveryTime(uuid: string, time: Date, saveTransaction: boolean): Promise<boolean> {
532
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionDeliveryTime(uuid, time);
533
+ if (response) {
534
+ this.transactionDirty = true;
535
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
536
+ }
537
+ return false;
538
+ }
539
+
540
+ public async updateHeaderTransactionDeliveryMethod(uuid: string, method: string, saveTransaction: boolean): Promise<boolean> {
541
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionDeliveryMethod(uuid, method);
542
+ if (response) {
543
+ this.transactionDirty = true;
544
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
545
+ }
546
+ return false;
547
+ }
548
+
549
+ public async updateHeaderTransactionDeliveryOptions(uuid: string, options: string[], saveTransaction: boolean): Promise<boolean> {
550
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionDeliveryOptions(uuid, options);
551
+ if (response) {
552
+ this.transactionDirty = true;
553
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
554
+ }
555
+ return false;
556
+ }
557
+
558
+ public async updateHeaderTransactionPartialDelivery(uuid: string, allowPartial: boolean, saveTransaction: boolean): Promise<boolean> {
559
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionPartialDelivery(uuid, allowPartial);
560
+ if (response) {
561
+ this.transactionDirty = true;
562
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
563
+ }
564
+ return false;
565
+ }
566
+
567
+ public async updateHeaderTransactionBranch(uuid: string, branch: number, saveTransaction: boolean): Promise<boolean> {
568
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionBranch(uuid, branch);
569
+ if (response) {
570
+ this.transactionDirty = true;
571
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
572
+ }
573
+ return false;
574
+ }
575
+
576
+ public async updateHeaderTransactionOnHoldCodes(uuid: string, codes: string[], saveTransaction: boolean): Promise<boolean> {
577
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionOnHoldCodes(uuid, codes);
578
+ if (response) {
579
+ this.transactionDirty = true;
580
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
581
+ }
582
+ return false;
583
+ }
584
+
585
+ public async updateHeaderTransactionDivideEvenly(uuid: string, divideEvenly: boolean, saveTransaction: boolean): Promise<boolean> {
586
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionDivideEvenly(uuid, divideEvenly);
587
+ if (response) {
588
+ this.transactionDirty = true;
589
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
590
+ }
591
+ return false;
592
+ }
593
+
594
+ public async updateHeaderTransactionAutoRecalculateDeposit(uuid: string, autoRecalculateDeposit: boolean, saveTransaction: boolean): Promise<boolean> {
595
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderAutoRecalculateDeposit(uuid, autoRecalculateDeposit);
596
+ if (response) {
597
+ this.transactionDirty = true;
598
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
599
+ }
600
+ return false;
601
+ }
602
+
603
+ public async updateHeaderTransactionUseDepositRule(uuid: string, useDepositRule: boolean, saveTransaction: boolean): Promise<boolean> {
604
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderUseDepositRule(uuid, useDepositRule);
605
+ if (response) {
606
+ this.transactionDirty = true;
607
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
608
+ }
609
+ return false;
610
+ }
611
+
612
+ public async updateHeaderContactPerson(uuid: string, relationId: number, saveTransaction: boolean): Promise<boolean> {
613
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderContactPerson(uuid, relationId);
614
+ if (response) {
615
+ this.transactionDirty = true;
616
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
617
+ }
618
+ return false;
619
+ }
620
+
621
+ public async updateHeaderTransactionAmountToSettle(uuid: string, amountToSettle: number, saveTransaction: boolean): Promise<boolean> {
622
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionAmountToSettle(uuid, amountToSettle);
623
+ if (response) {
624
+ this.transactionDirty = true;
625
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
626
+ }
627
+ return false;
628
+ }
629
+
630
+ public async updateHeaderTransactionPriceKind(uuid: string, priceKind: string, saveTransaction: boolean): Promise<boolean> {
631
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionPriceKind(uuid, priceKind);
632
+ if (response) {
633
+ this.transactionDirty = true;
634
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
635
+ }
636
+ return false;
637
+ }
638
+
639
+ public async updateHeaderTransactionPriceList(uuid: string, PriceList: string, saveTransaction: boolean): Promise<boolean> {
640
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionPriceList(uuid, PriceList);
641
+ if (response) {
642
+ this.transactionDirty = true;
643
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
644
+ }
645
+ return false;
646
+ }
647
+
648
+ public async updateHeaderTransactionAdmCoordinator(uuid: string, relation: number, saveTransaction: boolean): Promise<boolean> {
649
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionAdmCoordinator(uuid, relation);
650
+ if (response) {
651
+ this.transactionDirty = true;
652
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
653
+ }
654
+ return false;
655
+ }
656
+
657
+ public async updateHeaderTransactionSalesPerson(uuid: string, relation: number, saveTransaction: boolean): Promise<boolean> {
658
+ // not in middletier yet
659
+ // const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionSalesOrder(uuid, relation);
660
+ // if (response) {
661
+ // return this.handleHeaderOperationStatuses(response);
662
+ // }
663
+ return true;
664
+ }
665
+
666
+ public async updateHeaderTransactionCurrency(uuid: string, currencyCode: string, saveTransaction: boolean): Promise<boolean> {
667
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionCurrency(uuid, currencyCode);
668
+ if (response) {
669
+ this.transactionDirty = true;
670
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
671
+ }
672
+ return true;
673
+ }
674
+
675
+ public async changeHeaderTransactionType(uuid: string, transactionType: string, saveTransaction: boolean): Promise<boolean> {
676
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionType(uuid, transactionType);
677
+ if (response) {
678
+ this.transactionDirty = true;
679
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
680
+ }
681
+ return true;
682
+ }
683
+
684
+ public async updateHeaderTransactionProjectCode(uuid: string, projectCode: number, saveTransaction: boolean): Promise<boolean> {
685
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionProjectCode(uuid, projectCode);
686
+ if (response) {
687
+ this.transactionDirty = true;
688
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
689
+ }
690
+ return true;
691
+ }
692
+
693
+ public async updateHeaderTransactionPaymentCondition(uuid: string, condition: string, saveTransaction: boolean): Promise<boolean> {
694
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionPaymentCondition(uuid, condition);
695
+ if (response) {
696
+ this.transactionDirty = true;
697
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
698
+ }
699
+ return true;
700
+ }
701
+
702
+ public async updateHeaderTransactionHanldedBy(uuid: string, handledBy: number, saveTransaction: boolean, lock?: boolean): Promise<boolean> {
703
+ if (lock) {
704
+ const locked = await this.tryToLockTransaction(
705
+ this.currentTransaction.transactionInfo.id,
706
+ this.currentTransaction.transactionInfo.version
707
+ );
708
+ if (!locked) {
709
+ return true;
710
+ }
711
+ }
712
+ const response = await this.connector.changeHeaderTransactionHandledBy(uuid, handledBy);
713
+ if (response) {
714
+ this.transactionDirty = true;
715
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
716
+ }
717
+ return true;
718
+ }
719
+
720
+ public async updateHeaderTransactionMarketing(uuid: string, code: string, saveTransaction: boolean): Promise<boolean> {
721
+ const response: TransactionInfoResponse | boolean = await this.connector.changeHeaderTransactionMarketing(uuid, code);
722
+ if (response) {
723
+ this.transactionDirty = true;
724
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
725
+ }
726
+ return false;
727
+ }
728
+
729
+ public async updateHeaderTransactionDiscount(uuid: string, type: DiscountType, amount: number, saveTransaction: boolean, reason: string = '', code: string = ''): Promise<boolean> {
730
+ const lockSuccess: boolean =
731
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
732
+ if (lockSuccess) {
733
+ const response: TransactionInfoResponse = await this.connector.changeHeaderTransactionDiscount(uuid, type, amount, reason, code);
734
+ this.transactionDirty = true;
735
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
736
+ } else {
737
+ return false;
738
+ }
739
+ }
740
+
741
+ public async updateHeaderTransactionScoringChance(request: ChangeHeaderScoringChanceRequest, saveTransaction: boolean): Promise<boolean> {
742
+ const lockSuccess: boolean =
743
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
744
+ if (lockSuccess) {
745
+ const response: TransactionInfoResponse = await this.connector.changeHeaderScoringChance(request);
746
+ this.transactionDirty = true;
747
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
748
+ } else {
749
+ return false;
750
+ }
751
+ }
752
+
753
+ public async updateHeaderTransactionExpectedScoringDate(request: ChangeHeaderExpectedScoringDateRequest, saveTransaction: boolean): Promise<boolean> {
754
+ const lockSuccess: boolean =
755
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
756
+ if (lockSuccess) {
757
+ const response: TransactionInfoResponse = await this.connector.changeHeaderExpectedScoringDate(request);
758
+ this.transactionDirty = true;
759
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
760
+ } else {
761
+ return false;
762
+ }
763
+ }
764
+
765
+ public async updateHeaderTransactionRetailStadium(request: ChangeHeaderRetailStadiumRequest, saveTransaction: boolean): Promise<boolean> {
766
+ const lockSuccess: boolean =
767
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
768
+ if (lockSuccess) {
769
+ const response: TransactionInfoResponse = await this.connector.changeHeaderRetailStadium(request);
770
+ this.transactionDirty = true;
771
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
772
+ } else {
773
+ return false;
774
+ }
775
+ }
776
+
777
+ public async updateHeaderRelationTransactionDate(request: ChangeHeaderRelationTransactionDateRequest, saveTransaction: boolean): Promise<boolean> {
778
+ const lockSuccess: boolean =
779
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
780
+ if (lockSuccess) {
781
+ const response: TransactionInfoResponse = await this.connector.changeHeaderRelationTransactionDate(request);
782
+ this.transactionDirty = true;
783
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
784
+ } else {
785
+ return false;
786
+ }
787
+ }
788
+
789
+ public async updateServiceHeaderReportMessage(message: string, saveTransaction: boolean): Promise<boolean> {
790
+ const lockSuccess: boolean =
791
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
792
+ if (lockSuccess) {
793
+ let request: ChangeServiceHeaderReportMessageRequest = new ChangeServiceHeaderReportMessageRequest();
794
+ request.transactionUuid = this.currentTransaction.transactionInfo.uuid;
795
+ request.newReportMessage = message;
796
+ const response: TransactionInfoResponse = await this.connector.changeServiceHeaderReportMessage(request);
797
+ this.transactionDirty = true;
798
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
799
+ } else {
800
+ return false;
801
+ }
802
+ }
803
+
804
+ public async updateServiceHeaderCauseCode(code: string, saveTransaction: boolean): Promise<boolean> {
805
+ const lockSuccess: boolean =
806
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
807
+ if (lockSuccess) {
808
+ let request: ChangeServiceHeaderCauseCodeRequest = new ChangeServiceHeaderCauseCodeRequest();
809
+ request.transactionUuid = this.currentTransaction.transactionInfo.uuid;
810
+ request.newCauseCode = code;
811
+ const response: TransactionInfoResponse = await this.connector.changeServiceHeaderCauseCode(request);
812
+ this.transactionDirty = true;
813
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
814
+ } else {
815
+ return false;
816
+ }
817
+ }
818
+
819
+ public async updateServiceHeaderServiceType(type: string, saveTransaction: boolean): Promise<boolean> {
820
+ const lockSuccess: boolean =
821
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
822
+ if (lockSuccess) {
823
+ let request: ChangeServiceHeaderServiceTypeRequest = new ChangeServiceHeaderServiceTypeRequest();
824
+ request.transactionUuid = this.currentTransaction.transactionInfo.uuid;
825
+ request.newServiceType = type;
826
+ const response: TransactionInfoResponse = await this.connector.changeServiceHeaderServiceType(request);
827
+ this.transactionDirty = true;
828
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
829
+ } else {
830
+ return false;
831
+ }
832
+ }
833
+
834
+ public async updateServiceHeaderWizardData(code: string, type: string, qa: string, saveTransaction: boolean): Promise<boolean> {
835
+ const lockSuccess: boolean =
836
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
837
+ if (lockSuccess) {
838
+ let request: ChangeServiceHeaderWizardDataRequest = new ChangeServiceHeaderWizardDataRequest();
839
+ request.transactionUuid = this.currentTransaction.transactionInfo.uuid;
840
+ request.newCauseCode = code;
841
+ request.newServiceType = type;
842
+ request.newWizardQuestionsAndAnswers = qa;
843
+ const response: TransactionInfoResponse = await this.connector.changeServiceHeaderWizardData(request);
844
+ this.transactionDirty = true;
845
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
846
+ } else {
847
+ return false;
848
+ }
849
+ }
850
+
851
+ public async updateServiceHeaderPriority(priority: number, saveTransaction: boolean): Promise<boolean> {
852
+ const lockSuccess: boolean =
853
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
854
+ if (lockSuccess) {
855
+ let request: ChangeServiceHeaderPriorityRequest = new ChangeServiceHeaderPriorityRequest();
856
+ request.transactionUuid = this.currentTransaction.transactionInfo.uuid;
857
+ request.newPriority = priority;
858
+ const response: TransactionInfoResponse = await this.connector.changeServiceHeaderPriority(request);
859
+ this.transactionDirty = true;
860
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
861
+ } else {
862
+ return false;
863
+ }
864
+ }
865
+
866
+ public async updateServiceHeaderEntryType(entryType: string, saveTransaction: boolean): Promise<boolean> {
867
+ const lockSuccess: boolean =
868
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
869
+ if (lockSuccess) {
870
+ let request: ChangeServiceHeaderEntryTypeRequest = new ChangeServiceHeaderEntryTypeRequest();
871
+ request.transactionUuid = this.currentTransaction.transactionInfo.uuid;
872
+ request.newEntryType = entryType;
873
+ const response: TransactionInfoResponse = await this.connector.changeServiceHeaderEntryType(request);
874
+ this.transactionDirty = true;
875
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
876
+ } else {
877
+ return false;
878
+ }
879
+ }
880
+
881
+ public async addHeaderImage(image: CoDocument, saveTransaction: boolean): Promise<boolean> {
882
+ const lockSuccess: boolean =
883
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
884
+ if (lockSuccess) {
885
+ let request: AddHeaderImageRequest = new AddHeaderImageRequest();
886
+ request.transactionUuid = this.currentTransaction.transactionInfo.uuid;
887
+ request.newHeaderImage = image;
888
+ const response: TransactionInfoResponse = await this.connector.addHeaderImage(request);
889
+ this.transactionDirty = true;
890
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
891
+ } else {
892
+ return false;
893
+ }
894
+ }
895
+
896
+ public async deleteHeaderImage(image: CoDocument, saveTransaction: boolean): Promise<boolean> {
897
+ const lockSuccess: boolean =
898
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
899
+ if (lockSuccess) {
900
+ let request: DeleteHeaderImageRequest = new DeleteHeaderImageRequest();
901
+ request.transactionUuid = this.currentTransaction.transactionInfo.uuid;
902
+ request.fileName = image.fileName;
903
+ const response: TransactionInfoResponse = await this.connector.deleteHeaderImage(request);
904
+ this.transactionDirty = true;
905
+ return this.handleHeaderOperationStatuses(response, saveTransaction);
906
+ } else {
907
+ return false;
908
+ }
909
+ }
910
+
911
+ public async updatePriceTransactionLine(uuid: string, lineUuid: string, price: number): Promise<boolean> {
912
+ const response: TransactionInfoResponse | boolean = await this.connector.changeTransactionLinePrice(uuid, lineUuid, price);
913
+ if (response) {
914
+ this.transactionDirty = true;
915
+ return this.handleLineOperationStatuses(response);
916
+ }
917
+ return false;
918
+ }
919
+
920
+ public async updatePurchasePriceTransactionLine(uuid: string, lineUuid: string, price: number): Promise<boolean> {
921
+ const response: TransactionInfoResponse | boolean = await this.connector.changeTransactionLinePurchasePrice(uuid, lineUuid, price);
922
+ if (response) {
923
+ this.transactionDirty = true;
924
+ return this.handleLineOperationStatuses(response);
925
+ }
926
+ return false;
927
+ }
928
+
929
+ public async updatePurchaseDescriptionTransactionLine(uuid: string, lineUuid: string, description: string): Promise<boolean> {
930
+ const response: TransactionInfoResponse | boolean = await this.connector.changeTransactionLinePurchaseDescription(uuid, lineUuid, description);
931
+ if (response) {
932
+ this.transactionDirty = true;
933
+ return this.handleLineOperationStatuses(response);
934
+ }
935
+ return false;
936
+ }
937
+
938
+ public async updateReferenceTransactionLine(uuid: string, lineUuid: string, reference: string): Promise<boolean> {
939
+ const response: TransactionInfoResponse | boolean = await this.connector.changeTransactionLineReference(uuid, lineUuid, reference);
940
+ if (response) {
941
+ this.transactionDirty = true;
942
+ return this.handleLineOperationStatuses(response);
943
+ }
944
+ return false;
945
+ }
946
+
947
+ public async updateLineSupplierArticleNumber(uuid: string, lineUuid: string, artNr: string): Promise<boolean> {
948
+ const response: TransactionInfoResponse | boolean = await this.connector.changeLineSupplierArticleNumber(uuid, lineUuid, artNr);
949
+ if (response) {
950
+ this.transactionDirty = true;
951
+ return this.handleLineOperationStatuses(response);
952
+ }
953
+ return false;
954
+ }
955
+
956
+ public async updateGoodDescriptionTransactionLine(uuid: string, lineUuid: string, goodDescription: string): Promise<boolean> {
957
+ if (this.autoSave && (this.transactionKind !== TransactionKind.CashDesk)) { // TODO: fix this nasty thing (and figure out why is was added in the first place)
958
+ await this._checkAndAddRelationTransaction();
959
+ }
960
+ const response: TransactionInfoResponse | boolean = await this.connector.changeTransactionLineGoodDescription(uuid, lineUuid, goodDescription);
961
+ if (response) {
962
+ this.transactionDirty = true;
963
+ return this.handleLineOperationStatuses(response);
964
+ }
965
+ return false;
966
+ }
967
+
968
+ public async updateQuantitySelectedForAllLines(transactionInfo: TransactionInfo,
969
+ transactionLines: TransactionLineInfo[], deliveryCostLines: TransactionDeliveryCostLineInfo[], selected: boolean): Promise<void> {
970
+ if (transactionInfo && transactionInfo.uuid && transactionLines) {
971
+ const linesRequest: ChangeLineQuantitySelectedLineRequest[] = [];
972
+ let selectedLines: TransactionLineInfo[] = transactionLines.filter(l => selected ? l.selected : true);
973
+ if (deliveryCostLines) {
974
+ selectedLines = selectedLines.concat(deliveryCostLines);
975
+ }
976
+ for (let i = 0; i < selectedLines.length; i++) {
977
+ const selectedLine: TransactionLineInfo = selectedLines[i];
978
+ const request: ChangeLineQuantitySelectedLineRequest = new ChangeLineQuantitySelectedLineRequest();
979
+ request.lineUuid = selectedLine.uuid;
980
+ request.newQuantitySelected = selected ? selectedLine.amountSelected : 0;
981
+ linesRequest.push(request);
982
+ }
983
+ const response: TransactionInfoResponse | boolean = await this.connector.changeTransactionLineQuantitySelected(transactionInfo.uuid, linesRequest);
984
+ if (response) {
985
+ this.transactionDirty = true;
986
+ await this.handleLineOperationStatuses(response, false, false);
987
+ this.transactionEventService.quantitySelectedLineChanged.next(true);
988
+ }
989
+ }
990
+ }
991
+
992
+ public async updateQuantitySelectedTransactionLine(uuid: string, lines: ChangeLineQuantitySelectedLineRequest[],
993
+ saveTransaction: boolean = true, rememberTransaction: boolean = true): Promise<boolean> {
994
+ const response: TransactionInfoResponse | boolean = await this.connector.changeTransactionLineQuantitySelected(uuid, lines);
995
+ if (response) {
996
+ this.transactionDirty = true;
997
+ await this.handleLineOperationStatuses(response, saveTransaction, rememberTransaction);
998
+ this.transactionEventService.quantitySelectedLineChanged.next(true);
999
+ return true;
1000
+ }
1001
+ return false;
1002
+ }
1003
+
1004
+ public async updateQuantitySelectNone(uuid: string, saveTransaction: boolean = true, rememberTransaction: boolean = true): Promise<boolean> {
1005
+ const response: TransactionInfoResponse | boolean = await this.connector.changeTransactionLineQuantitySelectNone(uuid);
1006
+ if (response) {
1007
+ this.transactionDirty = true;
1008
+ await this.handleLineOperationStatuses(response, saveTransaction, rememberTransaction);
1009
+ this.transactionEventService.quantitySelectedLineChanged.next(true);
1010
+ return true;
1011
+ }
1012
+ return false;
1013
+ }
1014
+
1015
+ public async updateDeliveryDateTransactionLine(uuid: string, lineUuid: string, date: Date): Promise<boolean> {
1016
+ const response: TransactionInfoResponse | boolean = await this.connector.changeTransactionLineDeliveryDate(uuid, lineUuid, date);
1017
+ if (response) {
1018
+ this.transactionDirty = true;
1019
+ return this.handleLineOperationStatuses(response);
1020
+ }
1021
+ return false;
1022
+ }
1023
+
1024
+ public async updatePriceListTransactionLine(uuid: string, lineUuid: string, priceList: string): Promise<boolean> {
1025
+ const response: TransactionInfoResponse | boolean = await this.connector.changeTransactionLinePriceList(uuid, lineUuid, priceList);
1026
+ if (response) {
1027
+ this.transactionDirty = true;
1028
+ return this.handleLineOperationStatuses(response);
1029
+ }
1030
+ return false;
1031
+ }
1032
+
1033
+ public async updateVatTransactionLine(uuid: string, lineUuid: string, id: number): Promise<boolean> {
1034
+ const response: TransactionInfoResponse | boolean = await this.connector.changeTransactionLineVat(uuid, lineUuid, id);
1035
+ if (response) {
1036
+ this.transactionDirty = true;
1037
+ return this.handleLineOperationStatuses(response);
1038
+ }
1039
+ return false;
1040
+ }
1041
+
1042
+ public async updateCommissionCodeTransactionLine(uuid: string, lineUuid: string, code: string): Promise<boolean> {
1043
+ const response: TransactionInfoResponse | boolean = await this.connector.changeTransactionLineCommissionCode(uuid, lineUuid, code);
1044
+ if (response) {
1045
+ this.transactionDirty = true;
1046
+ return this.handleLineOperationStatuses(response);
1047
+ }
1048
+ return false;
1049
+ }
1050
+
1051
+ public async updateDirectSellTransactionLine(transactionUuid: string, lineUuid: string, newDirectSell: boolean,
1052
+ newSupplierId: number, newPurchaseOrderNumber: string, newStockForecastDeliveryDate: Date): Promise<boolean> {
1053
+ const response: TransactionInfoResponse = await this.connector.changeTransactionLineDirectSell(transactionUuid, lineUuid, newDirectSell,
1054
+ newSupplierId, newPurchaseOrderNumber, newStockForecastDeliveryDate);
1055
+ if (response) {
1056
+ this.transactionDirty = true;
1057
+ return this.handleLineOperationStatuses(response);
1058
+ }
1059
+ return false;
1060
+ }
1061
+
1062
+ public async updateSupplierTransactionLine(uuid: string, lineUuid: string, id: number): Promise<boolean> {
1063
+ const response: TransactionInfoResponse | boolean = await this.connector.changeTransactionLineSupplier(uuid, lineUuid, id);
1064
+ if (response) {
1065
+ this.transactionDirty = true;
1066
+ return this.handleLineOperationStatuses(response);
1067
+ }
1068
+ return false;
1069
+ }
1070
+
1071
+ public async updateWarehouseTransactionLine(uuid: string, lineUuid: string, warehouseNumber: number, saveTransaction: boolean = true): Promise<boolean> {
1072
+ const response: TransactionInfoResponse | boolean = await this.connector.changeTransactionLineWarehouse(uuid, lineUuid, warehouseNumber);
1073
+ if (response) {
1074
+ this.transactionDirty = true;
1075
+ return this.handleLineOperationStatuses(response, saveTransaction);
1076
+ }
1077
+ return false;
1078
+ }
1079
+
1080
+ public async updateTransactionLineInterBranchSourceWarehouse(uuid: string, lineUuid: string, interBranchSourceWarehouseNr: number, saveTransaction: boolean = true): Promise<boolean> {
1081
+ const response: TransactionInfoResponse | boolean = await this.connector.changeTransactionLineInterBranchSourceWarehouse(uuid, lineUuid, interBranchSourceWarehouseNr);
1082
+ if (response) {
1083
+ this.transactionDirty = true;
1084
+ return this.handleLineOperationStatuses(response, saveTransaction);
1085
+ }
1086
+ return false;
1087
+ }
1088
+
1089
+ public async changeLineWarehouseAndSetInterBranchSourceWarehouse(uuid: string, lineUuid: string, warehouse: number, sourceWarehouse: number): Promise<boolean> {
1090
+ const response: TransactionInfoResponse | boolean = await this.connector.changeLineWarehouseAndSetInterBranchSourceWarehouse(uuid, lineUuid, warehouse, sourceWarehouse);
1091
+ if (response) {
1092
+ this.transactionDirty = true;
1093
+ return this.handleLineOperationStatuses(response);
1094
+ }
1095
+ return false;
1096
+ }
1097
+
1098
+ public async changeLineWarehouseAndClearInterBranchSourceWarehouse(uuid: string, lineUuid: string): Promise<boolean> {
1099
+ const response: TransactionInfoResponse | boolean = await this.connector.changeLineWarehouseAndClearInterBranchSourceWarehouse(uuid, lineUuid);
1100
+ if (response) {
1101
+ this.transactionDirty = true;
1102
+ return this.handleLineOperationStatuses(response);
1103
+ }
1104
+ return false;
1105
+ }
1106
+
1107
+ public async updateDeliveryMethodTransactionLine(uuid: string, lineUuid: string, method: string): Promise<boolean> {
1108
+ const response: TransactionInfoResponse | boolean = await this.connector.changeTransactionLineDeliveryMethod(uuid, lineUuid, method);
1109
+ if (response) {
1110
+ this.transactionDirty = true;
1111
+ return this.handleLineOperationStatuses(response);
1112
+ }
1113
+ return false;
1114
+ }
1115
+
1116
+ public async updateDiscountTransactionLine(uuid: string, lineUuid: string, type: DiscountType, discount: number, reason: string = '', code: string = ''): Promise<boolean> {
1117
+ const response: TransactionInfoResponse | boolean = await this.connector.changeTransactionLineLineDiscount(uuid, lineUuid, type, discount, reason, code);
1118
+ if (response) {
1119
+ this.transactionDirty = true;
1120
+ return this.handleLineOperationStatuses(response);
1121
+ }
1122
+ return false;
1123
+ }
1124
+
1125
+ public async updateDropShipmentTransactionLine(uuid: string, lineUuid: string, newDropShipment: boolean): Promise<boolean> {
1126
+ const response: TransactionInfoResponse | boolean = await this.connector.changeTransactionLineDropShipment(uuid, lineUuid, newDropShipment);
1127
+ if (response) {
1128
+ this.transactionDirty = true;
1129
+ return this.handleLineOperationStatuses(response);
1130
+ }
1131
+ return false;
1132
+ }
1133
+
1134
+ public async saveRelation(commitTransaction: boolean = true, alsoInitialiseTransAndAdd: boolean = true): Promise<boolean> {
1135
+ // this._cleanRelationBeforeSave();
1136
+ if (alsoInitialiseTransAndAdd) {
1137
+ this.initializeRelation();
1138
+ }
1139
+
1140
+ if (!this.relation.relationId) {
1141
+ this.relation = await this.transactionRelationService.insertRelation(this._relationKindFromTransactionKind.get(this.transactionKind), this.relation);
1142
+ } else {
1143
+ const locked: ValidationResult = await this.transactionRelationService.lockRelation(this.relation.relationType, parseInt(this.relation.relationNumber));
1144
+ if (!locked || !locked.success) {
1145
+ this.dialogService.showInformation('RELATION_ALREADY_LOCKED', true);
1146
+ }
1147
+ try {
1148
+ this.relation = await this.transactionRelationService.updateRelation(this._relationKindFromTransactionKind.get(this.transactionKind), this.relation);
1149
+ } catch (e) {
1150
+ return false;
1151
+ }
1152
+ }
1153
+ // await this.relationService.commit();
1154
+ if (alsoInitialiseTransAndAdd && !this.currentTransaction.transactionInfo.relation) {
1155
+ return await this.addRelationToTransaction(this.relation.relationId);
1156
+ }
1157
+ return true;
1158
+ }
1159
+
1160
+ public getSequenceValue(): Promise<number> {
1161
+ return this.connector.getSequenceValue(SequenceName.RelationId);
1162
+ }
1163
+
1164
+ public getRelationPrivacySettings(): Promise<RelationPrivacySetting[]> {
1165
+ return this.connector.getRelationPrivacySettings();
1166
+ }
1167
+
1168
+ public getArticleBoundTextLinesOfArticleLine(articleLineUuid: string): Promise<TransactionLineInfo[]> {
1169
+ return this.connector.getArticleBoundTextLinesOfArticleLine(articleLineUuid);
1170
+ }
1171
+
1172
+ public async createSalesOrder(request: CreateSalesOrderRequest): Promise<boolean> {
1173
+ await this.checkBranch();
1174
+ if (!this.currentBranch) {
1175
+ return Promise.reject();
1176
+ }
1177
+ request.branchNr = this.currentBranch;
1178
+ const response: TransactionInfoResponse = await this.connector.createSalesOrder(request);
1179
+ await this.rememberCurrentTransaction(response);
1180
+ return true;
1181
+ }
1182
+
1183
+ public async createSalesReturn(request: CreateSalesReturnRequest): Promise<boolean> {
1184
+ const response: TransactionInfoResponse = await this.connector.createSalesReturn(request);
1185
+ if (response) {
1186
+ return await this.handleHeaderOperationStatuses(response, false);
1187
+ } else {
1188
+ return false;
1189
+ }
1190
+ }
1191
+
1192
+ public async addSalesReturnLine(request: AddSalesReturnLineRequest): Promise<boolean> {
1193
+ let lockSuccess: boolean = true;
1194
+ if (this.currentTransaction.transactionInfo.id) {
1195
+ lockSuccess = await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
1196
+ }
1197
+
1198
+ if (lockSuccess) {
1199
+ const response: TransactionInfoResponse = await this.connector.addSalesReturnLine(request);
1200
+ if (response) {
1201
+ await this.rememberCurrentTransaction(response);
1202
+ return await this.handleLineOperationStatuses(response);
1203
+ } else {
1204
+ return false;
1205
+ }
1206
+ } else {
1207
+ return false;
1208
+ }
1209
+ }
1210
+
1211
+ public async createCashRegisterOrder(request: CreateCashRegisterOrderRequest, saveTransaction: boolean = true): Promise<boolean> {
1212
+ return new Promise<boolean>((resolve: Function) => {
1213
+ this.connector.createCashRegisterOrder(request).then(async (response: TransactionInfoResponse) => {
1214
+ this.transactionEventService.transactionLoaded.next();
1215
+ await this.rememberCurrentTransaction(response);
1216
+ resolve(await this.handleHeaderOperationStatuses(response, saveTransaction, saveTransaction));
1217
+ });
1218
+ });
1219
+ }
1220
+
1221
+ public async createPurchaseOrder(request: CreatePurchaseOrderRequest): Promise<boolean> {
1222
+ await this.checkBranch();
1223
+ if (!this.currentBranch) {
1224
+ return Promise.reject();
1225
+ }
1226
+ request.branchNr = this.currentBranch;
1227
+ const response: TransactionInfoResponse = await this.connector.createPurchaseOrder(request);
1228
+ await this.rememberCurrentTransaction(response);
1229
+ return true;
1230
+ }
1231
+
1232
+ public async createServiceOrder(request: CreateServiceOrderRequest): Promise<boolean> {
1233
+ return new Promise<boolean>(async (resolve: Function, reject: Function) => {
1234
+ await this.checkBranch();
1235
+ if (!this.currentBranch) {
1236
+ return reject();
1237
+ }
1238
+ if (this._transForServiceFromSalesTransactionLine && !isNaN(this._lineNrForServiceFromSalesTransactionLine)) {
1239
+ resolve(await this.createServiceOrderWithSourceTransactionLineRequest());
1240
+ } else {
1241
+ resolve(await this.createRegularServiceOrder(request));
1242
+ }
1243
+ });
1244
+ }
1245
+
1246
+ public async createRegularServiceOrder(request: CreateServiceOrderRequest): Promise<boolean> {
1247
+ return new Promise<boolean>(async (resolve: Function, reject: Function) => {
1248
+ request.branchNr = this.currentBranch;
1249
+ this.connector.createServiceOrder(request).then((response: TransactionInfoResponse) => {
1250
+ this.rememberCurrentTransaction(response);
1251
+ resolve(true);
1252
+ });
1253
+ });
1254
+ }
1255
+
1256
+ public async copyTransactionLine(request: TransactionLineCopyRequest) {
1257
+ const lockSuccess: boolean =
1258
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
1259
+
1260
+ if (lockSuccess) {
1261
+ const response = await this.connector.createCopyTransactionLine(request);
1262
+
1263
+ if (response) {
1264
+ this.transactionDirty = true;
1265
+ return this.handleLineOperationStatuses(response);
1266
+ }
1267
+ return false;
1268
+ }
1269
+ }
1270
+
1271
+ public async createServiceOrderWithSourceTransactionLineRequest(): Promise<boolean> {
1272
+ return new Promise<boolean>(async (resolve: Function, reject: Function) => {
1273
+ let request: CreateServiceOrderWithSourceTransactionLineRequest = new CreateServiceOrderWithSourceTransactionLineRequest();
1274
+ request.branchNr = this.currentBranch;
1275
+ request.customerRelationId = this._transForServiceFromSalesTransactionLine.transactionInfo.relation.relationId;
1276
+ request.sourceTransId = this._transForServiceFromSalesTransactionLine.transactionInfo.id;
1277
+ request.sourceLineNr = this._lineNrForServiceFromSalesTransactionLine;
1278
+
1279
+ this.connector.createServiceOrderWithSourceTransactionLine(request).then((response: TransactionInfoResponse) => {
1280
+ this.rememberCurrentTransaction(response);
1281
+ resolve(true);
1282
+ });
1283
+ });
1284
+ }
1285
+
1286
+ public async createSalesQuotation(request: CreateSalesQuotationRequest): Promise<boolean> {
1287
+ await this.checkBranch();
1288
+ if (!this.currentBranch) {
1289
+ return Promise.reject();
1290
+ }
1291
+ request.branchNr = this.currentBranch;
1292
+ const response: TransactionInfoResponse = await this.connector.createSalesQuotation(request);
1293
+ await this.rememberCurrentTransaction(response);
1294
+ return true;
1295
+ }
1296
+
1297
+ public async addRelationToTransaction(relationId: number): Promise<boolean> {
1298
+ const created: boolean = await this._checkAndCreateTransaction(false);
1299
+ if (!created) {
1300
+ return false;
1301
+ }
1302
+
1303
+ if (!this._transForServiceFromSalesTransactionLine) {
1304
+ const response: TransactionInfoResponse = await this.connector.addRelationToTransaction(this.currentTransaction.transactionInfo.uuid, relationId);
1305
+
1306
+ if (response) {
1307
+ this.transactionDirty = true;
1308
+ return this.handleHeaderOperationStatuses(response);
1309
+ }
1310
+
1311
+ return false;
1312
+ } else {
1313
+ this.resetDataForServiceFromSalesTransactionLine();
1314
+ return true;
1315
+ }
1316
+
1317
+ }
1318
+
1319
+ public async doDeliveryPlanningRequest(inputs: DoDeliveryPlanningRequestInputParams): Promise<boolean> {
1320
+ let response: DataServiceResponseData = await this.connector.doDeliveryPlanningRequest(inputs);
1321
+ return (response && response.validationResult && response.validationResult.success);
1322
+ }
1323
+
1324
+ public getCommissionCodes(languageCode: string): Promise<CoDomainValue[]> {
1325
+ return this.connector.getCommissionCodes(languageCode);
1326
+ }
1327
+
1328
+ public getContactTypes(languageCode: string): Promise<CoDomainValue[]> {
1329
+ return this.connector.getContactTypes(languageCode);
1330
+ }
1331
+
1332
+ public getYesNo(languageCode: string): Promise<CoDomainValue[]> {
1333
+ return this.connector.getYesNoCollection(languageCode);
1334
+ }
1335
+
1336
+ public getPriceKind(languageCode: string): Promise<CoDomainValue[]> {
1337
+ return this.connector.getPriceKindCollection(languageCode);
1338
+ }
1339
+
1340
+ public async getPriority(languageCode: string): Promise<CoDomainValue[]> {
1341
+ let priolist: CoDomainValue[] = await this.connector.getPriorityCollection(languageCode);
1342
+ return priolist.sort((a, b) => a.codeAsNumber < b.codeAsNumber ? -1 : 1);
1343
+ }
1344
+
1345
+ public getEntryTypes(languageCode: string): Promise<CoDomainValue[]> {
1346
+ return this.connector.getEntryTypes(languageCode);
1347
+ }
1348
+
1349
+ public getDomainTypes(languageCode: string): Promise<CoDomainValue[]> {
1350
+ return this.connector.getDomainTypes(languageCode);
1351
+ }
1352
+
1353
+ public getCauseCodes(): Promise<CauseCode[]> {
1354
+ return this.connector.getCauseCodes();
1355
+ }
1356
+
1357
+ public getInOutCollection(languageCode: string): Promise<CoDomainValue[]> {
1358
+ return this.connector.getInOutCollection(languageCode);
1359
+ }
1360
+
1361
+ public getSLATypes(languageCode: string): Promise<CoDomainValue[]> {
1362
+ return this.connector.getSLATypes(languageCode);
1363
+ }
1364
+
1365
+ public getTurnoverGroups(): Promise<TurnoverGroupImage[]> {
1366
+ return this.articleConnector.getTurnoverGroups();
1367
+ }
1368
+
1369
+ public getTransactionArticleWarehouses(goodId: number): Promise<TransactionArticleWarehouse[]> {
1370
+ return this.connector.getTransactionArticleWarehouses(goodId);
1371
+ }
1372
+
1373
+ public getMarketingCodes(): Promise<Marketing[]> {
1374
+ return this.connector.getMarketingCodes();
1375
+ }
1376
+
1377
+ public getArticles(request: ArticleExtendedRequest): Promise<ArticleLight[]> {
1378
+ return this.articleConnector.searchArticles(request);
1379
+ }
1380
+
1381
+ public getArticleListWithBarcodeArticleNrEanCode(search: string): Promise<ArticleLight[]> {
1382
+ return this.articleConnector.getArticleListWithBarcodeArticleNrEanCode(search);
1383
+ }
1384
+
1385
+ public getMainArticles(): Promise<MainArticle[]> {
1386
+ return this.articleConnector.getMainArticles();
1387
+ }
1388
+
1389
+ public getDeliveryMethods(): Promise<DeliveryMethod[]> {
1390
+ return this.connector.getDeliveryMethods();
1391
+ }
1392
+
1393
+ public getDeliveryMethodsForReturns(): Promise<DeliveryMethod[]> {
1394
+ return this.connector.getDeliveryMethodsForReturns();
1395
+ }
1396
+
1397
+ public getDeliveryOptions(): Promise<DeliveryOption[]> {
1398
+ return this.connector.getDeliveryOptions();
1399
+ }
1400
+
1401
+ public getDiscountCodes(): Promise<DiscountCode[]> {
1402
+ return this.connector.getDiscountCodes(this.transactionKind);
1403
+ }
1404
+
1405
+ public async setTransactionDiscounts(request: SetTransactionDiscountsRequest): Promise<boolean> {
1406
+ const lockSuccess: boolean =
1407
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
1408
+ if (lockSuccess) {
1409
+ const response: TransactionInfoResponse = await this.connector.setTransactionDiscounts(request);
1410
+ this.transactionDirty = true;
1411
+ return this.handleLineOperationStatuses(response, true);
1412
+ } else {
1413
+ return false;
1414
+ }
1415
+ }
1416
+
1417
+ public async changeLineDiscount(request: ChangeLineDiscountRequest): Promise<boolean> {
1418
+ const lockSuccess: boolean =
1419
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
1420
+ if (lockSuccess) {
1421
+ const response: TransactionInfoResponse = await this.connector.changeLineDiscount(request);
1422
+ this.transactionDirty = true;
1423
+ return this.handleLineOperationStatuses(response, true);
1424
+ } else {
1425
+ return false;
1426
+ }
1427
+ }
1428
+
1429
+ public getSalesPersons(date?: Date): Promise<SalesPerson[]> {
1430
+ return this.connector.getSalesPersons(date);
1431
+ }
1432
+
1433
+ public getRetailStadiums(): Promise<RetailStadium[]> {
1434
+ return this.connector.getRetailStadiums();
1435
+ }
1436
+
1437
+ public async addWebSessionTransactionLine(transactionUuid: string, articleNumber: string, quantity: number): Promise<void> {
1438
+ const response: TransactionInfoResponse = await this.connector.addWebSessionTransactionLine(transactionUuid, articleNumber, quantity);
1439
+ this.handleLineOperationStatuses(response);
1440
+ }
1441
+
1442
+ public async getArticleExtended(articleNr: string): Promise<ArticleExtended> {
1443
+ return this.connector.getArticleExtended(articleNr);
1444
+ }
1445
+
1446
+ public async addArticle(articleNo: string, quantity: number = 1, aboveLineNr: number = 0, belowLineNr: number = 0, saveTransaction: boolean = true, showLoader: boolean = false): Promise<boolean> {
1447
+ const response: TransactionInfoResponse = await this.addTransactionLine(articleNo, quantity, aboveLineNr, belowLineNr, showLoader);
1448
+ if (response !== null) {
1449
+ this.transactionDirty = true;
1450
+ return this.handleLineOperationStatuses(response, saveTransaction);
1451
+ } else {
1452
+ return false;
1453
+ }
1454
+ }
1455
+
1456
+ public async addTransactionLine(articleNo: string, quantity: number = 1, aboveLineNr: number = 0, belowLineNr: number = 0, showLoader: boolean = false): Promise<TransactionInfoResponse> {
1457
+ const created: boolean = await this._checkAndCreateTransaction();
1458
+ if (!created) {
1459
+ return null;
1460
+ }
1461
+ const lockSuccess: boolean =
1462
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
1463
+ if (lockSuccess) {
1464
+ this.transactionLineAdded = true;
1465
+ const response: TransactionInfoResponse = await this.connector.addTransactionLine(
1466
+ this.currentTransaction.transactionInfo.uuid, articleNo, quantity, aboveLineNr, belowLineNr, showLoader);
1467
+ return response;
1468
+ } else {
1469
+ return null;
1470
+ }
1471
+ }
1472
+
1473
+ public async addCatFarmArticle(catalogId: number, jsonArticleString: string): Promise<void> {
1474
+ const jsonArticleObject: any = JSON.parse(jsonArticleString);
1475
+ const articleTree: ArticleFlatTreeDTO = this._boFactory.makeWithRawBackendData(ArticleFlatTreeDTO, jsonArticleObject.articleTree) as ArticleFlatTreeDTO;
1476
+ let artNr: string = await this.articleConnector.storeCatFarmCompositionArticle(catalogId, articleTree);
1477
+ await this.addArticle(artNr, jsonArticleObject.quantity);
1478
+ }
1479
+
1480
+ public async addExternalCatalogArticle(request: ExternalCatalogAddArticleRequest, showLoader: boolean = false): Promise<void> {
1481
+ await this.addExternalCatalogArticleWithRawData(request.catalogId, request.articleJson, showLoader);
1482
+ }
1483
+
1484
+ public async addExternalCatalogArticleFromGoodId(jsonArticleString: string, showLoader: boolean = false): Promise<void> {
1485
+ const jsonArticleObject: any = JSON.parse(jsonArticleString);
1486
+ const response: TransactionInfoResponse = await this.addTransactionLine(jsonArticleObject.sku, jsonArticleObject.quantity, 0, 0, showLoader);
1487
+ const handled: boolean = await this.handleLineOperationStatuses(response, true);
1488
+ if (handled && jsonArticleObject.price !== undefined) {
1489
+ await this.updatePriceTransactionLine(response.transactionInfo.uuid, response.lineOperationStatuses[0].uuid, jsonArticleObject.price);
1490
+ }
1491
+ }
1492
+
1493
+ public async addExternalCatalogArticleWithRawData(catalogId: number, jsonArticleString: string, showLoader: boolean = false): Promise<void> {
1494
+ const created: boolean = await this._checkAndCreateTransaction();
1495
+ if (!created) {
1496
+ return null;
1497
+ }
1498
+ const lockSuccess: boolean =
1499
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
1500
+ if (lockSuccess) {
1501
+ this.transactionLineAdded = true;
1502
+ const response: TransactionInfoResponse = await this.connector.addExternalCatalogArticlesToTransaction(
1503
+ this.currentTransaction.transactionInfo.uuid, catalogId, jsonArticleString, showLoader);
1504
+ await this.handleLineOperationStatuses(response, true);
1505
+ }
1506
+ }
1507
+
1508
+ public async addExpenseToCashRegisterOrder(request: AddExpenseToCashRegisterOrderRequest): Promise<void> {
1509
+ const created: boolean = await this._checkAndCreateTransaction();
1510
+ if (!created) {
1511
+ return null;
1512
+ }
1513
+ const lockSuccess: boolean =
1514
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
1515
+ if (lockSuccess) {
1516
+ this.transactionLineAdded = true;
1517
+ const response: TransactionInfoResponse = await this.connector.addExpenseToCashRegisterOrder(request);
1518
+ await this.handleLineOperationStatuses(response, true);
1519
+ }
1520
+ }
1521
+
1522
+ public async addReceiptToCashRegisterOrder(request: AddReceiptToCashRegisterOrderRequest): Promise<void> {
1523
+ const created: boolean = await this._checkAndCreateTransaction();
1524
+ if (!created) {
1525
+ return null;
1526
+ }
1527
+ const lockSuccess: boolean =
1528
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
1529
+ if (lockSuccess) {
1530
+ this.transactionLineAdded = true;
1531
+ const response: TransactionInfoResponse = await this.connector.addReceiptToCashRegisterOrder(request);
1532
+ await this.handleLineOperationStatuses(response, true);
1533
+ }
1534
+ }
1535
+
1536
+ public async addTextLine(showOnDocuments: number, text: string, amount: number, articleBound: boolean, refArticleLineNr: number, aboveLineNr?: number, belowLineNr?: number): Promise<boolean> {
1537
+ const created: boolean = await this._checkAndCreateTransaction();
1538
+ if (!created) {
1539
+ return false;
1540
+ }
1541
+ const lockSuccess: boolean =
1542
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
1543
+ if (lockSuccess) {
1544
+ const response: TransactionInfoResponse = await this.connector.addTextLineToTransaction(
1545
+ this.currentTransaction.transactionInfo.uuid, showOnDocuments, text, amount, articleBound, refArticleLineNr, aboveLineNr, belowLineNr);
1546
+ this.transactionDirty = true;
1547
+ return this.handleLineOperationStatuses(response);
1548
+ } else {
1549
+ return false;
1550
+ }
1551
+ }
1552
+
1553
+ public async updateTextLine(uuid: string, lineUuid: string, showOnDocuments: number, text: string): Promise<boolean> {
1554
+ const lockSuccess: boolean =
1555
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
1556
+ if (lockSuccess) {
1557
+ const response: TransactionInfoResponse = await this.connector.updateTextLine(uuid, lineUuid, showOnDocuments, text);
1558
+ this.transactionDirty = true;
1559
+ return this.handleLineOperationStatuses(response);
1560
+ } else {
1561
+ return false;
1562
+ }
1563
+ }
1564
+
1565
+ public async changeLineSequence(lineUuid: string, aboveLineNr?: number, belowLineNr?: number): Promise<boolean> {
1566
+ const lockSuccess: boolean =
1567
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
1568
+ if (lockSuccess) {
1569
+ const response: TransactionInfoResponse = await this.connector.changeLineSequence(this.currentTransaction.transactionInfo.uuid, lineUuid, aboveLineNr, belowLineNr);
1570
+ this.transactionDirty = true;
1571
+ return this.handleLineOperationStatuses(response);
1572
+ } else {
1573
+ return false;
1574
+ }
1575
+ }
1576
+
1577
+ public async deleteTransactionLine(transactionLineUuid: string): Promise<boolean> {
1578
+ if (this.autoSave && (this.transactionKind !== TransactionKind.CashDesk)) { // TODO: fix this nasty thing (and figure out why is was added in the first place)
1579
+ await this._checkAndAddRelationTransaction();
1580
+ }
1581
+ const lockSuccess: boolean =
1582
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
1583
+ if (lockSuccess) {
1584
+ const response: TransactionInfoResponse = await this.connector.deleteTransactionLine(this.currentTransaction.transactionInfo.uuid, transactionLineUuid);
1585
+ if (response) {
1586
+ this.transactionDirty = true;
1587
+ return this.handleLineOperationStatuses(response);
1588
+ }
1589
+ if (!this.manualSaveActive) {
1590
+ await this.rollback();
1591
+ }
1592
+ }
1593
+ return false;
1594
+ }
1595
+
1596
+ public async checkLockandChangeTransactionLineQuantity(transactionUuid: string, lineUuid: string, newQuantity: number): Promise<boolean> {
1597
+ const lockSuccess: boolean =
1598
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
1599
+ if (lockSuccess) {
1600
+ return await this.changeTransactionLineQuantity(transactionUuid, lineUuid, newQuantity);
1601
+ }
1602
+ return false;
1603
+ }
1604
+
1605
+ public async changeTransactionLineQuantity(transactionUuid: string, lineUuid: string, newQuantity: number): Promise<boolean> {
1606
+ if (this.autoSave && (this.transactionKind !== TransactionKind.CashDesk)) { // TODO: fix this nasty thing (and figure out why is was added in the first place)
1607
+ await this._checkAndAddRelationTransaction();
1608
+ }
1609
+ const response: TransactionInfoResponse = await this.connector.changeTransactionLineQuantity(transactionUuid, lineUuid, newQuantity)
1610
+ .catch(() => {
1611
+ return null;
1612
+ });
1613
+ if (response) {
1614
+ this.transactionDirty = true;
1615
+ return this.handleLineOperationStatuses(response);
1616
+ }
1617
+ if (!this.manualSaveActive) {
1618
+ await this.rollback();
1619
+ }
1620
+ return false;
1621
+ }
1622
+
1623
+ public async changeTransactionLineAssemblyTime(uuid: string, lineUuid: string, time: number): Promise<TransactionInfoResponse> {
1624
+ return this.connector.changeTransactionLineAssemblyTime(uuid, lineUuid, time);
1625
+ }
1626
+
1627
+ public async changeLineShippingCost(uuid: string, lineUuid: string, newShippingCost: number): Promise<TransactionInfoResponse> {
1628
+ return this.connector.changeLineShippingCost(uuid, lineUuid, newShippingCost);
1629
+ }
1630
+
1631
+ public async changeLineManufacturingPriceAPiece(uuid: string, lineUuid: string, newManufacturingPriceAPiece: number): Promise<TransactionInfoResponse> {
1632
+ return this.connector.changeLineManufacturingPriceAPiece(uuid, lineUuid, newManufacturingPriceAPiece);
1633
+ }
1634
+
1635
+ public async getGoodsReceiptHistory(transId: number, lineNr: number): Promise<GoodsReceiptHistory> {
1636
+ return await this.connector.getGoodsReceiptHistory(transId, lineNr);
1637
+ }
1638
+
1639
+ public async receiveGoodsForPurchaseOrder(transactionId: number, version: number, request: ReceiveGoodsForOrderRequest): Promise<boolean> {
1640
+ const lockSuccess: boolean = await this.tryToLockTransaction(transactionId, version);
1641
+ if (lockSuccess) {
1642
+ this.transactionEventService.updatingPurchaseOrderReceiveGoods.next(true);
1643
+ const response: TransactionInfoResponse = await this.connector.receiveGoodsForPurchaseOrder(request);
1644
+ this.transactionEventService.updatingPurchaseOrderReceiveGoods.next(false);
1645
+ let success: boolean = false;
1646
+ if (response) {
1647
+ this.transactionDirty = true;
1648
+ success = await this.handleHeaderOperationStatuses(response);
1649
+ }
1650
+ return success;
1651
+ }
1652
+ }
1653
+
1654
+ public async receiveGoodsForPurchaseOrderCorrection(transactionId: number, version: number, request: ReceiveGoodsForPurchaseOrderCorrectionRequest): Promise<boolean> {
1655
+ const lockSuccess: boolean = await this.tryToLockTransaction(transactionId, version);
1656
+ if (lockSuccess) {
1657
+ this.transactionEventService.updatingPurchaseOrderReceiveGoods.next(true);
1658
+ let response: TransactionInfoResponse = await this.connector.receiveGoodsForPurchaseOrderCorrection(request);
1659
+ this.transactionEventService.updatingPurchaseOrderReceiveGoods.next(false);
1660
+ let success: boolean = true;
1661
+ if (response) {
1662
+ this.transactionDirty = true;
1663
+ success = await this.handleHeaderOperationStatuses(response);
1664
+ }
1665
+ return success;
1666
+ }
1667
+ }
1668
+
1669
+ public async receiveGoodsForInterBranchOrder(transactionId: number, version: number, request: ReceiveGoodsForOrderRequest): Promise<boolean> {
1670
+ const lockSuccess: boolean = await this.tryToLockTransaction(transactionId, version);
1671
+ if (lockSuccess) {
1672
+ this.transactionEventService.updatingInterbranchOrderReceiveGoods.next(true);
1673
+ const response: TransactionInfoResponse = await this.connector.receiveGoodsForInterBranchOrder(request);
1674
+ this.transactionEventService.updatingInterbranchOrderReceiveGoods.next(false);
1675
+ let success: boolean = false;
1676
+ if (response) {
1677
+ this.transactionDirty = true;
1678
+ success = await this.handleHeaderOperationStatuses(response);
1679
+ }
1680
+ return success;
1681
+ }
1682
+ }
1683
+
1684
+ public async printPackageSticker(printRequest: PrintPackageStickerRequest): Promise<void> {
1685
+ return await this.connector.printPackageSticker(printRequest);
1686
+ }
1687
+
1688
+ public async pdfPackageSticker(pdfRequest: PdfPackageStickerRequest, localPrint: boolean = false): Promise<void> {
1689
+ return await this.connector.pdfPackageSticker(pdfRequest, localPrint);
1690
+ }
1691
+
1692
+ public async printReservationSticker(printRequest: PrintReservationStickerRequest): Promise<void> {
1693
+ return await this.connector.printReservationSticker(printRequest);
1694
+ }
1695
+
1696
+ public async pdfReservationSticker(pdfRequest: PdfReservationStickerRequest, localPrint: boolean = false): Promise<void> {
1697
+ return await this.connector.pdfReservationSticker(pdfRequest, localPrint);
1698
+ }
1699
+
1700
+ public async printOrderingSticker(printRequest: PrintOrderingStickerRequest): Promise<void> {
1701
+ return await this.connector.printOrderingSticker(printRequest);
1702
+ }
1703
+
1704
+ public async pdfOrderingSticker(pdfRequest: PdfOrderingStickerRequest, localPrint: boolean = false): Promise<void> {
1705
+ return await this.connector.pdfOrderingSticker(pdfRequest, localPrint);
1706
+ }
1707
+
1708
+ public async allocateGoodsForSalesOrder(transactionId: number, version: number, request: AllocateGoodsForSalesOrderRequest): Promise<boolean> {
1709
+ const lockSuccess: boolean = await this.tryToLockTransaction(transactionId, version);
1710
+ if (lockSuccess) {
1711
+ this.transactionEventService.updatingPurchaseOrderAllocateGoods.next(true);
1712
+ const response: TransactionInfoResponse = await this.connector.allocateGoodsForSalesOrder(request);
1713
+ this.transactionEventService.updatingPurchaseOrderAllocateGoods.next(false);
1714
+ let success: boolean = true;
1715
+ if (response) {
1716
+ this.transactionDirty = true;
1717
+ success = await this.handleHeaderOperationStatuses(response);
1718
+ }
1719
+ return success;
1720
+ }
1721
+ }
1722
+
1723
+ public async allocateGoodsForSalesOrderCorrection(transactionId: number, version: number, request: AllocateGoodsForSalesOrderCorrectionRequest): Promise<boolean> {
1724
+ const lockSuccess: boolean = await this.tryToLockTransaction(transactionId, version);
1725
+ if (lockSuccess) {
1726
+ this.transactionEventService.updatingPurchaseOrderAllocateGoods.next(true);
1727
+ const response: TransactionInfoResponse = await this.connector.allocateGoodsForSalesOrderCorrection(request);
1728
+ this.transactionEventService.updatingPurchaseOrderAllocateGoods.next(false);
1729
+ let success: boolean = true;
1730
+ if (response) {
1731
+ this.transactionDirty = true;
1732
+ success = await this.handleHeaderOperationStatuses(response);
1733
+ }
1734
+ return success;
1735
+ }
1736
+ }
1737
+
1738
+ public async setGoodsToBePickedForSalesOrder(transactionId: number, version: number, request: GoodsToBePickedForOrderRequest): Promise<boolean> {
1739
+ const lockSuccess: boolean = await this.tryToLockTransaction(transactionId, version);
1740
+ if (lockSuccess) {
1741
+ this.transactionEventService.updatingSalesOrderGoodsToBePicked.next(true);
1742
+ const response: TransactionInfoResponse = await this.connector.setGoodsToBePickedForSalesOrder(request);
1743
+ this.transactionEventService.updatingSalesOrderGoodsToBePicked.next(false);
1744
+ let success: boolean = true;
1745
+ if (response) {
1746
+ this.transactionDirty = true;
1747
+ success = await this.handleHeaderOperationStatuses(response);
1748
+ }
1749
+ return success;
1750
+ }
1751
+ }
1752
+
1753
+ public async setGoodsPickedForOrder(transactionId: number, version: number, request: GoodsPickedRequest): Promise<boolean> {
1754
+ const lockSuccess: boolean = await this.tryToLockTransaction(transactionId, version);
1755
+ if (lockSuccess) {
1756
+ this.transactionEventService.updatingSalesOrderGoodsPicked.next(true);
1757
+ const response: TransactionInfoResponse = await this.connector.setGoodsPickedForOrder(request);
1758
+ this.transactionEventService.updatingSalesOrderGoodsPicked.next(false);
1759
+ let success: boolean = true;
1760
+ if (response) {
1761
+ this.transactionDirty = true;
1762
+ success = await this.handleHeaderOperationStatuses(response);
1763
+ }
1764
+ return success;
1765
+ }
1766
+ }
1767
+
1768
+ public async deleteGoodsPicked(transactionId: number, version: number, deleteGoodsPickedForOrderRequest: DeleteGoodsPickedForOrderRequest): Promise<boolean> {
1769
+ const lockSuccess: boolean = await this.tryToLockTransaction(transactionId, version);
1770
+ if (lockSuccess) {
1771
+ const response: TransactionInfoResponse = await this.connector.deleteGoodsPicked(deleteGoodsPickedForOrderRequest);
1772
+ let success: boolean = true;
1773
+ if (response) {
1774
+ this.transactionDirty = true;
1775
+ success = await this.handleHeaderOperationStatuses(response);
1776
+ }
1777
+ return success;
1778
+ }
1779
+ }
1780
+
1781
+ public async deleteGoodsToBePicked(transactionId: number, version: number, deleteGoodsToBePickedForOrderRequest: DeleteGoodsToBePickedForOrderRequest): Promise<boolean> {
1782
+ const lockSuccess: boolean = await this.tryToLockTransaction(transactionId, version);
1783
+ if (lockSuccess) {
1784
+ const response: TransactionInfoResponse = await this.connector.deleteGoodsToBePicked(deleteGoodsToBePickedForOrderRequest);
1785
+ let success: boolean = true;
1786
+ if (response) {
1787
+ this.transactionDirty = true;
1788
+ success = await this.handleHeaderOperationStatuses(response);
1789
+ }
1790
+ return success;
1791
+ }
1792
+ }
1793
+
1794
+ public async purchaseOrderConfirmation(
1795
+ transactionId: number,
1796
+ version: number,
1797
+ purchaseOrderConfirmation: GetPurchaseOrderConfirmation,
1798
+ analysisId: number,
1799
+ selectedLines: TransactionLineInfo[]
1800
+ ): Promise<boolean> {
1801
+ const lockSuccess: boolean = await this.tryToLockTransaction(transactionId, version);
1802
+ if (lockSuccess) {
1803
+ this.transactionEventService.updatingPurchaseOrderConfirmation.next(true);
1804
+ let success: boolean = await this.connector.purchaseOrderConfirmation(purchaseOrderConfirmation);
1805
+ success = await this._checkAndSaveLinesForAIConfirmation(transactionId, analysisId, selectedLines);
1806
+ if (success) {
1807
+ this.transactionEventService.orderConfirmationDropped.next(undefined);
1808
+ this.transactionEventService.orderConfirmationReset.next();
1809
+ success = await this.commit();
1810
+ await this.getTransactionById(transactionId);
1811
+ }
1812
+ this.transactionEventService.updatingPurchaseOrderConfirmation.next(false);
1813
+ return success;
1814
+ }
1815
+ }
1816
+
1817
+ public async updatePurchasePortalLines(transactionId: number, version: number, purchasePortalLine: PurchasePortalLine): Promise<boolean> {
1818
+ const lockSuccess: boolean = await this.tryToLockTransaction(transactionId, version);
1819
+ if (lockSuccess) {
1820
+ this.transactionEventService.updatingPurchaseOrderConfirmation.next(true);
1821
+ let success: boolean = await this.connector.updatePurchasePortalLines(purchasePortalLine);
1822
+ if (success) {
1823
+ success = await this.commit();
1824
+ await this.getTransactionById(transactionId);
1825
+ }
1826
+ this.transactionEventService.updatingPurchaseOrderConfirmation.next(false);
1827
+ return success;
1828
+ }
1829
+ }
1830
+
1831
+ public getTextTypes(languageCode: string): Promise<CoDomainValue[]> {
1832
+ return this.connector.getTextTypes(languageCode);
1833
+ }
1834
+
1835
+ public getStandardTexts(languageCode: string): Promise<StandardText[]> {
1836
+ return this.connector.getStandardTexts(languageCode);
1837
+ }
1838
+
1839
+ public getArticleFullObject(goodId: number): Promise<ArticleFullObject> {
1840
+ return this.connector.getArticleFullObject(goodId);
1841
+ }
1842
+
1843
+ public getGoodIdFromArticleNr(sku: string): Promise<number> {
1844
+ return this.connector.getGoodIdFromArticleNr(sku);
1845
+ }
1846
+
1847
+ public getCountry(countryCode: string): Promise<Country> {
1848
+ return this.connector.getCountry(countryCode);
1849
+ }
1850
+
1851
+ public getCashRegisters(branch?: string, group?: number): Promise<CashRegister[]> {
1852
+ return this.connector.getCashRegisters(branch, group, this.cashRegistersDirty);
1853
+ }
1854
+
1855
+ public getCashDrawers(cashDrawersRequest: CashDrawersRequest): Promise<CashDrawer[]> {
1856
+ return this.connector.getCashDrawers(cashDrawersRequest, this.cashRegistersDirty);
1857
+ }
1858
+
1859
+ public getPriceLists(): Promise<PriceList[]> {
1860
+ return this.connector.getPriceLists();
1861
+ }
1862
+
1863
+ public getVatLists(): Promise<Vat[]> {
1864
+ return this.connector.getVatList();
1865
+ }
1866
+
1867
+ public getTransVatCodes(type: string, date: Date): Promise<Vat[]> {
1868
+ return this.connector.getTransVatCodes(type, date);
1869
+ }
1870
+
1871
+ public getTags(category: number): Promise<Tag[]> {
1872
+ return this.connector.getTags(category);
1873
+ }
1874
+
1875
+ public getOnHoldCodes(): Promise<OnHoldCode[]> {
1876
+ return this.connector.getOnHoldCodes();
1877
+ }
1878
+
1879
+ public getWarehouses(): Promise<Warehouse[]> {
1880
+ return this.connector.getWarehouses(this.currentBranch);
1881
+ }
1882
+
1883
+ public getWarehouseStockInfoByGoodAndBranch(goodId: number, transactionInfo?: TransactionInfo): Promise<WarehouseStockInfo[]> {
1884
+ let transactionBranch: string;
1885
+
1886
+ if (transactionInfo && transactionInfo.branch) {
1887
+ transactionBranch = transactionInfo.branch.relationNr;
1888
+ } else if (this.currentTransaction && this.currentTransaction.transactionInfo && this.currentTransaction.transactionInfo.branch) {
1889
+ transactionBranch = this.currentTransaction.transactionInfo.branch.relationNr;
1890
+ } else {
1891
+ transactionBranch = this.currentBranch;
1892
+ }
1893
+
1894
+ return this.connector.getWarehouseStockInfoByGoodAndBranch(goodId, transactionBranch);
1895
+ }
1896
+
1897
+ public getMaxConfirmedDeliveryDateForPurchaseOrder(transId: number): Promise<Date> {
1898
+ return this.connector.getMaxConfirmedDeliveryDateForPurchaseOrder(transId);
1899
+ }
1900
+
1901
+ public getHistoricStateValues(): Promise<CodeDescription[]> {
1902
+ return this.connector.getHistoricStateValues();
1903
+ }
1904
+
1905
+ public getCustomerGroups(): Promise<CustomerGroup[]> {
1906
+ return this.connector.getCustomerGroups();
1907
+ }
1908
+
1909
+ public getWorkFlowStatusNames(transactionKind: TransactionKind): Promise<WorkFlowStatusName[]> {
1910
+ return this.connector.getWorkFlowStatusNames(transactionKind);
1911
+ }
1912
+
1913
+ public async lockPurchasePortalLines(transIdPurchase: number, lineId: number): Promise<boolean> {
1914
+ return await this.connector.lockPurchasePortalLines(transIdPurchase, lineId);
1915
+ }
1916
+
1917
+ public async getAvailableStockGroupedByWLBSByTransIdLineNr(transId: number, lineNr: number): Promise<AvailableStock[]> {
1918
+ return await this.connector.getAvailableStockGroupedByWLBSByTransIdLineNr(transId, lineNr);
1919
+ }
1920
+
1921
+ public async getAvailableStockForSupplier(goodId: number, supplierRelationId: number): Promise<SupplierArticleStockForecast> {
1922
+ return await this.connector.getAvailableStockForSupplier(goodId, supplierRelationId);
1923
+ }
1924
+
1925
+ public async getGoodsAllocationHistory(transId: number, lineNr: number): Promise<GoodsAllocationHistory> {
1926
+ return await this.connector.getGoodsAllocationHistory(transId, lineNr);
1927
+ }
1928
+
1929
+ public async getGoodsToBePickedHistory(transId: number, lineNr: number): Promise<GoodsToBePickedHistory> {
1930
+ return await this.connector.getGoodsToBePickedHistory(transId, lineNr);
1931
+ }
1932
+
1933
+ public async getGoodsPickedHistory(transId: number, lineNr: number): Promise<GoodsPickedHistory> {
1934
+ return await this.connector.getGoodsPickedHistory(transId, lineNr);
1935
+ }
1936
+
1937
+ public async getLinePurchaseHistory(transId: number, lineNr: number): Promise<PurchaseHistory> {
1938
+ return await this.connector.getLinePurchaseHistory(transId, lineNr);
1939
+ }
1940
+
1941
+ public async getLinePurchaseInfo(transId: number, lineNr: number): Promise<PurchaseInfo[]> {
1942
+ return await this.connector.getLinePurchaseInfo(transId, lineNr);
1943
+ }
1944
+
1945
+ public async getOrderConfirmationEmailLayouts(transactionUUID: string): Promise<ReportLayoutSelectionEmail[]> {
1946
+ return await this.connector.getOrderConfirmationEmailLayouts(transactionUUID);
1947
+ }
1948
+
1949
+ public async getOrderConfirmationPrintLayouts(transactionUUID: string): Promise<ReportLayoutSelectionPrint[]> {
1950
+ return await this.connector.getOrderConfirmationPrintLayouts(transactionUUID);
1951
+ }
1952
+
1953
+ public async getOrderConfirmationDefaultSendMethod(relationId: number): Promise<number> {
1954
+ return await this.connector.getOrderConfirmationDefaultSendMethod(relationId);
1955
+ }
1956
+
1957
+ public async getDefaultEmailAddressListForOrderConfirmation(transactionUUID): Promise<string[]> {
1958
+ return await this.connector.getDefaultEmailAddressListForOrderConfirmation(transactionUUID);
1959
+ }
1960
+
1961
+ public async printOrderConfirmation(request: PrintOrderConfirmationRequest): Promise<CoDocument | boolean> {
1962
+ this.transactionEventService.updatingSalesOrderConfirmation.next(true);
1963
+ const result: CoDocument | boolean = await this.connector.printOrderConfirmation(request);
1964
+ if (result && !(result instanceof CoDocument)) {
1965
+ await this.commitAndRefreshTransaction();
1966
+ }
1967
+ this.transactionEventService.updatingSalesOrderConfirmation.next(false);
1968
+ return result;
1969
+ }
1970
+
1971
+ public async printHistoricOrderConfirmation(request: PrintHistoricDeliveryNoteRequest): Promise<void> {
1972
+ return await this.connector.printHistoricOrderConfirmation(request);
1973
+ }
1974
+
1975
+ public async startOrderConfirmationBatch(request: BatchTransactionSendingRequest): Promise<void> {
1976
+ return await this.connector.startOrderConfirmationBatch(request);
1977
+ }
1978
+
1979
+ public async startPurchaseOrderFormBatch(request: BatchTransactionSendingRequest): Promise<void> {
1980
+ return await this.connector.startPurchaseOrderFormBatch(request);
1981
+ }
1982
+
1983
+ public async startToAllocateUnAllocatedLinesBatch(transIds: number[]): Promise<void> {
1984
+ return await this.connector.startToAllocateUnAllocatedLinesBatch(transIds);
1985
+ }
1986
+
1987
+ public async startGoodsToBePickedBatch(request: BatchTransactionSendingRequest): Promise<void> {
1988
+ return await this.connector.startGoodsToBePickedBatch(request);
1989
+ }
1990
+
1991
+ public async startGoodsPickedBatch(transIds: number[]): Promise<void> {
1992
+ return await this.connector.startGoodsPickedBatch(transIds);
1993
+ }
1994
+
1995
+ public async startDeliveryNotesBatch(request: BatchTransactionSendingRequest): Promise<void> {
1996
+ return await this.connector.startDeliveryNotesBatch(request);
1997
+ }
1998
+
1999
+ public async startInvoiceBatch(request: BatchTransactionSendingRequest): Promise<void> {
2000
+ return await this.connector.startInvoiceBatch(request);
2001
+ }
2002
+
2003
+ public async getBatchJobProgressesForTheUser(): Promise<BatchJobProgress[]> {
2004
+ return await this.connector.getBatchJobProgressesForTheUser();
2005
+ }
2006
+
2007
+ public async deleteBatchJob(batchJobProgressId: number): Promise<void> {
2008
+ return await this.connector.deleteBatchJob(batchJobProgressId);
2009
+ }
2010
+
2011
+ public async retryBatchJob(batchJobProgressId: number): Promise<void> {
2012
+ return await this.connector.retryBatchJob(batchJobProgressId);
2013
+ }
2014
+
2015
+ public async emailOrderConfirmation(request: EmailOrderConfirmationRequest): Promise<CoDocument | boolean> {
2016
+ this.transactionEventService.updatingSalesOrderConfirmation.next(true);
2017
+ const result: CoDocument | boolean = await this.connector.emailOrderConfirmation(request);
2018
+ if (result && !(result instanceof CoDocument)) {
2019
+ await this.commitAndRefreshTransaction();
2020
+ }
2021
+ this.transactionEventService.updatingSalesOrderConfirmation.next(false);
2022
+ return result;
2023
+ }
2024
+
2025
+ public async emailHistoricOrderConfirmation(request: EmailHistoricOrderConfirmationRequest): Promise<void> {
2026
+ return await this.connector.emailHistoricOrderConfirmation(request);
2027
+ }
2028
+
2029
+ public async pdfOrderConfirmation(request: PdfOrderConfirmationRequest, localPrint: boolean = false): Promise<CoDocument | boolean> {
2030
+ this.transactionEventService.updatingSalesOrderConfirmation.next(true);
2031
+ const result: CoDocument | boolean = await this.connector.pdfOrderConfirmation(request, localPrint);
2032
+ if (result && !(result instanceof CoDocument)) {
2033
+ await this.commitAndRefreshTransaction();
2034
+ }
2035
+ this.transactionEventService.updatingSalesOrderConfirmation.next(false);
2036
+ return result;
2037
+ }
2038
+
2039
+ // public async pdfContentsOrderConfirmation(request: PdfOrderConfirmationRequest): Promise<CoDocument | boolean> {
2040
+ // this.transactionEventService.updatingSalesOrderConfirmation.next(true);
2041
+ // const result: any = await this.connector.pdfContentsOrderConfirmation(request);
2042
+ // if (result && !(result instanceof CoDocument)) {
2043
+ // await this.commitAndRefreshTransaction();
2044
+ // }
2045
+ // this.transactionEventService.updatingSalesOrderConfirmation.next(false);
2046
+ // return result;
2047
+ // }
2048
+
2049
+ public async previewOrderConfirmation(request: PdfOrderConfirmationRequest): Promise<ReportingPdfBaseResponse> {
2050
+ return await this.connector.previewOrderConfirmation(request);
2051
+ }
2052
+
2053
+ public async previewHistoricOrderConfirmation(request: PdfOrderConfirmationRequest): Promise<ReportingPdfBaseResponse> {
2054
+ return await this.connector.previewHistoricOrderConfirmation(request);
2055
+ }
2056
+
2057
+ public async previewDeliveryNote(request: PdfDeliveryNoteRequest): Promise<ReportingPdfBaseResponse> {
2058
+ return await this.connector.previewDeliveryNote(request);
2059
+ }
2060
+
2061
+ public async previewHistoricDeliveryNote(request: PdfHistoricDeliveryNoteRequest): Promise<ReportingPdfBaseResponse> {
2062
+ return await this.connector.previewHistoricDeliveryNote(request);
2063
+ }
2064
+
2065
+ public async previewInvoice(request: PdfInvoiceRequest): Promise<ReportingPdfBaseResponse> {
2066
+ return await this.connector.previewInvoice(request);
2067
+ }
2068
+
2069
+ public async previewHistoricInvoice(request: PdfHistoricInvoiceRequest): Promise<ReportingPdfBaseResponse> {
2070
+ return await this.connector.previewHistoricInvoice(request);
2071
+ }
2072
+
2073
+ public async previewPurchaseOrder(request: PdfPurchaseOrderRequest): Promise<ReportingPdfBaseResponse> {
2074
+ return await this.connector.previewPurchaseOrder(request);
2075
+ }
2076
+
2077
+ public async previewHistoricPurchaseOrder(request: PdfHistoricPurchaseOrderRequest): Promise<ReportingPdfBaseResponse> {
2078
+ return await this.connector.previewHistoricPurchaseOrder(request);
2079
+ }
2080
+
2081
+ public async pdfHistoricOrderConfirmation(request: PdfHistoricDeliveryNoteRequest, localPrint: boolean = false): Promise<void | boolean> {
2082
+ return await this.connector.pdfHistoricOrderConfirmation(request, localPrint);
2083
+ }
2084
+
2085
+ public async printPurchaseOrder(request: PrintPurchaseOrderRequest): Promise<void> {
2086
+ const result: boolean = await this.connector.printPurchaseOrder(request);
2087
+ if (result) {
2088
+ await this.commitAndRefreshTransaction();
2089
+ }
2090
+ }
2091
+
2092
+ public async printHistoricPurchaseOrder(request: PrintHistoricPurchaseOrderRequest): Promise<void> {
2093
+ return await this.connector.printHistoricPurchaseOrder(request);
2094
+ }
2095
+
2096
+ public async emailPurchaseOrder(request: EmailPurchaseOrderRequest): Promise<void> {
2097
+ const result: boolean = await this.connector.emailPurchaseOrder(request);
2098
+ if (result) {
2099
+ await this.commitAndRefreshTransaction();
2100
+ }
2101
+ }
2102
+
2103
+ public async emailHistoricPurchaseOrder(request: EmailHistoricPurchaseOrderRequest): Promise<void> {
2104
+ return await this.connector.emailHistoricPurchaseOrder(request);
2105
+ }
2106
+
2107
+ public async pdfPurchaseOrder(request: PdfPurchaseOrderRequest, localPrint: boolean = false): Promise<void> {
2108
+ const result: boolean = await this.connector.pdfPurchaseOrder(request, localPrint);
2109
+ if (result) {
2110
+ await this.commitAndRefreshTransaction();
2111
+ }
2112
+ }
2113
+
2114
+ public async pdfHistoricPurchaseOrder(request: PdfHistoricPurchaseOrderRequest, localPrint: boolean = false): Promise<void | boolean> {
2115
+ return await this.connector.pdfHistoricPurchaseOrder(request, localPrint);
2116
+ }
2117
+
2118
+ public async generateWebServiceOrder(transactionId: number): Promise<boolean> {
2119
+ return await this.connector.generateWebServiceOrder(transactionId);
2120
+ }
2121
+
2122
+ public async canPurchaseOrderBeSendByWebservice(transactionId: number): Promise<boolean> {
2123
+ return await this.connector.canPurchaseOrderBeSendByWebservice(transactionId);
2124
+ }
2125
+
2126
+ public async getPurchaseOrderEmailLayouts(transactionUUID: string): Promise<ReportLayoutSelectionEmail[]> {
2127
+ return await this.connector.getPurchaseOrderEmailLayouts(transactionUUID);
2128
+ }
2129
+
2130
+ public async getPurchaseOrderPrintLayouts(transactionUUID: string): Promise<ReportLayoutSelectionPrint[]> {
2131
+ return await this.connector.getPurchaseOrderPrintLayouts(transactionUUID);
2132
+ }
2133
+
2134
+ public async getPurchaseOrderDefaultSendMethod(relationId: number): Promise<number> {
2135
+ return await this.connector.getPurchaseOrderDefaultSendMethod(relationId);
2136
+ }
2137
+
2138
+ public async isPrintIsDefaultSendMethodForPurchaseOrder(transactionId: number): Promise<boolean> {
2139
+ return await this.connector.isPrintIsDefaultSendMethodForPurchaseOrder(transactionId);
2140
+ }
2141
+
2142
+ public async generateAndSendPurchaseOrdersForSalesOrder(request: PrintPurchaseOrderForTransactionRequest, version: number, localPrint: boolean = false): Promise<Object | boolean> {
2143
+ const lockSuccess: boolean = await this.tryToLockTransaction(request.transId, version);
2144
+ if (lockSuccess) {
2145
+ this.transactionEventService.updatingSalesOrderGeneratePurchaseOrders.next(true);
2146
+ // get lineNumbers
2147
+ request.lineNumbers = this.currentTransaction.transactionLines.filter(l => l.selected).map(l => l.lineNr);
2148
+ let success: Object | boolean = await this.connector.generateAndSendPurchaseOrdersForSalesOrder(request, localPrint);
2149
+ let commitSuccess: boolean = await this.commit();
2150
+ if (commitSuccess) {
2151
+ await this.getTransactionById(request.transId);
2152
+ }
2153
+ this.transactionEventService.updatingSalesOrderGeneratePurchaseOrders.next(false);
2154
+
2155
+ if (success && commitSuccess) {
2156
+ return success;
2157
+ } else {
2158
+ return false;
2159
+ }
2160
+ }
2161
+ }
2162
+
2163
+ public async generateAndSendPurchaseOrdersForDirectSellSalesOrder(request: GeneratePurchaseOrdersForDirectSellSalesOrdersRequest, version: number): Promise<boolean> {
2164
+ const lockSuccess: boolean = await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, version);
2165
+ if (lockSuccess) {
2166
+ let success: boolean = await this.connector.generateAndSendPurchaseOrdersForDirectSellSalesOrder(request);
2167
+ if (success) {
2168
+ success = await this.commit();
2169
+ if (success) {
2170
+ await this.getTransactionById(request.transId);
2171
+ }
2172
+ }
2173
+ return success;
2174
+ }
2175
+ }
2176
+
2177
+ public async generateAndSendPurchaseOrdersForInterBranchOrder(request: PrintPurchaseOrderForTransactionRequest, version: number, localPrint: boolean = false): Promise<Object | boolean> {
2178
+ const lockSuccess: boolean = await this.tryToLockTransaction(request.transId, version);
2179
+ if (lockSuccess) {
2180
+ this.transactionEventService.updatingSalesOrderGeneratePurchaseOrders.next(true);
2181
+ // get lineNumbers
2182
+ request.lineNumbers = this.currentTransaction.transactionLines.filter(l => l.selected).map(l => l.lineNr);
2183
+ let success: Object | boolean = await this.connector.generateAndSendPurchaseOrdersForInterBranchOrder(request, localPrint);
2184
+ let commitSuccess: boolean = await this.commit();
2185
+ if (commitSuccess) {
2186
+ await this.getTransactionById(request.transId);
2187
+ }
2188
+ this.transactionEventService.updatingSalesOrderGeneratePurchaseOrders.next(false);
2189
+
2190
+ if (success && commitSuccess) {
2191
+ return success;
2192
+ } else {
2193
+ return false;
2194
+ }
2195
+ }
2196
+ }
2197
+
2198
+ public async getPurchaseAdviceLines(filters: PurchaseAdviceFilters, goodId?: number, showLoader?: boolean): Promise<PurchaseAdviceLine[]> {
2199
+ return await this.connector.getPurchaseAdviceLines(filters, goodId, showLoader);
2200
+ }
2201
+
2202
+ public async getStockReplenishment(filters: InterBranchFilters, goodId: number, amount: number, showLoader?: boolean): Promise<StockReplenishment[]> {
2203
+ return await this.connector.getStockReplenishment(filters, goodId, amount, showLoader);
2204
+ }
2205
+
2206
+ public async generateAndSendPurchaseOrders(purchaseAdviceLines: GenerateAndSendPurchaseOrdersRequest): Promise<boolean> {
2207
+ return await this.connector.generateAndSendPurchaseOrders(purchaseAdviceLines);
2208
+ }
2209
+
2210
+ public async emailDeliveryNote(emailDeliveryNoteRequest: EmailDeliveryNoteRequest): Promise<CoDocument | boolean> {
2211
+ this.transactionEventService.updatingSalesOrderDelivery.next(true);
2212
+ let result: CoDocument | boolean = await this.connector.emailDeliveryNote(emailDeliveryNoteRequest);
2213
+ if (result && !(result instanceof CoDocument)) {
2214
+ await this.commitAndRefreshTransaction();
2215
+ }
2216
+ this.transactionEventService.updatingSalesOrderDelivery.next(false);
2217
+ return result;
2218
+ }
2219
+
2220
+ public async emailHistoricDeliveryNote(emailHistoricDeliveryNoteRequest: EmailHistoricDeliveryNoteRequest): Promise<boolean> {
2221
+ let success: boolean = await this.connector.emailHistoricDeliveryNote(emailHistoricDeliveryNoteRequest);
2222
+ if (success) {
2223
+ success = await this.commit();
2224
+ await this.getTransactionById(this.currentTransaction.transactionInfo.id);
2225
+ }
2226
+ return success;
2227
+ }
2228
+
2229
+ public async pdfDeliveryNote(pdfDeliveryNoteRequest: PdfDeliveryNoteRequest, localPrint: boolean = false): Promise<boolean> {
2230
+ this.transactionEventService.updatingSalesOrderDelivery.next(true);
2231
+ let success: boolean = await this.connector.pdfDeliveryNote(pdfDeliveryNoteRequest, localPrint);
2232
+ if (success) {
2233
+ success = await this.commit();
2234
+ await this.getTransactionById(this.currentTransaction.transactionInfo.id);
2235
+ }
2236
+ this.transactionEventService.updatingSalesOrderDelivery.next(false);
2237
+ return success;
2238
+ }
2239
+
2240
+ public async pdfHistoricDeliveryNote(pdfHistoricDeliveryNoteRequest: PdfHistoricDeliveryNoteRequest, localPrint: boolean = false): Promise<boolean> {
2241
+ let success: boolean = await this.connector.pdfHistoricDeliveryNote(pdfHistoricDeliveryNoteRequest, localPrint);
2242
+ if (success) {
2243
+ success = await this.commit();
2244
+ await this.getTransactionById(this.currentTransaction.transactionInfo.id);
2245
+ }
2246
+ return success;
2247
+ }
2248
+
2249
+ public async printDeliveryNote(printDeliveryNoteRequest: PrintDeliveryNoteRequest): Promise<CoDocument | boolean> {
2250
+ this.transactionEventService.updatingSalesOrderDelivery.next(true);
2251
+ let result: CoDocument | boolean = await this.connector.printDeliveryNote(printDeliveryNoteRequest);
2252
+ if (result && !(result instanceof CoDocument)) {
2253
+ await this.commitAndRefreshTransaction();
2254
+ }
2255
+ this.transactionEventService.updatingSalesOrderDelivery.next(false);
2256
+ return result;
2257
+ }
2258
+
2259
+ public async printDeliveryNotes(printDeliveryNotesRequest: PrintDeliveryNotesRequest): Promise<CoDocument | boolean> {
2260
+ this.transactionEventService.updatingSalesOrderDelivery.next(true);
2261
+ let result: CoDocument | boolean = await this.connector.printDeliveryNotes(printDeliveryNotesRequest);
2262
+ this.transactionEventService.updatingSalesOrderDelivery.next(false);
2263
+ return result;
2264
+ }
2265
+
2266
+ public async printHistoricDeliveryNote(printHistoricDeliveryNoteRequest: PrintHistoricDeliveryNoteRequest): Promise<boolean> {
2267
+ let success: boolean = await this.connector.printHistoricDeliveryNote(printHistoricDeliveryNoteRequest);
2268
+ if (success) {
2269
+ success = await this.commit();
2270
+ await this.getTransactionById(this.currentTransaction.transactionInfo.id);
2271
+ }
2272
+ return success;
2273
+ }
2274
+
2275
+ public async getDeliveryNoteDefaultSendMethod(relationId: number): Promise<number> {
2276
+ return await this.connector.getDeliveryNoteDefaultSendMethod(relationId);
2277
+ }
2278
+
2279
+ public async getDeliveryNoteEmailLayouts(transactionUUID: string): Promise<ReportLayoutSelectionEmail[]> {
2280
+ return await this.connector.getDeliveryNoteEmailLayouts(transactionUUID);
2281
+ }
2282
+
2283
+ public async getDeliveryNotePrintLayouts(transactionUUID: string): Promise<ReportLayoutSelectionPrint[]> {
2284
+ return await this.connector.getDeliveryNotePrintLayouts(transactionUUID);
2285
+ }
2286
+
2287
+ public async getDefaultEmailAddressListForInvoice(transactionUUID): Promise<string[]> {
2288
+ return await this.connector.getDefaultEmailAddressListForInvoice(transactionUUID);
2289
+ }
2290
+
2291
+ public async emailInvoice(emailInvoiceRequest: EmailInvoiceRequest): Promise<CoDocument | boolean> {
2292
+ this.transactionEventService.updatingInvoice.next(true);
2293
+ let result: CoDocument | boolean = await this.connector.emailInvoice(emailInvoiceRequest);
2294
+ if (result && !(result instanceof CoDocument)) {
2295
+ await this.commitAndRefreshTransaction();
2296
+ }
2297
+ this.transactionEventService.updatingInvoice.next(false);
2298
+ return result;
2299
+ }
2300
+
2301
+ public async emailHistoricInvoice(emailHistoricInvoiceRequest: EmailHistoricInvoiceRequest): Promise<boolean> {
2302
+ let success: boolean = await this.connector.emailHistoricInvoice(emailHistoricInvoiceRequest);
2303
+ if (success) {
2304
+ success = await this.commit();
2305
+ await this.getTransactionById(this.currentTransaction.transactionInfo.id);
2306
+ }
2307
+ return success;
2308
+ }
2309
+
2310
+ public async pdfInvoice(pdfInvoiceRequest: PdfInvoiceRequest, localPrint: boolean = false): Promise<boolean> {
2311
+ this.transactionEventService.updatingInvoice.next(true);
2312
+ let success: boolean = await this.connector.pdfInvoice(pdfInvoiceRequest, localPrint);
2313
+ if (success) {
2314
+ success = await this.commit();
2315
+ await this.getTransactionById(this.currentTransaction.transactionInfo.id);
2316
+ }
2317
+ this.transactionEventService.updatingInvoice.next(false);
2318
+ return success;
2319
+ }
2320
+
2321
+ public async pdfHistoricInvoice(pdfHistoricInvoiceRequest: PdfHistoricInvoiceRequest, localPrint: boolean = false): Promise<boolean> {
2322
+ let success: boolean = await this.connector.pdfHistoricInvoice(pdfHistoricInvoiceRequest, localPrint);
2323
+ if (success) {
2324
+ success = await this.commit();
2325
+ await this.getTransactionById(this.currentTransaction.transactionInfo.id);
2326
+ }
2327
+ return success;
2328
+ }
2329
+
2330
+ public async printInvoice(printInvoiceRequest: PrintInvoiceRequest): Promise<CoDocument | boolean> {
2331
+ this.transactionEventService.updatingInvoice.next(true);
2332
+ let result: CoDocument | boolean = await this.connector.printInvoice(printInvoiceRequest);
2333
+ if (result && !(result instanceof CoDocument)) {
2334
+ await this.commitAndRefreshTransaction();
2335
+ }
2336
+ this.transactionEventService.updatingInvoice.next(false);
2337
+ return result;
2338
+ }
2339
+
2340
+ public async printHistoricInvoice(printHistoricInvoiceRequest: PrintHistoricInvoiceRequest): Promise<boolean> {
2341
+ let success: boolean = await this.connector.printHistoricInvoice(printHistoricInvoiceRequest);
2342
+ if (success) {
2343
+ success = await this.commit();
2344
+ await this.getTransactionById(this.currentTransaction.transactionInfo.id);
2345
+ }
2346
+ return success;
2347
+ }
2348
+
2349
+ public async getInvoiceDefaultSendMethod(relationId: number): Promise<number> {
2350
+ return await this.connector.getInvoiceDefaultSendMethod(relationId);
2351
+ }
2352
+
2353
+ public async getDropshipmentInfosByRelationId(relationId: number): Promise<DropshipmentInfo[]> {
2354
+ return await this.connector.getDropshipmentInfosByRelationId(relationId);
2355
+ }
2356
+
2357
+ public async insertNewDropshipmentInfo(request: DropshipmentInfo): Promise<void> {
2358
+ return await this.connector.insertNewDropshipmentInfo(request);
2359
+ }
2360
+
2361
+ public async changeHeaderDropshipmentInfo(request: ChangeHeaderDropshipmentInfoRequest): Promise<TransactionInfoResponse> {
2362
+ return await this.connector.changeHeaderDropshipmentInfo(request);
2363
+ }
2364
+
2365
+ public async pdfPosReceipt(pdfPosReceiptRequest: PdfPosReceiptRequest, localPrint: boolean = false): Promise<boolean> {
2366
+ return await this.connector.pdfPosReceipt(pdfPosReceiptRequest, localPrint);
2367
+ }
2368
+
2369
+ public async pdfHistoricPosReceipt(pdfHistoricPosReceiptRequest: PdfHistoricPosReceiptRequest, localPrint: boolean = false): Promise<boolean> {
2370
+ return await this.connector.pdfHistoricPosReceipt(pdfHistoricPosReceiptRequest, localPrint);
2371
+ }
2372
+
2373
+ public async printPosReceipt(printPosReceiptRequest: PrintPosReceiptRequest): Promise<boolean> {
2374
+ return await this.connector.printPosReceipt(printPosReceiptRequest);
2375
+ }
2376
+
2377
+ public async printHistoricPosReceipt(printHistoricPosReceiptRequest: PrintHistoricPosReceiptRequest): Promise<boolean> {
2378
+ return await this.connector.printHistoricPosReceipt(printHistoricPosReceiptRequest);
2379
+ }
2380
+
2381
+ public async emailPosReceipt(emailPosReceiptRequest: EmailPosReceiptRequest): Promise<boolean> {
2382
+ return await this.connector.emailPosReceipt(emailPosReceiptRequest);
2383
+ }
2384
+
2385
+ public async emailHistoricPosReceipt(emailHistoricPosReceiptRequest: EmailHistoricPosReceiptRequest): Promise<boolean> {
2386
+ return await this.connector.emailHistoricPosReceipt(emailHistoricPosReceiptRequest);
2387
+ }
2388
+
2389
+ public async getPosReceiptEmailLayouts(transactionUUID: string): Promise<ReportLayoutSelectionEmail[]> {
2390
+ return await this.connector.getPosReceiptEmailLayouts(transactionUUID);
2391
+ }
2392
+
2393
+ public async getPosReceiptPrintLayouts(transactionUUID: string): Promise<ReportLayoutSelectionPrint[]> {
2394
+ return await this.connector.getPosReceiptPrintLayouts(transactionUUID);
2395
+ }
2396
+
2397
+ public async getDefaultEmailAddressListForPosReceipt(transactionUUID: string): Promise<string[]> {
2398
+ return await this.connector.getDefaultEmailAddressListForPosReceipt(transactionUUID);
2399
+ }
2400
+
2401
+ public async getInvoiceEmailLayouts(transactionUUID: string): Promise<ReportLayoutSelectionEmail[]> {
2402
+ return await this.connector.getInvoiceEmailLayouts(transactionUUID);
2403
+ }
2404
+
2405
+ public async getInvoicePrintLayouts(transactionUUID: string): Promise<ReportLayoutSelectionPrint[]> {
2406
+ return await this.connector.getInvoicePrintLayouts(transactionUUID);
2407
+ }
2408
+
2409
+ public async getQuotationDefaultSendMethod(relationId: number): Promise<number> {
2410
+ return await this.connector.getQuotationDefaultSendMethod(relationId);
2411
+ }
2412
+
2413
+ public async emailQuotation(emailQuotationRequest: EmailQuotationRequest): Promise<CoDocument | boolean> {
2414
+ this.transactionEventService.updatingSalesOrderQuotation.next(true);
2415
+ let result: CoDocument | boolean = await this.connector.emailQuotation(emailQuotationRequest);
2416
+ if (result && !(result instanceof CoDocument)) {
2417
+ await this.commitAndRefreshTransaction();
2418
+ }
2419
+ this.transactionEventService.updatingSalesOrderQuotation.next(false);
2420
+ return result;
2421
+ }
2422
+
2423
+ public async emailHistoricQuotation(emailHistoricQuotationRequest: EmailHistoricQuotationRequest): Promise<boolean> {
2424
+ let success: boolean = await this.connector.emailHistoricQuotation(emailHistoricQuotationRequest);
2425
+ if (success) {
2426
+ success = await this.commit();
2427
+ await this.getTransactionById(this.currentTransaction.transactionInfo.id);
2428
+ }
2429
+ return success;
2430
+ }
2431
+
2432
+ public async pdfQuotation(pdfQuotationRequest: PdfQuotationRequest, localPrint: boolean = false): Promise<boolean> {
2433
+ this.transactionEventService.updatingSalesOrderQuotation.next(true);
2434
+ let success: boolean = await this.connector.pdfQuotation(pdfQuotationRequest, localPrint);
2435
+ if (success) {
2436
+ success = await this.commit();
2437
+ await this.getTransactionById(this.currentTransaction.transactionInfo.id);
2438
+ }
2439
+ this.transactionEventService.updatingSalesOrderQuotation.next(false);
2440
+ return success;
2441
+ }
2442
+
2443
+ public async pdfHistoricQuotation(pdfHistoricQuotationRequest: PdfHistoricQuotationRequest, localPrint: boolean = false): Promise<boolean> {
2444
+ let success: boolean = await this.connector.pdfHistoricQuotation(pdfHistoricQuotationRequest, localPrint);
2445
+ if (success) {
2446
+ success = await this.commit();
2447
+ await this.getTransactionById(this.currentTransaction.transactionInfo.id);
2448
+ }
2449
+ return success;
2450
+ }
2451
+
2452
+ public async printQuotation(printQuotationRequest: PrintQuotationRequest): Promise<CoDocument | boolean> {
2453
+ this.transactionEventService.updatingSalesOrderQuotation.next(true);
2454
+ let result: CoDocument | boolean = await this.connector.printQuotation(printQuotationRequest);
2455
+ if (result && !(result instanceof CoDocument)) {
2456
+ await this.commitAndRefreshTransaction();
2457
+ }
2458
+ this.transactionEventService.updatingSalesOrderQuotation.next(false);
2459
+ return result;
2460
+ }
2461
+
2462
+ public async printHistoricQuotation(printHistoricQuotationRequest: PrintHistoricQuotationRequest): Promise<boolean> {
2463
+ let success: boolean = await this.connector.printHistoricQuotation(printHistoricQuotationRequest);
2464
+ if (success) {
2465
+ success = await this.commit();
2466
+ await this.getTransactionById(this.currentTransaction.transactionInfo.id);
2467
+ }
2468
+ return success;
2469
+ }
2470
+
2471
+ public async getQuotationEmailLayouts(transactionUUID: string): Promise<ReportLayoutSelectionEmail[]> {
2472
+ return await this.connector.getQuotationEmailLayouts(transactionUUID);
2473
+ }
2474
+
2475
+ public async getQuotationPrintLayouts(transactionUUID: string): Promise<ReportLayoutSelectionPrint[]> {
2476
+ return await this.connector.getQuotationPrintLayouts(transactionUUID);
2477
+ }
2478
+
2479
+ public async getDefaultEmailAddressListForQuotation(transactionUUID: string): Promise<string[]> {
2480
+ return await this.connector.getDefaultEmailAddressListForQuotation(transactionUUID);
2481
+ }
2482
+
2483
+ public async getPackageStickerPrintLayouts(): Promise<ReportLayoutSelectionPrint[]> {
2484
+ return await this.connector.getPackageStickerPrintLayouts();
2485
+ }
2486
+
2487
+ public async getReservationStickerPrintLayouts(): Promise<ReportLayoutSelectionPrint[]> {
2488
+ return await this.connector.getReservationStickerPrintLayouts();
2489
+ }
2490
+
2491
+ public async getOrderingStickerPrintLayouts(): Promise<ReportLayoutSelectionPrint[]> {
2492
+ return await this.connector.getOrderingStickerPrintLayouts();
2493
+ }
2494
+
2495
+ public async getDocsToSignForTrans(request: GetDocsToSignForTransRequest): Promise<ReportListObject[]> {
2496
+ return await this.connector.getDocsToSignForTrans(request);
2497
+ }
2498
+
2499
+ public async getPrinters(): Promise<Printer[]> {
2500
+ return await this.connector.getPrinters();
2501
+ }
2502
+
2503
+ public async getDefaultPrinter(reportId: number, type: string): Promise<string> {
2504
+ return await this.connector.getDefaultPrinter(reportId, type);
2505
+ }
2506
+
2507
+ public async getPrinterCopiesAmount(reportId: number, type: string, printerName: string): Promise<string> {
2508
+ return await this.connector.getPrinterCopiesAmount(reportId, type, printerName);
2509
+ }
2510
+
2511
+ public async getPackageInformation(transactionUUID: string, lineUUID: string): Promise<PackageLSP[]> {
2512
+ return this.connector.getPackageInformation(transactionUUID, lineUUID);
2513
+ }
2514
+
2515
+ public async getCashTypes(type: string): Promise<CashType[]> {
2516
+ return await this.connector.getCashTypes(type);
2517
+ }
2518
+
2519
+ public async getPosGroups(): Promise<PosGroup[]> {
2520
+ return await this.connector.getPosGroups();
2521
+ }
2522
+
2523
+ public async getCurrencies(active: boolean = true): Promise<Currency[]> {
2524
+ return await this.connector.getCurrencies(active);
2525
+ }
2526
+
2527
+ public async getProjectCodes(date: Date): Promise<ProjectCode[]> {
2528
+ return await this.connector.getProjectCodes(date);
2529
+ }
2530
+
2531
+ public async getAllProjectCodes(): Promise<ProjectCode[]> {
2532
+ return await this.connector.getAllProjectCodes();
2533
+ }
2534
+
2535
+ public async addProjectCode(projectCode: ProjectCode): Promise<ProjectCode> {
2536
+ return await this.connector.addProjectCode(projectCode);
2537
+ }
2538
+
2539
+ public async getPaymentConditions(name?: string): Promise<PaymentCondition[]> {
2540
+ return await this.connector.getPaymentConditions(name);
2541
+ }
2542
+
2543
+ public async getOrderLineSetCategories(): Promise<OrderLineSetCategory[]> {
2544
+ return await this.connector.getOrderLineSetCategories();
2545
+ }
2546
+
2547
+ public async getServiceWizard(): Promise<ServiceWizard> {
2548
+ return await this.connector.getServiceWizard();
2549
+ }
2550
+
2551
+ public async upsertServiceWizard(request: ServiceWizard): Promise<void> {
2552
+ return await this.connector.upsertServiceWizard(request);
2553
+ }
2554
+
2555
+ public async getServiceTypes(): Promise<ServiceType[]> {
2556
+ return await this.connector.getServiceTypes();
2557
+ }
2558
+
2559
+ public async addOrderLineSet(request: TransactionAddOrderLineSetTextLineRequest): Promise<boolean> {
2560
+ const lockSuccess: boolean =
2561
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
2562
+ if (lockSuccess) {
2563
+ const response: TransactionInfoResponse = await this.connector.addOrderLineSet(request);
2564
+ this.transactionDirty = true;
2565
+ return this.handleLineOperationStatuses(response);
2566
+ } else {
2567
+ return false;
2568
+ }
2569
+ }
2570
+
2571
+ public async updateOrderLineSet(request: OrderLineSetDTO): Promise<boolean> {
2572
+ const lockSuccess: boolean =
2573
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
2574
+ if (lockSuccess) {
2575
+ const response: TransactionInfoResponse = await this.connector.updateOrderLineSet(request);
2576
+ this.transactionDirty = true;
2577
+ return this.handleLineOperationStatuses(response);
2578
+ } else {
2579
+ return false;
2580
+ }
2581
+ }
2582
+
2583
+ public async changeTransactionLineOrderLineSet(uuid: string, lineUuid: string, code: string): Promise<boolean> {
2584
+ const lockSuccess: boolean =
2585
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
2586
+ if (lockSuccess) {
2587
+ const response: TransactionInfoResponse | boolean = await this.connector.changeTransactionLineOrderLineSet(uuid, lineUuid, code);
2588
+ if (response) {
2589
+ this.transactionDirty = true;
2590
+ return this.handleLineOperationStatuses(response);
2591
+ }
2592
+ return false;
2593
+ }
2594
+ }
2595
+
2596
+ public async getJoinedTags(table: string, key: string): Promise<TagTreeItem[]> {
2597
+ return await this.connector.getJoinedTags(table, key);
2598
+ }
2599
+
2600
+ public async mergeJoinedTags(table: string, key: string, tags: TagTreeItem[]): Promise<boolean> {
2601
+ return await this.connector.mergeJoinedTags(table, key, tags);
2602
+ }
2603
+
2604
+ public async getTagsFullTree(category: TagCategory, includeTags: boolean): Promise<TagTreeItem[]> {
2605
+ return await this.connector.getTagsFullTree(category, includeTags);
2606
+ }
2607
+
2608
+ public async getInternalDefault(param: InternalDefault): Promise<string> {
2609
+ return await this.connector.getInternalDefaultValue(param);
2610
+ }
2611
+
2612
+ public async getObjectConfiguration(screenCfgModule: string, params?: string | string[], insertMode?: boolean): Promise<ObjectConfiguration[]> {
2613
+ return await this.connector.getObjectConfiguration(screenCfgModule, params, insertMode);
2614
+ }
2615
+
2616
+ public async getHistoricDocuments(transId: number, documentCode: LayoutCode, headerOnly: boolean = true): Promise<HistoricReport[]> {
2617
+ return await this.connector.getHistoricDocuments(transId, documentCode, headerOnly);
2618
+ }
2619
+
2620
+ public async getReportHeadersByTransIdAndLayoutCode(transId: number, documentCode: LayoutCode): Promise<HistoricReport[]> {
2621
+ return await this.connector.getReportHeadersByTransIdAndLayoutCode(transId, documentCode);
2622
+ }
2623
+
2624
+ public async undoDeliveryByReportId(reportId: number): Promise<DataServiceResponseData> {
2625
+ return await this.connector.undoDeliveryByReportId(reportId);
2626
+ }
2627
+
2628
+ public async getDefaultEmailAddressListForPurchaseOrder(uuid: string): Promise<string[]> {
2629
+ return await this.connector.getDefaultEmailAddressListForPurchaseOrder(uuid);
2630
+ }
2631
+
2632
+ public createReceiveOrderRequest(date: Date, packingSlipNr: string): ReceiveGoodsForOrderRequest {
2633
+ const selectedLines: TransactionLineInfo[] = this.currentTransaction.transactionLines.filter((line) => line.selected);
2634
+ if (selectedLines.length > 0) {
2635
+ const receivedGoodsRequest: ReceiveGoodsForOrderRequest = new ReceiveGoodsForOrderRequest();
2636
+ receivedGoodsRequest.transId = this.currentTransaction.transactionInfo.id;
2637
+ receivedGoodsRequest.receivedDate = date;
2638
+ receivedGoodsRequest.packingSlipNr = packingSlipNr;
2639
+ receivedGoodsRequest.orderLineReceiptDetailsDTOS = [];
2640
+ selectedLines.forEach((line) => {
2641
+ const detail: PurchaseOrderLineReceiptDetails = new PurchaseOrderLineReceiptDetails();
2642
+ detail.lineNr = line.lineNr;
2643
+ detail.quantityToReceive = line.articleLineStatus.quantityToReceive;
2644
+ detail.warehouseNr = line.warehouseNumber;
2645
+ detail.locationNr = line.locationNr;
2646
+ detail.batchNr = line.batchNr;
2647
+ detail.numberOfColli = line.chosenPackageAmount;
2648
+ detail.quantityOfStickersPerColli = line.quantityOfStickersPerColli;
2649
+ detail.printerName = line.printerName;
2650
+ detail.reportId = line.reportId;
2651
+ receivedGoodsRequest.orderLineReceiptDetailsDTOS.push(detail);
2652
+ });
2653
+ return receivedGoodsRequest;
2654
+ } else {
2655
+ this.dialogService.showError('SELECTED_LINES_NOT_FOUND', true);
2656
+ return null;
2657
+ }
2658
+ }
2659
+
2660
+ public createReceiveInterbranchOrderRequest(date: Date, packingSlipNr: string): ReceiveGoodsForOrderRequest {
2661
+ const selectedLines: TransactionLineInfo[] = this.currentTransaction.transactionLines.filter((line) => line.selected);
2662
+ if (selectedLines.length > 0) {
2663
+ const receivedGoodsRequest: ReceiveGoodsForOrderRequest = new ReceiveGoodsForOrderRequest();
2664
+ receivedGoodsRequest.transId = this.currentTransaction.transactionInfo.id;
2665
+ receivedGoodsRequest.receivedDate = date;
2666
+ receivedGoodsRequest.packingSlipNr = packingSlipNr;
2667
+ receivedGoodsRequest.orderLineReceiptDetailsDTOS = [];
2668
+ selectedLines.forEach((line) => {
2669
+ const detail: PurchaseOrderLineReceiptDetails = new PurchaseOrderLineReceiptDetails();
2670
+ detail.lineNr = line.lineNr;
2671
+ detail.quantityToReceive = line.articleLineStatus.quantityToReceive;
2672
+ detail.warehouseNr = this.currentTransaction.transactionInfo.targetWarehouseNumber;
2673
+ detail.locationNr = line.locationNr;
2674
+ detail.batchNr = line.batchNr;
2675
+ detail.numberOfColli = line.chosenPackageAmount;
2676
+ detail.printerName = line.printerName;
2677
+ detail.reportId = line.reportId;
2678
+ receivedGoodsRequest.orderLineReceiptDetailsDTOS.push(detail);
2679
+ });
2680
+ return receivedGoodsRequest;
2681
+ } else {
2682
+ this.dialogService.showError('SELECTED_LINES_NOT_FOUND', true);
2683
+ return null;
2684
+ }
2685
+ }
2686
+
2687
+ public async handleReceiveSelectedPurchaseOrders(date: Date, packingSlipNr: string): Promise<boolean> {
2688
+ const selectedLines: TransactionLineInfo[] = this.currentTransaction.transactionLines.filter((line) => line.selected);
2689
+ if (selectedLines.length > 0) {
2690
+ const receivedGoodsRequest: ReceiveGoodsForOrderRequest = new ReceiveGoodsForOrderRequest();
2691
+ receivedGoodsRequest.transId = this.currentTransaction.transactionInfo.id;
2692
+ receivedGoodsRequest.receivedDate = date;
2693
+ receivedGoodsRequest.packingSlipNr = packingSlipNr;
2694
+ //receivedGoodsRequest.printerName = this.currentTransaction.transactionInfo.printerName;
2695
+ //receivedGoodsRequest.reportId = this.currentTransaction.transactionInfo.reportId;
2696
+ //receivedGoodsRequest.saveDefaultPrinterForAllUsers = this.currentTransaction.transactionInfo.saveDefaultPrinterForAllUsers;
2697
+ //receivedGoodsRequest.saveDefaultPrinterForUser = this.currentTransaction.transactionInfo.saveDefaultPrinterForUser;
2698
+ receivedGoodsRequest.orderLineReceiptDetailsDTOS = [];
2699
+ selectedLines.forEach((line) => {
2700
+ const detail: PurchaseOrderLineReceiptDetails = new PurchaseOrderLineReceiptDetails();
2701
+ detail.lineNr = line.lineNr;
2702
+ detail.quantityToReceive = line.articleLineStatus.quantityToReceive;
2703
+ detail.warehouseNr = line.warehouseNumber;
2704
+ detail.locationNr = line.locationNr;
2705
+ detail.batchNr = line.batchNr;
2706
+ detail.numberOfColli = line.chosenPackageAmount;
2707
+ //detail.numberOfStickers = line.stickerAmount;
2708
+ detail.printerName = line.printerName;
2709
+ detail.reportId = line.reportId;
2710
+ receivedGoodsRequest.orderLineReceiptDetailsDTOS.push(detail);
2711
+ });
2712
+ return this.receiveGoodsForPurchaseOrder(
2713
+ this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version, receivedGoodsRequest);
2714
+ }
2715
+ return false;
2716
+ }
2717
+
2718
+ public async handleAllocateSelectedPurchaseOrders(): Promise<boolean> {
2719
+ const selectedLines: TransactionLineInfo[] = this.currentTransaction.transactionLines.filter((line) => line.selected);
2720
+ if (selectedLines.length > 0) {
2721
+ const allocateGoodsRequest: AllocateGoodsForSalesOrderRequest = new AllocateGoodsForSalesOrderRequest();
2722
+ allocateGoodsRequest.transId = this.currentTransaction.transactionInfo.id;
2723
+ allocateGoodsRequest.salesOrderLineAllocationDetailsDTOS = [];
2724
+ selectedLines.forEach((line) => {
2725
+ const detail: SalesOrderLineAllocationDetails = new SalesOrderLineAllocationDetails();
2726
+ detail.lineNr = line.lineNr;
2727
+ detail.quantityToAllocate = line.quantityToAllocate;
2728
+ detail.warehouseNr = line.warehouseNumber;
2729
+ detail.locationNr = line.locationNr;
2730
+ allocateGoodsRequest.salesOrderLineAllocationDetailsDTOS.push(detail);
2731
+ });
2732
+ return this.allocateGoodsForSalesOrder(
2733
+ this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version, allocateGoodsRequest);
2734
+ }
2735
+ return false;
2736
+ }
2737
+
2738
+ public async handleSetSelectedLinesToBePicked(pickingDate: Date): Promise<void> {
2739
+ const selectedLines: TransactionLineInfo[] = this.currentTransaction.transactionLines.filter((line) => line.selected && line.quantityToBePicked > 0);
2740
+ if (selectedLines.length > 0) {
2741
+ const goodsToBePickedRequest: GoodsToBePickedForOrderRequest = new GoodsToBePickedForOrderRequest();
2742
+ goodsToBePickedRequest.transId = this.currentTransaction.transactionInfo.id;
2743
+ goodsToBePickedRequest.toBePickedDate = pickingDate;
2744
+ goodsToBePickedRequest.lines = [];
2745
+ selectedLines.forEach((line) => {
2746
+ const detail: GoodsToBePickedForOrderRequestLine = new GoodsToBePickedForOrderRequestLine();
2747
+ detail.lineNr = line.lineNr;
2748
+ detail.quantity = line.quantityToBePicked;
2749
+ goodsToBePickedRequest.lines.push(detail);
2750
+ });
2751
+ this.setGoodsToBePickedForSalesOrder(
2752
+ this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version, goodsToBePickedRequest);
2753
+ }
2754
+ }
2755
+
2756
+ public async handleSetSelectedLinesToPick(): Promise<void> {
2757
+ const selectedLines: TransactionLineInfo[] = this.currentTransaction.transactionLines.filter((line) => line.selected && line.quantityPicked > 0);
2758
+ if (selectedLines.length > 0) {
2759
+ const goodsPickedRequest: GoodsPickedRequest = new GoodsPickedRequest();
2760
+ goodsPickedRequest.transId = this.currentTransaction.transactionInfo.id;
2761
+ goodsPickedRequest.lines = [];
2762
+ selectedLines.forEach((line) => {
2763
+ const detail: GoodsPickedRequestLine = new GoodsPickedRequestLine();
2764
+ detail.lineNr = line.lineNr;
2765
+ detail.quantity = line.quantityPicked;
2766
+ goodsPickedRequest.lines.push(detail);
2767
+ });
2768
+ this.setGoodsPickedForOrder(
2769
+ this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version, goodsPickedRequest);
2770
+ }
2771
+ }
2772
+
2773
+ public getPurchaseOrderForTransactionLine(transId: number, lineNr: number): Promise<TransactionInfoHistory[]> {
2774
+ return this.getTransactionInfo(transId, lineNr);
2775
+ }
2776
+
2777
+ public async commitAndRefreshTransaction(): Promise<void> {
2778
+ await this.commit();
2779
+ await this.getTransactionById(this.currentTransaction.transactionInfo.id);
2780
+ }
2781
+
2782
+ public async checkBranch(): Promise<void> {
2783
+ // Be able to create purchase orders for other branches
2784
+ if (this.currentBranch && this.transactionKind !== TransactionKind.PurchaseOrder) {
2785
+ return;
2786
+ }
2787
+ const response: DialogResponseInterface = await this.dialogService.showBranch();
2788
+ if (response.button !== AppPopupButtonType.Cancel) {
2789
+ this.currentBranch = response.output ? response.output.toString() : undefined;
2790
+ }
2791
+ }
2792
+
2793
+ public async getTransactionMarginInfo(transactionUUID: string): Promise<TransactionMarginInfo> {
2794
+ return await this.connector.getTransactionMarginInfo(transactionUUID);
2795
+ }
2796
+
2797
+ public async printSalesOrdersOverview(request: TransactionSearchViewRequest): Promise<PdfTransactionSearchOverviewResponse> {
2798
+ return this.connector.printSalesOrdersOverview(request);
2799
+ }
2800
+
2801
+ public async loadDocumentsOfTransaction(key: string): Promise<CoDocument[]> {
2802
+ return this.connector.loadDocumentsOfTransaction(key);
2803
+ }
2804
+
2805
+ public async loadDocumentContent(docId: number, thumbnail: boolean = true): Promise<string> {
2806
+ return this.connector.loadDocumentContent(docId, thumbnail);
2807
+ }
2808
+
2809
+ public async mergeDocumentOnTransaction(key: string, document: CoDocument): Promise<CoDocument> {
2810
+ return this.connector.mergeDocumentOnTransaction(key, document);
2811
+ }
2812
+
2813
+ public async deleteDocument(documentId: number): Promise<ValidationResult> {
2814
+ return this.connector.deleteDocument(documentId);
2815
+ }
2816
+
2817
+ /* public lockDocument(documentId: number): Promise<boolean> {
2818
+ return this.connector.lockDocument(CoDocument, documentId);
2819
+ }*/
2820
+
2821
+ public async getOrderLinesPlanned(request: OrderLinesPlannedRequest): Promise<PlanOrderLine[]> {
2822
+ return this.connector.getOrderLinesPlanned(request);
2823
+ }
2824
+
2825
+ public async getPlanOrder(transId: number): Promise<PlanOrder> {
2826
+ return await this.connector.getPlanOrder(transId);
2827
+ }
2828
+
2829
+ public async getDistricts(): Promise<District[]> {
2830
+ return await this.connector.getDistricts();
2831
+ }
2832
+
2833
+ public async insertActivity(activity: Activity): Promise<ValidationResult> {
2834
+ return await this.connector.insertActivity(activity);
2835
+ }
2836
+
2837
+ public async updateActivity(activity: Activity): Promise<boolean> {
2838
+ return await this.connector.updateActivity(activity);
2839
+ }
2840
+
2841
+ public async deleteActivity(activity: Activity): Promise<boolean> {
2842
+ return await this.connector.deleteActivity(activity);
2843
+ }
2844
+
2845
+ public async getActivitiesForTransaction(transactionId: number): Promise<Activity[]> {
2846
+ const activeActivities: Activity[] = await this.connector.getComponentActivitiesWithoutRelationFiltering(transactionId);
2847
+ const historicActivities: Activity[] = await this.connector.getHistoricActivities(transactionId);
2848
+ if (activeActivities && activeActivities.length !== 0 && historicActivities && historicActivities.length !== 0) {
2849
+ return activeActivities.concat(historicActivities);
2850
+ } else if (activeActivities && activeActivities.length !== 0) {
2851
+ return activeActivities;
2852
+ } else if (historicActivities && historicActivities.length !== 0) {
2853
+ return historicActivities;
2854
+ } else {
2855
+ return null;
2856
+ }
2857
+ }
2858
+
2859
+ public async getHistoricActivities(transactionId: number): Promise<Activity[]> {
2860
+ return await this.connector.getHistoricActivities(transactionId);
2861
+ }
2862
+
2863
+ public async getComponentActivitiesWithoutRelationFiltering(transactionId: number): Promise<Activity[]> {
2864
+ return await this.connector.getComponentActivitiesWithoutRelationFiltering(transactionId);
2865
+ }
2866
+
2867
+ public async fireTrigger(workFlowProcessId: number, sequence: number, triggerId: number): Promise<ValidationResult> {
2868
+ return await this.connector.fireTrigger(workFlowProcessId, sequence, triggerId);
2869
+ }
2870
+
2871
+ public async fireGenericTrigger(workFlowProcessId: number, genericTransitionId: number, relationId: number): Promise<ValidationResult> {
2872
+ return await this.connector.fireGenericTrigger(workFlowProcessId, genericTransitionId, relationId);
2873
+ }
2874
+
2875
+ public async lockTask(id: number): Promise<boolean> {
2876
+ return await this.connector.lockTask(id);
2877
+ }
2878
+
2879
+ public async getLineIndicesByTransId(transId: number): Promise<TransactionLineSearchIndex[]> {
2880
+ return await this.connector.getLineIndicesByTransId(transId);
2881
+ }
2882
+
2883
+ public async convertCashRegisterOrderToSalesOrder(): Promise<void> {
2884
+ if (this.currentTransaction.transactionInfo.uuid) {
2885
+ const response: DialogResponseInterface = await this.dialogService.showYesNo(
2886
+ 'CONVERT_CASH_REGISTER_ORDER_TO_SALESORDER_HEAD',
2887
+ 'CONVERT_CASH_REGISTER_ORDER_TO_SALESORDER_QUESTION');
2888
+ const shouldConvert: boolean = response.button === AppPopupButtonType.Yes;
2889
+ if (shouldConvert) {
2890
+ const lockSuccess: boolean =
2891
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
2892
+ if (lockSuccess) {
2893
+ const response: TransactionInfoResponse = await this.connector.convertCashRegisterOrderToSalesOrder(this.currentTransaction.transactionInfo.uuid);
2894
+ let success: boolean = await this.handleHeaderOperationStatuses(response, false);
2895
+ if (success) {
2896
+ // return response.transactionInfo.transactionNr;
2897
+ this.saveTransactionAndCommit().then(saved => {
2898
+ if (saved) {
2899
+ this.transactionEventService.createdSalesOrderFromCashRegisterOrder.next(response.transactionInfo.transactionNr);
2900
+ }
2901
+ });
2902
+ }
2903
+ }
2904
+ }
2905
+ }
2906
+ }
2907
+
2908
+ public async reprintCashRegisterReceipt(): Promise<void> {
2909
+ this.dialogService.showReprintCashRegisterReceiptPopup(this.currentTransaction);
2910
+ }
2911
+
2912
+ public resetDataForServiceFromSalesTransactionLine() {
2913
+ this._transForServiceFromSalesTransactionLine = null;
2914
+ this._lineNrForServiceFromSalesTransactionLine = null;
2915
+ }
2916
+
2917
+ public async getSalesOrderLines(request: OrderReservationSalesOrderLinesRequest): Promise<PurchaseReservation[]> {
2918
+ return await this.connector.getSalesOrderLines(request);
2919
+ }
2920
+
2921
+ public async processReservation(request: ProcessOrderReservationRequest): Promise<boolean> {
2922
+ const lockSuccess: boolean =
2923
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
2924
+ if (lockSuccess) {
2925
+ const response: TransactionInfoResponse = await this.connector.processReservation(request);
2926
+ this.transactionDirty = true;
2927
+ return this.handleLineOperationStatuses(response);
2928
+ } else {
2929
+ return false;
2930
+ }
2931
+ }
2932
+
2933
+ public async undoReservation(transId: number, lineId: number): Promise<boolean> {
2934
+ return await this.connector.undoReservation(transId, lineId);
2935
+ }
2936
+
2937
+ public async getSLACategories(): Promise<SLAProduct[]> {
2938
+ return await this.connector.getSLACategories();
2939
+ }
2940
+
2941
+ public async getSLAProducts(): Promise<SLAProduct[]> {
2942
+ return await this.connector.getSLAProducts();
2943
+ }
2944
+
2945
+ public async getTermsAndConditionsForm(transId: number): Promise<void> {
2946
+ return await this.connector.getTermsAndConditionsForm(transId);
2947
+ }
2948
+
2949
+ public async getTransactionPlanPeriods(transId: number): Promise<PlanTimes[]> {
2950
+ return await this.connector.getTransactionPlanPeriods(transId);
2951
+ }
2952
+
2953
+ public async getAgendaEventsPerDayForPreferredPlanning(transId: number): Promise<AgendaEventPerDay[]> {
2954
+ let planTimes: PlanTimes[] = await this.getTransactionPlanPeriods(transId);
2955
+ return this._createEventsPerDayFromPlanTimes(planTimes);
2956
+ }
2957
+
2958
+ private _createEventsPerDayFromPlanTimes(planTimes: PlanTimes[]):AgendaEventPerDay[] {
2959
+ const eventsPerDay: AgendaEventPerDay[] = [];
2960
+ if (planTimes && planTimes.length > 0) {
2961
+ const len: number = planTimes.length;
2962
+ for (let i: number = 0; i < len; i++) {
2963
+ eventsPerDay.push(this._createAgendaEventPerDayFromPlanTimes(planTimes[i]));
2964
+ }
2965
+ }
2966
+ return eventsPerDay;
2967
+ }
2968
+
2969
+ private _createAgendaEventPerDayFromPlanTimes(planTimes: PlanTimes): AgendaEventPerDay {
2970
+ const agendaEvent: AgendaEventPerDay = new AgendaEventPerDay();
2971
+ agendaEvent.date = new Date(planTimes.planDate);
2972
+ agendaEvent.events = [];
2973
+ const len: number = planTimes.dayParts.length;
2974
+ for (let i: number = 0; i < len; i++) {
2975
+ const dayPart: PlanDaypart = planTimes.dayParts[i];
2976
+ if (dayPart.available) {
2977
+ agendaEvent.events.push(this._createAgendaEventFromDayPart(dayPart, agendaEvent.date));
2978
+ }
2979
+ }
2980
+ return agendaEvent;
2981
+ }
2982
+
2983
+ private _createAgendaEventFromDayPart(dayPart: PlanDaypart, date: Date): AgendaEvent {
2984
+ const event: AgendaEvent = new AgendaEvent();
2985
+ event.id = dayPart.dayPartId;
2986
+ event.dayPartNo = dayPart.dayPartNo;
2987
+ event.checked = dayPart.active;
2988
+ event.showCheckbox = true;
2989
+ event.date = new Date(date);
2990
+ const from: Date = new Date(date);
2991
+ from.setHours(dayPart.timeHourStart);
2992
+ event.from = from;
2993
+ const to: Date = new Date(date);
2994
+ to.setHours(dayPart.timeHourStop);
2995
+ event.to = to;
2996
+ event.fromString = event.from.toLocaleTimeString();
2997
+ event.toString = event.to.toLocaleTimeString();
2998
+ event.fromToRepresentation = event.fromString + " - " + event.toString;
2999
+ event.timeWindow = dayPart.onlinePlanning;
3000
+ event.description = dayPart.dayPartDescription;
3001
+ return event;
3002
+ }
3003
+
3004
+ public async getSupplierProducts(transId: number): Promise<SupplierProduct[]> {
3005
+ return await this.connector.getSupplierProducts(transId);
3006
+ }
3007
+
3008
+ public async getDeliveryDateForSupplierProduct(goodId: number, supplierId: number): Promise<Date> {
3009
+ return await this.connector.getDeliveryDateForSupplierProduct(goodId, supplierId);
3010
+ }
3011
+
3012
+ public async getPlannedResourcesForTransactionLine(transId: number, lineNr: number): Promise<PlannedResourceForTransactionLine[]> {
3013
+ return await this.connector.getPlannedResourcesForTransactionLine(transId, lineNr);
3014
+ }
3015
+
3016
+ public async getVoucherInfo(voucherCode: string, toCurrencyCode?: string): Promise<Voucher> {
3017
+ return await this.connector.getVoucherInfo(voucherCode, toCurrencyCode);
3018
+ }
3019
+
3020
+ public async getFirstConfirmedDeliveryDateForTransactionLine(transId: number, lineNr: number): Promise<Date> {
3021
+ return await this.connector.getFirstConfirmedDeliveryDateForTransactionLine(transId, lineNr);
3022
+ }
3023
+
3024
+ public async getServiceOrderEmailLayouts(transactionUUID: string): Promise<ReportLayoutSelectionEmail[]> {
3025
+ return await this.connector.getServiceOrderEmailLayouts(transactionUUID);
3026
+ }
3027
+
3028
+ public async getServiceOrderPrintLayouts(transactionUUID: string): Promise<ReportLayoutSelectionPrint[]> {
3029
+ return await this.connector.getServiceOrderPrintLayouts(transactionUUID);
3030
+ }
3031
+
3032
+ public async getDefaultEmailAddressListForServiceOrder(transactionUUID): Promise<string[]> {
3033
+ return await this.connector.getDefaultEmailAddressListForServiceOrder(transactionUUID);
3034
+ }
3035
+
3036
+ public async printServiceOrder(request: PrintServiceOrderRequest): Promise<void> {
3037
+ return await this.connector.printServiceOrder(request);
3038
+ }
3039
+
3040
+ public async printHistoricServiceOrder(request: PrintHistoricServiceOrderRequest): Promise<boolean> {
3041
+ return await this.connector.printHistoricServiceOrder(request);
3042
+ }
3043
+
3044
+ public async emailServiceOrder(request: EmailServiceOrderRequest): Promise<void> {
3045
+ return await this.connector.emailServiceOrder(request);
3046
+ }
3047
+
3048
+ public async emailHistoricServiceOrder(request: EmailHistoricServiceOrderRequest): Promise<boolean> {
3049
+ return await this.connector.emailHistoricServiceOrder(request);
3050
+ }
3051
+
3052
+ public async pdfServiceOrder(request: PdfServiceOrderRequest, localPrint: boolean = false): Promise<void> {
3053
+ return await this.connector.pdfServiceOrder(request, localPrint);
3054
+ }
3055
+
3056
+ public async pdfHistoricServiceOrder(request: PdfHistoricServiceOrderRequest, localPrint: boolean = false): Promise<boolean> {
3057
+ return await this.connector.pdfHistoricServiceOrder(request, localPrint);
3058
+ }
3059
+
3060
+ public async getServiceOrderDefaultSendMethod(relationId: number): Promise<number> {
3061
+ return await this.connector.getServiceOrderDefaultSendMethod(relationId);
3062
+ }
3063
+
3064
+ public async getCashRegistersForTransaction(transactionUUID: string): Promise<CashRegister[]> {
3065
+ return await this.connector.getCashRegistersForTransaction(transactionUUID);
3066
+ }
3067
+
3068
+ public async getLspPackageInfoPrintLayouts(showLoader?: boolean): Promise<ReportLayoutSelectionPrint[]> {
3069
+ return await this.connector.getLspPackageInfoPrintLayouts(showLoader);
3070
+ }
3071
+
3072
+ public async printLspPackageInfo(request: PrintLspPackageInfoRequest, showLoader?: boolean): Promise<void> {
3073
+ return await this.connector.printLspPackageInfo(request);
3074
+ }
3075
+
3076
+ public async printDeliveryNoteForLspPackage(request: LspWmsDeliveryNotePrintRequest, showLoader?: boolean): Promise<void> {
3077
+ return await this.connector.printDeliveryNoteForLspPackage(request);
3078
+ }
3079
+
3080
+ public async getRouteDeparture(request: GetRouteDepartureRequest, showLoader?: boolean): Promise<string> {
3081
+ return await this.connector.getRouteDeparture(request);
3082
+ }
3083
+
3084
+ public async changeHeadersTransactionsDefinitive(request: ChangeHeadersTransactionsDefinitiveRequest, showLoader?: boolean): Promise<void> {
3085
+ return await this.connector.changeHeadersTransactionsDefinitive(request);
3086
+ }
3087
+
3088
+ public async generateInterbranchOrders(selectionList: StockReplenishment[], showLoader?: boolean): Promise<boolean> {
3089
+ let success: boolean = await this.connector.generateInterbranchOrders(selectionList);
3090
+ if (success) {
3091
+ success = await this.commit();
3092
+ }
3093
+ return success;
3094
+ }
3095
+
3096
+ public async setTransportNotificationOnSelectedLines(request: SetTransportNotificationOnSelectedLinesRequest): Promise<boolean> {
3097
+ const lockSuccess: boolean =
3098
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
3099
+ if (lockSuccess) {
3100
+ request = this.addSelectedLineDetailsToTransportNotificationRequest(request);
3101
+ const response: TransactionInfoResponse = await this.connector.setTransportNotificationOnSelectedLines(request);
3102
+ this.transactionDirty = true;
3103
+ return this.handleLineOperationStatuses(response, true);
3104
+ } else {
3105
+ return false;
3106
+ }
3107
+ }
3108
+
3109
+ public async renewTransportNotificationOnSelectedLines(request: RenewTransportNotificationOnSelectedLinesRequest): Promise<boolean> {
3110
+ const lockSuccess: boolean =
3111
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
3112
+ if (lockSuccess) {
3113
+ request = this.addSelectedLineDetailsToTransportNotificationRequest(request);
3114
+ const response: TransactionInfoResponse = await this.connector.renewTransportNotificationOnSelectedLines(request);
3115
+ this.transactionDirty = true;
3116
+ return this.handleLineOperationStatuses(response, true);
3117
+ } else {
3118
+ return false;
3119
+ }
3120
+ }
3121
+
3122
+ private addSelectedLineDetailsToTransportNotificationRequest(request: SetTransportNotificationOnSelectedLinesRequest | RenewTransportNotificationOnSelectedLinesRequest): SetTransportNotificationOnSelectedLinesRequest | RenewTransportNotificationOnSelectedLinesRequest {
3123
+ const selectedLines: TransactionLineInfo[] = this.currentTransaction.transactionLines.filter((line) => line.selected);
3124
+ request.selectedLines = [];
3125
+ if (selectedLines.length > 0) {
3126
+ selectedLines.forEach((line) => {
3127
+ const lineRequest: TransportNotificationLineSelectRequest = new TransportNotificationLineSelectRequest();
3128
+ lineRequest.lineNr = line.lineNr;
3129
+ lineRequest.arrivalDate = line.arrivalDateForTransportNotification;
3130
+ lineRequest.reference = line.referenceForTransportNotification;
3131
+ lineRequest.quantity = line.quantityForTransportNotification;
3132
+ request.selectedLines.push(lineRequest);
3133
+ });
3134
+ }
3135
+ return request;
3136
+ }
3137
+
3138
+ public async setTransportNotification(request: SetTransportNotificationLineRequest): Promise<boolean> {
3139
+ const lockSuccess: boolean =
3140
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
3141
+ if (lockSuccess) {
3142
+ const response: TransactionInfoResponse = await this.connector.setTransportNotification(request);
3143
+ this.transactionDirty = true;
3144
+ return this.handleLineOperationStatuses(response, true);
3145
+ } else {
3146
+ return false;
3147
+ }
3148
+ }
3149
+
3150
+ public async setTransportNotificationInContainerOnSelectedLines(request: SetTransportNotificationInContainerOnSelectedLinesRequest): Promise<boolean> {
3151
+ const lockSuccess: boolean =
3152
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
3153
+ if (lockSuccess) {
3154
+ const response: TransactionInfoResponse = await this.connector.setTransportNotificationInContainerOnSelectedLines(request);
3155
+ this.transactionDirty = true;
3156
+ return this.handleLineOperationStatuses(response, true);
3157
+ } else {
3158
+ return false;
3159
+ }
3160
+ }
3161
+
3162
+ public async setTransportNotificationInContainer(request: SetTransportNotificationLineInContainerRequest): Promise<boolean> {
3163
+ const lockSuccess: boolean =
3164
+ await this.tryToLockTransaction(this.currentTransaction.transactionInfo.id, this.currentTransaction.transactionInfo.version);
3165
+ if (lockSuccess) {
3166
+ const response: TransactionInfoResponse = await this.connector.setTransportNotificationInContainer(request);
3167
+ this.transactionDirty = true;
3168
+ return this.handleLineOperationStatuses(response, true);
3169
+ } else {
3170
+ return false;
3171
+ }
3172
+ }
3173
+
3174
+ public async getTransportNotificationInfosByTransactionLine(lineUuid: string, showLoader?: boolean): Promise<TransportNotificationInfo[]> {
3175
+ return await this.connector.getTransportNotificationInfosByTransactionLine(lineUuid);
3176
+ }
3177
+
3178
+ public async getTransportNotificationTotalsByTransactionLine(lineUuid: string, showLoader?: boolean): Promise<TransportNotificationTotals> {
3179
+ return await this.connector.getTransportNotificationTotalsByTransactionLine(lineUuid);
3180
+ }
3181
+
3182
+ public async getContainers(showLoader?: boolean): Promise<Container[]> {
3183
+ return await this.connector.getContainers();
3184
+ }
3185
+
3186
+ public async getContainer(containerId: number, showLoader?: boolean): Promise<Container> {
3187
+ return await this.connector.getContainer(containerId);
3188
+ }
3189
+
3190
+ public async getContainerInfo(containerId: number, showLoader?: boolean): Promise<ContainerInfo> {
3191
+ return await this.connector.getContainerInfo(containerId);
3192
+ }
3193
+
3194
+ public async getContainerTypes(showLoader?: boolean): Promise<ContainerType[]> {
3195
+ return await this.connector.getContainerTypes();
3196
+ }
3197
+
3198
+ public async createContainer(container: Container, showLoader?: boolean): Promise<Container> {
3199
+ return await this.connector.createContainer(container);
3200
+ }
3201
+
3202
+ public async updateContainer(container: Container, showLoader?: boolean): Promise<Container> {
3203
+ return await this.connector.updateContainer(container);
3204
+ }
3205
+
3206
+ public async getCashPaymentValueByTransId(transId: number, showLoader?: boolean): Promise<number> {
3207
+ return await this.connector.getCashPaymentValueByTransId(transId);
3208
+ }
3209
+
3210
+ public async getContactMoments(table: TableName, key: string, showLoader?: boolean): Promise<ContactMoment[]> {
3211
+ return await this.connector.getContactMoments(table, key);
3212
+ }
3213
+
3214
+ public async mergeContactMoments(mergeContactMomentsRequest: MergeContactMomentsRequest, showLoader?: boolean): Promise<ContactMoment[]> {
3215
+ return await this.connector.mergeContactMoments(mergeContactMomentsRequest);
3216
+ }
3217
+
3218
+ public async printWorkOrder(printWorkOrderRequest: PrintWorkOrderRequest, showLoader?: boolean): Promise<CoDocument | boolean> {
3219
+ return await this.connector.printWorkOrder(printWorkOrderRequest);
3220
+ }
3221
+
3222
+ public async printHistoricWorkOrder(printHistoricWorkOrderRequest: PrintHistoricWorkOrderRequest, showLoader?: boolean): Promise<boolean> {
3223
+ return await this.connector.printHistoricWorkOrder(printHistoricWorkOrderRequest);
3224
+ }
3225
+
3226
+ public async startWorkOrderBatch(batchTransactionSendingRequest: BatchTransactionSendingRequest, showLoader?: boolean): Promise<void> {
3227
+ return await this.connector.startWorkOrderBatch(batchTransactionSendingRequest);
3228
+ }
3229
+
3230
+ public async emailWorkOrder(emailWorkOrderRequest: EmailWorkOrderRequest, showLoader?: boolean): Promise<CoDocument | boolean> {
3231
+ return await this.connector.emailWorkOrder(emailWorkOrderRequest);
3232
+ }
3233
+
3234
+ public async emailHistoricWorkOrder(emailHistoricWorkOrderRequest: EmailHistoricWorkOrderRequest, showLoader?: boolean): Promise<boolean> {
3235
+ return await this.connector.emailHistoricWorkOrder(emailHistoricWorkOrderRequest);
3236
+ }
3237
+
3238
+ public async pdfWorkOrder(pdfWorkOrderRequest: PdfWorkOrderRequest, localPrint: boolean = false, showLoader?: boolean): Promise<boolean> {
3239
+ return await this.connector.pdfWorkOrder(pdfWorkOrderRequest, localPrint);
3240
+ }
3241
+
3242
+ public async pdfHistoricWorkOrder(pdfHistoricWorkOrderRequest: PdfHistoricWorkOrderRequest, showLoader?: boolean): Promise<boolean> {
3243
+ return await this.connector.pdfHistoricWorkOrder(pdfHistoricWorkOrderRequest);
3244
+ }
3245
+
3246
+ public async getWorkOrderEmailLayouts(transactionUUID: string, showLoader?: boolean): Promise<ReportLayoutSelectionEmail[]> {
3247
+ return await this.connector.getWorkOrderEmailLayouts(transactionUUID);
3248
+ }
3249
+
3250
+ public async getWorkOrderPrintLayouts(transactionUUID: string, showLoader?: boolean): Promise<ReportLayoutSelectionPrint[]> {
3251
+ return await this.connector.getWorkOrderPrintLayouts(transactionUUID);
3252
+ }
3253
+
3254
+ public async getWorkOrderDefaultSendMethod(relationId: number, showLoader?: boolean): Promise<number> {
3255
+ return await this.connector.getWorkOrderDefaultSendMethod(relationId);
3256
+ }
3257
+
3258
+ public async getDefaultEmailAddressListForWorkOrder(transactionUUID: string, showLoader?: boolean): Promise<string[]> {
3259
+ return await this.connector.getDefaultEmailAddressListForWorkOrder(transactionUUID);
3260
+ }
3261
+
3262
+ public async previewWorkOrder(pdfWorkOrderRequest: PdfWorkOrderRequest, showLoader?: boolean): Promise<PdfWorkOrderResponse> {
3263
+ return await this.connector.previewWorkOrder(pdfWorkOrderRequest);
3264
+ }
3265
+
3266
+ public async sendPackageInformationToLSP(request: TransactionLspInformationRequest): Promise<TransactionInfoResponse> {
3267
+ return await this.connector.sendPackageInformationToLSP(request);
3268
+ }
3269
+
3270
+ public async roundUp( amount: number , paymentMethodCode: string, showLoader?: boolean): Promise<number> {
3271
+ return await this.connector.roundUp(amount, paymentMethodCode, showLoader)
3272
+ }
3273
+
3274
+ protected async _handleBeforeRememberCurrentTransaction(transactionInfoResponse: TransactionInfoResponse): Promise<void> {
3275
+ this.prepareManualSaveInternalParam();
3276
+ this.prepareMLocatInternalParam();
3277
+ this.preparePakBinnenInternalParam();
3278
+ this.prepareDropShipmentInternalParam();
3279
+ this.prepareReceiveGoodsWithDataTerminalInternalParam();
3280
+ this.preparePrintColliStickerDefault();
3281
+ this.prepareDirectSellInternalParam();
3282
+ this.prepareCanChangeSalesOrderWhenFullyInvoicedParam();
3283
+ this.prepareCanChangeRelationParam();
3284
+ }
3285
+
3286
+ protected async _handleAfterRememberCurrentTransaction(): Promise<void> {
3287
+ this.remainingAmount = 0;
3288
+ }
3289
+
3290
+ private _checkAndSaveLinesForAIConfirmation(transactionId: number, analysisId: number, lines: TransactionLineInfo[]): Promise<boolean> {
3291
+ if (transactionId && analysisId && lines && lines.length > 0) {
3292
+ const selectedLinesForAI: TransactionLineInfo[] = lines.filter(l => l.linkedAnalysisResultId !== null && l.linkedAnalysisResultId !== undefined);
3293
+ const orderConfirmationTransactionLinks: OrderConfirmationTransactionLink[] = [];
3294
+ selectedLinesForAI.forEach(l => {
3295
+ const orderConfirmationTransactionLink: OrderConfirmationTransactionLink = new OrderConfirmationTransactionLink();
3296
+ orderConfirmationTransactionLink.transactionId = transactionId;
3297
+ orderConfirmationTransactionLink.transactionLineNumber = l.lineNr;
3298
+ orderConfirmationTransactionLink.orderConfirmationAnalysisResultId = l.linkedAnalysisResultId;
3299
+ orderConfirmationTransactionLinks.push(orderConfirmationTransactionLink);
3300
+ });
3301
+ return this.connector.linkTransactionToOrderConfirmation(analysisId, orderConfirmationTransactionLinks);
3302
+ }
3303
+ return Promise.resolve(true);
3304
+ }
3305
+
3306
+ private async _checkAndAddRelationTransaction(): Promise<boolean> {
3307
+ if (this.currentTransaction && this.currentTransaction.transactionInfo && this.relation && !this.currentTransaction.transactionInfo.relation) {
3308
+ return this.saveRelation();
3309
+ }
3310
+ }
3311
+
3312
+ private async _checkAndCreateTransaction(rememberTransaction: boolean = true): Promise<boolean> {
3313
+ if (!this.currentTransaction || !this.currentTransaction.transactionInfo || !this.currentTransaction.transactionInfo.transactionNr) {
3314
+ const createMethod: CreateTransactionFn = this._createTransactionMethods.get(this.transactionKind || TransactionKind.SalesOrder);
3315
+ if (createMethod) {
3316
+ const rememberRelation: boolean = this.getRelationOnRememberCurrentTransaction;
3317
+ this.getRelationOnRememberCurrentTransaction = false;
3318
+ const request: CreateTransactionRequest = new CreateTransactionRequest();
3319
+ return await createMethod(request)
3320
+ .then(() => {
3321
+ this.getRelationOnRememberCurrentTransaction = rememberRelation;
3322
+ return true;
3323
+ })
3324
+ .catch(() => {
3325
+ this.getRelationOnRememberCurrentTransaction = rememberRelation;
3326
+ return false;
3327
+ });
3328
+ } else {
3329
+ throwError('Failed to create transaction');
3330
+ }
3331
+ } else {
3332
+ return Promise.resolve(true);
3333
+ }
3334
+ }
3335
+
3336
+ }