@colijnit/transaction 12.1.78 → 12.1.80
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -13
- package/bundles/colijnit-transaction.umd.js +25560 -0
- package/bundles/colijnit-transaction.umd.js.map +1 -0
- package/colijnit-transaction.d.ts +350 -0
- package/colijnit-transaction.metadata.json +1 -0
- package/esm2015/colijnit-transaction.js +351 -0
- package/esm2015/lib/assets/dictionary/text.properties.js +751 -0
- package/esm2015/lib/cache/cache-field.js +75 -0
- package/esm2015/lib/cache/parameter-cache-field.js +54 -0
- package/esm2015/lib/cache/service/business-object-cache-manager.service.js +150 -0
- package/esm2015/lib/cache/service/select-multiple-cache.service.js +38 -0
- package/esm2015/lib/cache/service/select-multiple-parameterized-cache.service.js +47 -0
- package/esm2015/lib/cache/service/select-single-cache.service.js +30 -0
- package/esm2015/lib/component/animated-checkbox/animated-checkbox.component.js +27 -0
- package/esm2015/lib/component/animated-checkbox/animated-checkbox.module.js +21 -0
- package/esm2015/lib/component/avatar/avatar.component.js +106 -0
- package/esm2015/lib/component/avatar/avatar.module.js +21 -0
- package/esm2015/lib/component/checkout/checkout-login/checkout-login.component.js +106 -0
- package/esm2015/lib/component/checkout/checkout-overview-delivery-address/checkout-overview-delivery-address.component.js +47 -0
- package/esm2015/lib/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.js +267 -0
- package/esm2015/lib/component/checkout/checkout-overview-payment/checkout-overview-payment.component.js +101 -0
- package/esm2015/lib/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component.js +235 -0
- package/esm2015/lib/component/checkout/checkout.component.js +180 -0
- package/esm2015/lib/component/checkout/checkout.module.js +124 -0
- package/esm2015/lib/component/confirmation-dialog/confirmation-dialog.component.js +67 -0
- package/esm2015/lib/component/confirmation-dialog/confirmation-dialog.module.js +25 -0
- package/esm2015/lib/component/core/base/components/characteristic-answer/characteristic-answer.component.js +83 -0
- package/esm2015/lib/component/core/base/components/characteristic-answer/characteristic-answer.module.js +26 -0
- package/esm2015/lib/component/core/base/components/default-ok-cancel-buttons/default-ok-cancel-buttons.component.js +41 -0
- package/esm2015/lib/component/core/base/components/default-ok-cancel-buttons/default-ok-cancel-buttons.module.js +21 -0
- package/esm2015/lib/component/core/base/components/transaction-header-block/transaction-header-block.component.js +47 -0
- package/esm2015/lib/component/core/base/components/transaction-header-block/transaction-header-block.module.js +19 -0
- package/esm2015/lib/component/core/base/components/warehouse/warehouse.component.js +64 -0
- package/esm2015/lib/component/core/base/components/warehouse/warehouse.module.js +26 -0
- package/esm2015/lib/component/core/base/dialog-base.component.js +6 -0
- package/esm2015/lib/component/core/base/dialog-transaction-base.component.js +40 -0
- package/esm2015/lib/component/core/base/dynamic-base-component.js +8 -0
- package/esm2015/lib/component/core/base/transaction-base.component.js +160 -0
- package/esm2015/lib/component/core/base/transaction-filter-base.component.js +61 -0
- package/esm2015/lib/component/core/base/transaction-filter-content-base.component.js +44 -0
- package/esm2015/lib/component/core/base/transaction-filter-popup-base.component.js +103 -0
- package/esm2015/lib/component/core/base/transaction-grid-base.component.js +51 -0
- package/esm2015/lib/component/core/base/transaction-input-field-base.component.js +55 -0
- package/esm2015/lib/component/core/base/transaction-search-grid-base.component.js +25 -0
- package/esm2015/lib/component/core/base/transaction-search-tile-base.component.js +28 -0
- package/esm2015/lib/component/core/core.module.js +50 -0
- package/esm2015/lib/component/core/directive/lazy-render-master.directive.js +43 -0
- package/esm2015/lib/component/core/directive/lazy-render.directive.js +29 -0
- package/esm2015/lib/component/core/enum/app-popup-button-type.enum.js +11 -0
- package/esm2015/lib/component/core/enum/app-popup-type.enum.js +8 -0
- package/esm2015/lib/component/core/icon/icon.component.js +31 -0
- package/esm2015/lib/component/core/image-display/image-display.component.js +29 -0
- package/esm2015/lib/component/core/relation/customer-groups.component.js +46 -0
- package/esm2015/lib/component/core/stock-status-indicator/stock-status-indicator.component.js +24 -0
- package/esm2015/lib/component/delivery-type-tile/delivery-type-tile.component.js +47 -0
- package/esm2015/lib/component/delivery-type-tile/delivery-type-tile.module.js +26 -0
- package/esm2015/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.component.js +47 -0
- package/esm2015/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.module.js +23 -0
- package/esm2015/lib/component/dialog/dialog-header-search/dialog-header-search.component.js +37 -0
- package/esm2015/lib/component/dialog/dialog-header-search/dialog-header-search.module.js +23 -0
- package/esm2015/lib/component/dialog/transaction-header/dialog-transaction-header-delivery-method/dialog-transaction-header-delivery-method.component.js +37 -0
- package/esm2015/lib/component/dialog/transaction-header/dialog-transaction-header-delivery-method/dialog-transaction-header-delivery-method.module.js +28 -0
- package/esm2015/lib/component/dialog/transaction-header/dialog-transaction-header-discount/dialog-transaction-header-discount.component.js +78 -0
- package/esm2015/lib/component/dialog/transaction-header/dialog-transaction-header-discount/dialog-transaction-header-discount.module.js +29 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-commission-code/dialog-transaction-line-commission-code.component.js +36 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-commission-code/dialog-transaction-line-commission-code.module.js +28 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-delivery-method/dialog-transaction-line-delivery-method.component.js +37 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-delivery-method/dialog-transaction-line-delivery-method.module.js +28 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-discount/dialog-transaction-line-discount.component.js +95 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-discount/dialog-transaction-line-discount.module.js +36 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-price-list/dialog-transaction-line-price-list.component.js +36 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-price-list/dialog-transaction-line-price-list.module.js +28 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-supplier/dialog-transaction-line-supplier.component.js +37 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-supplier/dialog-transaction-line-supplier.module.js +28 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-vat/dialog-transaction-line-vat.component.js +37 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-vat/dialog-transaction-line-vat.module.js +28 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse/dialog-transaction-line-warehouse.component.js +37 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse/dialog-transaction-line-warehouse.module.js +28 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/dialog-transaction-line-warehouse-cc.component.js +80 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/dialog-transaction-line-warehouse-cc.module.js +31 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/dialog-transaction-line-warehouse-location.component.js +44 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/dialog-transaction-line-warehouse-location.module.js +28 -0
- package/esm2015/lib/component/discount/discount.component.js +110 -0
- package/esm2015/lib/component/discount/discount.module.js +29 -0
- package/esm2015/lib/component/down-payment/down-payment.component.js +71 -0
- package/esm2015/lib/component/down-payment/down-payment.module.js +27 -0
- package/esm2015/lib/component/editable-label/editable-label.component.js +65 -0
- package/esm2015/lib/component/editable-label/editable-label.module.js +21 -0
- package/esm2015/lib/component/loader/loader.component.js +51 -0
- package/esm2015/lib/component/loader/loader.module.js +19 -0
- package/esm2015/lib/component/payment/payment.component.js +242 -0
- package/esm2015/lib/component/payment/payment.module.js +37 -0
- package/esm2015/lib/component/payment-qr-code/payment-qr-code.component.js +23 -0
- package/esm2015/lib/component/payment-qr-code/payment-qr-code.module.js +23 -0
- package/esm2015/lib/component/payment-tile/payment-tile.component.js +34 -0
- package/esm2015/lib/component/payment-tile/payment-tile.module.js +25 -0
- package/esm2015/lib/component/quick-send-button/quick-send-button.component.js +50 -0
- package/esm2015/lib/component/quick-send-button/quick-send-button.module.js +27 -0
- package/esm2015/lib/component/relation/relation-address/relation-address.component.js +111 -0
- package/esm2015/lib/component/relation/relation-address/relation-address.module.js +29 -0
- package/esm2015/lib/component/relation/relation-address-select/relation-address-select.component.js +145 -0
- package/esm2015/lib/component/relation/relation-address-select/relation-address-select.module.js +33 -0
- package/esm2015/lib/component/relation/relation-address-tile/relation-address-tile.component.js +65 -0
- package/esm2015/lib/component/relation/relation-address-tile/relation-address-tile.module.js +32 -0
- package/esm2015/lib/component/relation/relation-addresses/relation-addresses.component.js +112 -0
- package/esm2015/lib/component/relation/relation-addresses/relation-addresses.module.js +34 -0
- package/esm2015/lib/component/relation/relation-base.component.js +31 -0
- package/esm2015/lib/component/relation/relation-contact-details/relation-contact-details.component.js +65 -0
- package/esm2015/lib/component/relation/relation-contact-details/relation-contact-details.module.js +24 -0
- package/esm2015/lib/component/relation/relation-general/relation-general.component.js +231 -0
- package/esm2015/lib/component/relation/relation-general/relation-general.module.js +27 -0
- package/esm2015/lib/component/relation/relation-preferences/relation-preferences.component.js +68 -0
- package/esm2015/lib/component/relation/relation-preferences/relation-preferences.module.js +21 -0
- package/esm2015/lib/component/relation/relation-suggestions-list/relation-suggestions-list.component.js +30 -0
- package/esm2015/lib/component/relation/relation-suggestions-list/relation-suggestions-list.module.js +21 -0
- package/esm2015/lib/component/relation/relation-suggestions-list-item/relation-suggestions-list-item.component.js +33 -0
- package/esm2015/lib/component/relation/relation-suggestions-list-item/relation-suggestions-list-item.module.js +19 -0
- package/esm2015/lib/component/relation/relation-type/relation-type.component.js +47 -0
- package/esm2015/lib/component/relation/relation-type/relation-type.module.js +23 -0
- package/esm2015/lib/component/shared/transaction-article-text/transaction-article-text.component.js +165 -0
- package/esm2015/lib/component/shared/transaction-article-text/transaction-article-text.module.js +34 -0
- package/esm2015/lib/component/shared/transaction-article-text-overview/transaction-article-text-overview.component.js +126 -0
- package/esm2015/lib/component/shared/transaction-article-text-overview/transaction-article-text-overview.module.js +30 -0
- package/esm2015/lib/component/shopping-cart/shopping-cart.component.js +69 -0
- package/esm2015/lib/component/shopping-cart/shopping-cart.module.js +27 -0
- package/esm2015/lib/component/shopping-cart-preview/shopping-cart-preview.component.js +58 -0
- package/esm2015/lib/component/shopping-cart-preview/shopping-cart-preview.module.js +29 -0
- package/esm2015/lib/component/stepper/component/stepper-step.component.js +40 -0
- package/esm2015/lib/component/stepper/stepper.component.js +126 -0
- package/esm2015/lib/component/stepper/stepper.module.js +29 -0
- package/esm2015/lib/component/tile/tile.component.js +32 -0
- package/esm2015/lib/component/tile/tile.module.js +19 -0
- package/esm2015/lib/component/toast/toast.component.js +36 -0
- package/esm2015/lib/component/toast/toast.module.js +19 -0
- package/esm2015/lib/component/transaction/transaction.component.js +174 -0
- package/esm2015/lib/component/transaction/transaction.module.js +67 -0
- package/esm2015/lib/component/transaction-allocate-goods-history/transaction-allocate-goods-history.component.js +81 -0
- package/esm2015/lib/component/transaction-allocate-goods-history/transaction-allocate-goods-history.module.js +25 -0
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button-base.component.js +37 -0
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button.component.js +73 -0
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-sales-purchase-button-bar-button.component.js +40 -0
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar.component.js +57 -0
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar.module.js +35 -0
- package/esm2015/lib/component/transaction-confirmation-details/transaction-confirmation-details.component.js +137 -0
- package/esm2015/lib/component/transaction-confirmation-details/transaction-confirmation-details.module.js +34 -0
- package/esm2015/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.js +113 -0
- package/esm2015/lib/component/transaction-confirmation-history/transaction-confirmation-history.module.js +33 -0
- package/esm2015/lib/component/transaction-grid/transaction-available-stock-grid/transaction-available-stock-grid.component.js +94 -0
- package/esm2015/lib/component/transaction-grid/transaction-available-stock-grid/transaction-available-stock-grid.module.js +24 -0
- package/esm2015/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.component.js +55 -0
- package/esm2015/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.module.js +30 -0
- package/esm2015/lib/component/transaction-grid/transaction-grid/transaction-grid.component.js +82 -0
- package/esm2015/lib/component/transaction-grid/transaction-grid/transaction-grid.module.js +19 -0
- package/esm2015/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.component.js +90 -0
- package/esm2015/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.module.js +28 -0
- package/esm2015/lib/component/transaction-grid/transaction-lines-grid/transaction-lines-grid.component.js +117 -0
- package/esm2015/lib/component/transaction-grid/transaction-lines-grid/transaction-lines-grid.module.js +48 -0
- package/esm2015/lib/component/transaction-grid/transaction-order-confirmation-grid/transaction-order-confirmation-grid.component.js +51 -0
- package/esm2015/lib/component/transaction-grid/transaction-order-confirmation-grid/transaction-order-confirmation-grid.module.js +29 -0
- package/esm2015/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.component.js +155 -0
- package/esm2015/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.module.js +34 -0
- package/esm2015/lib/component/transaction-header/transaction-header/transaction-header.component.js +50 -0
- package/esm2015/lib/component/transaction-header/transaction-header/transaction-header.module.js +31 -0
- package/esm2015/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.component.js +135 -0
- package/esm2015/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.module.js +48 -0
- package/esm2015/lib/component/transaction-header/transaction-header-order/transaction-header-order.component.js +56 -0
- package/esm2015/lib/component/transaction-header/transaction-header-order/transaction-header-order.module.js +33 -0
- package/esm2015/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.js +122 -0
- package/esm2015/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.module.js +35 -0
- package/esm2015/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.component.js +229 -0
- package/esm2015/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.module.js +46 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-administrative-relation.component.js +62 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-administrative-relation.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-branch.component.js +78 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-branch.module.js +26 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-definitive.component.js +48 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-definitive.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-delivery-date.component.js +53 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-delivery-date.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-delivery-method.component.js +97 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-delivery-method.module.js +29 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-delivery-options/transaction-header-delivery-options.component.js +74 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-delivery-options/transaction-header-delivery-options.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-discount-amount.component.js +59 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-discount-amount.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-discount-button.component.js +57 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-discount-button.module.js +25 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-discount-percentage.component.js +59 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-discount-percentage.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-discount-transaction-total.component.js +60 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-discount-transaction-total.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-downpayment-amount.component.js +58 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-downpayment-amount.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-downpayment-percentage.component.js +58 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-downpayment-percentage.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-marketing.component.js +51 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-marketing.module.js +26 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-partial-delivery.component.js +54 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-partial-delivery.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-preferred-delivery-date.component.js +61 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-preferred-delivery-date.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-reference.component.js +57 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-reference.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-relation-reference.component.js +57 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-relation-reference.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-remarks.component.js +57 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-remarks.module.js +23 -0
- package/esm2015/lib/component/transaction-history-grid-status/transaction-history-grid-status.component.js +49 -0
- package/esm2015/lib/component/transaction-history-grid-status/transaction-history-grid-status.module.js +23 -0
- package/esm2015/lib/component/transaction-line/transaction-base-line/transaction-base-line.component.js +92 -0
- package/esm2015/lib/component/transaction-line/transaction-base-line/transaction-base-line.module.js +26 -0
- package/esm2015/lib/component/transaction-line/transaction-goods-allocation-line/service/transaction-allocate-goods.service.js +63 -0
- package/esm2015/lib/component/transaction-line/transaction-goods-allocation-line/transaction-goods-allocation-line.component.js +111 -0
- package/esm2015/lib/component/transaction-line/transaction-goods-allocation-line/transaction-goods-allocation-line.module.js +33 -0
- package/esm2015/lib/component/transaction-line/transaction-line/transaction-line.component.js +110 -0
- package/esm2015/lib/component/transaction-line/transaction-line/transaction-line.module.js +21 -0
- package/esm2015/lib/component/transaction-line/transaction-order-delivery-line/service/transaction-order-delivery.service.js +15 -0
- package/esm2015/lib/component/transaction-line/transaction-order-delivery-line/transaction-order-delivery-line.component.js +124 -0
- package/esm2015/lib/component/transaction-line/transaction-order-delivery-line/transaction-order-delivery-line.module.js +36 -0
- package/esm2015/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.component.js +93 -0
- package/esm2015/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.module.js +63 -0
- package/esm2015/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.component.js +103 -0
- package/esm2015/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.module.js +46 -0
- package/esm2015/lib/component/transaction-line/transaction-receive-goods-line/service/transaction-receive-goods.service.js +68 -0
- package/esm2015/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.component.js +122 -0
- package/esm2015/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.module.js +36 -0
- package/esm2015/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.component.js +192 -0
- package/esm2015/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.module.js +30 -0
- package/esm2015/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.component.js +55 -0
- package/esm2015/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.module.js +25 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-amount.component.js +52 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-amount.module.js +21 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-commission-button.component.js +57 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-commission-button.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-commission-code.component.js +56 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-commission-code.module.js +26 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-button.component.js +63 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-button.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-date-button.component.js +33 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-date-button.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-date.component.js +64 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-date.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-method.component.js +53 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-method.module.js +26 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-description.component.js +68 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-description.module.js +24 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-discount-amount.component.js +57 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-discount-amount.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-discount-button.component.js +58 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-discount-button.module.js +25 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-line-discount.component.js +57 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-line-discount.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.component.js +90 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-price-list.component.js +52 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-price-list.module.js +26 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-quantity.component.js +41 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-quantity.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-quantum-discount.component.js +57 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-quantum-discount.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-reference.component.js +55 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-reference.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-special-discount.component.js +57 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-special-discount.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-supplier-button.component.js +60 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-supplier-button.module.js +28 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-supplier.component.js +57 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-supplier.module.js +25 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-vat-button.component.js +60 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-vat-button.module.js +21 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-vat.component.js +49 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-vat.module.js +28 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse-button.component.js +65 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse-button.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse-location-button.component.js +58 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse-location-button.module.js +21 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse-location.component.js +48 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse-location.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse.component.js +52 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse.module.js +27 -0
- package/esm2015/lib/component/transaction-line-grid/transaction-line-grid.component.js +23 -0
- package/esm2015/lib/component/transaction-line-grid/transaction-line-grid.module.js +21 -0
- package/esm2015/lib/component/transaction-line-image-and-description/transaction-line-image-and-description.component.js +99 -0
- package/esm2015/lib/component/transaction-line-image-and-description/transaction-line-image-and-description.module.js +27 -0
- package/esm2015/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.js +118 -0
- package/esm2015/lib/component/transaction-line-side-panel/transaction-line-side-panel.module.js +41 -0
- package/esm2015/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.component.js +114 -0
- package/esm2015/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.module.js +60 -0
- package/esm2015/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.js +119 -0
- package/esm2015/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.module.js +35 -0
- package/esm2015/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-sales.component.js +81 -0
- package/esm2015/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-sales.module.js +25 -0
- package/esm2015/lib/component/transaction-line-statusbar/transaction-line-statusbar.component.js +95 -0
- package/esm2015/lib/component/transaction-line-statusbar/transaction-line-statusbar.module.js +23 -0
- package/esm2015/lib/component/transaction-lines/transaction-lines.component.js +172 -0
- package/esm2015/lib/component/transaction-lines/transaction-lines.module.js +32 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.component.js +87 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.module.js +41 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-goods-allocation/transaction-quick-access-goods-allocation.component.js +69 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-goods-allocation/transaction-quick-access-goods-allocation.module.js +25 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.js +44 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.module.js +29 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-delivery/transaction-quick-access-order-delivery.component.js +65 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-delivery/transaction-quick-access-order-delivery.module.js +28 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-purchase/transaction-quick-access-order-purchase.component.js +56 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-purchase/transaction-quick-access-order-purchase.module.js +28 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.component.js +137 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.module.js +31 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/transaction-quick-access-purchase-order-overview.component.js +128 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/transaction-quick-access-purchase-order-overview.module.js +29 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.js +91 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.module.js +27 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-send-method-base.component.js +110 -0
- package/esm2015/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.component.js +78 -0
- package/esm2015/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.module.js +30 -0
- package/esm2015/lib/component/transaction-search/service/filter-request.service.js +172 -0
- package/esm2015/lib/component/transaction-search/service/transaction-search.service.js +114 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-filter/transaction-filter.component.js +96 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-filter/transaction-filter.module.js +19 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/transaction-purchase-order-filter.component.js +56 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/transaction-purchase-order-filter.module.js +34 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/transaction-sales-order-filter.component.js +56 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/transaction-sales-order-filter.module.js +34 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-categories/transaction-filter-categories.component.js +42 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-categories/transaction-filter-categories.module.js +19 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/enum/search-placeholder.enum.js +27 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/transaction-purchase-order-filter-content-article.component.js +143 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/transaction-purchase-order-filter-content-article.module.js +29 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/transaction-purchase-order-filter-content-logistics.component.js +236 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/transaction-purchase-order-filter-content-logistics.module.js +35 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/transaction-purchase-order-filter-content-order.component.js +225 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/transaction-purchase-order-filter-content-order.module.js +34 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/transaction-sales-order-filter-content-article.component.js +133 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/transaction-sales-order-filter-content-article.module.js +29 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/transaction-sales-order-filter-content-logistics.component.js +235 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/transaction-sales-order-filter-content-logistics.module.js +35 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.component.js +248 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.module.js +34 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-historic-state/transaction-filter-historic-state.component.js +55 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-historic-state/transaction-filter-historic-state.module.js +26 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-item/transaction-filter-item.component.js +64 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-item/transaction-filter-item.module.js +23 -0
- package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/transaction-search-grid.component.js +81 -0
- package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/transaction-search-grid.module.js +19 -0
- package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.component.js +84 -0
- package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.module.js +25 -0
- package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.component.js +84 -0
- package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.module.js +27 -0
- package/esm2015/lib/component/transaction-search/transaction-search-header/transaction-search-header.component.js +126 -0
- package/esm2015/lib/component/transaction-search/transaction-search-header/transaction-search-header.module.js +27 -0
- package/esm2015/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.js +119 -0
- package/esm2015/lib/component/transaction-search/transaction-search-result/transaction-search-result.module.js +44 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.component.js +67 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.module.js +29 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.component.js +74 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.module.js +32 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/transaction-search-tile.component.js +89 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/transaction-search-tile.module.js +19 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-statusbar/transaction-statusbar.component.js +79 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-statusbar/transaction-statusbar.module.js +23 -0
- package/esm2015/lib/component/transaction-search/transaction-search.component.js +146 -0
- package/esm2015/lib/component/transaction-search/transaction-search.module.js +32 -0
- package/esm2015/lib/component/transaction-side-panel-edit-request-details/components/allocation-request.component.js +139 -0
- package/esm2015/lib/component/transaction-side-panel-edit-request-details/components/receive-goods-request.component.js +194 -0
- package/esm2015/lib/component/transaction-side-panel-edit-request-details/transaction-side-panel-edit-request-details.component.js +51 -0
- package/esm2015/lib/component/transaction-side-panel-edit-request-details/transaction-side-panel-edit-request-details.module.js +35 -0
- package/esm2015/lib/component/transaction-tile/transaction-tile.component.js +116 -0
- package/esm2015/lib/component/transaction-tile/transaction-tile.module.js +30 -0
- package/esm2015/lib/component/transaction-totals/transaction-totals.component.js +59 -0
- package/esm2015/lib/component/transaction-totals/transaction-totals.module.js +25 -0
- package/esm2015/lib/component/view-mode-buttons/view-mode-buttons.component.js +61 -0
- package/esm2015/lib/component/view-mode-buttons/view-mode-buttons.module.js +23 -0
- package/esm2015/lib/enum/content-view-mode.enum.js +11 -0
- package/esm2015/lib/enum/direction.enum.js +9 -0
- package/esm2015/lib/enum/icon.enum.js +84 -0
- package/esm2015/lib/enum/language-code.enum.js +8 -0
- package/esm2015/lib/enum/order-discount-type.enum.js +7 -0
- package/esm2015/lib/enum/position-grid-row.enum.js +6 -0
- package/esm2015/lib/enum/search-view-mode.enum.js +7 -0
- package/esm2015/lib/enum/searchbar-view-mode.enum.js +7 -0
- package/esm2015/lib/enum/status-type.enum.js +7 -0
- package/esm2015/lib/enum/time-size.type.js +10 -0
- package/esm2015/lib/enum/transaction-type-category.enum.js +17 -0
- package/esm2015/lib/interface/dialog-response.interface.js +2 -0
- package/esm2015/lib/model/down-payment-view-model.js +7 -0
- package/esm2015/lib/model/extended-transaction-line-view-model.js +4 -0
- package/esm2015/lib/model/filter-item.viewmodel.js +9 -0
- package/esm2015/lib/model/filter-viewmodel.js +11 -0
- package/esm2015/lib/model/icon-svg.js +83 -0
- package/esm2015/lib/model/payment.viewmodel.js +6 -0
- package/esm2015/lib/model/received-goods-view-model.js +11 -0
- package/esm2015/lib/model/relation-any-type.js +3 -0
- package/esm2015/lib/model/standard-text.js +3 -0
- package/esm2015/lib/model/text-value-container.js +3 -0
- package/esm2015/lib/model/transaction-bar-button.js +2 -0
- package/esm2015/lib/model/transaction-search-result.js +3 -0
- package/esm2015/lib/pipe/append.pipe.js +17 -0
- package/esm2015/lib/pipe/co-currency.pipe.js +47 -0
- package/esm2015/lib/pipe/date-duration.pipe.js +57 -0
- package/esm2015/lib/pipe/delivery-time.pipe.js +36 -0
- package/esm2015/lib/pipe/localize.pipe.js +28 -0
- package/esm2015/lib/pipe/pipe.module.js +37 -0
- package/esm2015/lib/pipe/safe-html.pipe.js +19 -0
- package/esm2015/lib/pipe/safe-style.pipe.js +19 -0
- package/esm2015/lib/service/article-connector.service.js +106 -0
- package/esm2015/lib/service/article.service.js +33 -0
- package/esm2015/lib/service/dialog.service.js +137 -0
- package/esm2015/lib/service/dictionary.service.js +76 -0
- package/esm2015/lib/service/dynamic-component.service.js +93 -0
- package/esm2015/lib/service/error.service.js +68 -0
- package/esm2015/lib/service/icon-cache.service.js +51 -0
- package/esm2015/lib/service/options.service.js +71 -0
- package/esm2015/lib/service/payment.service.js +105 -0
- package/esm2015/lib/service/pending-reason.service.js +337 -0
- package/esm2015/lib/service/relation-connector.service.js +222 -0
- package/esm2015/lib/service/relation.service.js +158 -0
- package/esm2015/lib/service/shared-connector.service.js +53 -0
- package/esm2015/lib/service/shared.service.js +42 -0
- package/esm2015/lib/service/transaction-connector-adapter.service.js +1830 -0
- package/esm2015/lib/service/transaction-connector.service.js +670 -0
- package/esm2015/lib/service/transaction-event.service.js +35 -0
- package/esm2015/lib/service/transaction-image.service.js +53 -0
- package/esm2015/lib/service/transaction-mapping.service.js +178 -0
- package/esm2015/lib/service/transaction.service.js +793 -0
- package/esm2015/public_api.js +46 -0
- package/fesm2015/colijnit-transaction.js +25050 -0
- package/fesm2015/colijnit-transaction.js.map +1 -0
- package/lib/assets/dictionary/text.properties.d.ts +3 -0
- package/lib/cache/cache-field.d.ts +25 -0
- package/lib/cache/parameter-cache-field.d.ts +11 -0
- package/lib/cache/service/business-object-cache-manager.service.d.ts +58 -0
- package/lib/cache/service/select-multiple-cache.service.d.ts +15 -0
- package/lib/cache/service/select-multiple-parameterized-cache.service.d.ts +19 -0
- package/lib/cache/service/select-single-cache.service.d.ts +12 -0
- package/lib/component/animated-checkbox/animated-checkbox.component.d.ts +5 -0
- package/lib/component/animated-checkbox/animated-checkbox.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/animated-checkbox/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/animated-checkbox/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/animated-checkbox/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/animated-checkbox/style/material.scss +0 -0
- package/lib/component/avatar/avatar.component.d.ts +31 -0
- package/lib/component/avatar/avatar.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/avatar/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/avatar/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/avatar/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/avatar/style/material.scss +0 -0
- package/lib/component/checkout/checkout-login/checkout-login.component.d.ts +21 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-login/checkout-login.component.scss +0 -0
- package/lib/component/checkout/checkout-overview-delivery-address/checkout-overview-delivery-address.component.d.ts +11 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-delivery-address/checkout-overview-delivery-address.component.scss +0 -0
- package/lib/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.d.ts +65 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-delivery-edit/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-delivery-edit/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-delivery-edit/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-delivery-edit/style/material.scss +0 -0
- package/lib/component/checkout/checkout-overview-payment/checkout-overview-payment.component.d.ts +21 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-payment/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-payment/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-payment/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-payment/style/material.scss +0 -0
- package/lib/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component.d.ts +44 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-relation-edit/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-relation-edit/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-relation-edit/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-relation-edit/style/material.scss +0 -0
- package/lib/component/checkout/checkout.component.d.ts +48 -0
- package/lib/component/checkout/checkout.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/style/material.scss +0 -0
- package/lib/component/confirmation-dialog/confirmation-dialog.component.d.ts +18 -0
- package/lib/component/confirmation-dialog/confirmation-dialog.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/confirmation-dialog/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/confirmation-dialog/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/confirmation-dialog/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/confirmation-dialog/style/material.scss +0 -0
- package/lib/component/core/base/components/characteristic-answer/characteristic-answer.component.d.ts +21 -0
- package/lib/component/core/base/components/characteristic-answer/characteristic-answer.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/characteristic-answer/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/characteristic-answer/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/characteristic-answer/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/characteristic-answer/style/material.scss +0 -0
- package/lib/component/core/base/components/default-ok-cancel-buttons/default-ok-cancel-buttons.component.d.ts +13 -0
- package/lib/component/core/base/components/default-ok-cancel-buttons/default-ok-cancel-buttons.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/default-ok-cancel-buttons/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/default-ok-cancel-buttons/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/default-ok-cancel-buttons/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/default-ok-cancel-buttons/style/material.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/transaction-header-block/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/transaction-header-block/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/transaction-header-block/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/transaction-header-block/style/material.scss +0 -0
- package/lib/component/core/base/components/transaction-header-block/transaction-header-block.component.d.ts +10 -0
- package/lib/component/core/base/components/transaction-header-block/transaction-header-block.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/warehouse/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/warehouse/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/warehouse/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/warehouse/style/material.scss +0 -0
- package/lib/component/core/base/components/warehouse/warehouse.component.d.ts +20 -0
- package/lib/component/core/base/components/warehouse/warehouse.module.d.ts +2 -0
- package/lib/component/core/base/dialog-base.component.d.ts +4 -0
- package/lib/component/core/base/dialog-transaction-base.component.d.ts +16 -0
- package/lib/component/core/base/dynamic-base-component.d.ts +3 -0
- package/lib/component/core/base/transaction-base.component.d.ts +56 -0
- package/lib/component/core/base/transaction-filter-base.component.d.ts +26 -0
- package/lib/component/core/base/transaction-filter-content-base.component.d.ts +21 -0
- package/lib/component/core/base/transaction-filter-popup-base.component.d.ts +40 -0
- package/lib/component/core/base/transaction-grid-base.component.d.ts +25 -0
- package/lib/component/core/base/transaction-input-field-base.component.d.ts +15 -0
- package/lib/component/core/base/transaction-search-grid-base.component.d.ts +11 -0
- package/lib/component/core/base/transaction-search-tile-base.component.d.ts +13 -0
- package/lib/component/core/core.module.d.ts +2 -0
- package/lib/component/core/directive/lazy-render-master.directive.d.ts +10 -0
- package/lib/component/core/directive/lazy-render.directive.d.ts +10 -0
- package/lib/component/core/enum/app-popup-button-type.enum.d.ts +9 -0
- package/lib/component/core/enum/app-popup-type.enum.d.ts +6 -0
- package/lib/component/core/icon/icon.component.d.ts +12 -0
- package/{projects/transaction/src/lib → lib}/component/core/icon/icon.component.scss +0 -0
- package/lib/component/core/image-display/image-display.component.d.ts +5 -0
- package/{projects/transaction/src/lib → lib}/component/core/image-display/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/image-display/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/image-display/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/image-display/style/material.scss +0 -0
- package/lib/component/core/relation/customer-groups.component.d.ts +14 -0
- package/{projects/transaction/src/lib → lib}/component/core/relation/relation-customer-groups.component.scss +0 -0
- package/lib/component/core/stock-status-indicator/stock-status-indicator.component.d.ts +5 -0
- package/{projects/transaction/src/lib → lib}/component/core/stock-status-indicator/stock-status-indicator.component.scss +0 -0
- package/lib/component/delivery-type-tile/delivery-type-tile.component.d.ts +10 -0
- package/lib/component/delivery-type-tile/delivery-type-tile.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/delivery-type-tile/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/delivery-type-tile/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/delivery-type-tile/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/delivery-type-tile/style/material.scss +0 -0
- package/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.component.d.ts +15 -0
- package/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/catalog/dialog-catalog/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/catalog/dialog-catalog/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/catalog/dialog-catalog/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/catalog/dialog-catalog/style/material.scss +0 -0
- package/lib/component/dialog/dialog-header-search/dialog-header-search.component.d.ts +10 -0
- package/lib/component/dialog/dialog-header-search/dialog-header-search.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/dialog-header-search/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/dialog-header-search/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/dialog-header-search/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/dialog-header-search/style/material.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-branch/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-branch/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-branch/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-branch/style/material.scss +0 -0
- package/lib/component/dialog/transaction-header/dialog-transaction-header-delivery-method/dialog-transaction-header-delivery-method.component.d.ts +4 -0
- package/lib/component/dialog/transaction-header/dialog-transaction-header-delivery-method/dialog-transaction-header-delivery-method.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-delivery-method/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-delivery-method/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-delivery-method/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-delivery-method/style/material.scss +0 -0
- package/lib/component/dialog/transaction-header/dialog-transaction-header-discount/dialog-transaction-header-discount.component.d.ts +8 -0
- package/lib/component/dialog/transaction-header/dialog-transaction-header-discount/dialog-transaction-header-discount.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-discount/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-discount/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-discount/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-discount/style/material.scss +0 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-commission-code/dialog-transaction-line-commission-code.component.d.ts +4 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-commission-code/dialog-transaction-line-commission-code.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-commission-code/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-commission-code/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-commission-code/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-commission-code/style/material.scss +0 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-delivery-method/dialog-transaction-line-delivery-method.component.d.ts +4 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-delivery-method/dialog-transaction-line-delivery-method.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-delivery-method/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-delivery-method/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-delivery-method/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-delivery-method/style/material.scss +0 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-discount/dialog-transaction-line-discount.component.d.ts +14 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-discount/dialog-transaction-line-discount.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-discount/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-discount/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-discount/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-discount/style/material.scss +0 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-price-list/dialog-transaction-line-price-list.component.d.ts +4 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-price-list/dialog-transaction-line-price-list.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-price-list/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-price-list/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-price-list/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-price-list/style/material.scss +0 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-supplier/dialog-transaction-line-supplier.component.d.ts +4 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-supplier/dialog-transaction-line-supplier.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-supplier/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-supplier/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-supplier/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-supplier/style/material.scss +0 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-vat/dialog-transaction-line-vat.component.d.ts +4 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-vat/dialog-transaction-line-vat.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-vat/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-vat/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-vat/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-vat/style/material.scss +0 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse/dialog-transaction-line-warehouse.component.d.ts +4 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse/dialog-transaction-line-warehouse.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse/style/material.scss +0 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/dialog-transaction-line-warehouse-cc.component.d.ts +12 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/dialog-transaction-line-warehouse-cc.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/style/material.scss +0 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/dialog-transaction-line-warehouse-location.component.d.ts +6 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/dialog-transaction-line-warehouse-location.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/style/material.scss +0 -0
- package/lib/component/discount/discount.component.d.ts +19 -0
- package/lib/component/discount/discount.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/discount/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/discount/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/discount/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/discount/style/material.scss +0 -0
- package/lib/component/down-payment/down-payment.component.d.ts +16 -0
- package/lib/component/down-payment/down-payment.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/down-payment/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/down-payment/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/down-payment/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/down-payment/style/material.scss +0 -0
- package/lib/component/editable-label/editable-label.component.d.ts +16 -0
- package/lib/component/editable-label/editable-label.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/editable-label/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/editable-label/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/editable-label/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/editable-label/style/material.scss +0 -0
- package/lib/component/loader/loader.component.d.ts +3 -0
- package/lib/component/loader/loader.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/loader/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/loader/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/loader/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/loader/style/material.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/order-confirmation-create/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/order-confirmation-create/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/order-confirmation-create/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/order-confirmation-create/style/material.scss +0 -0
- package/lib/component/payment/payment.component.d.ts +58 -0
- package/lib/component/payment/payment.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/payment/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/payment/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/payment/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/payment/style/material.scss +0 -0
- package/lib/component/payment-qr-code/payment-qr-code.component.d.ts +4 -0
- package/lib/component/payment-qr-code/payment-qr-code.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/payment-qr-code/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/payment-qr-code/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/payment-qr-code/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/payment-qr-code/style/material.scss +0 -0
- package/lib/component/payment-tile/payment-tile.component.d.ts +10 -0
- package/lib/component/payment-tile/payment-tile.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/payment-tile/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/payment-tile/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/payment-tile/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/payment-tile/style/material.scss +0 -0
- package/lib/component/quick-send-button/quick-send-button.component.d.ts +15 -0
- package/lib/component/quick-send-button/quick-send-button.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/quick-send-button/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/quick-send-button/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/quick-send-button/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/quick-send-button/style/material.scss +0 -0
- package/lib/component/relation/relation-address/relation-address.component.d.ts +25 -0
- package/lib/component/relation/relation-address/relation-address.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address/style/material.scss +0 -0
- package/lib/component/relation/relation-address-select/relation-address-select.component.d.ts +33 -0
- package/lib/component/relation/relation-address-select/relation-address-select.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address-select/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address-select/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address-select/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address-select/style/material.scss +0 -0
- package/lib/component/relation/relation-address-tile/relation-address-tile.component.d.ts +15 -0
- package/lib/component/relation/relation-address-tile/relation-address-tile.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address-tile/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address-tile/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address-tile/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address-tile/style/material.scss +0 -0
- package/lib/component/relation/relation-addresses/relation-addresses.component.d.ts +27 -0
- package/lib/component/relation/relation-addresses/relation-addresses.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-addresses/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-addresses/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-addresses/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-addresses/style/material.scss +0 -0
- package/lib/component/relation/relation-base.component.d.ts +11 -0
- package/lib/component/relation/relation-contact-details/relation-contact-details.component.d.ts +12 -0
- package/lib/component/relation/relation-contact-details/relation-contact-details.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-contact-details/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-contact-details/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-contact-details/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-contact-details/style/material.scss +0 -0
- package/lib/component/relation/relation-general/relation-general.component.d.ts +33 -0
- package/lib/component/relation/relation-general/relation-general.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-general/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-general/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-general/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-general/style/material.scss +0 -0
- package/lib/component/relation/relation-preferences/relation-preferences.component.d.ts +15 -0
- package/lib/component/relation/relation-preferences/relation-preferences.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-preferences/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-preferences/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-preferences/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-preferences/style/material.scss +0 -0
- package/lib/component/relation/relation-suggestions-list/relation-suggestions-list.component.d.ts +7 -0
- package/lib/component/relation/relation-suggestions-list/relation-suggestions-list.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-suggestions-list/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-suggestions-list/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-suggestions-list/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-suggestions-list/style/material.scss +0 -0
- package/lib/component/relation/relation-suggestions-list-item/relation-suggestions-list-item.component.d.ts +8 -0
- package/lib/component/relation/relation-suggestions-list-item/relation-suggestions-list-item.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-suggestions-list-item/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-suggestions-list-item/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-suggestions-list-item/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-suggestions-list-item/style/material.scss +0 -0
- package/lib/component/relation/relation-type/relation-type.component.d.ts +11 -0
- package/lib/component/relation/relation-type/relation-type.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-type/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-type/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-type/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-type/style/material.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shared/transaction-article-text/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shared/transaction-article-text/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shared/transaction-article-text/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shared/transaction-article-text/style/material.scss +0 -0
- package/lib/component/shared/transaction-article-text/transaction-article-text.component.d.ts +44 -0
- package/lib/component/shared/transaction-article-text/transaction-article-text.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/shared/transaction-article-text-overview/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shared/transaction-article-text-overview/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shared/transaction-article-text-overview/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shared/transaction-article-text-overview/style/material.scss +0 -0
- package/lib/component/shared/transaction-article-text-overview/transaction-article-text-overview.component.d.ts +29 -0
- package/lib/component/shared/transaction-article-text-overview/transaction-article-text-overview.module.d.ts +2 -0
- package/lib/component/shopping-cart/shopping-cart.component.d.ts +17 -0
- package/lib/component/shopping-cart/shopping-cart.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/shopping-cart/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shopping-cart/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shopping-cart/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shopping-cart/style/material.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shopping-cart-OLD/shopping-cart-manager/shopping-cart-manager.component.scss +0 -0
- package/lib/component/shopping-cart-preview/shopping-cart-preview.component.d.ts +13 -0
- package/lib/component/shopping-cart-preview/shopping-cart-preview.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/shopping-cart-preview/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shopping-cart-preview/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shopping-cart-preview/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shopping-cart-preview/style/material.scss +0 -0
- package/lib/component/stepper/component/stepper-step.component.d.ts +12 -0
- package/lib/component/stepper/stepper.component.d.ts +36 -0
- package/lib/component/stepper/stepper.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/stepper/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/stepper/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/stepper/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/stepper/style/material.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/tile/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/tile/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/tile/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/tile/style/material.scss +0 -0
- package/lib/component/tile/tile.component.d.ts +6 -0
- package/lib/component/tile/tile.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/toast/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/toast/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/toast/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/toast/style/material.scss +0 -0
- package/lib/component/toast/toast.component.d.ts +6 -0
- package/lib/component/toast/toast.module.d.ts +2 -0
- package/lib/component/transaction/style/_layout.scss +56 -0
- package/{projects/transaction/src/lib → lib}/component/transaction/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction/style/_theme.scss +0 -0
- package/lib/component/transaction/style/material.scss +13 -0
- package/lib/component/transaction/transaction.component.d.ts +45 -0
- package/lib/component/transaction/transaction.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-allocate-goods-history/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-allocate-goods-history/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-allocate-goods-history/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-allocate-goods-history/style/material.scss +0 -0
- package/lib/component/transaction-allocate-goods-history/transaction-allocate-goods-history.component.d.ts +18 -0
- package/lib/component/transaction-allocate-goods-history/transaction-allocate-goods-history.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-button-bar/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-button-bar/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-button-bar/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-button-bar/style/material.scss +0 -0
- package/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button-base.component.d.ts +16 -0
- package/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button.component.d.ts +18 -0
- package/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-sales-purchase-button-bar-button.component.d.ts +12 -0
- package/lib/component/transaction-button-bar/transaction-button-bar.component.d.ts +19 -0
- package/lib/component/transaction-button-bar/transaction-button-bar.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-confirmation-details/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-confirmation-details/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-confirmation-details/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-confirmation-details/style/material.scss +0 -0
- package/lib/component/transaction-confirmation-details/transaction-confirmation-details.component.d.ts +24 -0
- package/lib/component/transaction-confirmation-details/transaction-confirmation-details.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-confirmation-history/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-confirmation-history/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-confirmation-history/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-confirmation-history/style/material.scss +0 -0
- package/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.d.ts +30 -0
- package/lib/component/transaction-confirmation-history/transaction-confirmation-history.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-available-stock-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-card/transaction-card-footer → lib/component/transaction-grid/transaction-available-stock-grid}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-available-stock-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-available-stock-grid/style/material.scss +0 -0
- package/lib/component/transaction-grid/transaction-available-stock-grid/transaction-available-stock-grid.component.d.ts +26 -0
- package/lib/component/transaction-grid/transaction-available-stock-grid/transaction-available-stock-grid.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-base-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-base-grid/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-base-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-base-grid/style/material.scss +0 -0
- package/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.component.d.ts +8 -0
- package/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-card/transaction-card-header → lib/component/transaction-grid/transaction-grid}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-grid/style/material.scss +0 -0
- package/lib/component/transaction-grid/transaction-grid/transaction-grid.component.d.ts +24 -0
- package/lib/component/transaction-grid/transaction-grid/transaction-grid.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-history-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-history-grid/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-history-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-history-grid/style/material.scss +0 -0
- package/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.component.d.ts +19 -0
- package/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-lines-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-lines-grid/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-lines-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-lines-grid/style/material.scss +0 -0
- package/lib/component/transaction-grid/transaction-lines-grid/transaction-lines-grid.component.d.ts +21 -0
- package/lib/component/transaction-grid/transaction-lines-grid/transaction-lines-grid.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-order-confirmation-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-order-confirmation-grid/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-order-confirmation-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-order-confirmation-grid/style/material.scss +0 -0
- package/lib/component/transaction-grid/transaction-order-confirmation-grid/transaction-order-confirmation-grid.component.d.ts +4 -0
- package/lib/component/transaction-grid/transaction-order-confirmation-grid/transaction-order-confirmation-grid.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-received-goods-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-card/transaction-card-purchase-overview → lib/component/transaction-grid/transaction-received-goods-grid}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-received-goods-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-card/transaction-card-footer → lib/component/transaction-grid/transaction-received-goods-grid}/style/material.scss +0 -0
- package/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.component.d.ts +37 -0
- package/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/style/material.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header/style/material.scss +0 -0
- package/lib/component/transaction-header/transaction-header/transaction-header.component.d.ts +12 -0
- package/lib/component/transaction-header/transaction-header/transaction-header.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-delivery/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-delivery/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-delivery/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-delivery/style/material.scss +0 -0
- package/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.component.d.ts +21 -0
- package/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-order/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-order/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-order/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-order/style/material.scss +0 -0
- package/lib/component/transaction-header/transaction-header-order/transaction-header-order.component.d.ts +11 -0
- package/lib/component/transaction-header/transaction-header-order/transaction-header-order.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-payment/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-payment/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-payment/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-payment/style/material.scss +0 -0
- package/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.d.ts +20 -0
- package/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-relation/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-relation/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-relation/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-relation/style/material.scss +0 -0
- package/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.component.d.ts +39 -0
- package/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-administrative-relation.component.d.ts +14 -0
- package/lib/component/transaction-header-fields/transaction-header-administrative-relation.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-branch.component.d.ts +17 -0
- package/lib/component/transaction-header-fields/transaction-header-branch.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-definitive.component.d.ts +9 -0
- package/lib/component/transaction-header-fields/transaction-header-definitive.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-delivery-date.component.d.ts +7 -0
- package/lib/component/transaction-header-fields/transaction-header-delivery-date.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-delivery-method.component.d.ts +20 -0
- package/lib/component/transaction-header-fields/transaction-header-delivery-method.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header-fields/transaction-header-delivery-options/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header-fields/transaction-header-delivery-options/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header-fields/transaction-header-delivery-options/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-card/transaction-card-header → lib/component/transaction-header-fields/transaction-header-delivery-options}/style/material.scss +0 -0
- package/lib/component/transaction-header-fields/transaction-header-delivery-options/transaction-header-delivery-options.component.d.ts +21 -0
- package/lib/component/transaction-header-fields/transaction-header-delivery-options/transaction-header-delivery-options.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-discount-amount.component.d.ts +10 -0
- package/lib/component/transaction-header-fields/transaction-header-discount-amount.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-discount-button.component.d.ts +16 -0
- package/lib/component/transaction-header-fields/transaction-header-discount-button.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-discount-percentage.component.d.ts +10 -0
- package/lib/component/transaction-header-fields/transaction-header-discount-percentage.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-discount-transaction-total.component.d.ts +11 -0
- package/lib/component/transaction-header-fields/transaction-header-discount-transaction-total.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-downpayment-amount.component.d.ts +10 -0
- package/lib/component/transaction-header-fields/transaction-header-downpayment-amount.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-downpayment-percentage.component.d.ts +10 -0
- package/lib/component/transaction-header-fields/transaction-header-downpayment-percentage.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-marketing.component.d.ts +14 -0
- package/lib/component/transaction-header-fields/transaction-header-marketing.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-partial-delivery.component.d.ts +11 -0
- package/lib/component/transaction-header-fields/transaction-header-partial-delivery.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-preferred-delivery-date.component.d.ts +10 -0
- package/lib/component/transaction-header-fields/transaction-header-preferred-delivery-date.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-reference.component.d.ts +10 -0
- package/lib/component/transaction-header-fields/transaction-header-reference.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-relation-reference.component.d.ts +10 -0
- package/lib/component/transaction-header-fields/transaction-header-relation-reference.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-remarks.component.d.ts +10 -0
- package/lib/component/transaction-header-fields/transaction-header-remarks.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-history-grid-status/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-history-grid-status/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-history-grid-status/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-history-grid-status/style/material.scss +0 -0
- package/lib/component/transaction-history-grid-status/transaction-history-grid-status.component.d.ts +11 -0
- package/lib/component/transaction-history-grid-status/transaction-history-grid-status.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-base-line/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-base-line/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-base-line/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-card/transaction-card-sales-overview → lib/component/transaction-line/transaction-base-line}/style/material.scss +0 -0
- package/lib/component/transaction-line/transaction-base-line/transaction-base-line.component.d.ts +21 -0
- package/lib/component/transaction-line/transaction-base-line/transaction-base-line.module.d.ts +2 -0
- package/lib/component/transaction-line/transaction-goods-allocation-line/service/transaction-allocate-goods.service.d.ts +12 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-goods-allocation-line/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-grid/transaction-received-goods-grid → lib/component/transaction-line/transaction-goods-allocation-line}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-goods-allocation-line/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-grid/transaction-received-goods-grid → lib/component/transaction-line/transaction-goods-allocation-line}/style/material.scss +0 -0
- package/lib/component/transaction-line/transaction-goods-allocation-line/transaction-goods-allocation-line.component.d.ts +29 -0
- package/lib/component/transaction-line/transaction-goods-allocation-line/transaction-goods-allocation-line.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-line/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-line/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-line/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-line/style/material.scss +0 -0
- package/lib/component/transaction-line/transaction-line/transaction-line.component.d.ts +27 -0
- package/lib/component/transaction-line/transaction-line/transaction-line.module.d.ts +2 -0
- package/lib/component/transaction-line/transaction-order-delivery-line/service/transaction-order-delivery.service.d.ts +4 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-order-delivery-line/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-line-fields/transaction-line-price → lib/component/transaction-line/transaction-order-delivery-line}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-order-delivery-line/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-options → lib/component/transaction-line/transaction-order-delivery-line}/style/material.scss +0 -0
- package/lib/component/transaction-line/transaction-order-delivery-line/transaction-order-delivery-line.component.d.ts +27 -0
- package/lib/component/transaction-line/transaction-order-delivery-line/transaction-order-delivery-line.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-overview-line/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-line-grid → lib/component/transaction-line/transaction-overview-line}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-overview-line/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-overview-line/style/material.scss +0 -0
- package/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.component.d.ts +26 -0
- package/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-purchase-line/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-line-side-panel-purchase → lib/component/transaction-line/transaction-purchase-line}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-purchase-line/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-line-fields/transaction-line-price → lib/component/transaction-line/transaction-purchase-line}/style/material.scss +0 -0
- package/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.component.d.ts +21 -0
- package/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.module.d.ts +2 -0
- package/lib/component/transaction-line/transaction-receive-goods-line/service/transaction-receive-goods.service.d.ts +19 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-receive-goods-line/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-line-side-panel-sales → lib/component/transaction-line/transaction-receive-goods-line}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-receive-goods-line/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-line/transaction-base-line → lib/component/transaction-line/transaction-receive-goods-line}/style/material.scss +0 -0
- package/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.component.d.ts +32 -0
- package/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-action-buttons/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-action-buttons/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-action-buttons/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-action-buttons/style/material.scss +0 -0
- package/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.component.d.ts +49 -0
- package/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-checkbox-list/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-checkbox-list/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-checkbox-list/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-checkbox-list/style/material.scss +0 -0
- package/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.component.d.ts +20 -0
- package/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-amount.component.d.ts +10 -0
- package/lib/component/transaction-line-fields/transaction-line-amount.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-commission-button.component.d.ts +10 -0
- package/lib/component/transaction-line-fields/transaction-line-commission-button.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-commission-code.component.d.ts +15 -0
- package/lib/component/transaction-line-fields/transaction-line-commission-code.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-delivery-button.component.d.ts +14 -0
- package/lib/component/transaction-line-fields/transaction-line-delivery-button.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-delivery-date-button.component.d.ts +10 -0
- package/lib/component/transaction-line-fields/transaction-line-delivery-date-button.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-delivery-date.component.d.ts +11 -0
- package/lib/component/transaction-line-fields/transaction-line-delivery-date.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-delivery-method.component.d.ts +14 -0
- package/lib/component/transaction-line-fields/transaction-line-delivery-method.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-description.component.d.ts +15 -0
- package/lib/component/transaction-line-fields/transaction-line-description.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-discount-amount.component.d.ts +10 -0
- package/lib/component/transaction-line-fields/transaction-line-discount-amount.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-discount-button.component.d.ts +12 -0
- package/lib/component/transaction-line-fields/transaction-line-discount-button.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-line-discount.component.d.ts +10 -0
- package/lib/component/transaction-line-fields/transaction-line-line-discount.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-fields/transaction-line-price/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-card/transaction-card-sales-overview → lib/component/transaction-line-fields/transaction-line-price}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-fields/transaction-line-price/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-card/transaction-card-purchase-overview → lib/component/transaction-line-fields/transaction-line-price}/style/material.scss +0 -0
- package/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.component.d.ts +18 -0
- package/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-price-list.component.d.ts +14 -0
- package/lib/component/transaction-line-fields/transaction-line-price-list.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-quantity.component.d.ts +7 -0
- package/lib/component/transaction-line-fields/transaction-line-quantity.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-quantum-discount.component.d.ts +10 -0
- package/lib/component/transaction-line-fields/transaction-line-quantum-discount.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-reference.component.d.ts +10 -0
- package/lib/component/transaction-line-fields/transaction-line-reference.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-special-discount.component.d.ts +10 -0
- package/lib/component/transaction-line-fields/transaction-line-special-discount.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-supplier-button.component.d.ts +12 -0
- package/lib/component/transaction-line-fields/transaction-line-supplier-button.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-supplier.component.d.ts +16 -0
- package/lib/component/transaction-line-fields/transaction-line-supplier.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-vat-button.component.d.ts +12 -0
- package/lib/component/transaction-line-fields/transaction-line-vat-button.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-vat.component.d.ts +13 -0
- package/lib/component/transaction-line-fields/transaction-line-vat.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-warehouse-button.component.d.ts +15 -0
- package/lib/component/transaction-line-fields/transaction-line-warehouse-button.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-warehouse-location-button.component.d.ts +18 -0
- package/lib/component/transaction-line-fields/transaction-line-warehouse-location-button.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-warehouse-location.component.d.ts +15 -0
- package/lib/component/transaction-line-fields/transaction-line-warehouse-location.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-warehouse.component.d.ts +14 -0
- package/lib/component/transaction-line-fields/transaction-line-warehouse.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-card/transaction-card → lib/component/transaction-line-grid}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-grid/style/material.scss +0 -0
- package/lib/component/transaction-line-grid/transaction-line-grid.component.d.ts +5 -0
- package/lib/component/transaction-line-grid/transaction-line-grid.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-image-and-description/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-image-and-description/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-image-and-description/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-image-and-description/style/material.scss +0 -0
- package/lib/component/transaction-line-image-and-description/transaction-line-image-and-description.component.d.ts +29 -0
- package/lib/component/transaction-line-image-and-description/transaction-line-image-and-description.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel/style/material.scss +0 -0
- package/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.d.ts +27 -0
- package/lib/component/transaction-line-side-panel/transaction-line-side-panel.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-default/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-default/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-default/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-default/style/material.scss +0 -0
- package/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.component.d.ts +21 -0
- package/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-purchase/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-grid/transaction-available-stock-grid → lib/component/transaction-line-side-panel-purchase}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-purchase/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-purchase/style/material.scss +0 -0
- package/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.d.ts +28 -0
- package/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-sales/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-grid/transaction-grid → lib/component/transaction-line-side-panel-sales}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-sales/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-sales/style/material.scss +0 -0
- package/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-sales.component.d.ts +20 -0
- package/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-sales.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-statusbar/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-statusbar/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-statusbar/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-statusbar/style/material.scss +0 -0
- package/lib/component/transaction-line-statusbar/transaction-line-statusbar.component.d.ts +26 -0
- package/lib/component/transaction-line-statusbar/transaction-line-statusbar.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-lines/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-lines/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-lines/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-lines/style/material.scss +0 -0
- package/lib/component/transaction-lines/transaction-lines.component.d.ts +42 -0
- package/lib/component/transaction-lines/transaction-lines.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access/style/material.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.component.d.ts +28 -0
- package/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-goods-allocation/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-line/transaction-goods-allocation-line → lib/component/transaction-quick-access/transaction-quick-access-goods-allocation}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-goods-allocation/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-line/transaction-goods-allocation-line → lib/component/transaction-quick-access/transaction-quick-access-goods-allocation}/style/material.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-goods-allocation/transaction-quick-access-goods-allocation.component.d.ts +20 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-goods-allocation/transaction-quick-access-goods-allocation.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-line/transaction-order-delivery-line → lib/component/transaction-quick-access/transaction-quick-access-order-confirmation}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-line/transaction-order-delivery-line → lib/component/transaction-quick-access/transaction-quick-access-order-confirmation}/style/material.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.d.ts +7 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-order-delivery/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-line/transaction-overview-line → lib/component/transaction-quick-access/transaction-quick-access-order-delivery}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-order-delivery/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-line/transaction-purchase-line → lib/component/transaction-quick-access/transaction-quick-access-order-delivery}/style/material.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-delivery/transaction-quick-access-order-delivery.component.d.ts +19 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-delivery/transaction-quick-access-order-delivery.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-order-purchase/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-line/transaction-purchase-line → lib/component/transaction-quick-access/transaction-quick-access-order-purchase}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-order-purchase/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-line/transaction-receive-goods-line → lib/component/transaction-quick-access/transaction-quick-access-order-purchase}/style/material.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-purchase/transaction-quick-access-order-purchase.component.d.ts +14 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-purchase/transaction-quick-access-order-purchase.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-overview/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-overview/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-overview/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-goods-allocation → lib/component/transaction-quick-access/transaction-quick-access-overview}/style/material.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.component.d.ts +34 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation → lib/component/transaction-quick-access/transaction-quick-access-purchase-order-overview}/style/material.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/transaction-quick-access-purchase-order-overview.component.d.ts +33 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/transaction-quick-access-purchase-order-overview.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-received-goods/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-line/transaction-receive-goods-line → lib/component/transaction-quick-access/transaction-quick-access-received-goods}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-received-goods/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-delivery → lib/component/transaction-quick-access/transaction-quick-access-received-goods}/style/material.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.d.ts +34 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.module.d.ts +2 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-send-method-base.component.d.ts +43 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-receiving-goods-history/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-receiving-goods-history/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-receiving-goods-history/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-receiving-goods-history/style/material.scss +0 -0
- package/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.component.d.ts +17 -0
- package/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.module.d.ts +2 -0
- package/lib/component/transaction-search/service/filter-request.service.d.ts +87 -0
- package/lib/component/transaction-search/service/transaction-search.service.d.ts +37 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/style/material.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-filter/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics → lib/component/transaction-search/transaction-filter/transaction-filter}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-filter/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-filter/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter/transaction-filter/transaction-filter.component.d.ts +26 -0
- package/lib/component/transaction-search/transaction-filter/transaction-filter/transaction-filter.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-purchase-order-filter/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-purchase-order-filter/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-purchase-order-filter/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-purchase-order-filter/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/transaction-purchase-order-filter.component.d.ts +9 -0
- package/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/transaction-purchase-order-filter.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-sales-order-filter/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-sales-order-filter/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-sales-order-filter/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-sales-order-filter/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/transaction-sales-order-filter.component.d.ts +9 -0
- package/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/transaction-sales-order-filter.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-categories/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-goods-allocation → lib/component/transaction-search/transaction-filter-categories}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-categories/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-categories/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-categories/transaction-filter-categories.component.d.ts +10 -0
- package/lib/component/transaction-search/transaction-filter-categories/transaction-filter-categories.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-filter-content/enum/search-placeholder.enum.d.ts +25 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/transaction-purchase-order-filter-content-article.component.d.ts +40 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/transaction-purchase-order-filter-content-article.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation → lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/transaction-purchase-order-filter-content-logistics.component.d.ts +36 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/transaction-purchase-order-filter-content-logistics.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/transaction-purchase-order-filter-content-order.component.d.ts +50 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/transaction-purchase-order-filter-content-order.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/transaction-sales-order-filter-content-article.component.d.ts +40 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/transaction-sales-order-filter-content-article.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-delivery → lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/transaction-sales-order-filter-content-logistics.component.d.ts +36 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/transaction-sales-order-filter-content-logistics.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.component.d.ts +57 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-purchase → lib/component/transaction-search/transaction-filter-content}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/style/material.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-historic-state/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-received-goods → lib/component/transaction-search/transaction-filter-historic-state}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-historic-state/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-historic-state/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-historic-state/transaction-filter-historic-state.component.d.ts +24 -0
- package/lib/component/transaction-search/transaction-filter-historic-state/transaction-filter-historic-state.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-item/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-search/transaction-filter-categories → lib/component/transaction-search/transaction-filter-item}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-item/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-item/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-item/transaction-filter-item.component.d.ts +21 -0
- package/lib/component/transaction-search/transaction-filter-item/transaction-filter-item.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics → lib/component/transaction-search/transaction-search-grid/transaction-search-grid}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-grid/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/transaction-search-grid.component.d.ts +22 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/transaction-search-grid.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-search/transaction-filter-content → lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.component.d.ts +7 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.component.d.ts +7 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-header/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-header/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-header/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-header/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-search-header/transaction-search-header.component.d.ts +36 -0
- package/lib/component/transaction-search/transaction-search-header/transaction-search-header.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-result/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-result/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-result/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-result/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.d.ts +32 -0
- package/lib/component/transaction-search/transaction-search-result/transaction-search-result.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-search/transaction-filter-historic-state → lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.component.d.ts +3 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-search/transaction-filter-item → lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.component.d.ts +6 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-tile/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-filter → lib/component/transaction-search/transaction-search-tile/transaction-search-tile}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-tile/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-tile/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/transaction-search-tile.component.d.ts +25 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/transaction-search-tile.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-statusbar/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-statusbar/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-statusbar/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-statusbar/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-statusbar/transaction-statusbar.component.d.ts +22 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-statusbar/transaction-statusbar.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-search.component.d.ts +32 -0
- package/lib/component/transaction-search/transaction-search.module.d.ts +2 -0
- package/lib/component/transaction-side-panel-edit-request-details/components/allocation-request.component.d.ts +28 -0
- package/lib/component/transaction-side-panel-edit-request-details/components/receive-goods-request.component.d.ts +43 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-side-panel-edit-request-details/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-side-panel-edit-request-details/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-side-panel-edit-request-details/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-side-panel-edit-request-details/style/material.scss +0 -0
- package/lib/component/transaction-side-panel-edit-request-details/transaction-side-panel-edit-request-details.component.d.ts +15 -0
- package/lib/component/transaction-side-panel-edit-request-details/transaction-side-panel-edit-request-details.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-tile/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-grid → lib/component/transaction-tile}/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-tile/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-tile/style/material.scss +0 -0
- package/lib/component/transaction-tile/transaction-tile.component.d.ts +20 -0
- package/lib/component/transaction-tile/transaction-tile.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-totals/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-totals/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-totals/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-totals/style/material.scss +0 -0
- package/lib/component/transaction-totals/transaction-totals.component.d.ts +10 -0
- package/lib/component/transaction-totals/transaction-totals.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/view-mode-buttons/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/view-mode-buttons/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/view-mode-buttons/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/view-mode-buttons/style/material.scss +0 -0
- package/lib/component/view-mode-buttons/view-mode-buttons.component.d.ts +17 -0
- package/lib/component/view-mode-buttons/view-mode-buttons.module.d.ts +2 -0
- package/lib/enum/content-view-mode.enum.d.ts +8 -0
- package/lib/enum/direction.enum.d.ts +6 -0
- package/lib/enum/icon.enum.d.ts +82 -0
- package/lib/enum/language-code.enum.d.ts +6 -0
- package/lib/enum/order-discount-type.enum.d.ts +5 -0
- package/lib/enum/position-grid-row.enum.d.ts +4 -0
- package/lib/enum/search-view-mode.enum.d.ts +4 -0
- package/lib/enum/searchbar-view-mode.enum.d.ts +4 -0
- package/lib/enum/status-type.enum.d.ts +5 -0
- package/lib/enum/time-size.type.d.ts +7 -0
- package/lib/enum/transaction-type-category.enum.d.ts +15 -0
- package/lib/interface/dialog-response.interface.d.ts +5 -0
- package/lib/model/down-payment-view-model.d.ts +7 -0
- package/lib/model/extended-transaction-line-view-model.d.ts +10 -0
- package/lib/model/filter-item.viewmodel.d.ts +7 -0
- package/lib/model/filter-viewmodel.d.ts +8 -0
- package/lib/model/icon-svg.d.ts +4 -0
- package/lib/model/payment.viewmodel.d.ts +6 -0
- package/lib/model/received-goods-view-model.d.ts +10 -0
- package/lib/model/relation-any-type.d.ts +3 -0
- package/lib/model/standard-text.d.ts +5 -0
- package/lib/model/text-value-container.d.ts +4 -0
- package/lib/model/transaction-bar-button.d.ts +10 -0
- package/lib/model/transaction-search-result.d.ts +5 -0
- package/lib/pipe/append.pipe.d.ts +4 -0
- package/lib/pipe/co-currency.pipe.d.ts +10 -0
- package/lib/pipe/date-duration.pipe.d.ts +10 -0
- package/lib/pipe/delivery-time.pipe.d.ts +12 -0
- package/lib/pipe/localize.pipe.d.ts +7 -0
- package/lib/pipe/pipe.module.d.ts +2 -0
- package/lib/pipe/safe-html.pipe.d.ts +7 -0
- package/lib/pipe/safe-style.pipe.d.ts +7 -0
- package/lib/service/article-connector.service.d.ts +20 -0
- package/lib/service/article.service.d.ts +8 -0
- package/lib/service/dialog.service.d.ts +29 -0
- package/lib/service/dictionary.service.d.ts +21 -0
- package/lib/service/dynamic-component.service.d.ts +12 -0
- package/lib/service/error.service.d.ts +12 -0
- package/lib/service/icon-cache.service.d.ts +18 -0
- package/lib/service/options.service.d.ts +13 -0
- package/lib/service/payment.service.d.ts +23 -0
- package/lib/service/pending-reason.service.d.ts +63 -0
- package/lib/service/relation-connector.service.d.ts +36 -0
- package/lib/service/relation.service.d.ts +44 -0
- package/lib/service/shared-connector.service.d.ts +12 -0
- package/lib/service/shared.service.d.ts +15 -0
- package/lib/service/transaction-connector-adapter.service.d.ts +207 -0
- package/lib/service/transaction-connector.service.d.ts +198 -0
- package/lib/service/transaction-event.service.d.ts +67 -0
- package/lib/service/transaction-image.service.d.ts +10 -0
- package/lib/service/transaction-mapping.service.d.ts +25 -0
- package/lib/service/transaction.service.d.ts +175 -0
- package/{projects/transaction/src/lib → lib}/style/_mixin.scss +0 -0
- package/{projects/transaction/src/lib → lib}/style/_variables.scss +0 -0
- package/{projects/transaction/src/lib → lib}/style/transaction-globals.scss +0 -0
- package/package.json +45 -92
- package/public_api.d.ts +45 -0
- package/.browserslistrc +0 -18
- package/.editorconfig +0 -16
- package/.eslintrc.json +0 -49
- package/angular.json +0 -165
- package/custom_webpack.config.js +0 -6
- package/e2e/protractor.conf.js +0 -32
- package/e2e/src/app.e2e-spec.ts +0 -23
- package/e2e/src/app.po.ts +0 -11
- package/e2e/tsconfig.json +0 -13
- package/import.bat +0 -8
- package/karma.conf.js +0 -32
- package/move-assets.js +0 -14
- package/projects/transaction/README.md +0 -24
- package/projects/transaction/karma.conf.js +0 -44
- package/projects/transaction/ng-package.json +0 -13
- package/projects/transaction/package.json +0 -44
- package/projects/transaction/src/lib/assets/.gitkeep +0 -0
- package/projects/transaction/src/lib/assets/dictionary/text.properties.ts +0 -748
- package/projects/transaction/src/lib/assets/icons/arrow_point_down.svg +0 -6
- package/projects/transaction/src/lib/assets/icons/arrow_point_left.svg +0 -8
- package/projects/transaction/src/lib/assets/icons/arrow_point_right.svg +0 -8
- package/projects/transaction/src/lib/assets/icons/article.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/at_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/barcode_regular.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/barcode_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/bars_filter.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/calendar_day.svg +0 -37
- package/projects/transaction/src/lib/assets/icons/calendar_day_regular.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/cancel.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/cart_check.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/cart_flatbed_boxes_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/cart_shopping_solid.svg +0 -5
- package/projects/transaction/src/lib/assets/icons/cash_register.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/credit_card_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/delivery_truck.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/edit_pencil.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/ellipsis_light.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/ellipsis_vertical_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/expand_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/file_circle_info_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/file_export_regular.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/file_export_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/file_pdf_regular.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/file_pdf_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/gear_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/grip_dots_vertical_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/ideal_logo.svg +0 -38
- package/projects/transaction/src/lib/assets/icons/inbox_in_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/list_regular.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/list_view.svg +0 -8
- package/projects/transaction/src/lib/assets/icons/location_dot_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/lock.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/lock_keyhole_open_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/lock_keyhole_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/magnifier.svg +0 -12
- package/projects/transaction/src/lib/assets/icons/map_marker.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/master_detail.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/memo_circle_check_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/menu.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/message_sms_regular.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/message_sms_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/object_intersect_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/pallet_boxes_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/pdf.svg +0 -15
- package/projects/transaction/src/lib/assets/icons/percent_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/plus_round.svg +0 -9
- package/projects/transaction/src/lib/assets/icons/plus_simple.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/print_regular.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/print_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/purchase.svg +0 -15
- package/projects/transaction/src/lib/assets/icons/resize.svg +0 -3
- package/projects/transaction/src/lib/assets/icons/share_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/shelves_light.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/shelves_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/side_panel.svg +0 -7
- package/projects/transaction/src/lib/assets/icons/slide_in.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/square_full.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/square_full_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/sync_alt.svg +0 -3
- package/projects/transaction/src/lib/assets/icons/tag.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/text_size_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/text_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/thick_lines.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/thin_lines.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/trash_bin.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/trash_can_light.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/triangle_down.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/triangle_up.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/truck.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/truck_arrow_right_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/truck_container_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/truck_fast_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/truck_moving_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/txt.svg +0 -9
- package/projects/transaction/src/lib/assets/icons/unlock.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/warehouse.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/x_solid.svg +0 -1
- package/projects/transaction/src/lib/cache/cache-field.ts +0 -91
- package/projects/transaction/src/lib/cache/parameter-cache-field.ts +0 -63
- package/projects/transaction/src/lib/cache/service/business-object-cache-manager.service.ts +0 -194
- package/projects/transaction/src/lib/cache/service/select-multiple-cache.service.ts +0 -36
- package/projects/transaction/src/lib/cache/service/select-multiple-parameterized-cache.service.ts +0 -46
- package/projects/transaction/src/lib/cache/service/select-single-cache.service.ts +0 -28
- package/projects/transaction/src/lib/component/animated-checkbox/animated-checkbox.component.ts +0 -26
- package/projects/transaction/src/lib/component/animated-checkbox/animated-checkbox.module.ts +0 -19
- package/projects/transaction/src/lib/component/avatar/avatar.component.ts +0 -120
- package/projects/transaction/src/lib/component/avatar/avatar.module.ts +0 -20
- package/projects/transaction/src/lib/component/checkout/checkout-login/checkout-login.component.ts +0 -115
- package/projects/transaction/src/lib/component/checkout/checkout-overview-delivery-address/checkout-overview-delivery-address.component.ts +0 -50
- package/projects/transaction/src/lib/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.ts +0 -296
- package/projects/transaction/src/lib/component/checkout/checkout-overview-payment/checkout-overview-payment.component.ts +0 -107
- package/projects/transaction/src/lib/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component.ts +0 -256
- package/projects/transaction/src/lib/component/checkout/checkout.component.ts +0 -205
- package/projects/transaction/src/lib/component/checkout/checkout.module.ts +0 -144
- package/projects/transaction/src/lib/component/confirmation-dialog/confirmation-dialog.component.ts +0 -72
- package/projects/transaction/src/lib/component/confirmation-dialog/confirmation-dialog.module.ts +0 -23
- package/projects/transaction/src/lib/component/core/base/components/characteristic-answer/characteristic-answer.component.ts +0 -87
- package/projects/transaction/src/lib/component/core/base/components/characteristic-answer/characteristic-answer.module.ts +0 -25
- package/projects/transaction/src/lib/component/core/base/components/default-ok-cancel-buttons/default-ok-cancel-buttons.component.ts +0 -46
- package/projects/transaction/src/lib/component/core/base/components/default-ok-cancel-buttons/default-ok-cancel-buttons.module.ts +0 -20
- package/projects/transaction/src/lib/component/core/base/components/transaction-header-block/transaction-header-block.component.ts +0 -51
- package/projects/transaction/src/lib/component/core/base/components/transaction-header-block/transaction-header-block.module.ts +0 -17
- package/projects/transaction/src/lib/component/core/base/components/warehouse/warehouse.component.ts +0 -65
- package/projects/transaction/src/lib/component/core/base/components/warehouse/warehouse.module.ts +0 -24
- package/projects/transaction/src/lib/component/core/base/dialog-base.component.ts +0 -8
- package/projects/transaction/src/lib/component/core/base/dialog-transaction-base.component.ts +0 -44
- package/projects/transaction/src/lib/component/core/base/dynamic-base-component.ts +0 -8
- package/projects/transaction/src/lib/component/core/base/transaction-base.component.ts +0 -188
- package/projects/transaction/src/lib/component/core/base/transaction-filter-base.component.ts +0 -70
- package/projects/transaction/src/lib/component/core/base/transaction-filter-content-base.component.ts +0 -49
- package/projects/transaction/src/lib/component/core/base/transaction-filter-popup-base.component.ts +0 -113
- package/projects/transaction/src/lib/component/core/base/transaction-grid-base.component.ts +0 -54
- package/projects/transaction/src/lib/component/core/base/transaction-header-filter-popup-base.component.ts +0 -124
- package/projects/transaction/src/lib/component/core/base/transaction-input-field-base.component.ts +0 -54
- package/projects/transaction/src/lib/component/core/base/transaction-lines-grid-view-base.component.ts +0 -6
- package/projects/transaction/src/lib/component/core/base/transaction-lines-list-view-base.component.ts +0 -6
- package/projects/transaction/src/lib/component/core/base/transaction-search-grid-base.component.ts +0 -24
- package/projects/transaction/src/lib/component/core/base/transaction-search-tile-base.component.ts +0 -30
- package/projects/transaction/src/lib/component/core/characteristic-answer/characteristic-answer.component.ts +0 -104
- package/projects/transaction/src/lib/component/core/core.module.ts +0 -47
- package/projects/transaction/src/lib/component/core/directive/lazy-render-master.directive.ts +0 -47
- package/projects/transaction/src/lib/component/core/directive/lazy-render.directive.ts +0 -37
- package/projects/transaction/src/lib/component/core/directive/template-wrapper.directive.ts +0 -72
- package/projects/transaction/src/lib/component/core/enum/app-popup-button-type.enum.ts +0 -9
- package/projects/transaction/src/lib/component/core/enum/app-popup-type.enum.ts +0 -6
- package/projects/transaction/src/lib/component/core/icon/icon.component.ts +0 -33
- package/projects/transaction/src/lib/component/core/image-display/image-display.component.ts +0 -27
- package/projects/transaction/src/lib/component/core/relation/customer-groups.component.ts +0 -47
- package/projects/transaction/src/lib/component/core/stock-status-indicator/stock-status-indicator.component.ts +0 -25
- package/projects/transaction/src/lib/component/delivery-type-tile/delivery-type-tile.component.ts +0 -48
- package/projects/transaction/src/lib/component/delivery-type-tile/delivery-type-tile.module.ts +0 -25
- package/projects/transaction/src/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.component.ts +0 -53
- package/projects/transaction/src/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.module.ts +0 -21
- package/projects/transaction/src/lib/component/dialog/dialog-header-search/dialog-header-search.component.ts +0 -40
- package/projects/transaction/src/lib/component/dialog/dialog-header-search/dialog-header-search.module.ts +0 -21
- package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-branch/dialog-transaction-header-branch.component.ts +0 -24
- package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-branch/dialog-transaction-header-branch.module.ts +0 -23
- package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-delivery-method/dialog-transaction-header-delivery-method.component.ts +0 -35
- package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-delivery-method/dialog-transaction-header-delivery-method.module.ts +0 -26
- package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-discount/dialog-transaction-header-discount.component.ts +0 -70
- package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-discount/dialog-transaction-header-discount.module.ts +0 -27
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-commission-code/dialog-transaction-line-commission-code.component.ts +0 -33
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-commission-code/dialog-transaction-line-commission-code.module.ts +0 -26
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-delivery-method/dialog-transaction-line-delivery-method.component.ts +0 -34
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-delivery-method/dialog-transaction-line-delivery-method.module.ts +0 -26
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-discount/dialog-transaction-line-discount.component.ts +0 -93
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-discount/dialog-transaction-line-discount.module.ts +0 -34
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-price-list/dialog-transaction-line-price-list.component.ts +0 -34
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-price-list/dialog-transaction-line-price-list.module.ts +0 -26
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-supplier/dialog-transaction-line-supplier.component.ts +0 -34
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-supplier/dialog-transaction-line-supplier.module.ts +0 -26
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-vat/dialog-transaction-line-vat.component.ts +0 -35
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-vat/dialog-transaction-line-vat.module.ts +0 -26
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse/dialog-transaction-line-warehouse.component.ts +0 -33
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse/dialog-transaction-line-warehouse.module.ts +0 -26
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/dialog-transaction-line-warehouse-cc.component.ts +0 -84
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/dialog-transaction-line-warehouse-cc.module.ts +0 -29
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/dialog-transaction-line-warehouse-location.component.ts +0 -42
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/dialog-transaction-line-warehouse-location.module.ts +0 -26
- package/projects/transaction/src/lib/component/discount/discount.component.ts +0 -120
- package/projects/transaction/src/lib/component/discount/discount.module.ts +0 -26
- package/projects/transaction/src/lib/component/down-payment/down-payment.component.ts +0 -77
- package/projects/transaction/src/lib/component/down-payment/down-payment.module.ts +0 -25
- package/projects/transaction/src/lib/component/editable-label/editable-label.component.ts +0 -74
- package/projects/transaction/src/lib/component/editable-label/editable-label.module.ts +0 -18
- package/projects/transaction/src/lib/component/loader/loader.component.ts +0 -49
- package/projects/transaction/src/lib/component/loader/loader.module.ts +0 -17
- package/projects/transaction/src/lib/component/order-confirmation-create/order-confirmation-create.component.ts +0 -42
- package/projects/transaction/src/lib/component/order-confirmation-create/order-confirmation-create.module.ts +0 -26
- package/projects/transaction/src/lib/component/payment/payment.component.ts +0 -264
- package/projects/transaction/src/lib/component/payment/payment.module.ts +0 -36
- package/projects/transaction/src/lib/component/payment-qr-code/payment-qr-code.component.ts +0 -24
- package/projects/transaction/src/lib/component/payment-qr-code/payment-qr-code.module.ts +0 -21
- package/projects/transaction/src/lib/component/payment-tile/payment-tile.component.ts +0 -38
- package/projects/transaction/src/lib/component/payment-tile/payment-tile.module.ts +0 -24
- package/projects/transaction/src/lib/component/quick-send-button/quick-send-button.component.ts +0 -60
- package/projects/transaction/src/lib/component/quick-send-button/quick-send-button.module.ts +0 -25
- package/projects/transaction/src/lib/component/relation/relation-address/relation-address.component.ts +0 -113
- package/projects/transaction/src/lib/component/relation/relation-address/relation-address.module.ts +0 -28
- package/projects/transaction/src/lib/component/relation/relation-address-select/relation-address-select.component.ts +0 -158
- package/projects/transaction/src/lib/component/relation/relation-address-select/relation-address-select.module.ts +0 -32
- package/projects/transaction/src/lib/component/relation/relation-address-tile/relation-address-tile.component.ts +0 -70
- package/projects/transaction/src/lib/component/relation/relation-address-tile/relation-address-tile.module.ts +0 -31
- package/projects/transaction/src/lib/component/relation/relation-addresses/relation-addresses.component.ts +0 -123
- package/projects/transaction/src/lib/component/relation/relation-addresses/relation-addresses.module.ts +0 -32
- package/projects/transaction/src/lib/component/relation/relation-base.component.ts +0 -33
- package/projects/transaction/src/lib/component/relation/relation-contact-details/relation-contact-details.component.ts +0 -65
- package/projects/transaction/src/lib/component/relation/relation-contact-details/relation-contact-details.module.ts +0 -22
- package/projects/transaction/src/lib/component/relation/relation-general/relation-general.component.ts +0 -237
- package/projects/transaction/src/lib/component/relation/relation-general/relation-general.module.ts +0 -25
- package/projects/transaction/src/lib/component/relation/relation-preferences/relation-preferences.component.ts +0 -64
- package/projects/transaction/src/lib/component/relation/relation-preferences/relation-preferences.module.ts +0 -19
- package/projects/transaction/src/lib/component/relation/relation-suggestions-list/relation-suggestions-list.component.ts +0 -28
- package/projects/transaction/src/lib/component/relation/relation-suggestions-list/relation-suggestions-list.module.ts +0 -19
- package/projects/transaction/src/lib/component/relation/relation-suggestions-list-item/relation-suggestions-list-item.component.ts +0 -33
- package/projects/transaction/src/lib/component/relation/relation-suggestions-list-item/relation-suggestions-list-item.module.ts +0 -17
- package/projects/transaction/src/lib/component/relation/relation-type/relation-type.component.ts +0 -48
- package/projects/transaction/src/lib/component/relation/relation-type/relation-type.module.ts +0 -21
- package/projects/transaction/src/lib/component/shared/transaction-article-text/transaction-article-text.component.ts +0 -181
- package/projects/transaction/src/lib/component/shared/transaction-article-text/transaction-article-text.module.ts +0 -40
- package/projects/transaction/src/lib/component/shared/transaction-article-text-overview/transaction-article-text-overview.component.ts +0 -145
- package/projects/transaction/src/lib/component/shared/transaction-article-text-overview/transaction-article-text-overview.module.ts +0 -27
- package/projects/transaction/src/lib/component/shopping-cart/shopping-cart.component.ts +0 -73
- package/projects/transaction/src/lib/component/shopping-cart/shopping-cart.module.ts +0 -25
- package/projects/transaction/src/lib/component/shopping-cart-OLD/ione-shopping-cart.component.ts +0 -190
- package/projects/transaction/src/lib/component/shopping-cart-OLD/ione-shopping-cart.module.ts +0 -81
- package/projects/transaction/src/lib/component/shopping-cart-OLD/shopping-cart-manager/shopping-cart-manager.component.ts +0 -508
- package/projects/transaction/src/lib/component/shopping-cart-preview/shopping-cart-preview.component.ts +0 -59
- package/projects/transaction/src/lib/component/shopping-cart-preview/shopping-cart-preview.module.ts +0 -27
- package/projects/transaction/src/lib/component/stepper/component/stepper-step.component.ts +0 -45
- package/projects/transaction/src/lib/component/stepper/stepper.component.ts +0 -148
- package/projects/transaction/src/lib/component/stepper/stepper.module.ts +0 -28
- package/projects/transaction/src/lib/component/tile/tile.component.ts +0 -31
- package/projects/transaction/src/lib/component/tile/tile.module.ts +0 -18
- package/projects/transaction/src/lib/component/toast/toast.component.ts +0 -35
- package/projects/transaction/src/lib/component/toast/toast.module.ts +0 -17
- package/projects/transaction/src/lib/component/transaction/style/_layout.scss +0 -56
- package/projects/transaction/src/lib/component/transaction/style/material.scss +0 -14
- package/projects/transaction/src/lib/component/transaction/transaction.component.ts +0 -206
- package/projects/transaction/src/lib/component/transaction/transaction.module.ts +0 -68
- package/projects/transaction/src/lib/component/transaction-allocate-goods-history/transaction-allocate-goods-history.component.ts +0 -95
- package/projects/transaction/src/lib/component/transaction-allocate-goods-history/transaction-allocate-goods-history.module.ts +0 -26
- package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button-base.component.ts +0 -45
- package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button.component.ts +0 -76
- package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-sales-purchase-button-bar-button.component.ts +0 -40
- package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar.component.ts +0 -63
- package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar.module.ts +0 -33
- package/projects/transaction/src/lib/component/transaction-card/transaction-card/style/_layout.scss +0 -12
- package/projects/transaction/src/lib/component/transaction-card/transaction-card/style/_theme.scss +0 -4
- package/projects/transaction/src/lib/component/transaction-card/transaction-card/style/material.scss +0 -7
- package/projects/transaction/src/lib/component/transaction-card/transaction-card/transaction-card.component.ts +0 -125
- package/projects/transaction/src/lib/component/transaction-card/transaction-card/transaction-card.module.ts +0 -28
- package/projects/transaction/src/lib/component/transaction-card/transaction-card-footer/style/_layout.scss +0 -25
- package/projects/transaction/src/lib/component/transaction-card/transaction-card-footer/style/_theme.scss +0 -4
- package/projects/transaction/src/lib/component/transaction-card/transaction-card-footer/transaction-card-footer.component.ts +0 -59
- package/projects/transaction/src/lib/component/transaction-card/transaction-card-footer/transaction-card-footer.module.ts +0 -24
- package/projects/transaction/src/lib/component/transaction-card/transaction-card-header/style/_layout.scss +0 -66
- package/projects/transaction/src/lib/component/transaction-card/transaction-card-header/style/_theme.scss +0 -4
- package/projects/transaction/src/lib/component/transaction-card/transaction-card-header/transaction-card-header.component.ts +0 -68
- package/projects/transaction/src/lib/component/transaction-card/transaction-card-header/transaction-card-header.module.ts +0 -31
- package/projects/transaction/src/lib/component/transaction-card/transaction-card-purchase-overview/style/_layout.scss +0 -67
- package/projects/transaction/src/lib/component/transaction-card/transaction-card-purchase-overview/style/_theme.scss +0 -4
- package/projects/transaction/src/lib/component/transaction-card/transaction-card-purchase-overview/transaction-card-purchase-overview.component.ts +0 -64
- package/projects/transaction/src/lib/component/transaction-card/transaction-card-purchase-overview/transaction-card-purchase-overview.module.ts +0 -44
- package/projects/transaction/src/lib/component/transaction-card/transaction-card-sales-overview/style/_layout.scss +0 -4
- package/projects/transaction/src/lib/component/transaction-card/transaction-card-sales-overview/style/_theme.scss +0 -4
- package/projects/transaction/src/lib/component/transaction-card/transaction-card-sales-overview/transaction-card-sales-overview.component.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-card/transaction-card-sales-overview/transaction-card-sales-overview.module.ts +0 -18
- package/projects/transaction/src/lib/component/transaction-confirmation-details/transaction-confirmation-details.component.ts +0 -148
- package/projects/transaction/src/lib/component/transaction-confirmation-details/transaction-confirmation-details.module.ts +0 -40
- package/projects/transaction/src/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.ts +0 -129
- package/projects/transaction/src/lib/component/transaction-confirmation-history/transaction-confirmation-history.module.ts +0 -38
- package/projects/transaction/src/lib/component/transaction-grid/transaction-available-stock-grid/transaction-available-stock-grid.component.ts +0 -107
- package/projects/transaction/src/lib/component/transaction-grid/transaction-available-stock-grid/transaction-available-stock-grid.module.ts +0 -23
- package/projects/transaction/src/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.component.ts +0 -49
- package/projects/transaction/src/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.module.ts +0 -31
- package/projects/transaction/src/lib/component/transaction-grid/transaction-grid/transaction-grid.component.ts +0 -91
- package/projects/transaction/src/lib/component/transaction-grid/transaction-grid/transaction-grid.module.ts +0 -17
- package/projects/transaction/src/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.component.ts +0 -102
- package/projects/transaction/src/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.module.ts +0 -26
- package/projects/transaction/src/lib/component/transaction-grid/transaction-lines-grid/transaction-lines-grid.component.ts +0 -119
- package/projects/transaction/src/lib/component/transaction-grid/transaction-lines-grid/transaction-lines-grid.module.ts +0 -48
- package/projects/transaction/src/lib/component/transaction-grid/transaction-order-confirmation-grid/transaction-order-confirmation-grid.component.ts +0 -48
- package/projects/transaction/src/lib/component/transaction-grid/transaction-order-confirmation-grid/transaction-order-confirmation-grid.module.ts +0 -28
- package/projects/transaction/src/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.component.ts +0 -165
- package/projects/transaction/src/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.module.ts +0 -41
- package/projects/transaction/src/lib/component/transaction-header/transaction-header/transaction-header.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-header/transaction-header/transaction-header.module.ts +0 -28
- package/projects/transaction/src/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.component.ts +0 -128
- package/projects/transaction/src/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.module.ts +0 -45
- package/projects/transaction/src/lib/component/transaction-header/transaction-header-order/transaction-header-order.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-header/transaction-header-order/transaction-header-order.module.ts +0 -30
- package/projects/transaction/src/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.ts +0 -118
- package/projects/transaction/src/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.module.ts +0 -33
- package/projects/transaction/src/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.component.ts +0 -235
- package/projects/transaction/src/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.module.ts +0 -43
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-administrative-relation.component.ts +0 -60
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-administrative-relation.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-branch.component.ts +0 -76
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-branch.module.ts +0 -24
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-definitive.component.ts +0 -41
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-definitive.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-date.component.ts +0 -46
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-date.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-method.component.ts +0 -94
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-method.module.ts +0 -27
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-options/transaction-header-delivery-options.component.ts +0 -77
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-options/transaction-header-delivery-options.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-amount.component.ts +0 -50
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-amount.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-button.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-button.module.ts +0 -24
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-percentage.component.ts +0 -50
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-percentage.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-transaction-total.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-transaction-total.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-downpayment-amount.component.ts +0 -49
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-downpayment-amount.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-downpayment-percentage.component.ts +0 -49
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-downpayment-percentage.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-marketing.component.ts +0 -48
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-marketing.module.ts +0 -24
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-partial-delivery.component.ts +0 -47
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-partial-delivery.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-preferred-delivery-date.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-preferred-delivery-date.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-reference.component.ts +0 -48
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-reference.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-relation-reference.component.ts +0 -48
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-relation-reference.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-remarks.component.ts +0 -48
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-remarks.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-history-grid-status/transaction-history-grid-status.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-history-grid-status/transaction-history-grid-status.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line/transaction-base-line/transaction-base-line.component.ts +0 -93
- package/projects/transaction/src/lib/component/transaction-line/transaction-base-line/transaction-base-line.module.ts +0 -28
- package/projects/transaction/src/lib/component/transaction-line/transaction-goods-allocation-line/service/transaction-allocate-goods.service.ts +0 -67
- package/projects/transaction/src/lib/component/transaction-line/transaction-goods-allocation-line/transaction-goods-allocation-line.component.ts +0 -115
- package/projects/transaction/src/lib/component/transaction-line/transaction-goods-allocation-line/transaction-goods-allocation-line.module.ts +0 -35
- package/projects/transaction/src/lib/component/transaction-line/transaction-line/transaction-line.component.ts +0 -143
- package/projects/transaction/src/lib/component/transaction-line/transaction-line/transaction-line.module.ts +0 -20
- package/projects/transaction/src/lib/component/transaction-line/transaction-order-delivery-line/service/transaction-order-delivery.service.ts +0 -70
- package/projects/transaction/src/lib/component/transaction-line/transaction-order-delivery-line/transaction-order-delivery-line.component.ts +0 -178
- package/projects/transaction/src/lib/component/transaction-line/transaction-order-delivery-line/transaction-order-delivery-line.module.ts +0 -41
- package/projects/transaction/src/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.component.ts +0 -95
- package/projects/transaction/src/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.module.ts +0 -60
- package/projects/transaction/src/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.component.ts +0 -105
- package/projects/transaction/src/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.module.ts +0 -44
- package/projects/transaction/src/lib/component/transaction-line/transaction-receive-goods-line/service/transaction-receive-goods.service.ts +0 -73
- package/projects/transaction/src/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.component.ts +0 -130
- package/projects/transaction/src/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.module.ts +0 -46
- package/projects/transaction/src/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.component.ts +0 -224
- package/projects/transaction/src/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.module.ts +0 -30
- package/projects/transaction/src/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.component.ts +0 -58
- package/projects/transaction/src/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.module.ts +0 -23
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-amount.component.ts +0 -46
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-amount.module.ts +0 -19
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-assembly-time.component.ts +0 -0
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-assembly-time.module.ts +0 -0
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-collection-code.component.ts +0 -0
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-collection-code.module.ts +0 -0
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-commission-button.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-commission-button.module.ts +0 -22
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-commission-code.component.ts +0 -55
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-commission-code.module.ts +0 -24
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-button.component.ts +0 -58
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-button.module.ts +0 -22
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-date-button.component.ts +0 -34
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-date-button.module.ts +0 -22
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-date.component.ts +0 -56
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-date.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-method.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-method.module.ts +0 -24
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-description.component.ts +0 -61
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-description.module.ts +0 -22
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-discount-amount.component.ts +0 -49
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-discount-amount.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-discount-button.component.ts +0 -53
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-discount-button.module.ts +0 -24
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-edit-time.component.ts +0 -0
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-edit-time.module.ts +0 -0
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-line-discount.component.ts +0 -49
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-line-discount.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.component.ts +0 -90
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-price-list.component.ts +0 -49
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-price-list.module.ts +0 -24
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-quantity.component.ts +0 -35
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-quantity.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-quantum-discount.component.ts +0 -49
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-quantum-discount.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-reference.component.ts +0 -47
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-reference.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-special-discount.component.ts +0 -49
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-special-discount.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier-article-number.component.ts +0 -0
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier-article-number.module.ts +0 -0
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier-button.component.ts +0 -56
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier-button.module.ts +0 -27
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier.component.ts +0 -56
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier.module.ts +0 -23
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-vat-button.component.ts +0 -55
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-vat-button.module.ts +0 -20
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-vat.component.ts +0 -45
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-vat.module.ts +0 -26
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse-button.component.ts +0 -61
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse-button.module.ts +0 -22
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse-location-button.component.ts +0 -57
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse-location-button.module.ts +0 -20
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse-location.component.ts +0 -46
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse-location.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse.component.ts +0 -48
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse.module.ts +0 -25
- package/projects/transaction/src/lib/component/transaction-line-grid/transaction-line-grid.component.ts +0 -20
- package/projects/transaction/src/lib/component/transaction-line-grid/transaction-line-grid.module.ts +0 -19
- package/projects/transaction/src/lib/component/transaction-line-image-and-description/transaction-line-image-and-description.component.ts +0 -102
- package/projects/transaction/src/lib/component/transaction-line-image-and-description/transaction-line-image-and-description.module.ts +0 -26
- package/projects/transaction/src/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.ts +0 -125
- package/projects/transaction/src/lib/component/transaction-line-side-panel/transaction-line-side-panel.module.ts +0 -43
- package/projects/transaction/src/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.component.ts +0 -120
- package/projects/transaction/src/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.module.ts +0 -58
- package/projects/transaction/src/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.ts +0 -123
- package/projects/transaction/src/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.module.ts +0 -39
- package/projects/transaction/src/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-sales.component.ts +0 -85
- package/projects/transaction/src/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-sales.module.ts +0 -30
- package/projects/transaction/src/lib/component/transaction-line-statusbar/transaction-line-statusbar.component.ts +0 -110
- package/projects/transaction/src/lib/component/transaction-line-statusbar/transaction-line-statusbar.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-lines/transaction-lines.component.ts +0 -180
- package/projects/transaction/src/lib/component/transaction-lines/transaction-lines.module.ts +0 -30
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.component.ts +0 -107
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.module.ts +0 -42
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-goods-allocation/transaction-quick-access-goods-allocation.component.ts +0 -68
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-goods-allocation/transaction-quick-access-goods-allocation.module.ts +0 -24
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.ts +0 -41
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.module.ts +0 -27
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-delivery/transaction-quick-access-order-delivery.component.ts +0 -120
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-delivery/transaction-quick-access-order-delivery.module.ts +0 -28
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-purchase/style/material.scss +0 -4
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-purchase/transaction-quick-access-order-purchase.component.ts +0 -54
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-purchase/transaction-quick-access-order-purchase.module.ts +0 -26
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-overview/style/material.scss +0 -4
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.component.ts +0 -139
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.module.ts +0 -29
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/style/material.scss +0 -4
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/transaction-quick-access-purchase-order-overview.component.ts +0 -133
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/transaction-quick-access-purchase-order-overview.module.ts +0 -27
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-received-goods/style/material.scss +0 -4
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.ts +0 -96
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.module.ts +0 -31
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-send-method-base.component.ts +0 -132
- package/projects/transaction/src/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.component.ts +0 -90
- package/projects/transaction/src/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.module.ts +0 -28
- package/projects/transaction/src/lib/component/transaction-search/service/filter-request.service.ts +0 -194
- package/projects/transaction/src/lib/component/transaction-search/service/transaction-search.service.ts +0 -134
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-filter/transaction-filter.component.ts +0 -119
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-filter/transaction-filter.module.ts +0 -17
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/transaction-purchase-order-filter.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/transaction-purchase-order-filter.module.ts +0 -40
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/transaction-sales-order-filter.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/transaction-sales-order-filter.module.ts +0 -38
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-categories/transaction-filter-categories.component.ts +0 -44
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-categories/transaction-filter-categories.module.ts +0 -17
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/enum/search-placeholder.enum.ts +0 -25
- 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 +0 -155
- 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 +0 -27
- 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 +0 -249
- 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 +0 -33
- 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 +0 -246
- 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 +0 -38
- 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 +0 -145
- 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 +0 -27
- 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 +0 -248
- 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 +0 -33
- 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 +0 -274
- 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 +0 -38
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-historic-state/transaction-filter-historic-state.component.ts +0 -70
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-historic-state/transaction-filter-historic-state.module.ts +0 -24
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-item/transaction-filter-item.component.ts +0 -71
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-item/transaction-filter-item.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/transaction-search-grid.component.ts +0 -104
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/transaction-search-grid.module.ts +0 -17
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/style/_material-definition.scss +0 -0
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.component.ts +0 -80
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.module.ts +0 -23
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.component.ts +0 -80
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.module.ts +0 -25
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-header/transaction-search-header.component.ts +0 -135
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-header/transaction-search-header.module.ts +0 -25
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.ts +0 -136
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-result/transaction-search-result.module.ts +0 -42
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/style/_material-definition.scss +0 -0
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.component.ts +0 -65
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.module.ts +0 -27
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/style/_material-definition.scss +0 -0
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.component.ts +0 -72
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.module.ts +0 -30
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/style/_material-definition.scss +0 -0
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/transaction-search-tile.component.ts +0 -118
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/transaction-search-tile.module.ts +0 -17
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-statusbar/transaction-statusbar.component.ts +0 -90
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-statusbar/transaction-statusbar.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-search/transaction-search.component.ts +0 -166
- package/projects/transaction/src/lib/component/transaction-search/transaction-search.module.ts +0 -34
- package/projects/transaction/src/lib/component/transaction-side-panel-edit-request-details/components/allocation-request.component.ts +0 -143
- package/projects/transaction/src/lib/component/transaction-side-panel-edit-request-details/components/confirm-request.component.ts +0 -0
- package/projects/transaction/src/lib/component/transaction-side-panel-edit-request-details/components/receive-goods-request.component.ts +0 -207
- package/projects/transaction/src/lib/component/transaction-side-panel-edit-request-details/transaction-side-panel-edit-request-details.component.ts +0 -63
- package/projects/transaction/src/lib/component/transaction-side-panel-edit-request-details/transaction-side-panel-edit-request-details.module.ts +0 -42
- package/projects/transaction/src/lib/component/transaction-tile/style/_material-definition.scss +0 -0
- package/projects/transaction/src/lib/component/transaction-tile/transaction-tile.component.ts +0 -117
- package/projects/transaction/src/lib/component/transaction-tile/transaction-tile.module.ts +0 -27
- package/projects/transaction/src/lib/component/transaction-totals/transaction-totals.component.ts +0 -55
- package/projects/transaction/src/lib/component/transaction-totals/transaction-totals.module.ts +0 -23
- package/projects/transaction/src/lib/component/view-mode-buttons/view-mode-buttons.component.ts +0 -63
- package/projects/transaction/src/lib/component/view-mode-buttons/view-mode-buttons.module.ts +0 -21
- package/projects/transaction/src/lib/enum/content-view-mode.enum.ts +0 -9
- package/projects/transaction/src/lib/enum/direction.enum.ts +0 -7
- package/projects/transaction/src/lib/enum/icon.enum.ts +0 -83
- package/projects/transaction/src/lib/enum/language-code.enum.ts +0 -6
- package/projects/transaction/src/lib/enum/order-discount-type.enum.ts +0 -5
- package/projects/transaction/src/lib/enum/position-grid-row.enum.ts +0 -4
- package/projects/transaction/src/lib/enum/search-view-mode.enum.ts +0 -5
- package/projects/transaction/src/lib/enum/searchbar-view-mode.enum.ts +0 -5
- package/projects/transaction/src/lib/enum/status-type.enum.ts +0 -5
- package/projects/transaction/src/lib/enum/time-size.type.ts +0 -8
- package/projects/transaction/src/lib/enum/transaction-type-category.enum.ts +0 -15
- package/projects/transaction/src/lib/interface/dialog-response.interface.ts +0 -6
- package/projects/transaction/src/lib/model/Settings.ts +0 -20
- package/projects/transaction/src/lib/model/article-characteristic-text-question-answer.ts +0 -8
- package/projects/transaction/src/lib/model/delivery-type.ts +0 -8
- package/projects/transaction/src/lib/model/down-payment-view-model.ts +0 -13
- package/projects/transaction/src/lib/model/extended-transaction-line-view-model.ts +0 -12
- package/projects/transaction/src/lib/model/filter-item.viewmodel.ts +0 -13
- package/projects/transaction/src/lib/model/filter-viewmodel.ts +0 -11
- package/projects/transaction/src/lib/model/icon-svg.ts +0 -83
- package/projects/transaction/src/lib/model/payment.viewmodel.ts +0 -10
- package/projects/transaction/src/lib/model/received-goods-view-model.ts +0 -17
- package/projects/transaction/src/lib/model/relation-any-type.ts +0 -5
- package/projects/transaction/src/lib/model/standard-text.ts +0 -5
- package/projects/transaction/src/lib/model/text-value-container.ts +0 -4
- package/projects/transaction/src/lib/model/transaction-bar-button.ts +0 -11
- package/projects/transaction/src/lib/model/transaction-search-result.ts +0 -6
- package/projects/transaction/src/lib/pipe/append.pipe.ts +0 -17
- package/projects/transaction/src/lib/pipe/co-currency.pipe.ts +0 -45
- package/projects/transaction/src/lib/pipe/date-duration.pipe.ts +0 -51
- package/projects/transaction/src/lib/pipe/delivery-time.pipe.ts +0 -34
- package/projects/transaction/src/lib/pipe/localize.pipe.ts +0 -23
- package/projects/transaction/src/lib/pipe/pipe.module.ts +0 -34
- package/projects/transaction/src/lib/pipe/safe-html.pipe.ts +0 -14
- package/projects/transaction/src/lib/pipe/safe-style.pipe.ts +0 -14
- package/projects/transaction/src/lib/provider/token/all-icons.token.ts +0 -4
- package/projects/transaction/src/lib/service/article-connector.service.ts +0 -93
- package/projects/transaction/src/lib/service/article.service.ts +0 -22
- package/projects/transaction/src/lib/service/dialog.service.ts +0 -143
- package/projects/transaction/src/lib/service/dictionary.service.ts +0 -86
- package/projects/transaction/src/lib/service/dynamic-component.service.ts +0 -101
- package/projects/transaction/src/lib/service/error.service.ts +0 -63
- package/projects/transaction/src/lib/service/icon-cache.service.ts +0 -51
- package/projects/transaction/src/lib/service/options.service.ts +0 -66
- package/projects/transaction/src/lib/service/payment.service.ts +0 -93
- package/projects/transaction/src/lib/service/pending-reason.service.ts +0 -323
- package/projects/transaction/src/lib/service/relation-connector.service.ts +0 -202
- package/projects/transaction/src/lib/service/relation.service.ts +0 -168
- package/projects/transaction/src/lib/service/shared-connector.service.ts +0 -47
- package/projects/transaction/src/lib/service/shared.service.ts +0 -40
- package/projects/transaction/src/lib/service/transaction-connector-adapter.service.ts +0 -1695
- package/projects/transaction/src/lib/service/transaction-connector.service.ts +0 -648
- package/projects/transaction/src/lib/service/transaction-event.service.ts +0 -35
- package/projects/transaction/src/lib/service/transaction-image.service.ts +0 -42
- package/projects/transaction/src/lib/service/transaction-initializer.service.ts +0 -29
- package/projects/transaction/src/lib/service/transaction-mapping.service.ts +0 -230
- package/projects/transaction/src/lib/service/transaction.service.ts +0 -848
- package/projects/transaction/src/public_api.ts +0 -50
- package/projects/transaction/src/test.ts +0 -25
- package/projects/transaction/tsconfig.lib.json +0 -20
- package/projects/transaction/tsconfig.lib.prod.json +0 -16
- package/projects/transaction/tsconfig.spec.json +0 -17
- package/publish.bat +0 -7
- package/script/merge-icons.js +0 -39
- package/src/app/app-transaction.component.ts +0 -18
- package/src/app/app.component.scss +0 -45
- package/src/app/app.component.ts +0 -327
- package/src/app/app.module.ts +0 -62
- package/src/environments/environment.prod.ts +0 -3
- package/src/environments/environment.ts +0 -16
- package/src/favicon.ico +0 -0
- package/src/index.html +0 -15
- package/src/main.ts +0 -14
- package/src/polyfills.ts +0 -63
- package/src/styles.scss +0 -93
- package/src/test.ts +0 -25
- package/src/transaction.unit.test.ts +0 -60
- package/tsconfig.app.json +0 -15
- package/tsconfig.json +0 -42
- package/tsconfig.spec.json +0 -18
- package/webpack.config.js +0 -18
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { ApplicationRef, ComponentFactoryResolver, Injectable, Injector } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class DynamicComponentService {
|
|
4
|
+
constructor(_compFactoryResolver, appRef, injector) {
|
|
5
|
+
this._compFactoryResolver = _compFactoryResolver;
|
|
6
|
+
this.appRef = appRef;
|
|
7
|
+
this.injector = injector;
|
|
8
|
+
this._componentRefs = [];
|
|
9
|
+
}
|
|
10
|
+
getComponentRefs() {
|
|
11
|
+
return this._componentRefs;
|
|
12
|
+
}
|
|
13
|
+
createAndReturnComponentRef(componentClass, inputs) {
|
|
14
|
+
return new Promise((resolve) => {
|
|
15
|
+
const componentRef = this._compFactoryResolver
|
|
16
|
+
.resolveComponentFactory(componentClass)
|
|
17
|
+
.create(this.injector);
|
|
18
|
+
if (inputs) {
|
|
19
|
+
for (let property in inputs) {
|
|
20
|
+
if (inputs.hasOwnProperty(property)) {
|
|
21
|
+
componentRef.instance[property] = inputs[property];
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
this.appRef.attachView(componentRef.hostView);
|
|
26
|
+
const domElem = componentRef.hostView
|
|
27
|
+
.rootNodes[0];
|
|
28
|
+
document.body.appendChild(domElem);
|
|
29
|
+
componentRef.onDestroy(() => {
|
|
30
|
+
this.appRef.detachView(componentRef.hostView);
|
|
31
|
+
});
|
|
32
|
+
resolve(componentRef);
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
createComponent(componentClass, inputs, outputs, providers) {
|
|
36
|
+
return new Promise((resolve) => {
|
|
37
|
+
if (providers) {
|
|
38
|
+
Injector.create(providers, this.injector);
|
|
39
|
+
}
|
|
40
|
+
const componentRef = this._compFactoryResolver
|
|
41
|
+
.resolveComponentFactory(componentClass)
|
|
42
|
+
.create(this.injector);
|
|
43
|
+
this._componentRefs.push(componentRef);
|
|
44
|
+
if (inputs) {
|
|
45
|
+
for (let property in inputs) {
|
|
46
|
+
if (inputs.hasOwnProperty(property)) {
|
|
47
|
+
componentRef.instance[property] = inputs[property];
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
if (outputs) {
|
|
52
|
+
for (let event in outputs) {
|
|
53
|
+
if (outputs.hasOwnProperty(event)) {
|
|
54
|
+
componentRef.instance[event].subscribe(() => outputs[event]());
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
this.appRef.attachView(componentRef.hostView);
|
|
59
|
+
const domElem = componentRef.hostView
|
|
60
|
+
.rootNodes[0];
|
|
61
|
+
document.body.appendChild(domElem);
|
|
62
|
+
componentRef.onDestroy(() => {
|
|
63
|
+
this.appRef.detachView(componentRef.hostView);
|
|
64
|
+
});
|
|
65
|
+
componentRef.instance.onClose = (button, output) => {
|
|
66
|
+
const idx = this._componentRefs.indexOf(componentRef);
|
|
67
|
+
this.appRef.detachView(componentRef.hostView);
|
|
68
|
+
this._componentRefs[idx] = undefined;
|
|
69
|
+
this._componentRefs.splice(idx, 1);
|
|
70
|
+
if (outputs) {
|
|
71
|
+
for (let event in outputs) {
|
|
72
|
+
if (outputs.hasOwnProperty(event)) {
|
|
73
|
+
componentRef.instance[event].unsubscribe();
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
resolve({ button: button, output: output ? output : undefined });
|
|
78
|
+
};
|
|
79
|
+
});
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
DynamicComponentService.ɵprov = i0.ɵɵdefineInjectable({ factory: function DynamicComponentService_Factory() { return new DynamicComponentService(i0.ɵɵinject(i0.ComponentFactoryResolver), i0.ɵɵinject(i0.ApplicationRef), i0.ɵɵinject(i0.INJECTOR)); }, token: DynamicComponentService, providedIn: "root" });
|
|
83
|
+
DynamicComponentService.decorators = [
|
|
84
|
+
{ type: Injectable, args: [{
|
|
85
|
+
providedIn: "root"
|
|
86
|
+
},] }
|
|
87
|
+
];
|
|
88
|
+
DynamicComponentService.ctorParameters = () => [
|
|
89
|
+
{ type: ComponentFactoryResolver },
|
|
90
|
+
{ type: ApplicationRef },
|
|
91
|
+
{ type: Injector }
|
|
92
|
+
];
|
|
93
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHluYW1pYy1jb21wb25lbnQuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RyYW5zYWN0aW9uL3NyYy9saWIvc2VydmljZS9keW5hbWljLWNvbXBvbmVudC5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxjQUFjLEVBQUUsd0JBQXdCLEVBQWlDLFVBQVUsRUFBRSxRQUFRLEVBQWlCLE1BQU0sZUFBZSxDQUFDOztBQU01SSxNQUFNLE9BQU8sdUJBQXVCO0lBSWxDLFlBQ1Usb0JBQThDLEVBQzlDLE1BQXNCLEVBQ3RCLFFBQWtCO1FBRmxCLHlCQUFvQixHQUFwQixvQkFBb0IsQ0FBMEI7UUFDOUMsV0FBTSxHQUFOLE1BQU0sQ0FBZ0I7UUFDdEIsYUFBUSxHQUFSLFFBQVEsQ0FBVTtRQUxwQixtQkFBYyxHQUFVLEVBQUUsQ0FBQztJQU0vQixDQUFDO0lBRUUsZ0JBQWdCO1FBQ3JCLE9BQU8sSUFBSSxDQUFDLGNBQWMsQ0FBQztJQUM3QixDQUFDO0lBRU0sMkJBQTJCLENBQUMsY0FBbUIsRUFBRSxNQUFZO1FBQ2xFLE9BQU8sSUFBSSxPQUFPLENBQUMsQ0FBQyxPQUFpQixFQUFFLEVBQUU7WUFDdkMsTUFBTSxZQUFZLEdBQVEsSUFBSSxDQUFDLG9CQUFvQjtpQkFDaEQsdUJBQXVCLENBQUMsY0FBYyxDQUFDO2lCQUN2QyxNQUFNLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1lBRXpCLElBQUksTUFBTSxFQUFFO2dCQUNWLEtBQUssSUFBSSxRQUFRLElBQUksTUFBTSxFQUFFO29CQUMzQixJQUFJLE1BQU0sQ0FBQyxjQUFjLENBQUMsUUFBUSxDQUFDLEVBQUU7d0JBQ25DLFlBQVksQ0FBQyxRQUFRLENBQUMsUUFBUSxDQUFDLEdBQUcsTUFBTSxDQUFDLFFBQVEsQ0FBQyxDQUFDO3FCQUNwRDtpQkFDRjthQUNGO1lBRUQsSUFBSSxDQUFDLE1BQU0sQ0FBQyxVQUFVLENBQUMsWUFBWSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1lBRTlDLE1BQU0sT0FBTyxHQUFJLFlBQVksQ0FBQyxRQUFpQztpQkFDNUQsU0FBUyxDQUFDLENBQUMsQ0FBZ0IsQ0FBQztZQUUvQixRQUFRLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxPQUFPLENBQUMsQ0FBQztZQUNuQyxZQUFZLENBQUMsU0FBUyxDQUFDLEdBQUcsRUFBRTtnQkFDMUIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxVQUFVLENBQUMsWUFBWSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1lBQ2hELENBQUMsQ0FBQyxDQUFDO1lBQ0gsT0FBTyxDQUFDLFlBQVksQ0FBQyxDQUFDO1FBQ3hCLENBQUMsQ0FBQyxDQUFBO0lBQ0osQ0FBQztJQUVNLGVBQWUsQ0FBQyxjQUFtQixFQUFFLE1BQVksRUFBRSxPQUFhLEVBQUUsU0FBNEI7UUFDbkcsT0FBTyxJQUFJLE9BQU8sQ0FBQyxDQUFDLE9BQWlCLEVBQUUsRUFBRTtZQUN2QyxJQUFJLFNBQVMsRUFBRTtnQkFDYixRQUFRLENBQUMsTUFBTSxDQUFDLFNBQVMsRUFBRSxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUM7YUFDM0M7WUFDRCxNQUFNLFlBQVksR0FBUSxJQUFJLENBQUMsb0JBQW9CO2lCQUNoRCx1QkFBdUIsQ0FBQyxjQUFjLENBQUM7aUJBQ3ZDLE1BQU0sQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUM7WUFDekIsSUFBSSxDQUFDLGNBQWMsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUM7WUFFdkMsSUFBSSxNQUFNLEVBQUU7Z0JBQ1YsS0FBSyxJQUFJLFFBQVEsSUFBSSxNQUFNLEVBQUU7b0JBQzNCLElBQUksTUFBTSxDQUFDLGNBQWMsQ0FBQyxRQUFRLENBQUMsRUFBRTt3QkFDbkMsWUFBWSxDQUFDLFFBQVEsQ0FBQyxRQUFRLENBQUMsR0FBRyxNQUFNLENBQUMsUUFBUSxDQUFDLENBQUM7cUJBQ3BEO2lCQUNGO2FBQ0Y7WUFFRCxJQUFJLE9BQU8sRUFBRTtnQkFDWCxLQUFLLElBQUksS0FBSyxJQUFJLE9BQU8sRUFBRTtvQkFDekIsSUFBSSxPQUFPLENBQUMsY0FBYyxDQUFDLEtBQUssQ0FBQyxFQUFFO3dCQUNqQyxZQUFZLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQyxDQUFDLFNBQVMsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQyxDQUFDO3FCQUNoRTtpQkFDRjthQUNGO1lBRUQsSUFBSSxDQUFDLE1BQU0sQ0FBQyxVQUFVLENBQUMsWUFBWSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1lBRTlDLE1BQU0sT0FBTyxHQUFJLFlBQVksQ0FBQyxRQUFpQztpQkFDNUQsU0FBUyxDQUFDLENBQUMsQ0FBZ0IsQ0FBQztZQUUvQixRQUFRLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxPQUFPLENBQUMsQ0FBQztZQUNuQyxZQUFZLENBQUMsU0FBUyxDQUFDLEdBQUcsRUFBRTtnQkFDMUIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxVQUFVLENBQUMsWUFBWSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1lBQ2hELENBQUMsQ0FBQyxDQUFDO1lBRUgsWUFBWSxDQUFDLFFBQVEsQ0FBQyxPQUFPLEdBQUcsQ0FBQyxNQUFXLEVBQUUsTUFBWSxFQUFFLEVBQUU7Z0JBQzVELE1BQU0sR0FBRyxHQUFXLElBQUksQ0FBQyxjQUFjLENBQUMsT0FBTyxDQUFDLFlBQVksQ0FBQyxDQUFDO2dCQUM5RCxJQUFJLENBQUMsTUFBTSxDQUFDLFVBQVUsQ0FBQyxZQUFZLENBQUMsUUFBUSxDQUFDLENBQUM7Z0JBQzlDLElBQUksQ0FBQyxjQUFjLENBQUMsR0FBRyxDQUFDLEdBQUcsU0FBUyxDQUFDO2dCQUNyQyxJQUFJLENBQUMsY0FBYyxDQUFDLE1BQU0sQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLENBQUM7Z0JBRW5DLElBQUksT0FBTyxFQUFFO29CQUNYLEtBQUssSUFBSSxLQUFLLElBQUksT0FBTyxFQUFFO3dCQUN6QixJQUFJLE9BQU8sQ0FBQyxjQUFjLENBQUMsS0FBSyxDQUFDLEVBQUU7NEJBQ2pDLFlBQVksQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLENBQUMsV0FBVyxFQUFFLENBQUM7eUJBQzVDO3FCQUNGO2lCQUNGO2dCQUNELE9BQU8sQ0FBQyxFQUFDLE1BQU0sRUFBRSxNQUFNLEVBQUUsTUFBTSxFQUFFLE1BQU0sQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxTQUFTLEVBQUMsQ0FBQyxDQUFDO1lBQ2pFLENBQUMsQ0FBQTtRQUNILENBQUMsQ0FBQyxDQUFBO0lBQ0osQ0FBQzs7OztZQWhHRixVQUFVLFNBQUM7Z0JBQ1YsVUFBVSxFQUFFLE1BQU07YUFDbkI7OztZQUx1Qix3QkFBd0I7WUFBeEMsY0FBYztZQUF1RSxRQUFRIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtBcHBsaWNhdGlvblJlZiwgQ29tcG9uZW50RmFjdG9yeVJlc29sdmVyLCBDb21wb25lbnRSZWYsIEVtYmVkZGVkVmlld1JlZiwgSW5qZWN0YWJsZSwgSW5qZWN0b3IsIFN0YXRpY1Byb3ZpZGVyfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQge0RpYWxvZ1Jlc3BvbnNlSW50ZXJmYWNlfSBmcm9tIFwiLi4vaW50ZXJmYWNlL2RpYWxvZy1yZXNwb25zZS5pbnRlcmZhY2VcIjtcclxuXHJcbkBJbmplY3RhYmxlKHtcclxuICBwcm92aWRlZEluOiBcInJvb3RcIlxyXG59KVxyXG5leHBvcnQgY2xhc3MgRHluYW1pY0NvbXBvbmVudFNlcnZpY2Uge1xyXG5cclxuICBwcml2YXRlIF9jb21wb25lbnRSZWZzOiBhbnlbXSA9IFtdO1xyXG5cclxuICBjb25zdHJ1Y3RvcihcclxuICAgIHByaXZhdGUgX2NvbXBGYWN0b3J5UmVzb2x2ZXI6IENvbXBvbmVudEZhY3RvcnlSZXNvbHZlcixcclxuICAgIHByaXZhdGUgYXBwUmVmOiBBcHBsaWNhdGlvblJlZixcclxuICAgIHByaXZhdGUgaW5qZWN0b3I6IEluamVjdG9yXHJcbiAgKSB7IH1cclxuXHJcbiAgcHVibGljIGdldENvbXBvbmVudFJlZnMoKTogQ29tcG9uZW50UmVmPGFueT5bXSB7XHJcbiAgICByZXR1cm4gdGhpcy5fY29tcG9uZW50UmVmcztcclxuICB9XHJcblxyXG4gIHB1YmxpYyBjcmVhdGVBbmRSZXR1cm5Db21wb25lbnRSZWYoY29tcG9uZW50Q2xhc3M6IGFueSwgaW5wdXRzPzogYW55KTogUHJvbWlzZTxhbnk+IHtcclxuICAgIHJldHVybiBuZXcgUHJvbWlzZSgocmVzb2x2ZTogRnVuY3Rpb24pID0+IHtcclxuICAgICAgY29uc3QgY29tcG9uZW50UmVmOiBhbnkgPSB0aGlzLl9jb21wRmFjdG9yeVJlc29sdmVyXHJcbiAgICAgICAgLnJlc29sdmVDb21wb25lbnRGYWN0b3J5KGNvbXBvbmVudENsYXNzKVxyXG4gICAgICAgIC5jcmVhdGUodGhpcy5pbmplY3Rvcik7XHJcblxyXG4gICAgICBpZiAoaW5wdXRzKSB7XHJcbiAgICAgICAgZm9yIChsZXQgcHJvcGVydHkgaW4gaW5wdXRzKSB7XHJcbiAgICAgICAgICBpZiAoaW5wdXRzLmhhc093blByb3BlcnR5KHByb3BlcnR5KSkge1xyXG4gICAgICAgICAgICBjb21wb25lbnRSZWYuaW5zdGFuY2VbcHJvcGVydHldID0gaW5wdXRzW3Byb3BlcnR5XTtcclxuICAgICAgICAgIH1cclxuICAgICAgICB9XHJcbiAgICAgIH1cclxuXHJcbiAgICAgIHRoaXMuYXBwUmVmLmF0dGFjaFZpZXcoY29tcG9uZW50UmVmLmhvc3RWaWV3KTtcclxuXHJcbiAgICAgIGNvbnN0IGRvbUVsZW0gPSAoY29tcG9uZW50UmVmLmhvc3RWaWV3IGFzIEVtYmVkZGVkVmlld1JlZjxhbnk+KVxyXG4gICAgICAgIC5yb290Tm9kZXNbMF0gYXMgSFRNTEVsZW1lbnQ7XHJcblxyXG4gICAgICBkb2N1bWVudC5ib2R5LmFwcGVuZENoaWxkKGRvbUVsZW0pO1xyXG4gICAgICBjb21wb25lbnRSZWYub25EZXN0cm95KCgpID0+IHtcclxuICAgICAgICB0aGlzLmFwcFJlZi5kZXRhY2hWaWV3KGNvbXBvbmVudFJlZi5ob3N0Vmlldyk7XHJcbiAgICAgIH0pO1xyXG4gICAgICByZXNvbHZlKGNvbXBvbmVudFJlZik7XHJcbiAgICB9KVxyXG4gIH1cclxuXHJcbiAgcHVibGljIGNyZWF0ZUNvbXBvbmVudChjb21wb25lbnRDbGFzczogYW55LCBpbnB1dHM/OiBhbnksIG91dHB1dHM/OiBhbnksIHByb3ZpZGVycz86IFN0YXRpY1Byb3ZpZGVyW10pOiBQcm9taXNlPERpYWxvZ1Jlc3BvbnNlSW50ZXJmYWNlPiB7XHJcbiAgICByZXR1cm4gbmV3IFByb21pc2UoKHJlc29sdmU6IEZ1bmN0aW9uKSA9PiB7XHJcbiAgICAgIGlmIChwcm92aWRlcnMpIHtcclxuICAgICAgICBJbmplY3Rvci5jcmVhdGUocHJvdmlkZXJzLCB0aGlzLmluamVjdG9yKTtcclxuICAgICAgfVxyXG4gICAgICBjb25zdCBjb21wb25lbnRSZWY6IGFueSA9IHRoaXMuX2NvbXBGYWN0b3J5UmVzb2x2ZXJcclxuICAgICAgICAucmVzb2x2ZUNvbXBvbmVudEZhY3RvcnkoY29tcG9uZW50Q2xhc3MpXHJcbiAgICAgICAgLmNyZWF0ZSh0aGlzLmluamVjdG9yKTtcclxuICAgICAgdGhpcy5fY29tcG9uZW50UmVmcy5wdXNoKGNvbXBvbmVudFJlZik7XHJcblxyXG4gICAgICBpZiAoaW5wdXRzKSB7XHJcbiAgICAgICAgZm9yIChsZXQgcHJvcGVydHkgaW4gaW5wdXRzKSB7XHJcbiAgICAgICAgICBpZiAoaW5wdXRzLmhhc093blByb3BlcnR5KHByb3BlcnR5KSkge1xyXG4gICAgICAgICAgICBjb21wb25lbnRSZWYuaW5zdGFuY2VbcHJvcGVydHldID0gaW5wdXRzW3Byb3BlcnR5XTtcclxuICAgICAgICAgIH1cclxuICAgICAgICB9XHJcbiAgICAgIH1cclxuXHJcbiAgICAgIGlmIChvdXRwdXRzKSB7XHJcbiAgICAgICAgZm9yIChsZXQgZXZlbnQgaW4gb3V0cHV0cykge1xyXG4gICAgICAgICAgaWYgKG91dHB1dHMuaGFzT3duUHJvcGVydHkoZXZlbnQpKSB7XHJcbiAgICAgICAgICAgIGNvbXBvbmVudFJlZi5pbnN0YW5jZVtldmVudF0uc3Vic2NyaWJlKCgpID0+IG91dHB1dHNbZXZlbnRdKCkpO1xyXG4gICAgICAgICAgfVxyXG4gICAgICAgIH1cclxuICAgICAgfVxyXG5cclxuICAgICAgdGhpcy5hcHBSZWYuYXR0YWNoVmlldyhjb21wb25lbnRSZWYuaG9zdFZpZXcpO1xyXG5cclxuICAgICAgY29uc3QgZG9tRWxlbSA9IChjb21wb25lbnRSZWYuaG9zdFZpZXcgYXMgRW1iZWRkZWRWaWV3UmVmPGFueT4pXHJcbiAgICAgICAgLnJvb3ROb2Rlc1swXSBhcyBIVE1MRWxlbWVudDtcclxuXHJcbiAgICAgIGRvY3VtZW50LmJvZHkuYXBwZW5kQ2hpbGQoZG9tRWxlbSk7XHJcbiAgICAgIGNvbXBvbmVudFJlZi5vbkRlc3Ryb3koKCkgPT4ge1xyXG4gICAgICAgIHRoaXMuYXBwUmVmLmRldGFjaFZpZXcoY29tcG9uZW50UmVmLmhvc3RWaWV3KTtcclxuICAgICAgfSk7XHJcblxyXG4gICAgICBjb21wb25lbnRSZWYuaW5zdGFuY2Uub25DbG9zZSA9IChidXR0b246IGFueSwgb3V0cHV0PzogYW55KSA9PiB7XHJcbiAgICAgICAgY29uc3QgaWR4OiBudW1iZXIgPSB0aGlzLl9jb21wb25lbnRSZWZzLmluZGV4T2YoY29tcG9uZW50UmVmKTtcclxuICAgICAgICB0aGlzLmFwcFJlZi5kZXRhY2hWaWV3KGNvbXBvbmVudFJlZi5ob3N0Vmlldyk7XHJcbiAgICAgICAgdGhpcy5fY29tcG9uZW50UmVmc1tpZHhdID0gdW5kZWZpbmVkO1xyXG4gICAgICAgIHRoaXMuX2NvbXBvbmVudFJlZnMuc3BsaWNlKGlkeCwgMSk7XHJcblxyXG4gICAgICAgIGlmIChvdXRwdXRzKSB7XHJcbiAgICAgICAgICBmb3IgKGxldCBldmVudCBpbiBvdXRwdXRzKSB7XHJcbiAgICAgICAgICAgIGlmIChvdXRwdXRzLmhhc093blByb3BlcnR5KGV2ZW50KSkge1xyXG4gICAgICAgICAgICAgIGNvbXBvbmVudFJlZi5pbnN0YW5jZVtldmVudF0udW5zdWJzY3JpYmUoKTtcclxuICAgICAgICAgICAgfVxyXG4gICAgICAgICAgfVxyXG4gICAgICAgIH1cclxuICAgICAgICByZXNvbHZlKHtidXR0b246IGJ1dHRvbiwgb3V0cHV0OiBvdXRwdXQgPyBvdXRwdXQgOiB1bmRlZmluZWR9KTtcclxuICAgICAgfVxyXG4gICAgfSlcclxuICB9XHJcbn1cclxuIl19
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { Injectable } from "@angular/core";
|
|
2
|
+
import { DialogService } from "./dialog.service";
|
|
3
|
+
import { DictionaryService } from "./dictionary.service";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "./dialog.service";
|
|
6
|
+
import * as i2 from "./dictionary.service";
|
|
7
|
+
export class ErrorService {
|
|
8
|
+
constructor(_dialogService, _dictionaryService) {
|
|
9
|
+
this._dialogService = _dialogService;
|
|
10
|
+
this._dictionaryService = _dictionaryService;
|
|
11
|
+
}
|
|
12
|
+
showError(message, details) {
|
|
13
|
+
return this._dialogService.showError(message, details);
|
|
14
|
+
}
|
|
15
|
+
showValidationError(response) {
|
|
16
|
+
const messages = [];
|
|
17
|
+
const messagesDetails = [];
|
|
18
|
+
messages.push('<div class="dialog-error-wrapper">');
|
|
19
|
+
if (response.message) {
|
|
20
|
+
messages.push(this._messageAsValidationError(response.message));
|
|
21
|
+
}
|
|
22
|
+
else if (response.validationResult && !response.validationResult.success) {
|
|
23
|
+
if (response.validationResult.messages && response.validationResult.messages.length > 0) {
|
|
24
|
+
response.validationResult.messages.forEach(m => {
|
|
25
|
+
messages.push(this._messageAsValidationError(m.message));
|
|
26
|
+
if (m.messageCode) {
|
|
27
|
+
messagesDetails.push(this._messageDetails(m.messageCode));
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
else if (response.validationResult.fieldValidations) {
|
|
32
|
+
messages.push(this._messageAsValidationError('Validation error'));
|
|
33
|
+
for (let key in response.validationResult.fieldValidations) {
|
|
34
|
+
if (response.validationResult.fieldValidations.hasOwnProperty(key)) {
|
|
35
|
+
if (response.validationResult.fieldValidations[key].messages && response.validationResult.fieldValidations[key].messages.length > 0) {
|
|
36
|
+
for (let i = 0; i < response.validationResult.fieldValidations[key].messages.length; i++) {
|
|
37
|
+
const messageCode = {
|
|
38
|
+
value: response.validationResult.fieldValidations[key].messages[i].fieldId,
|
|
39
|
+
defaultStr: response.validationResult.fieldValidations[key].messages[i].message
|
|
40
|
+
};
|
|
41
|
+
messagesDetails.push(this._messageDetails(messageCode));
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
messages.push('</div>');
|
|
49
|
+
return this.showError(messages.join(''), messagesDetails.length > 0 ? messagesDetails.join('') : undefined);
|
|
50
|
+
}
|
|
51
|
+
_messageAsValidationError(message) {
|
|
52
|
+
return `<div class="dialog-validation-error">${message}</div>`;
|
|
53
|
+
}
|
|
54
|
+
_messageDetails(messageCode) {
|
|
55
|
+
return `<div class="dialog-error-code-string">${messageCode.value}: ${messageCode.defaultStr}</div>`;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
ErrorService.ɵprov = i0.ɵɵdefineInjectable({ factory: function ErrorService_Factory() { return new ErrorService(i0.ɵɵinject(i1.DialogService), i0.ɵɵinject(i2.DictionaryService)); }, token: ErrorService, providedIn: "root" });
|
|
59
|
+
ErrorService.decorators = [
|
|
60
|
+
{ type: Injectable, args: [{
|
|
61
|
+
providedIn: "root"
|
|
62
|
+
},] }
|
|
63
|
+
];
|
|
64
|
+
ErrorService.ctorParameters = () => [
|
|
65
|
+
{ type: DialogService },
|
|
66
|
+
{ type: DictionaryService }
|
|
67
|
+
];
|
|
68
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXJyb3Iuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RyYW5zYWN0aW9uL3NyYy9saWIvc2VydmljZS9lcnJvci5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxVQUFVLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFDLGFBQWEsRUFBQyxNQUFNLGtCQUFrQixDQUFDO0FBQy9DLE9BQU8sRUFBQyxpQkFBaUIsRUFBQyxNQUFNLHNCQUFzQixDQUFDOzs7O0FBTXZELE1BQU0sT0FBTyxZQUFZO0lBRXZCLFlBQ1UsY0FBNkIsRUFDN0Isa0JBQXFDO1FBRHJDLG1CQUFjLEdBQWQsY0FBYyxDQUFlO1FBQzdCLHVCQUFrQixHQUFsQixrQkFBa0IsQ0FBbUI7SUFFL0MsQ0FBQztJQUVNLFNBQVMsQ0FBQyxPQUFlLEVBQUUsT0FBZ0I7UUFDaEQsT0FBTyxJQUFJLENBQUMsY0FBYyxDQUFDLFNBQVMsQ0FBQyxPQUFPLEVBQUUsT0FBTyxDQUFDLENBQUM7SUFDekQsQ0FBQztJQUVNLG1CQUFtQixDQUFDLFFBQXVDO1FBQ2hFLE1BQU0sUUFBUSxHQUFhLEVBQUUsQ0FBQztRQUM5QixNQUFNLGVBQWUsR0FBYSxFQUFFLENBQUM7UUFDckMsUUFBUSxDQUFDLElBQUksQ0FBQyxvQ0FBb0MsQ0FBQyxDQUFDO1FBQ3BELElBQUksUUFBUSxDQUFDLE9BQU8sRUFBRTtZQUNwQixRQUFRLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyx5QkFBeUIsQ0FBQyxRQUFRLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQTtTQUNoRTthQUFNLElBQUksUUFBUSxDQUFDLGdCQUFnQixJQUFJLENBQUMsUUFBUSxDQUFDLGdCQUFnQixDQUFDLE9BQU8sRUFBRTtZQUMxRSxJQUFJLFFBQVEsQ0FBQyxnQkFBZ0IsQ0FBQyxRQUFRLElBQUksUUFBUSxDQUFDLGdCQUFnQixDQUFDLFFBQVEsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxFQUFFO2dCQUN2RixRQUFRLENBQUMsZ0JBQWdCLENBQUMsUUFBUSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsRUFBRTtvQkFDN0MsUUFBUSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMseUJBQXlCLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUM7b0JBQ3pELElBQUksQ0FBQyxDQUFDLFdBQVcsRUFBRTt3QkFDakIsZUFBZSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsZUFBZSxDQUFDLENBQUMsQ0FBQyxXQUFXLENBQUMsQ0FBQyxDQUFDO3FCQUMzRDtnQkFDSCxDQUFDLENBQUMsQ0FBQTthQUNIO2lCQUFNLElBQUksUUFBUSxDQUFDLGdCQUFnQixDQUFDLGdCQUFnQixFQUFFO2dCQUNyRCxRQUFRLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyx5QkFBeUIsQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDLENBQUM7Z0JBQ2xFLEtBQUssSUFBSSxHQUFHLElBQUksUUFBUSxDQUFDLGdCQUFnQixDQUFDLGdCQUFnQixFQUFFO29CQUMxRCxJQUFJLFFBQVEsQ0FBQyxnQkFBZ0IsQ0FBQyxnQkFBZ0IsQ0FBQyxjQUFjLENBQUMsR0FBRyxDQUFDLEVBQUU7d0JBQ2xFLElBQUksUUFBUSxDQUFDLGdCQUFnQixDQUFDLGdCQUFnQixDQUFDLEdBQUcsQ0FBQyxDQUFDLFFBQVEsSUFBSSxRQUFRLENBQUMsZ0JBQWdCLENBQUMsZ0JBQWdCLENBQUMsR0FBRyxDQUFDLENBQUMsUUFBUSxDQUFDLE1BQU0sR0FBRyxDQUFDLEVBQUU7NEJBQ25JLEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxRQUFRLENBQUMsZ0JBQWdCLENBQUMsZ0JBQWdCLENBQUMsR0FBRyxDQUFDLENBQUMsUUFBUSxDQUFDLE1BQU0sRUFBRSxDQUFDLEVBQUUsRUFBRTtnQ0FDeEYsTUFBTSxXQUFXLEdBQUc7b0NBQ2xCLEtBQUssRUFBRSxRQUFRLENBQUMsZ0JBQWdCLENBQUMsZ0JBQWdCLENBQUMsR0FBRyxDQUFDLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxDQUFDLE9BQU87b0NBQzFFLFVBQVUsRUFBRSxRQUFRLENBQUMsZ0JBQWdCLENBQUMsZ0JBQWdCLENBQUMsR0FBRyxDQUFDLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxDQUFDLE9BQU87aUNBQ2hGLENBQUE7Z0NBQ0QsZUFBZSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsZUFBZSxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUM7NkJBQ3pEO3lCQUNGO3FCQUNGO2lCQUNGO2FBQ0Y7U0FDRjtRQUNELFFBQVEsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUM7UUFDeEIsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLEVBQUUsZUFBZSxDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxDQUFDO0lBQzlHLENBQUM7SUFFTyx5QkFBeUIsQ0FBQyxPQUFlO1FBQy9DLE9BQU8sd0NBQXdDLE9BQU8sUUFBUSxDQUFDO0lBQ2pFLENBQUM7SUFFTyxlQUFlLENBQUMsV0FBZ0I7UUFDdEMsT0FBTyx5Q0FBeUMsV0FBVyxDQUFDLEtBQUssS0FBSyxXQUFXLENBQUMsVUFBVSxRQUFRLENBQUM7SUFDdkcsQ0FBQzs7OztZQXhERixVQUFVLFNBQUM7Z0JBQ1YsVUFBVSxFQUFFLE1BQU07YUFDbkI7OztZQU5PLGFBQWE7WUFDYixpQkFBaUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0luamVjdGFibGV9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7RGlhbG9nU2VydmljZX0gZnJvbSBcIi4vZGlhbG9nLnNlcnZpY2VcIjtcclxuaW1wb3J0IHtEaWN0aW9uYXJ5U2VydmljZX0gZnJvbSBcIi4vZGljdGlvbmFyeS5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7RGF0YVNlcnZpY2VSZXNwb25zZURhdGF9IGZyb20gXCJAY29saWpuaXQvaW9uZWNvbm5lY3Rvci9idWlsZC9tb2RlbC9kYXRhLXNlcnZpY2UtcmVzcG9uc2UtZGF0YVwiO1xyXG5cclxuQEluamVjdGFibGUoe1xyXG4gIHByb3ZpZGVkSW46IFwicm9vdFwiXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBFcnJvclNlcnZpY2Uge1xyXG5cclxuICBjb25zdHJ1Y3RvcihcclxuICAgIHByaXZhdGUgX2RpYWxvZ1NlcnZpY2U6IERpYWxvZ1NlcnZpY2UsXHJcbiAgICBwcml2YXRlIF9kaWN0aW9uYXJ5U2VydmljZTogRGljdGlvbmFyeVNlcnZpY2VcclxuICAgICkge1xyXG4gIH1cclxuXHJcbiAgcHVibGljIHNob3dFcnJvcihtZXNzYWdlOiBzdHJpbmcsIGRldGFpbHM/OiBzdHJpbmcpOiBQcm9taXNlPGFueT4ge1xyXG4gICAgcmV0dXJuIHRoaXMuX2RpYWxvZ1NlcnZpY2Uuc2hvd0Vycm9yKG1lc3NhZ2UsIGRldGFpbHMpO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIHNob3dWYWxpZGF0aW9uRXJyb3IocmVzcG9uc2U6IERhdGFTZXJ2aWNlUmVzcG9uc2VEYXRhIHwgYW55KTogUHJvbWlzZTxhbnk+IHtcclxuICAgIGNvbnN0IG1lc3NhZ2VzOiBzdHJpbmdbXSA9IFtdO1xyXG4gICAgY29uc3QgbWVzc2FnZXNEZXRhaWxzOiBzdHJpbmdbXSA9IFtdO1xyXG4gICAgbWVzc2FnZXMucHVzaCgnPGRpdiBjbGFzcz1cImRpYWxvZy1lcnJvci13cmFwcGVyXCI+Jyk7XHJcbiAgICBpZiAocmVzcG9uc2UubWVzc2FnZSkge1xyXG4gICAgICBtZXNzYWdlcy5wdXNoKHRoaXMuX21lc3NhZ2VBc1ZhbGlkYXRpb25FcnJvcihyZXNwb25zZS5tZXNzYWdlKSlcclxuICAgIH0gZWxzZSBpZiAocmVzcG9uc2UudmFsaWRhdGlvblJlc3VsdCAmJiAhcmVzcG9uc2UudmFsaWRhdGlvblJlc3VsdC5zdWNjZXNzKSB7XHJcbiAgICAgIGlmIChyZXNwb25zZS52YWxpZGF0aW9uUmVzdWx0Lm1lc3NhZ2VzICYmIHJlc3BvbnNlLnZhbGlkYXRpb25SZXN1bHQubWVzc2FnZXMubGVuZ3RoID4gMCkge1xyXG4gICAgICAgIHJlc3BvbnNlLnZhbGlkYXRpb25SZXN1bHQubWVzc2FnZXMuZm9yRWFjaChtID0+IHtcclxuICAgICAgICAgIG1lc3NhZ2VzLnB1c2godGhpcy5fbWVzc2FnZUFzVmFsaWRhdGlvbkVycm9yKG0ubWVzc2FnZSkpO1xyXG4gICAgICAgICAgaWYgKG0ubWVzc2FnZUNvZGUpIHtcclxuICAgICAgICAgICAgbWVzc2FnZXNEZXRhaWxzLnB1c2godGhpcy5fbWVzc2FnZURldGFpbHMobS5tZXNzYWdlQ29kZSkpO1xyXG4gICAgICAgICAgfVxyXG4gICAgICAgIH0pXHJcbiAgICAgIH0gZWxzZSBpZiAocmVzcG9uc2UudmFsaWRhdGlvblJlc3VsdC5maWVsZFZhbGlkYXRpb25zKSB7XHJcbiAgICAgICAgbWVzc2FnZXMucHVzaCh0aGlzLl9tZXNzYWdlQXNWYWxpZGF0aW9uRXJyb3IoJ1ZhbGlkYXRpb24gZXJyb3InKSk7XHJcbiAgICAgICAgZm9yIChsZXQga2V5IGluIHJlc3BvbnNlLnZhbGlkYXRpb25SZXN1bHQuZmllbGRWYWxpZGF0aW9ucykge1xyXG4gICAgICAgICAgaWYgKHJlc3BvbnNlLnZhbGlkYXRpb25SZXN1bHQuZmllbGRWYWxpZGF0aW9ucy5oYXNPd25Qcm9wZXJ0eShrZXkpKSB7XHJcbiAgICAgICAgICAgIGlmIChyZXNwb25zZS52YWxpZGF0aW9uUmVzdWx0LmZpZWxkVmFsaWRhdGlvbnNba2V5XS5tZXNzYWdlcyAmJiByZXNwb25zZS52YWxpZGF0aW9uUmVzdWx0LmZpZWxkVmFsaWRhdGlvbnNba2V5XS5tZXNzYWdlcy5sZW5ndGggPiAwKSB7XHJcbiAgICAgICAgICAgICAgZm9yIChsZXQgaSA9IDA7IGkgPCByZXNwb25zZS52YWxpZGF0aW9uUmVzdWx0LmZpZWxkVmFsaWRhdGlvbnNba2V5XS5tZXNzYWdlcy5sZW5ndGg7IGkrKykge1xyXG4gICAgICAgICAgICAgICAgY29uc3QgbWVzc2FnZUNvZGUgPSB7XHJcbiAgICAgICAgICAgICAgICAgIHZhbHVlOiByZXNwb25zZS52YWxpZGF0aW9uUmVzdWx0LmZpZWxkVmFsaWRhdGlvbnNba2V5XS5tZXNzYWdlc1tpXS5maWVsZElkLFxyXG4gICAgICAgICAgICAgICAgICBkZWZhdWx0U3RyOiByZXNwb25zZS52YWxpZGF0aW9uUmVzdWx0LmZpZWxkVmFsaWRhdGlvbnNba2V5XS5tZXNzYWdlc1tpXS5tZXNzYWdlXHJcbiAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICBtZXNzYWdlc0RldGFpbHMucHVzaCh0aGlzLl9tZXNzYWdlRGV0YWlscyhtZXNzYWdlQ29kZSkpO1xyXG4gICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgfVxyXG4gICAgICAgICAgfVxyXG4gICAgICAgIH1cclxuICAgICAgfVxyXG4gICAgfVxyXG4gICAgbWVzc2FnZXMucHVzaCgnPC9kaXY+Jyk7XHJcbiAgICByZXR1cm4gdGhpcy5zaG93RXJyb3IobWVzc2FnZXMuam9pbignJyksIG1lc3NhZ2VzRGV0YWlscy5sZW5ndGggPiAwID8gbWVzc2FnZXNEZXRhaWxzLmpvaW4oJycpIDogdW5kZWZpbmVkKTtcclxuICB9XHJcblxyXG4gIHByaXZhdGUgX21lc3NhZ2VBc1ZhbGlkYXRpb25FcnJvcihtZXNzYWdlOiBzdHJpbmcpOiBzdHJpbmcge1xyXG4gICAgcmV0dXJuIGA8ZGl2IGNsYXNzPVwiZGlhbG9nLXZhbGlkYXRpb24tZXJyb3JcIj4ke21lc3NhZ2V9PC9kaXY+YDtcclxuICB9XHJcblxyXG4gIHByaXZhdGUgX21lc3NhZ2VEZXRhaWxzKG1lc3NhZ2VDb2RlOiBhbnkpOiBzdHJpbmcge1xyXG4gICAgcmV0dXJuIGA8ZGl2IGNsYXNzPVwiZGlhbG9nLWVycm9yLWNvZGUtc3RyaW5nXCI+JHttZXNzYWdlQ29kZS52YWx1ZX06ICR7bWVzc2FnZUNvZGUuZGVmYXVsdFN0cn08L2Rpdj5gO1xyXG4gIH1cclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Injectable } from "@angular/core";
|
|
2
|
+
import { DomSanitizer } from "@angular/platform-browser";
|
|
3
|
+
import { IconSvg } from "../model/icon-svg";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "@angular/platform-browser";
|
|
6
|
+
export class IconCacheService {
|
|
7
|
+
constructor(_sanitizer) {
|
|
8
|
+
this._sanitizer = _sanitizer;
|
|
9
|
+
this._iconCache = {};
|
|
10
|
+
this.setIconCache();
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* All the icons as a large JSON object, from the all-icons.json file.
|
|
14
|
+
* The object has property keys that are the icon names, and property values with the data string of the actual svg icon.
|
|
15
|
+
*/
|
|
16
|
+
get iconCache() {
|
|
17
|
+
return this._iconCache;
|
|
18
|
+
}
|
|
19
|
+
getIcon(iconName) {
|
|
20
|
+
if (iconName) {
|
|
21
|
+
return this._iconCache[iconName.toLowerCase()];
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
getIconAsBase64(iconName) {
|
|
25
|
+
const icon = IconSvg[iconName];
|
|
26
|
+
const base64Data = window.btoa(icon);
|
|
27
|
+
return this._sanitizer.bypassSecurityTrustUrl(`data:image/svg+xml;base64,${base64Data}`);
|
|
28
|
+
}
|
|
29
|
+
getRawIcon(iconName) {
|
|
30
|
+
if (iconName) {
|
|
31
|
+
return IconSvg[iconName.toLowerCase()];
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
setIconCache() {
|
|
35
|
+
for (const key in IconSvg) {
|
|
36
|
+
if (IconSvg.hasOwnProperty(key) && typeof IconSvg[key] !== "function") {
|
|
37
|
+
this._iconCache[key.toLowerCase()] = this._sanitizer.bypassSecurityTrustHtml(IconSvg[key]);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
IconCacheService.ɵprov = i0.ɵɵdefineInjectable({ factory: function IconCacheService_Factory() { return new IconCacheService(i0.ɵɵinject(i1.DomSanitizer)); }, token: IconCacheService, providedIn: "root" });
|
|
43
|
+
IconCacheService.decorators = [
|
|
44
|
+
{ type: Injectable, args: [{
|
|
45
|
+
providedIn: "root"
|
|
46
|
+
},] }
|
|
47
|
+
];
|
|
48
|
+
IconCacheService.ctorParameters = () => [
|
|
49
|
+
{ type: DomSanitizer }
|
|
50
|
+
];
|
|
51
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaWNvbi1jYWNoZS5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9zZXJ2aWNlL2ljb24tY2FjaGUuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsVUFBVSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBQyxZQUFZLEVBQVcsTUFBTSwyQkFBMkIsQ0FBQztBQUVqRSxPQUFPLEVBQUMsT0FBTyxFQUFDLE1BQU0sbUJBQW1CLENBQUM7OztBQUsxQyxNQUFNLE9BQU8sZ0JBQWdCO0lBVzNCLFlBQ1UsVUFBd0I7UUFBeEIsZUFBVSxHQUFWLFVBQVUsQ0FBYztRQUgxQixlQUFVLEdBQXFDLEVBQUUsQ0FBQztRQUt4RCxJQUFJLENBQUMsWUFBWSxFQUFFLENBQUM7SUFDdEIsQ0FBQztJQWREOzs7T0FHRztJQUNILElBQVcsU0FBUztRQUNsQixPQUFPLElBQUksQ0FBQyxVQUFVLENBQUM7SUFDekIsQ0FBQztJQVVNLE9BQU8sQ0FBQyxRQUF1QjtRQUNwQyxJQUFJLFFBQVEsRUFBRTtZQUNaLE9BQU8sSUFBSSxDQUFDLFVBQVUsQ0FBQyxRQUFRLENBQUMsV0FBVyxFQUFFLENBQUMsQ0FBQztTQUNoRDtJQUNILENBQUM7SUFFTSxlQUFlLENBQUMsUUFBYztRQUNuQyxNQUFNLElBQUksR0FBVyxPQUFPLENBQUMsUUFBUSxDQUFDLENBQUM7UUFDdkMsTUFBTSxVQUFVLEdBQVcsTUFBTSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUM3QyxPQUFPLElBQUksQ0FBQyxVQUFVLENBQUMsc0JBQXNCLENBQUMsNkJBQTZCLFVBQVUsRUFBRSxDQUFDLENBQUM7SUFDM0YsQ0FBQztJQUVNLFVBQVUsQ0FBQyxRQUFjO1FBQzlCLElBQUksUUFBUSxFQUFFO1lBQ1osT0FBTyxPQUFPLENBQUMsUUFBUSxDQUFDLFdBQVcsRUFBRSxDQUFDLENBQUM7U0FDeEM7SUFDSCxDQUFDO0lBRU0sWUFBWTtRQUNqQixLQUFLLE1BQU0sR0FBRyxJQUFJLE9BQU8sRUFBRTtZQUN6QixJQUFJLE9BQU8sQ0FBQyxjQUFjLENBQUMsR0FBRyxDQUFDLElBQUksT0FBTyxPQUFPLENBQUMsR0FBRyxDQUFDLEtBQUssVUFBVSxFQUFFO2dCQUNyRSxJQUFJLENBQUMsVUFBVSxDQUFDLEdBQUcsQ0FBQyxXQUFXLEVBQUUsQ0FBQyxHQUFHLElBQUksQ0FBQyxVQUFVLENBQUMsdUJBQXVCLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUM7YUFDNUY7U0FDRjtJQUNILENBQUM7Ozs7WUE1Q0YsVUFBVSxTQUFDO2dCQUNWLFVBQVUsRUFBRSxNQUFNO2FBQ25COzs7WUFOTyxZQUFZIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtJbmplY3RhYmxlfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQge0RvbVNhbml0aXplciwgU2FmZUh0bWx9IGZyb20gXCJAYW5ndWxhci9wbGF0Zm9ybS1icm93c2VyXCI7XHJcbmltcG9ydCB7SWNvbn0gZnJvbSBcIi4uL2VudW0vaWNvbi5lbnVtXCI7XHJcbmltcG9ydCB7SWNvblN2Z30gZnJvbSBcIi4uL21vZGVsL2ljb24tc3ZnXCI7XHJcblxyXG5ASW5qZWN0YWJsZSh7XHJcbiAgcHJvdmlkZWRJbjogXCJyb290XCJcclxufSlcclxuZXhwb3J0IGNsYXNzIEljb25DYWNoZVNlcnZpY2Uge1xyXG4gIC8qKlxyXG4gICAqIEFsbCB0aGUgaWNvbnMgYXMgYSBsYXJnZSBKU09OIG9iamVjdCwgZnJvbSB0aGUgYWxsLWljb25zLmpzb24gZmlsZS5cclxuICAgKiBUaGUgb2JqZWN0IGhhcyBwcm9wZXJ0eSBrZXlzIHRoYXQgYXJlIHRoZSBpY29uIG5hbWVzLCBhbmQgcHJvcGVydHkgdmFsdWVzIHdpdGggdGhlIGRhdGEgc3RyaW5nIG9mIHRoZSBhY3R1YWwgc3ZnIGljb24uXHJcbiAgICovXHJcbiAgcHVibGljIGdldCBpY29uQ2FjaGUoKTogeyBbaWNvbk5hbWU6IHN0cmluZ106IFNhZmVIdG1sIH0ge1xyXG4gICAgcmV0dXJuIHRoaXMuX2ljb25DYWNoZTtcclxuICB9XHJcblxyXG4gIHByaXZhdGUgX2ljb25DYWNoZTogeyBbaWNvbk5hbWU6IHN0cmluZ106IFNhZmVIdG1sIH0gPSB7fTtcclxuXHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBwcml2YXRlIF9zYW5pdGl6ZXI6IERvbVNhbml0aXplclxyXG4gICkge1xyXG4gICAgdGhpcy5zZXRJY29uQ2FjaGUoKTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBnZXRJY29uKGljb25OYW1lOiBJY29uIHwgc3RyaW5nKTogU2FmZUh0bWwge1xyXG4gICAgaWYgKGljb25OYW1lKSB7XHJcbiAgICAgIHJldHVybiB0aGlzLl9pY29uQ2FjaGVbaWNvbk5hbWUudG9Mb3dlckNhc2UoKV07XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgZ2V0SWNvbkFzQmFzZTY0KGljb25OYW1lOiBJY29uKTogU2FmZUh0bWwge1xyXG4gICAgY29uc3QgaWNvbjogc3RyaW5nID0gSWNvblN2Z1tpY29uTmFtZV07XHJcbiAgICBjb25zdCBiYXNlNjREYXRhOiBzdHJpbmcgPSB3aW5kb3cuYnRvYShpY29uKTtcclxuICAgIHJldHVybiB0aGlzLl9zYW5pdGl6ZXIuYnlwYXNzU2VjdXJpdHlUcnVzdFVybChgZGF0YTppbWFnZS9zdmcreG1sO2Jhc2U2NCwke2Jhc2U2NERhdGF9YCk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgZ2V0UmF3SWNvbihpY29uTmFtZTogSWNvbik6IHN0cmluZyB7XHJcbiAgICBpZiAoaWNvbk5hbWUpIHtcclxuICAgICAgcmV0dXJuIEljb25TdmdbaWNvbk5hbWUudG9Mb3dlckNhc2UoKV07XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgc2V0SWNvbkNhY2hlKCk6IHZvaWQge1xyXG4gICAgZm9yIChjb25zdCBrZXkgaW4gSWNvblN2Zykge1xyXG4gICAgICBpZiAoSWNvblN2Zy5oYXNPd25Qcm9wZXJ0eShrZXkpICYmIHR5cGVvZiBJY29uU3ZnW2tleV0gIT09IFwiZnVuY3Rpb25cIikge1xyXG4gICAgICAgIHRoaXMuX2ljb25DYWNoZVtrZXkudG9Mb3dlckNhc2UoKV0gPSB0aGlzLl9zYW5pdGl6ZXIuYnlwYXNzU2VjdXJpdHlUcnVzdEh0bWwoSWNvblN2Z1trZXldKTtcclxuICAgICAgfVxyXG4gICAgfVxyXG4gIH1cclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { __awaiter } from "tslib";
|
|
2
|
+
import { Injectable } from "@angular/core";
|
|
3
|
+
import { BehaviorSubject } from "rxjs";
|
|
4
|
+
import { DictionaryService } from "./dictionary.service";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "./dictionary.service";
|
|
7
|
+
export class OptionsService {
|
|
8
|
+
constructor(_dictionary) {
|
|
9
|
+
this._dictionary = _dictionary;
|
|
10
|
+
this.optionsInitialized = new BehaviorSubject(false);
|
|
11
|
+
this.optionsLoaded = new BehaviorSubject(false);
|
|
12
|
+
}
|
|
13
|
+
set options(value) {
|
|
14
|
+
this._options = value;
|
|
15
|
+
}
|
|
16
|
+
get options() {
|
|
17
|
+
return this._options;
|
|
18
|
+
}
|
|
19
|
+
createSettingsFromObject(obj) {
|
|
20
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
21
|
+
this.options = new Object();
|
|
22
|
+
if (obj.hasOwnProperty("url")) {
|
|
23
|
+
this.options.url = obj["url"];
|
|
24
|
+
}
|
|
25
|
+
if (obj.hasOwnProperty("schema")) {
|
|
26
|
+
this.options.schema = obj["schema"];
|
|
27
|
+
}
|
|
28
|
+
if (obj.hasOwnProperty("version")) {
|
|
29
|
+
this.options.version = obj["version"];
|
|
30
|
+
}
|
|
31
|
+
if (obj.hasOwnProperty("languageCode")) {
|
|
32
|
+
this.options.languageCode = obj["languageCode"];
|
|
33
|
+
}
|
|
34
|
+
else {
|
|
35
|
+
this.options.languageCode = "NL";
|
|
36
|
+
}
|
|
37
|
+
if (obj.hasOwnProperty("username")) {
|
|
38
|
+
this.options.username = obj["username"];
|
|
39
|
+
}
|
|
40
|
+
if (obj.hasOwnProperty("password")) {
|
|
41
|
+
this.options.password = obj["password"];
|
|
42
|
+
}
|
|
43
|
+
if (obj.hasOwnProperty("session")) {
|
|
44
|
+
this.options.session = obj["session"];
|
|
45
|
+
}
|
|
46
|
+
if (obj.hasOwnProperty("useLoginEncryption")) {
|
|
47
|
+
this.options.useLoginEncryption = obj["useLoginEncryption"];
|
|
48
|
+
}
|
|
49
|
+
this.optionsLoaded.next(true);
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
initialize(options) {
|
|
53
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
54
|
+
if (options) {
|
|
55
|
+
yield this.createSettingsFromObject(options);
|
|
56
|
+
yield this._dictionary.setDictionary(this.options.languageCode);
|
|
57
|
+
this.optionsInitialized.next(true);
|
|
58
|
+
}
|
|
59
|
+
});
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
OptionsService.ɵprov = i0.ɵɵdefineInjectable({ factory: function OptionsService_Factory() { return new OptionsService(i0.ɵɵinject(i1.DictionaryService)); }, token: OptionsService, providedIn: "root" });
|
|
63
|
+
OptionsService.decorators = [
|
|
64
|
+
{ type: Injectable, args: [{
|
|
65
|
+
providedIn: "root"
|
|
66
|
+
},] }
|
|
67
|
+
];
|
|
68
|
+
OptionsService.ctorParameters = () => [
|
|
69
|
+
{ type: DictionaryService }
|
|
70
|
+
];
|
|
71
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3B0aW9ucy5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9zZXJ2aWNlL29wdGlvbnMuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFDLFVBQVUsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUMsZUFBZSxFQUFDLE1BQU0sTUFBTSxDQUFDO0FBQ3JDLE9BQU8sRUFBQyxpQkFBaUIsRUFBQyxNQUFNLHNCQUFzQixDQUFDOzs7QUFLdkQsTUFBTSxPQUFPLGNBQWM7SUFnQnpCLFlBQW9CLFdBQThCO1FBQTlCLGdCQUFXLEdBQVgsV0FBVyxDQUFtQjtRQWQzQyx1QkFBa0IsR0FBNkIsSUFBSSxlQUFlLENBQVUsS0FBSyxDQUFDLENBQUM7UUFVbkYsa0JBQWEsR0FBNkIsSUFBSSxlQUFlLENBQUMsS0FBSyxDQUFDLENBQUM7SUFLNUUsQ0FBQztJQWJELElBQVcsT0FBTyxDQUFDLEtBQVU7UUFDM0IsSUFBSSxDQUFDLFFBQVEsR0FBRyxLQUFLLENBQUM7SUFDeEIsQ0FBQztJQUVELElBQVcsT0FBTztRQUNoQixPQUFPLElBQUksQ0FBQyxRQUFRLENBQUM7SUFDdkIsQ0FBQztJQVNZLHdCQUF3QixDQUFDLEdBQVE7O1lBQzVDLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxNQUFNLEVBQUUsQ0FBQztZQUM1QixJQUFJLEdBQUcsQ0FBQyxjQUFjLENBQUMsS0FBSyxDQUFDLEVBQUU7Z0JBQzdCLElBQUksQ0FBQyxPQUFPLENBQUMsR0FBRyxHQUFHLEdBQUcsQ0FBQyxLQUFLLENBQUMsQ0FBQzthQUMvQjtZQUNELElBQUksR0FBRyxDQUFDLGNBQWMsQ0FBQyxRQUFRLENBQUMsRUFBRTtnQkFDaEMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxNQUFNLEdBQUcsR0FBRyxDQUFDLFFBQVEsQ0FBQyxDQUFDO2FBQ3JDO1lBQ0QsSUFBSSxHQUFHLENBQUMsY0FBYyxDQUFDLFNBQVMsQ0FBQyxFQUFFO2dCQUNqQyxJQUFJLENBQUMsT0FBTyxDQUFDLE9BQU8sR0FBRyxHQUFHLENBQUMsU0FBUyxDQUFDLENBQUM7YUFDdkM7WUFDRCxJQUFJLEdBQUcsQ0FBQyxjQUFjLENBQUMsY0FBYyxDQUFDLEVBQUU7Z0JBQ3RDLElBQUksQ0FBQyxPQUFPLENBQUMsWUFBWSxHQUFHLEdBQUcsQ0FBQyxjQUFjLENBQUMsQ0FBQzthQUNqRDtpQkFBTTtnQkFDTCxJQUFJLENBQUMsT0FBTyxDQUFDLFlBQVksR0FBRyxJQUFJLENBQUM7YUFDbEM7WUFDRCxJQUFJLEdBQUcsQ0FBQyxjQUFjLENBQUMsVUFBVSxDQUFDLEVBQUU7Z0JBQ2xDLElBQUksQ0FBQyxPQUFPLENBQUMsUUFBUSxHQUFHLEdBQUcsQ0FBQyxVQUFVLENBQUMsQ0FBQzthQUN6QztZQUNELElBQUksR0FBRyxDQUFDLGNBQWMsQ0FBQyxVQUFVLENBQUMsRUFBRTtnQkFDbEMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxRQUFRLEdBQUcsR0FBRyxDQUFDLFVBQVUsQ0FBQyxDQUFDO2FBQ3pDO1lBQ0QsSUFBSSxHQUFHLENBQUMsY0FBYyxDQUFDLFNBQVMsQ0FBQyxFQUFFO2dCQUNqQyxJQUFJLENBQUMsT0FBTyxDQUFDLE9BQU8sR0FBRyxHQUFHLENBQUMsU0FBUyxDQUFDLENBQUM7YUFDdkM7WUFDRCxJQUFJLEdBQUcsQ0FBQyxjQUFjLENBQUMsb0JBQW9CLENBQUMsRUFBRTtnQkFDNUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxrQkFBa0IsR0FBRyxHQUFHLENBQUMsb0JBQW9CLENBQUMsQ0FBQzthQUM3RDtZQUVELElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBQ2hDLENBQUM7S0FBQTtJQUVZLFVBQVUsQ0FBQyxPQUFZOztZQUNsQyxJQUFJLE9BQU8sRUFBRTtnQkFDWCxNQUFNLElBQUksQ0FBQyx3QkFBd0IsQ0FBQyxPQUFPLENBQUMsQ0FBQztnQkFDN0MsTUFBTSxJQUFJLENBQUMsV0FBVyxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLFlBQVksQ0FBQyxDQUFDO2dCQUNoRSxJQUFJLENBQUMsa0JBQWtCLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO2FBQ3BDO1FBQ0gsQ0FBQztLQUFBOzs7O1lBNURGLFVBQVUsU0FBQztnQkFDVixVQUFVLEVBQUUsTUFBTTthQUNuQjs7O1lBSk8saUJBQWlCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtJbmplY3RhYmxlfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQge0JlaGF2aW9yU3ViamVjdH0gZnJvbSBcInJ4anNcIjtcclxuaW1wb3J0IHtEaWN0aW9uYXJ5U2VydmljZX0gZnJvbSBcIi4vZGljdGlvbmFyeS5zZXJ2aWNlXCI7XHJcblxyXG5ASW5qZWN0YWJsZSh7XHJcbiAgcHJvdmlkZWRJbjogXCJyb290XCJcclxufSlcclxuZXhwb3J0IGNsYXNzIE9wdGlvbnNTZXJ2aWNlIHtcclxuXHJcbiAgcHVibGljIG9wdGlvbnNJbml0aWFsaXplZDogQmVoYXZpb3JTdWJqZWN0PGJvb2xlYW4+ID0gbmV3IEJlaGF2aW9yU3ViamVjdDxib29sZWFuPihmYWxzZSk7XHJcblxyXG4gIHB1YmxpYyBzZXQgb3B0aW9ucyh2YWx1ZTogYW55KSB7XHJcbiAgICB0aGlzLl9vcHRpb25zID0gdmFsdWU7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgZ2V0IG9wdGlvbnMoKTogYW55IHtcclxuICAgIHJldHVybiB0aGlzLl9vcHRpb25zO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIG9wdGlvbnNMb2FkZWQ6IEJlaGF2aW9yU3ViamVjdDxib29sZWFuPiA9IG5ldyBCZWhhdmlvclN1YmplY3QoZmFsc2UpO1xyXG5cclxuICBwcml2YXRlIF9vcHRpb25zOiBhbnk7XHJcblxyXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgX2RpY3Rpb25hcnk6IERpY3Rpb25hcnlTZXJ2aWNlKSB7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgYXN5bmMgY3JlYXRlU2V0dGluZ3NGcm9tT2JqZWN0KG9iajogYW55KTogUHJvbWlzZTx2b2lkPiB7XHJcbiAgICB0aGlzLm9wdGlvbnMgPSBuZXcgT2JqZWN0KCk7XHJcbiAgICBpZiAob2JqLmhhc093blByb3BlcnR5KFwidXJsXCIpKSB7XHJcbiAgICAgIHRoaXMub3B0aW9ucy51cmwgPSBvYmpbXCJ1cmxcIl07XHJcbiAgICB9XHJcbiAgICBpZiAob2JqLmhhc093blByb3BlcnR5KFwic2NoZW1hXCIpKSB7XHJcbiAgICAgIHRoaXMub3B0aW9ucy5zY2hlbWEgPSBvYmpbXCJzY2hlbWFcIl07XHJcbiAgICB9XHJcbiAgICBpZiAob2JqLmhhc093blByb3BlcnR5KFwidmVyc2lvblwiKSkge1xyXG4gICAgICB0aGlzLm9wdGlvbnMudmVyc2lvbiA9IG9ialtcInZlcnNpb25cIl07XHJcbiAgICB9XHJcbiAgICBpZiAob2JqLmhhc093blByb3BlcnR5KFwibGFuZ3VhZ2VDb2RlXCIpKSB7XHJcbiAgICAgIHRoaXMub3B0aW9ucy5sYW5ndWFnZUNvZGUgPSBvYmpbXCJsYW5ndWFnZUNvZGVcIl07XHJcbiAgICB9IGVsc2Uge1xyXG4gICAgICB0aGlzLm9wdGlvbnMubGFuZ3VhZ2VDb2RlID0gXCJOTFwiO1xyXG4gICAgfVxyXG4gICAgaWYgKG9iai5oYXNPd25Qcm9wZXJ0eShcInVzZXJuYW1lXCIpKSB7XHJcbiAgICAgIHRoaXMub3B0aW9ucy51c2VybmFtZSA9IG9ialtcInVzZXJuYW1lXCJdO1xyXG4gICAgfVxyXG4gICAgaWYgKG9iai5oYXNPd25Qcm9wZXJ0eShcInBhc3N3b3JkXCIpKSB7XHJcbiAgICAgIHRoaXMub3B0aW9ucy5wYXNzd29yZCA9IG9ialtcInBhc3N3b3JkXCJdO1xyXG4gICAgfVxyXG4gICAgaWYgKG9iai5oYXNPd25Qcm9wZXJ0eShcInNlc3Npb25cIikpIHtcclxuICAgICAgdGhpcy5vcHRpb25zLnNlc3Npb24gPSBvYmpbXCJzZXNzaW9uXCJdO1xyXG4gICAgfVxyXG4gICAgaWYgKG9iai5oYXNPd25Qcm9wZXJ0eShcInVzZUxvZ2luRW5jcnlwdGlvblwiKSkge1xyXG4gICAgICB0aGlzLm9wdGlvbnMudXNlTG9naW5FbmNyeXB0aW9uID0gb2JqW1widXNlTG9naW5FbmNyeXB0aW9uXCJdO1xyXG4gICAgfVxyXG5cclxuICAgIHRoaXMub3B0aW9uc0xvYWRlZC5uZXh0KHRydWUpO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGFzeW5jIGluaXRpYWxpemUob3B0aW9uczogYW55KTogUHJvbWlzZTx2b2lkPiB7XHJcbiAgICBpZiAob3B0aW9ucykge1xyXG4gICAgICBhd2FpdCB0aGlzLmNyZWF0ZVNldHRpbmdzRnJvbU9iamVjdChvcHRpb25zKTtcclxuICAgICAgYXdhaXQgdGhpcy5fZGljdGlvbmFyeS5zZXREaWN0aW9uYXJ5KHRoaXMub3B0aW9ucy5sYW5ndWFnZUNvZGUpO1xyXG4gICAgICB0aGlzLm9wdGlvbnNJbml0aWFsaXplZC5uZXh0KHRydWUpO1xyXG4gICAgfVxyXG4gIH1cclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { __awaiter } from "tslib";
|
|
2
|
+
import { Injectable } from "@angular/core";
|
|
3
|
+
import { PaymentMethod } from "@colijnit/transactionapi/build/model/payment-method.bo";
|
|
4
|
+
import { TransactionService } from "./transaction.service";
|
|
5
|
+
import { TransactionConnectorAdapterService } from "./transaction-connector-adapter.service";
|
|
6
|
+
import { SelectMultipleCacheService } from "../cache/service/select-multiple-cache.service";
|
|
7
|
+
import { PaymentViewmodel } from "../model/payment.viewmodel";
|
|
8
|
+
import { SharedService } from "./shared.service";
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
import * as i1 from "./transaction-connector-adapter.service";
|
|
11
|
+
import * as i2 from "../cache/service/select-multiple-cache.service";
|
|
12
|
+
import * as i3 from "./transaction.service";
|
|
13
|
+
import * as i4 from "./shared.service";
|
|
14
|
+
export class PaymentService {
|
|
15
|
+
constructor(_adapterService, _selectMultipleCacheService, _transactionService, _sharedService) {
|
|
16
|
+
this._adapterService = _adapterService;
|
|
17
|
+
this._selectMultipleCacheService = _selectMultipleCacheService;
|
|
18
|
+
this._transactionService = _transactionService;
|
|
19
|
+
this._sharedService = _sharedService;
|
|
20
|
+
}
|
|
21
|
+
updateHeaderTransactionToDownPay(uuid, downPayment) {
|
|
22
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
23
|
+
const response = yield this._adapterService.changeHeaderTransactionToDownPay(uuid, downPayment)
|
|
24
|
+
.catch((error) => {
|
|
25
|
+
// todo: do something with the error
|
|
26
|
+
return false;
|
|
27
|
+
});
|
|
28
|
+
if (response) {
|
|
29
|
+
const success = yield this._transactionService.handleHeaderOperationStatuses(response);
|
|
30
|
+
this._transactionService.rememberCurrentTransaction(response);
|
|
31
|
+
return success;
|
|
32
|
+
}
|
|
33
|
+
return false;
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
registerSalesOrderPayment(uuid, amount, currencyId, paymentMethod, cashRegisterGroupId) {
|
|
37
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
38
|
+
const response = yield this._adapterService.registerSalesOrderPayment(uuid, amount, currencyId, paymentMethod, cashRegisterGroupId);
|
|
39
|
+
if (response.validationResult.success) {
|
|
40
|
+
return true;
|
|
41
|
+
}
|
|
42
|
+
return false;
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
createIonePaymentLinkAndQRCode(uuid, amount, paymentMethodCode) {
|
|
46
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
47
|
+
return this._adapterService.createIonePaymentLinkAndQRCode(uuid, amount, paymentMethodCode);
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
getPaymentLinkStatus(paymentLinkUUID) {
|
|
51
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
52
|
+
return this._adapterService.getPaymentLinkStatus(paymentLinkUUID);
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
getDownPaymentInfo(uuid) {
|
|
56
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
57
|
+
return this._adapterService.getDownPaymentInfo(uuid);
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
getPaymentMethods() {
|
|
61
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
62
|
+
return this._selectMultipleCacheService.requestCache(PaymentMethod, () => {
|
|
63
|
+
return this._adapterService.getPaymentMethods();
|
|
64
|
+
}).getValue();
|
|
65
|
+
});
|
|
66
|
+
}
|
|
67
|
+
getPaymentMethodsViewModels() {
|
|
68
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
69
|
+
const result = [];
|
|
70
|
+
const methods = yield this.getPaymentMethods();
|
|
71
|
+
methods.forEach((m) => __awaiter(this, void 0, void 0, function* () {
|
|
72
|
+
const paymentViewModel = new PaymentViewmodel(m);
|
|
73
|
+
const imageDocs = m.documents.filter(d => d.isImageDocument());
|
|
74
|
+
if (imageDocs && imageDocs.length) {
|
|
75
|
+
const image = imageDocs[0];
|
|
76
|
+
if (image.filePath) {
|
|
77
|
+
paymentViewModel.image = image.filePath;
|
|
78
|
+
}
|
|
79
|
+
else {
|
|
80
|
+
if (!image.thumbnailBody) {
|
|
81
|
+
const content = yield this._sharedService.getDocumentContent(image.documentId);
|
|
82
|
+
image.thumbnailBody = content;
|
|
83
|
+
}
|
|
84
|
+
paymentViewModel.image = image.thumbnailBodyAsDataUri;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
result.push(paymentViewModel);
|
|
88
|
+
}));
|
|
89
|
+
return result;
|
|
90
|
+
});
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
PaymentService.ɵprov = i0.ɵɵdefineInjectable({ factory: function PaymentService_Factory() { return new PaymentService(i0.ɵɵinject(i1.TransactionConnectorAdapterService), i0.ɵɵinject(i2.SelectMultipleCacheService), i0.ɵɵinject(i3.TransactionService), i0.ɵɵinject(i4.SharedService)); }, token: PaymentService, providedIn: "root" });
|
|
94
|
+
PaymentService.decorators = [
|
|
95
|
+
{ type: Injectable, args: [{
|
|
96
|
+
providedIn: "root"
|
|
97
|
+
},] }
|
|
98
|
+
];
|
|
99
|
+
PaymentService.ctorParameters = () => [
|
|
100
|
+
{ type: TransactionConnectorAdapterService },
|
|
101
|
+
{ type: SelectMultipleCacheService },
|
|
102
|
+
{ type: TransactionService },
|
|
103
|
+
{ type: SharedService }
|
|
104
|
+
];
|
|
105
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGF5bWVudC5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9zZXJ2aWNlL3BheW1lbnQuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFDLFVBQVUsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUV6QyxPQUFPLEVBQUMsYUFBYSxFQUFDLE1BQU0sd0RBQXdELENBQUM7QUFFckYsT0FBTyxFQUFDLGtCQUFrQixFQUFDLE1BQU0sdUJBQXVCLENBQUM7QUFFekQsT0FBTyxFQUFDLGtDQUFrQyxFQUFDLE1BQU0seUNBQXlDLENBQUM7QUFDM0YsT0FBTyxFQUFDLDBCQUEwQixFQUFDLE1BQU0sZ0RBQWdELENBQUM7QUFFMUYsT0FBTyxFQUFDLGdCQUFnQixFQUFDLE1BQU0sNEJBQTRCLENBQUM7QUFDNUQsT0FBTyxFQUFDLGFBQWEsRUFBQyxNQUFNLGtCQUFrQixDQUFDOzs7Ozs7QUFPL0MsTUFBTSxPQUFPLGNBQWM7SUFFekIsWUFDVSxlQUFtRCxFQUNuRCwyQkFBdUQsRUFDdkQsbUJBQXVDLEVBQ3ZDLGNBQTZCO1FBSDdCLG9CQUFlLEdBQWYsZUFBZSxDQUFvQztRQUNuRCxnQ0FBMkIsR0FBM0IsMkJBQTJCLENBQTRCO1FBQ3ZELHdCQUFtQixHQUFuQixtQkFBbUIsQ0FBb0I7UUFDdkMsbUJBQWMsR0FBZCxjQUFjLENBQWU7SUFFdkMsQ0FBQztJQUVZLGdDQUFnQyxDQUFDLElBQVksRUFBRSxXQUFtQjs7WUFDN0UsTUFBTSxRQUFRLEdBQXNDLE1BQU0sSUFBSSxDQUFDLGVBQWUsQ0FBQyxnQ0FBZ0MsQ0FBQyxJQUFJLEVBQUUsV0FBVyxDQUFDO2lCQUMvSCxLQUFLLENBQUMsQ0FBQyxLQUFLLEVBQUUsRUFBRTtnQkFDZixvQ0FBb0M7Z0JBQ3BDLE9BQU8sS0FBSyxDQUFDO1lBQ2YsQ0FBQyxDQUFDLENBQUM7WUFDTCxJQUFJLFFBQVEsRUFBRTtnQkFDWixNQUFNLE9BQU8sR0FBWSxNQUFNLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyw2QkFBNkIsQ0FBQyxRQUFRLENBQUMsQ0FBQztnQkFDaEcsSUFBSSxDQUFDLG1CQUFtQixDQUFDLDBCQUEwQixDQUFDLFFBQVEsQ0FBQyxDQUFDO2dCQUM5RCxPQUFPLE9BQU8sQ0FBQzthQUNoQjtZQUNELE9BQU8sS0FBSyxDQUFDO1FBQ2YsQ0FBQztLQUFBO0lBRVkseUJBQXlCLENBQ3BDLElBQVksRUFBRSxNQUFjLEVBQUUsVUFBa0IsRUFBRSxhQUFxQixFQUFFLG1CQUEyQjs7WUFFcEcsTUFBTSxRQUFRLEdBQ1osTUFBTSxJQUFJLENBQUMsZUFBZSxDQUFDLHlCQUF5QixDQUFDLElBQUksRUFBRSxNQUFNLEVBQUUsVUFBVSxFQUFFLGFBQWEsRUFBRSxtQkFBbUIsQ0FBQyxDQUFDO1lBQ3JILElBQUksUUFBUSxDQUFDLGdCQUFnQixDQUFDLE9BQU8sRUFBRTtnQkFDckMsT0FBTyxJQUFJLENBQUM7YUFDYjtZQUNELE9BQU8sS0FBSyxDQUFDO1FBQ2YsQ0FBQztLQUFBO0lBRVksOEJBQThCLENBQUMsSUFBWSxFQUFFLE1BQWMsRUFBRSxpQkFBeUI7O1lBQ2pHLE9BQU8sSUFBSSxDQUFDLGVBQWUsQ0FBQyw4QkFBOEIsQ0FBQyxJQUFJLEVBQUUsTUFBTSxFQUFFLGlCQUFpQixDQUFDLENBQUM7UUFDOUYsQ0FBQztLQUFBO0lBRVksb0JBQW9CLENBQUMsZUFBdUI7O1lBQ3ZELE9BQU8sSUFBSSxDQUFDLGVBQWUsQ0FBQyxvQkFBb0IsQ0FBQyxlQUFlLENBQUMsQ0FBQztRQUNwRSxDQUFDO0tBQUE7SUFFWSxrQkFBa0IsQ0FBQyxJQUFZOztZQUMxQyxPQUFPLElBQUksQ0FBQyxlQUFlLENBQUMsa0JBQWtCLENBQUMsSUFBSSxDQUFDLENBQUM7UUFDdkQsQ0FBQztLQUFBO0lBRVksaUJBQWlCOztZQUM1QixPQUFPLElBQUksQ0FBQywyQkFBMkIsQ0FBQyxZQUFZLENBQWdCLGFBQWEsRUFBRSxHQUFHLEVBQUU7Z0JBQ3RGLE9BQU8sSUFBSSxDQUFDLGVBQWUsQ0FBQyxpQkFBaUIsRUFBRSxDQUFBO1lBQ2pELENBQUMsQ0FBQyxDQUFDLFFBQVEsRUFBRSxDQUFDO1FBQ2hCLENBQUM7S0FBQTtJQUVZLDJCQUEyQjs7WUFDdEMsTUFBTSxNQUFNLEdBQXVCLEVBQUUsQ0FBQztZQUN0QyxNQUFNLE9BQU8sR0FBRyxNQUFNLElBQUksQ0FBQyxpQkFBaUIsRUFBRSxDQUFDO1lBQy9DLE9BQU8sQ0FBQyxPQUFPLENBQUMsQ0FBTyxDQUFnQixFQUFFLEVBQUU7Z0JBQ3pDLE1BQU0sZ0JBQWdCLEdBQXFCLElBQUksZ0JBQWdCLENBQUMsQ0FBQyxDQUFDLENBQUM7Z0JBQ25FLE1BQU0sU0FBUyxHQUFpQixDQUFDLENBQUMsU0FBUyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxlQUFlLEVBQUUsQ0FBQyxDQUFDO2dCQUM3RSxJQUFJLFNBQVMsSUFBSSxTQUFTLENBQUMsTUFBTSxFQUFFO29CQUNqQyxNQUFNLEtBQUssR0FBZSxTQUFTLENBQUMsQ0FBQyxDQUFDLENBQUM7b0JBQ3ZDLElBQUksS0FBSyxDQUFDLFFBQVEsRUFBRTt3QkFDbEIsZ0JBQWdCLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQyxRQUFRLENBQUM7cUJBQ3pDO3lCQUFNO3dCQUNMLElBQUksQ0FBQyxLQUFLLENBQUMsYUFBYSxFQUFFOzRCQUN4QixNQUFNLE9BQU8sR0FBVyxNQUFNLElBQUksQ0FBQyxjQUFjLENBQUMsa0JBQWtCLENBQUMsS0FBSyxDQUFDLFVBQVUsQ0FBQyxDQUFDOzRCQUN2RixLQUFLLENBQUMsYUFBYSxHQUFHLE9BQU8sQ0FBQzt5QkFDL0I7d0JBQ0QsZ0JBQWdCLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQyxzQkFBc0IsQ0FBQztxQkFDdkQ7aUJBQ0Y7Z0JBQ0QsTUFBTSxDQUFDLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDO1lBQ2hDLENBQUMsQ0FBQSxDQUFDLENBQUM7WUFDSCxPQUFPLE1BQU0sQ0FBQztRQUNoQixDQUFDO0tBQUE7Ozs7WUE3RUYsVUFBVSxTQUFDO2dCQUNWLFVBQVUsRUFBRSxNQUFNO2FBQ25COzs7WUFWTyxrQ0FBa0M7WUFDbEMsMEJBQTBCO1lBSDFCLGtCQUFrQjtZQU1sQixhQUFhIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtJbmplY3RhYmxlfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQge1RyYW5zYWN0aW9uSW5mb1Jlc3BvbnNlfSBmcm9tIFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uYXBpL2J1aWxkL21vZGVsL3RyYW5zYWN0aW9uLWluZm8tcmVzcG9uc2UuYm9cIjtcclxuaW1wb3J0IHtQYXltZW50TWV0aG9kfSBmcm9tIFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uYXBpL2J1aWxkL21vZGVsL3BheW1lbnQtbWV0aG9kLmJvXCI7XHJcbmltcG9ydCB7Q3JlYXRlUGF5bWVudExpbmtSZXN1bHR9IGZyb20gXCJAY29saWpuaXQvdHJhbnNhY3Rpb25hcGkvYnVpbGQvbW9kZWwvY3JlYXRlLXBheW1lbnQtbGluay1yZXN1bHQuYm9cIjtcclxuaW1wb3J0IHtUcmFuc2FjdGlvblNlcnZpY2V9IGZyb20gXCIuL3RyYW5zYWN0aW9uLnNlcnZpY2VcIjtcclxuaW1wb3J0IHtQYXltZW50TGlua1N0YXR1c30gZnJvbSBcIkBjb2xpam5pdC90cmFuc2FjdGlvbmFwaS9idWlsZC9tb2RlbC9wYXltZW50LWxpbmstc3RhdHVzLmJvXCI7XHJcbmltcG9ydCB7VHJhbnNhY3Rpb25Db25uZWN0b3JBZGFwdGVyU2VydmljZX0gZnJvbSBcIi4vdHJhbnNhY3Rpb24tY29ubmVjdG9yLWFkYXB0ZXIuc2VydmljZVwiO1xyXG5pbXBvcnQge1NlbGVjdE11bHRpcGxlQ2FjaGVTZXJ2aWNlfSBmcm9tIFwiLi4vY2FjaGUvc2VydmljZS9zZWxlY3QtbXVsdGlwbGUtY2FjaGUuc2VydmljZVwiO1xyXG5pbXBvcnQge1RyYW5zYWN0aW9uRG93blBheW1lbnRJbmZvfSBmcm9tIFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uYXBpL2J1aWxkL21vZGVsL3RyYW5zYWN0aW9uLWRvd24tcGF5bWVudC1pbmZvLmJvXCI7XHJcbmltcG9ydCB7UGF5bWVudFZpZXdtb2RlbH0gZnJvbSBcIi4uL21vZGVsL3BheW1lbnQudmlld21vZGVsXCI7XHJcbmltcG9ydCB7U2hhcmVkU2VydmljZX0gZnJvbSBcIi4vc2hhcmVkLnNlcnZpY2VcIjtcclxuaW1wb3J0IHtEYXRhU2VydmljZVJlc3BvbnNlRGF0YX0gZnJvbSBcIkBjb2xpam5pdC9pb25lY29ubmVjdG9yL2J1aWxkL21vZGVsL2RhdGEtc2VydmljZS1yZXNwb25zZS1kYXRhXCI7XHJcbmltcG9ydCB7Q29Eb2N1bWVudH0gZnJvbSBcIkBjb2xpam5pdC9tYWluYXBpL2J1aWxkL21vZGVsL2NvLWRvY3VtZW50XCI7XHJcblxyXG5ASW5qZWN0YWJsZSh7XHJcbiAgcHJvdmlkZWRJbjogXCJyb290XCJcclxufSlcclxuZXhwb3J0IGNsYXNzIFBheW1lbnRTZXJ2aWNlIHtcclxuXHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBwcml2YXRlIF9hZGFwdGVyU2VydmljZTogVHJhbnNhY3Rpb25Db25uZWN0b3JBZGFwdGVyU2VydmljZSxcclxuICAgIHByaXZhdGUgX3NlbGVjdE11bHRpcGxlQ2FjaGVTZXJ2aWNlOiBTZWxlY3RNdWx0aXBsZUNhY2hlU2VydmljZSxcclxuICAgIHByaXZhdGUgX3RyYW5zYWN0aW9uU2VydmljZTogVHJhbnNhY3Rpb25TZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSBfc2hhcmVkU2VydmljZTogU2hhcmVkU2VydmljZVxyXG4gICkge1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGFzeW5jIHVwZGF0ZUhlYWRlclRyYW5zYWN0aW9uVG9Eb3duUGF5KHV1aWQ6IHN0cmluZywgZG93blBheW1lbnQ6IG51bWJlcik6IFByb21pc2U8Ym9vbGVhbj4ge1xyXG4gICAgY29uc3QgcmVzcG9uc2U6IFRyYW5zYWN0aW9uSW5mb1Jlc3BvbnNlIHwgYm9vbGVhbiA9IGF3YWl0IHRoaXMuX2FkYXB0ZXJTZXJ2aWNlLmNoYW5nZUhlYWRlclRyYW5zYWN0aW9uVG9Eb3duUGF5KHV1aWQsIGRvd25QYXltZW50KVxyXG4gICAgICAuY2F0Y2goKGVycm9yKSA9PiB7XHJcbiAgICAgICAgLy8gdG9kbzogZG8gc29tZXRoaW5nIHdpdGggdGhlIGVycm9yXHJcbiAgICAgICAgcmV0dXJuIGZhbHNlO1xyXG4gICAgICB9KTtcclxuICAgIGlmIChyZXNwb25zZSkge1xyXG4gICAgICBjb25zdCBzdWNjZXNzOiBib29sZWFuID0gYXdhaXQgdGhpcy5fdHJhbnNhY3Rpb25TZXJ2aWNlLmhhbmRsZUhlYWRlck9wZXJhdGlvblN0YXR1c2VzKHJlc3BvbnNlKTtcclxuICAgICAgdGhpcy5fdHJhbnNhY3Rpb25TZXJ2aWNlLnJlbWVtYmVyQ3VycmVudFRyYW5zYWN0aW9uKHJlc3BvbnNlKTtcclxuICAgICAgcmV0dXJuIHN1Y2Nlc3M7XHJcbiAgICB9XHJcbiAgICByZXR1cm4gZmFsc2U7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgYXN5bmMgcmVnaXN0ZXJTYWxlc09yZGVyUGF5bWVudChcclxuICAgIHV1aWQ6IHN0cmluZywgYW1vdW50OiBudW1iZXIsIGN1cnJlbmN5SWQ6IG51bWJlciwgcGF5bWVudE1ldGhvZDogc3RyaW5nLCBjYXNoUmVnaXN0ZXJHcm91cElkOiBudW1iZXJcclxuICApOiBQcm9taXNlPGJvb2xlYW4+IHtcclxuICAgIGNvbnN0IHJlc3BvbnNlOiBEYXRhU2VydmljZVJlc3BvbnNlRGF0YSA9XHJcbiAgICAgIGF3YWl0IHRoaXMuX2FkYXB0ZXJTZXJ2aWNlLnJlZ2lzdGVyU2FsZXNPcmRlclBheW1lbnQodXVpZCwgYW1vdW50LCBjdXJyZW5jeUlkLCBwYXltZW50TWV0aG9kLCBjYXNoUmVnaXN0ZXJHcm91cElkKTtcclxuICAgIGlmIChyZXNwb25zZS52YWxpZGF0aW9uUmVzdWx0LnN1Y2Nlc3MpIHtcclxuICAgICAgcmV0dXJuIHRydWU7XHJcbiAgICB9XHJcbiAgICByZXR1cm4gZmFsc2U7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgYXN5bmMgY3JlYXRlSW9uZVBheW1lbnRMaW5rQW5kUVJDb2RlKHV1aWQ6IHN0cmluZywgYW1vdW50OiBudW1iZXIsIHBheW1lbnRNZXRob2RDb2RlOiBzdHJpbmcpOiBQcm9taXNlPENyZWF0ZVBheW1lbnRMaW5rUmVzdWx0PiB7XHJcbiAgICByZXR1cm4gdGhpcy5fYWRhcHRlclNlcnZpY2UuY3JlYXRlSW9uZVBheW1lbnRMaW5rQW5kUVJDb2RlKHV1aWQsIGFtb3VudCwgcGF5bWVudE1ldGhvZENvZGUpO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGFzeW5jIGdldFBheW1lbnRMaW5rU3RhdHVzKHBheW1lbnRMaW5rVVVJRDogc3RyaW5nKTogUHJvbWlzZTxQYXltZW50TGlua1N0YXR1cz4ge1xyXG4gICAgcmV0dXJuIHRoaXMuX2FkYXB0ZXJTZXJ2aWNlLmdldFBheW1lbnRMaW5rU3RhdHVzKHBheW1lbnRMaW5rVVVJRCk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgYXN5bmMgZ2V0RG93blBheW1lbnRJbmZvKHV1aWQ6IHN0cmluZyk6IFByb21pc2U8VHJhbnNhY3Rpb25Eb3duUGF5bWVudEluZm8+IHtcclxuICAgIHJldHVybiB0aGlzLl9hZGFwdGVyU2VydmljZS5nZXREb3duUGF5bWVudEluZm8odXVpZCk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgYXN5bmMgZ2V0UGF5bWVudE1ldGhvZHMoKTogUHJvbWlzZTxQYXltZW50TWV0aG9kW10+IHtcclxuICAgIHJldHVybiB0aGlzLl9zZWxlY3RNdWx0aXBsZUNhY2hlU2VydmljZS5yZXF1ZXN0Q2FjaGU8UGF5bWVudE1ldGhvZD4oUGF5bWVudE1ldGhvZCwgKCkgPT4ge1xyXG4gICAgICByZXR1cm4gdGhpcy5fYWRhcHRlclNlcnZpY2UuZ2V0UGF5bWVudE1ldGhvZHMoKVxyXG4gICAgfSkuZ2V0VmFsdWUoKTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBhc3luYyBnZXRQYXltZW50TWV0aG9kc1ZpZXdNb2RlbHMoKTogUHJvbWlzZTxQYXltZW50Vmlld21vZGVsW10+IHtcclxuICAgIGNvbnN0IHJlc3VsdDogUGF5bWVudFZpZXdtb2RlbFtdID0gW107XHJcbiAgICBjb25zdCBtZXRob2RzID0gYXdhaXQgdGhpcy5nZXRQYXltZW50TWV0aG9kcygpO1xyXG4gICAgbWV0aG9kcy5mb3JFYWNoKGFzeW5jIChtOiBQYXltZW50TWV0aG9kKSA9PiB7XHJcbiAgICAgIGNvbnN0IHBheW1lbnRWaWV3TW9kZWw6IFBheW1lbnRWaWV3bW9kZWwgPSBuZXcgUGF5bWVudFZpZXdtb2RlbChtKTtcclxuICAgICAgY29uc3QgaW1hZ2VEb2NzOiBDb0RvY3VtZW50W10gPSBtLmRvY3VtZW50cy5maWx0ZXIoZCA9PiBkLmlzSW1hZ2VEb2N1bWVudCgpKTtcclxuICAgICAgaWYgKGltYWdlRG9jcyAmJiBpbWFnZURvY3MubGVuZ3RoKSB7XHJcbiAgICAgICAgY29uc3QgaW1hZ2U6IENvRG9jdW1lbnQgPSBpbWFnZURvY3NbMF07XHJcbiAgICAgICAgaWYgKGltYWdlLmZpbGVQYXRoKSB7XHJcbiAgICAgICAgICBwYXltZW50Vmlld01vZGVsLmltYWdlID0gaW1hZ2UuZmlsZVBhdGg7XHJcbiAgICAgICAgfSBlbHNlIHtcclxuICAgICAgICAgIGlmICghaW1hZ2UudGh1bWJuYWlsQm9keSkge1xyXG4gICAgICAgICAgICBjb25zdCBjb250ZW50OiBzdHJpbmcgPSBhd2FpdCB0aGlzLl9zaGFyZWRTZXJ2aWNlLmdldERvY3VtZW50Q29udGVudChpbWFnZS5kb2N1bWVudElkKTtcclxuICAgICAgICAgICAgaW1hZ2UudGh1bWJuYWlsQm9keSA9IGNvbnRlbnQ7XHJcbiAgICAgICAgICB9XHJcbiAgICAgICAgICBwYXltZW50Vmlld01vZGVsLmltYWdlID0gaW1hZ2UudGh1bWJuYWlsQm9keUFzRGF0YVVyaTtcclxuICAgICAgICB9XHJcbiAgICAgIH1cclxuICAgICAgcmVzdWx0LnB1c2gocGF5bWVudFZpZXdNb2RlbCk7XHJcbiAgICB9KTtcclxuICAgIHJldHVybiByZXN1bHQ7XHJcbiAgfVxyXG59XHJcbiJdfQ==
|