@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,68 @@
|
|
|
1
|
+
import { __awaiter } from "tslib";
|
|
2
|
+
import { Injectable } from "@angular/core";
|
|
3
|
+
import { TransactionService } from "../../../../service/transaction.service";
|
|
4
|
+
import { Subject } from "rxjs";
|
|
5
|
+
import { TransactionEventService } from "../../../../service/transaction-event.service";
|
|
6
|
+
import { ReceiveGoodsForPurchaseOrderRequest } from "@colijnit/transactionapi/build/model/receive-goods-for-purchase-order-request.bo";
|
|
7
|
+
import { PurchaseOrderLineReceiptDetails } from "@colijnit/transactionapi/build/model/purchase-order-line-receipt-details.bo";
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
import * as i1 from "../../../../service/transaction.service";
|
|
10
|
+
import * as i2 from "../../../../service/transaction-event.service";
|
|
11
|
+
export class TransactionReceiveGoodsService {
|
|
12
|
+
constructor(_transactionService, _transactionEventService) {
|
|
13
|
+
this._transactionService = _transactionService;
|
|
14
|
+
this._transactionEventService = _transactionEventService;
|
|
15
|
+
this.lines = [];
|
|
16
|
+
this.returnArticleSelected = new Subject();
|
|
17
|
+
this.reloadAvailableStockData = new Subject();
|
|
18
|
+
this._subscriptions = [];
|
|
19
|
+
this._subscriptions.push(this._transactionEventService.commitReceivePurchaseOrders.subscribe((value => {
|
|
20
|
+
this.handleReceiveSelectedPurchaseOrders(value);
|
|
21
|
+
})));
|
|
22
|
+
}
|
|
23
|
+
handleReceiveSelectedPurchaseOrders(value) {
|
|
24
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
25
|
+
const selectedLines = this.lines.filter((line) => line.selected && line.quantityToReceive > 0);
|
|
26
|
+
if (selectedLines.length > 0) {
|
|
27
|
+
const receivedGoodsRequest = new ReceiveGoodsForPurchaseOrderRequest();
|
|
28
|
+
receivedGoodsRequest.transId = selectedLines[0].transId;
|
|
29
|
+
receivedGoodsRequest.receivedDate = value.date;
|
|
30
|
+
receivedGoodsRequest.packingSlipNr = value.id;
|
|
31
|
+
receivedGoodsRequest.purchaseOrderLineReceiptDetailsDTOS = [];
|
|
32
|
+
selectedLines.forEach((line) => {
|
|
33
|
+
const detail = new PurchaseOrderLineReceiptDetails();
|
|
34
|
+
detail.lineNr = line.lineNr;
|
|
35
|
+
detail.quantityToReceive = line.quantityToReceive;
|
|
36
|
+
detail.warehouseNr = line.warehouseNumber;
|
|
37
|
+
detail.locationNr = line.locationNr;
|
|
38
|
+
receivedGoodsRequest.purchaseOrderLineReceiptDetailsDTOS.push(detail);
|
|
39
|
+
});
|
|
40
|
+
const response = yield this._transactionService.receiveGoodsForPurchaseOrder(receivedGoodsRequest);
|
|
41
|
+
if (response) {
|
|
42
|
+
this._handleAfterCommitReceivedOrders(selectedLines);
|
|
43
|
+
}
|
|
44
|
+
return !!response;
|
|
45
|
+
}
|
|
46
|
+
return false;
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
_handleAfterCommitReceivedOrders(selectedLines) {
|
|
50
|
+
selectedLines.forEach((line) => {
|
|
51
|
+
line.quantityReceived += line.quantityToReceive;
|
|
52
|
+
line.quantityToReceive -= line.quantityToReceive;
|
|
53
|
+
this._transactionEventService.transactionLineChanged.next(line);
|
|
54
|
+
});
|
|
55
|
+
this._transactionEventService.selectAllLines.next(false);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
TransactionReceiveGoodsService.ɵprov = i0.ɵɵdefineInjectable({ factory: function TransactionReceiveGoodsService_Factory() { return new TransactionReceiveGoodsService(i0.ɵɵinject(i1.TransactionService), i0.ɵɵinject(i2.TransactionEventService)); }, token: TransactionReceiveGoodsService, providedIn: "root" });
|
|
59
|
+
TransactionReceiveGoodsService.decorators = [
|
|
60
|
+
{ type: Injectable, args: [{
|
|
61
|
+
providedIn: "root"
|
|
62
|
+
},] }
|
|
63
|
+
];
|
|
64
|
+
TransactionReceiveGoodsService.ctorParameters = () => [
|
|
65
|
+
{ type: TransactionService },
|
|
66
|
+
{ type: TransactionEventService }
|
|
67
|
+
];
|
|
68
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tcmVjZWl2ZS1nb29kcy5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jb21wb25lbnQvdHJhbnNhY3Rpb24tbGluZS90cmFuc2FjdGlvbi1yZWNlaXZlLWdvb2RzLWxpbmUvc2VydmljZS90cmFuc2FjdGlvbi1yZWNlaXZlLWdvb2RzLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBQyxVQUFVLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFDLGtCQUFrQixFQUFDLE1BQU0seUNBQXlDLENBQUM7QUFDM0UsT0FBTyxFQUFDLE9BQU8sRUFBZSxNQUFNLE1BQU0sQ0FBQztBQUMzQyxPQUFPLEVBQUMsdUJBQXVCLEVBQUMsTUFBTSwrQ0FBK0MsQ0FBQztBQUN0RixPQUFPLEVBQ0wsbUNBQW1DLEVBQ3BDLE1BQU0sa0ZBQWtGLENBQUM7QUFDMUYsT0FBTyxFQUNMLCtCQUErQixFQUNoQyxNQUFNLDZFQUE2RSxDQUFDOzs7O0FBUXJGLE1BQU0sT0FBTyw4QkFBOEI7SUFRekMsWUFDVSxtQkFBdUMsRUFDdkMsd0JBQWlEO1FBRGpELHdCQUFtQixHQUFuQixtQkFBbUIsQ0FBb0I7UUFDdkMsNkJBQXdCLEdBQXhCLHdCQUF3QixDQUF5QjtRQVJwRCxVQUFLLEdBQXVDLEVBQUUsQ0FBQztRQUMvQywwQkFBcUIsR0FBNEIsSUFBSSxPQUFPLEVBQWtCLENBQUM7UUFDL0UsNkJBQXdCLEdBQWtCLElBQUksT0FBTyxFQUFFLENBQUM7UUFFdkQsbUJBQWMsR0FBbUIsRUFBRSxDQUFDO1FBTTFDLElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUN0QixJQUFJLENBQUMsd0JBQXdCLENBQUMsMkJBQTJCLENBQUMsU0FBUyxDQUFDLENBQUMsS0FBSyxDQUFDLEVBQUU7WUFDM0UsSUFBSSxDQUFDLG1DQUFtQyxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQ2xELENBQUMsQ0FBQyxDQUFDLENBQ0osQ0FBQTtJQUNILENBQUM7SUFFWSxtQ0FBbUMsQ0FBQyxLQUErQjs7WUFDOUUsTUFBTSxhQUFhLEdBQXVDLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUMsSUFBSSxFQUFFLEVBQUUsQ0FBQyxJQUFJLENBQUMsUUFBUSxJQUFJLElBQUksQ0FBQyxpQkFBaUIsR0FBRyxDQUFDLENBQUMsQ0FBQztZQUVuSSxJQUFJLGFBQWEsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxFQUFFO2dCQUMxQixNQUFNLG9CQUFvQixHQUF3QyxJQUFJLG1DQUFtQyxFQUFFLENBQUM7Z0JBQzVHLG9CQUFvQixDQUFDLE9BQU8sR0FBRyxhQUFhLENBQUMsQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDO2dCQUN4RCxvQkFBb0IsQ0FBQyxZQUFZLEdBQUcsS0FBSyxDQUFDLElBQUksQ0FBQztnQkFDL0Msb0JBQW9CLENBQUMsYUFBYSxHQUFHLEtBQUssQ0FBQyxFQUFFLENBQUM7Z0JBQzlDLG9CQUFvQixDQUFDLG1DQUFtQyxHQUFHLEVBQUUsQ0FBQztnQkFFaEUsYUFBYSxDQUFDLE9BQU8sQ0FBQyxDQUFDLElBQUksRUFBRSxFQUFFO29CQUMzQixNQUFNLE1BQU0sR0FBb0MsSUFBSSwrQkFBK0IsRUFBRSxDQUFDO29CQUN0RixNQUFNLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUM7b0JBQzVCLE1BQU0sQ0FBQyxpQkFBaUIsR0FBRyxJQUFJLENBQUMsaUJBQWlCLENBQUM7b0JBQ2xELE1BQU0sQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQztvQkFDMUMsTUFBTSxDQUFDLFVBQVUsR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDO29CQUNwQyxvQkFBb0IsQ0FBQyxtQ0FBbUMsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUM7Z0JBQ3hFLENBQUMsQ0FBQyxDQUFDO2dCQUVMLE1BQU0sUUFBUSxHQUE0QixNQUFNLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyw0QkFBNEIsQ0FBQyxvQkFBb0IsQ0FBQyxDQUFDO2dCQUM1SCxJQUFJLFFBQVEsRUFBRTtvQkFDWixJQUFJLENBQUMsZ0NBQWdDLENBQUMsYUFBYSxDQUFDLENBQUM7aUJBQ3REO2dCQUNELE9BQU8sQ0FBQyxDQUFDLFFBQVEsQ0FBQzthQUNuQjtZQUNELE9BQU8sS0FBSyxDQUFDO1FBQ2YsQ0FBQztLQUFBO0lBRU8sZ0NBQWdDLENBQUMsYUFBaUQ7UUFDeEYsYUFBYSxDQUFDLE9BQU8sQ0FBQyxDQUFDLElBQUksRUFBRSxFQUFFO1lBQzdCLElBQUksQ0FBQyxnQkFBZ0IsSUFBSSxJQUFJLENBQUMsaUJBQWlCLENBQUM7WUFDaEQsSUFBSSxDQUFDLGlCQUFpQixJQUFJLElBQUksQ0FBQyxpQkFBaUIsQ0FBQztZQUNqRCxJQUFJLENBQUMsd0JBQXdCLENBQUMsc0JBQXNCLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBQ2xFLENBQUMsQ0FBQyxDQUFDO1FBQ0gsSUFBSSxDQUFDLHdCQUF3QixDQUFDLGNBQWMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDM0QsQ0FBQzs7OztZQXpERixVQUFVLFNBQUM7Z0JBQ1YsVUFBVSxFQUFFLE1BQU07YUFDbkI7OztZQWZPLGtCQUFrQjtZQUVsQix1QkFBdUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0luamVjdGFibGV9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7VHJhbnNhY3Rpb25TZXJ2aWNlfSBmcm9tIFwiLi4vLi4vLi4vLi4vc2VydmljZS90cmFuc2FjdGlvbi5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7U3ViamVjdCwgU3Vic2NyaXB0aW9ufSBmcm9tIFwicnhqc1wiO1xyXG5pbXBvcnQge1RyYW5zYWN0aW9uRXZlbnRTZXJ2aWNlfSBmcm9tIFwiLi4vLi4vLi4vLi4vc2VydmljZS90cmFuc2FjdGlvbi1ldmVudC5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7XHJcbiAgUmVjZWl2ZUdvb2RzRm9yUHVyY2hhc2VPcmRlclJlcXVlc3RcclxufSBmcm9tIFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uYXBpL2J1aWxkL21vZGVsL3JlY2VpdmUtZ29vZHMtZm9yLXB1cmNoYXNlLW9yZGVyLXJlcXVlc3QuYm9cIjtcclxuaW1wb3J0IHtcclxuICBQdXJjaGFzZU9yZGVyTGluZVJlY2VpcHREZXRhaWxzXHJcbn0gZnJvbSBcIkBjb2xpam5pdC90cmFuc2FjdGlvbmFwaS9idWlsZC9tb2RlbC9wdXJjaGFzZS1vcmRlci1saW5lLXJlY2VpcHQtZGV0YWlscy5ib1wiO1xyXG5pbXBvcnQge1RyYW5zYWN0aW9uSW5mb1Jlc3BvbnNlfSBmcm9tIFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uYXBpL2J1aWxkL21vZGVsL3RyYW5zYWN0aW9uLWluZm8tcmVzcG9uc2UuYm9cIjtcclxuaW1wb3J0IHtBdmFpbGFibGVTdG9ja30gZnJvbSBcIkBjb2xpam5pdC90cmFuc2FjdGlvbmFwaS9idWlsZC9tb2RlbC9hdmFpbGFibGUtc3RvY2suYm9cIjtcclxuaW1wb3J0IHtFeHRlbmRlZFRyYW5zYWN0aW9uTGluZVZpZXdNb2RlbH0gZnJvbSBcIi4uLy4uLy4uLy4uL21vZGVsL2V4dGVuZGVkLXRyYW5zYWN0aW9uLWxpbmUtdmlldy1tb2RlbFwiO1xyXG5cclxuQEluamVjdGFibGUoe1xyXG4gIHByb3ZpZGVkSW46IFwicm9vdFwiXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBUcmFuc2FjdGlvblJlY2VpdmVHb29kc1NlcnZpY2Uge1xyXG5cclxuICBwdWJsaWMgbGluZXM6IEV4dGVuZGVkVHJhbnNhY3Rpb25MaW5lVmlld01vZGVsW10gPSBbXTtcclxuICBwdWJsaWMgcmV0dXJuQXJ0aWNsZVNlbGVjdGVkOiBTdWJqZWN0PEF2YWlsYWJsZVN0b2NrPiA9IG5ldyBTdWJqZWN0PEF2YWlsYWJsZVN0b2NrPigpO1xyXG4gIHB1YmxpYyByZWxvYWRBdmFpbGFibGVTdG9ja0RhdGE6IFN1YmplY3Q8dm9pZD4gPSBuZXcgU3ViamVjdCgpO1xyXG5cclxuICBwcml2YXRlIF9zdWJzY3JpcHRpb25zOiBTdWJzY3JpcHRpb25bXSA9IFtdO1xyXG5cclxuICBjb25zdHJ1Y3RvcihcclxuICAgIHByaXZhdGUgX3RyYW5zYWN0aW9uU2VydmljZTogVHJhbnNhY3Rpb25TZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSBfdHJhbnNhY3Rpb25FdmVudFNlcnZpY2U6IFRyYW5zYWN0aW9uRXZlbnRTZXJ2aWNlLFxyXG4gICkge1xyXG4gICAgdGhpcy5fc3Vic2NyaXB0aW9ucy5wdXNoKFxyXG4gICAgICB0aGlzLl90cmFuc2FjdGlvbkV2ZW50U2VydmljZS5jb21taXRSZWNlaXZlUHVyY2hhc2VPcmRlcnMuc3Vic2NyaWJlKCh2YWx1ZSA9PiB7XHJcbiAgICAgICAgdGhpcy5oYW5kbGVSZWNlaXZlU2VsZWN0ZWRQdXJjaGFzZU9yZGVycyh2YWx1ZSk7XHJcbiAgICAgIH0pKVxyXG4gICAgKVxyXG4gIH1cclxuXHJcbiAgcHVibGljIGFzeW5jIGhhbmRsZVJlY2VpdmVTZWxlY3RlZFB1cmNoYXNlT3JkZXJzKHZhbHVlOiB7ZGF0ZTogRGF0ZSwgaWQ6IHN0cmluZ30pOiBQcm9taXNlPGJvb2xlYW4+IHtcclxuICAgIGNvbnN0IHNlbGVjdGVkTGluZXM6IEV4dGVuZGVkVHJhbnNhY3Rpb25MaW5lVmlld01vZGVsW10gPSB0aGlzLmxpbmVzLmZpbHRlcigobGluZSkgPT4gbGluZS5zZWxlY3RlZCAmJiBsaW5lLnF1YW50aXR5VG9SZWNlaXZlID4gMCk7XHJcblxyXG4gICAgaWYgKHNlbGVjdGVkTGluZXMubGVuZ3RoID4gMCkge1xyXG4gICAgICAgIGNvbnN0IHJlY2VpdmVkR29vZHNSZXF1ZXN0OiBSZWNlaXZlR29vZHNGb3JQdXJjaGFzZU9yZGVyUmVxdWVzdCA9IG5ldyBSZWNlaXZlR29vZHNGb3JQdXJjaGFzZU9yZGVyUmVxdWVzdCgpO1xyXG4gICAgICAgIHJlY2VpdmVkR29vZHNSZXF1ZXN0LnRyYW5zSWQgPSBzZWxlY3RlZExpbmVzWzBdLnRyYW5zSWQ7XHJcbiAgICAgICAgcmVjZWl2ZWRHb29kc1JlcXVlc3QucmVjZWl2ZWREYXRlID0gdmFsdWUuZGF0ZTtcclxuICAgICAgICByZWNlaXZlZEdvb2RzUmVxdWVzdC5wYWNraW5nU2xpcE5yID0gdmFsdWUuaWQ7XHJcbiAgICAgICAgcmVjZWl2ZWRHb29kc1JlcXVlc3QucHVyY2hhc2VPcmRlckxpbmVSZWNlaXB0RGV0YWlsc0RUT1MgPSBbXTtcclxuXHJcbiAgICAgIHNlbGVjdGVkTGluZXMuZm9yRWFjaCgobGluZSkgPT4ge1xyXG4gICAgICAgICAgY29uc3QgZGV0YWlsOiBQdXJjaGFzZU9yZGVyTGluZVJlY2VpcHREZXRhaWxzID0gbmV3IFB1cmNoYXNlT3JkZXJMaW5lUmVjZWlwdERldGFpbHMoKTtcclxuICAgICAgICAgIGRldGFpbC5saW5lTnIgPSBsaW5lLmxpbmVOcjtcclxuICAgICAgICAgIGRldGFpbC5xdWFudGl0eVRvUmVjZWl2ZSA9IGxpbmUucXVhbnRpdHlUb1JlY2VpdmU7XHJcbiAgICAgICAgICBkZXRhaWwud2FyZWhvdXNlTnIgPSBsaW5lLndhcmVob3VzZU51bWJlcjtcclxuICAgICAgICAgIGRldGFpbC5sb2NhdGlvbk5yID0gbGluZS5sb2NhdGlvbk5yO1xyXG4gICAgICAgICAgcmVjZWl2ZWRHb29kc1JlcXVlc3QucHVyY2hhc2VPcmRlckxpbmVSZWNlaXB0RGV0YWlsc0RUT1MucHVzaChkZXRhaWwpO1xyXG4gICAgICAgIH0pO1xyXG5cclxuICAgICAgY29uc3QgcmVzcG9uc2U6IFRyYW5zYWN0aW9uSW5mb1Jlc3BvbnNlID0gYXdhaXQgdGhpcy5fdHJhbnNhY3Rpb25TZXJ2aWNlLnJlY2VpdmVHb29kc0ZvclB1cmNoYXNlT3JkZXIocmVjZWl2ZWRHb29kc1JlcXVlc3QpO1xyXG4gICAgICBpZiAocmVzcG9uc2UpIHtcclxuICAgICAgICB0aGlzLl9oYW5kbGVBZnRlckNvbW1pdFJlY2VpdmVkT3JkZXJzKHNlbGVjdGVkTGluZXMpO1xyXG4gICAgICB9XHJcbiAgICAgIHJldHVybiAhIXJlc3BvbnNlO1xyXG4gICAgfVxyXG4gICAgcmV0dXJuIGZhbHNlO1xyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBfaGFuZGxlQWZ0ZXJDb21taXRSZWNlaXZlZE9yZGVycyhzZWxlY3RlZExpbmVzOiBFeHRlbmRlZFRyYW5zYWN0aW9uTGluZVZpZXdNb2RlbFtdKTogdm9pZCB7XHJcbiAgICBzZWxlY3RlZExpbmVzLmZvckVhY2goKGxpbmUpID0+IHtcclxuICAgICAgbGluZS5xdWFudGl0eVJlY2VpdmVkICs9IGxpbmUucXVhbnRpdHlUb1JlY2VpdmU7XHJcbiAgICAgIGxpbmUucXVhbnRpdHlUb1JlY2VpdmUgLT0gbGluZS5xdWFudGl0eVRvUmVjZWl2ZTtcclxuICAgICAgdGhpcy5fdHJhbnNhY3Rpb25FdmVudFNlcnZpY2UudHJhbnNhY3Rpb25MaW5lQ2hhbmdlZC5uZXh0KGxpbmUpO1xyXG4gICAgfSk7XHJcbiAgICB0aGlzLl90cmFuc2FjdGlvbkV2ZW50U2VydmljZS5zZWxlY3RBbGxMaW5lcy5uZXh0KGZhbHNlKTtcclxuICB9XHJcbn1cclxuIl19
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
import { __awaiter } from "tslib";
|
|
2
|
+
import { Component, HostBinding, ViewEncapsulation } from "@angular/core";
|
|
3
|
+
import { Icon } from "../../../enum/icon.enum";
|
|
4
|
+
import { IconCacheService } from "../../../service/icon-cache.service";
|
|
5
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
6
|
+
import { TransactionEventService } from "../../../service/transaction-event.service";
|
|
7
|
+
import { TransactionReceiveGoodsService } from "./service/transaction-receive-goods.service";
|
|
8
|
+
import { ExtendedTransactionLineViewModel } from "../../../model/extended-transaction-line-view-model";
|
|
9
|
+
import { TransactionTypeCategory } from "../../../enum/transaction-type-category.enum";
|
|
10
|
+
import { TransactionBaseComponent } from "../../core/base/transaction-base.component";
|
|
11
|
+
export class TransactionReceiveGoodsLineComponent extends TransactionBaseComponent {
|
|
12
|
+
constructor(iconCacheService, transactionService, _transactionService, _transactionEventService, _transactionReceiveGoodsService) {
|
|
13
|
+
super(transactionService);
|
|
14
|
+
this.iconCacheService = iconCacheService;
|
|
15
|
+
this.transactionService = transactionService;
|
|
16
|
+
this._transactionService = _transactionService;
|
|
17
|
+
this._transactionEventService = _transactionEventService;
|
|
18
|
+
this._transactionReceiveGoodsService = _transactionReceiveGoodsService;
|
|
19
|
+
this.icons = Icon;
|
|
20
|
+
this.transactionTypeCategory = TransactionTypeCategory;
|
|
21
|
+
this.viewModel = new ExtendedTransactionLineViewModel();
|
|
22
|
+
this._subscriptions = [];
|
|
23
|
+
}
|
|
24
|
+
showClass() {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
ngOnInit() {
|
|
28
|
+
this.allowPartialDelivery = this.transactionInfo.allowPartialDelivery;
|
|
29
|
+
this.transactionKind = this.transactionInfo.transactionKind;
|
|
30
|
+
this._initViewModel();
|
|
31
|
+
this._subscriptions.push(this._transactionEventService.selectAllLines.subscribe((value) => {
|
|
32
|
+
this.viewModel.selected = this.viewModel.quantityReceived === this.viewModel.amount || this.viewModel.quantityToReceive < 0 ? false : value;
|
|
33
|
+
}), this._transactionEventService.transactionLineChanged.subscribe((line) => {
|
|
34
|
+
if (line.lineNr === this.viewModel.lineNr) {
|
|
35
|
+
this.viewModel.quantityToReceive = line.quantityToReceive;
|
|
36
|
+
this.viewModel.quantityReceived = line.quantityReceived;
|
|
37
|
+
}
|
|
38
|
+
}));
|
|
39
|
+
}
|
|
40
|
+
ngOnDestroy() {
|
|
41
|
+
this._subscriptions.forEach(s => s.unsubscribe());
|
|
42
|
+
this._transactionReceiveGoodsService.lines = [];
|
|
43
|
+
}
|
|
44
|
+
_initViewModel() {
|
|
45
|
+
Object.assign(this.viewModel, this.transactionLine);
|
|
46
|
+
this.viewModel.quantityToReceive = 0;
|
|
47
|
+
this.viewModel.quantityReceived = 0;
|
|
48
|
+
this.viewModel.lineNr = this.transactionLine.lineNr;
|
|
49
|
+
this.viewModel.transId = this.transactionInfo.id;
|
|
50
|
+
}
|
|
51
|
+
handleRowVisible() {
|
|
52
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
53
|
+
if (this.transactionLine.isArticle) {
|
|
54
|
+
const goodsReceiptStatus = yield this._transactionService.getGoodsReceiptStatus(this.transactionInfo.id, this.transactionLine.lineNr);
|
|
55
|
+
this.viewModel.quantityToReceive = goodsReceiptStatus.quantityToReceive;
|
|
56
|
+
this.viewModel.quantityReceived = goodsReceiptStatus.quantityReceived;
|
|
57
|
+
this.viewModel.selected = this.viewModel.quantityReceived !== this.viewModel.amount && !this.viewModel.isSerialNrRequired && !this.viewModel.isBatchNrRequired && this.viewModel.quantityToReceive > 0;
|
|
58
|
+
this._transactionReceiveGoodsService.lines.push(this.viewModel);
|
|
59
|
+
}
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
changeLineAmount(amount) {
|
|
63
|
+
}
|
|
64
|
+
handleLineClicked(mouseClick) {
|
|
65
|
+
const target = mouseClick.target;
|
|
66
|
+
if (target && target.dataset && target.dataset['action'] && target.dataset['action'] === 'openSidePanel') {
|
|
67
|
+
this._transactionEventService.openSidePanel.next(this.transactionLine);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
warehouseButtonReadonly() {
|
|
71
|
+
return this.viewModel.quantityReceived === this.viewModel.amount || !this.viewModel.isLocationRequired || this.viewModel.isBatchNrRequired || this.viewModel.isSerialNrRequired;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
TransactionReceiveGoodsLineComponent.decorators = [
|
|
75
|
+
{ type: Component, args: [{
|
|
76
|
+
selector: "co-transaction-receive-goods-line",
|
|
77
|
+
template: `
|
|
78
|
+
<co-transaction-base-line [transactionInfo]="transactionInfo" [transactionLine]="viewModel" [preview]="preview" [actionButtons]="false" (click)="handleLineClicked($event)" observeVisibility (visible)="handleRowVisible()">
|
|
79
|
+
<div class="line-content-wrapper" data-action="openSidePanel">
|
|
80
|
+
<co-transaction-line-statusbar [transactionLine]="transactionLine" [transactionInfo]="transactionInfo" [activeCategory]="transactionTypeCategory.PurchaseOrderReceivedGoods"></co-transaction-line-statusbar>
|
|
81
|
+
<co-transaction-line-warehouse-button [transactionLine]="viewModel" [readonly]="viewModel.quantityReceived === viewModel.amount" [transactionInfo]="transactionInfo"></co-transaction-line-warehouse-button>
|
|
82
|
+
<co-transaction-line-warehouse-location-button [readonly]="warehouseButtonReadonly()" [line]="viewModel"></co-transaction-line-warehouse-location-button>
|
|
83
|
+
<co-editable-label class="transaction-line-totals-total price"
|
|
84
|
+
[model]="viewModel.amount.toString() + 'x'"
|
|
85
|
+
[readonly]="true"
|
|
86
|
+
></co-editable-label>
|
|
87
|
+
<div class="transaction-line-totals-amount"
|
|
88
|
+
[class.fully-delivered]="viewModel.quantityReceived === viewModel.amount"
|
|
89
|
+
[class.partially-delivered]="viewModel.quantityReceived !== viewModel.amount && viewModel.quantityReceived !== 0">
|
|
90
|
+
<co-input-number-picker class="amount-number-picker"
|
|
91
|
+
[(model)]="viewModel.quantityToReceive"
|
|
92
|
+
[min]="!allowPartialDelivery ? viewModel.amount : 1"
|
|
93
|
+
[max]="viewModel.amount - viewModel.quantityReceived"
|
|
94
|
+
[readonly]="readonly || !allowPartialDelivery || viewModel.quantityReceived === viewModel.amount"
|
|
95
|
+
(modelChange)="changeLineAmount($event)">
|
|
96
|
+
</co-input-number-picker>
|
|
97
|
+
</div>
|
|
98
|
+
<co-input-checkbox class="transaction-line-checkbox"
|
|
99
|
+
[(model)]="viewModel.selected"
|
|
100
|
+
[disabled]="viewModel.quantityReceived === viewModel.amount || viewModel.quantityToReceive < 0"
|
|
101
|
+
></co-input-checkbox>
|
|
102
|
+
<div class="print-button">
|
|
103
|
+
<co-icon [iconData]="iconCacheService.getIcon(icons.PrintSolid)"></co-icon>
|
|
104
|
+
<span class="price" [textContent]="1"></span>
|
|
105
|
+
</div>
|
|
106
|
+
</div>
|
|
107
|
+
</co-transaction-base-line>
|
|
108
|
+
`,
|
|
109
|
+
encapsulation: ViewEncapsulation.None
|
|
110
|
+
},] }
|
|
111
|
+
];
|
|
112
|
+
TransactionReceiveGoodsLineComponent.ctorParameters = () => [
|
|
113
|
+
{ type: IconCacheService },
|
|
114
|
+
{ type: TransactionService },
|
|
115
|
+
{ type: TransactionService },
|
|
116
|
+
{ type: TransactionEventService },
|
|
117
|
+
{ type: TransactionReceiveGoodsService }
|
|
118
|
+
];
|
|
119
|
+
TransactionReceiveGoodsLineComponent.propDecorators = {
|
|
120
|
+
showClass: [{ type: HostBinding, args: ["class.co-transaction-receive-goods-line",] }]
|
|
121
|
+
};
|
|
122
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tcmVjZWl2ZS1nb29kcy1saW5lLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RyYW5zYWN0aW9uL3NyYy9saWIvY29tcG9uZW50L3RyYW5zYWN0aW9uLWxpbmUvdHJhbnNhY3Rpb24tcmVjZWl2ZS1nb29kcy1saW5lL3RyYW5zYWN0aW9uLXJlY2VpdmUtZ29vZHMtbGluZS5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsV0FBVyxFQUFVLGlCQUFpQixFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ2hGLE9BQU8sRUFBQyxJQUFJLEVBQUMsTUFBTSx5QkFBeUIsQ0FBQztBQUM3QyxPQUFPLEVBQUMsZ0JBQWdCLEVBQUMsTUFBTSxxQ0FBcUMsQ0FBQztBQUNyRSxPQUFPLEVBQUMsa0JBQWtCLEVBQUMsTUFBTSxzQ0FBc0MsQ0FBQztBQUN4RSxPQUFPLEVBQUMsdUJBQXVCLEVBQUMsTUFBTSw0Q0FBNEMsQ0FBQztBQUduRixPQUFPLEVBQUMsOEJBQThCLEVBQUMsTUFBTSw2Q0FBNkMsQ0FBQztBQUMzRixPQUFPLEVBQUMsZ0NBQWdDLEVBQUMsTUFBTSxxREFBcUQsQ0FBQztBQUVyRyxPQUFPLEVBQUMsdUJBQXVCLEVBQUMsTUFBTSw4Q0FBOEMsQ0FBQztBQUNyRixPQUFPLEVBQUMsd0JBQXdCLEVBQUMsTUFBTSw0Q0FBNEMsQ0FBQztBQXNDcEYsTUFBTSxPQUFPLG9DQUFxQyxTQUFRLHdCQUF3QjtJQWVoRixZQUNTLGdCQUFrQyxFQUMvQixrQkFBc0MsRUFDeEMsbUJBQXVDLEVBQ3ZDLHdCQUFpRCxFQUNqRCwrQkFBK0Q7UUFFdkUsS0FBSyxDQUFDLGtCQUFrQixDQUFDLENBQUM7UUFObkIscUJBQWdCLEdBQWhCLGdCQUFnQixDQUFrQjtRQUMvQix1QkFBa0IsR0FBbEIsa0JBQWtCLENBQW9CO1FBQ3hDLHdCQUFtQixHQUFuQixtQkFBbUIsQ0FBb0I7UUFDdkMsNkJBQXdCLEdBQXhCLHdCQUF3QixDQUF5QjtRQUNqRCxvQ0FBK0IsR0FBL0IsK0JBQStCLENBQWdDO1FBbkJ6RCxVQUFLLEdBQWdCLElBQUksQ0FBQztRQUMxQiw0QkFBdUIsR0FBbUMsdUJBQXVCLENBQUM7UUFHM0YsY0FBUyxHQUFxQyxJQUFJLGdDQUFnQyxFQUFFLENBQUM7UUFRcEYsbUJBQWMsR0FBbUIsRUFBRSxDQUFDO0lBVTVDLENBQUM7SUFkTSxTQUFTO1FBQ2QsT0FBTyxJQUFJLENBQUM7SUFDZCxDQUFDO0lBY00sUUFBUTtRQUNiLElBQUksQ0FBQyxvQkFBb0IsR0FBRyxJQUFJLENBQUMsZUFBZSxDQUFDLG9CQUFvQixDQUFDO1FBQ3RFLElBQUksQ0FBQyxlQUFlLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxlQUFlLENBQUM7UUFDNUQsSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBRXRCLElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUN0QixJQUFJLENBQUMsd0JBQXdCLENBQUMsY0FBYyxDQUFDLFNBQVMsQ0FBQyxDQUFDLEtBQUssRUFBRSxFQUFFO1lBQy9ELElBQUksQ0FBQyxTQUFTLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsZ0JBQWdCLEtBQUssSUFBSSxDQUFDLFNBQVMsQ0FBQyxNQUFNLElBQUksSUFBSSxDQUFDLFNBQVMsQ0FBQyxpQkFBaUIsR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDO1FBQzlJLENBQUMsQ0FBQyxFQUNGLElBQUksQ0FBQyx3QkFBd0IsQ0FBQyxzQkFBc0IsQ0FBQyxTQUFTLENBQUMsQ0FBQyxJQUFJLEVBQUUsRUFBRTtZQUN0RSxJQUFJLElBQUksQ0FBQyxNQUFNLEtBQUssSUFBSSxDQUFDLFNBQVMsQ0FBQyxNQUFNLEVBQUU7Z0JBQ3pDLElBQUksQ0FBQyxTQUFTLENBQUMsaUJBQWlCLEdBQUcsSUFBSSxDQUFDLGlCQUFpQixDQUFDO2dCQUMxRCxJQUFJLENBQUMsU0FBUyxDQUFDLGdCQUFnQixHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQzthQUN6RDtRQUNILENBQUMsQ0FBQyxDQUNILENBQUE7SUFDSCxDQUFDO0lBRU0sV0FBVztRQUNoQixJQUFJLENBQUMsY0FBYyxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxXQUFXLEVBQUUsQ0FBQyxDQUFDO1FBQ2xELElBQUksQ0FBQywrQkFBK0IsQ0FBQyxLQUFLLEdBQUcsRUFBRSxDQUFDO0lBQ2xELENBQUM7SUFFTyxjQUFjO1FBQ3BCLE1BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFNBQVMsRUFBRSxJQUFJLENBQUMsZUFBZSxDQUFDLENBQUM7UUFDcEQsSUFBSSxDQUFDLFNBQVMsQ0FBQyxpQkFBaUIsR0FBRyxDQUFDLENBQUM7UUFDckMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxnQkFBZ0IsR0FBRyxDQUFDLENBQUM7UUFDcEMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxNQUFNLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxNQUFNLENBQUM7UUFDcEQsSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxFQUFFLENBQUM7SUFDbkQsQ0FBQztJQUVZLGdCQUFnQjs7WUFDM0IsSUFBSSxJQUFJLENBQUMsZUFBZSxDQUFDLFNBQVMsRUFBRTtnQkFDbEMsTUFBTSxrQkFBa0IsR0FBdUIsTUFBTSxJQUFJLENBQUMsbUJBQW1CLENBQUMscUJBQXFCLENBQUMsSUFBSSxDQUFDLGVBQWUsQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLGVBQWUsQ0FBQyxNQUFNLENBQUMsQ0FBQztnQkFDMUosSUFBSSxDQUFDLFNBQVMsQ0FBQyxpQkFBaUIsR0FBRyxrQkFBa0IsQ0FBQyxpQkFBaUIsQ0FBQztnQkFDeEUsSUFBSSxDQUFDLFNBQVMsQ0FBQyxnQkFBZ0IsR0FBRyxrQkFBa0IsQ0FBQyxnQkFBZ0IsQ0FBQztnQkFDdEUsSUFBSSxDQUFDLFNBQVMsQ0FBQyxRQUFRLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxnQkFBZ0IsS0FBSyxJQUFJLENBQUMsU0FBUyxDQUFDLE1BQU0sSUFBSSxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsa0JBQWtCLElBQUksQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLGlCQUFpQixJQUFJLElBQUksQ0FBQyxTQUFTLENBQUMsaUJBQWlCLEdBQUcsQ0FBQyxDQUFDO2dCQUN2TSxJQUFJLENBQUMsK0JBQStCLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUM7YUFDakU7UUFDSCxDQUFDO0tBQUE7SUFFTSxnQkFBZ0IsQ0FBQyxNQUFjO0lBRXRDLENBQUM7SUFFTSxpQkFBaUIsQ0FBQyxVQUF3QjtRQUMvQyxNQUFNLE1BQU0sR0FBNkIsVUFBVSxDQUFDLE1BQU0sQ0FBQztRQUMzRCxJQUFJLE1BQU0sSUFBSSxNQUFNLENBQUMsT0FBTyxJQUFJLE1BQU0sQ0FBQyxPQUFPLENBQUMsUUFBUSxDQUFDLElBQUksTUFBTSxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsS0FBSyxlQUFlLEVBQUU7WUFDeEcsSUFBSSxDQUFDLHdCQUF3QixDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLGVBQWUsQ0FBQyxDQUFDO1NBQ3hFO0lBQ0gsQ0FBQztJQUVNLHVCQUF1QjtRQUM1QixPQUFPLElBQUksQ0FBQyxTQUFTLENBQUMsZ0JBQWdCLEtBQUssSUFBSSxDQUFDLFNBQVMsQ0FBQyxNQUFNLElBQUksQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLGtCQUFrQixJQUFJLElBQUksQ0FBQyxTQUFTLENBQUMsaUJBQWlCLElBQUksSUFBSSxDQUFDLFNBQVMsQ0FBQyxrQkFBa0IsQ0FBQztJQUNsTCxDQUFDOzs7WUFuSEYsU0FBUyxTQUFDO2dCQUNULFFBQVEsRUFBRSxtQ0FBbUM7Z0JBQzdDLFFBQVEsRUFBRTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztHQStCVDtnQkFDRCxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTthQUN0Qzs7O1lBOUNPLGdCQUFnQjtZQUNoQixrQkFBa0I7WUFBbEIsa0JBQWtCO1lBQ2xCLHVCQUF1QjtZQUd2Qiw4QkFBOEI7Ozt3QkFrRG5DLFdBQVcsU0FBQyx5Q0FBeUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudCwgSG9zdEJpbmRpbmcsIE9uSW5pdCwgVmlld0VuY2Fwc3VsYXRpb259IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7SWNvbn0gZnJvbSBcIi4uLy4uLy4uL2VudW0vaWNvbi5lbnVtXCI7XHJcbmltcG9ydCB7SWNvbkNhY2hlU2VydmljZX0gZnJvbSBcIi4uLy4uLy4uL3NlcnZpY2UvaWNvbi1jYWNoZS5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7VHJhbnNhY3Rpb25TZXJ2aWNlfSBmcm9tIFwiLi4vLi4vLi4vc2VydmljZS90cmFuc2FjdGlvbi5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7VHJhbnNhY3Rpb25FdmVudFNlcnZpY2V9IGZyb20gXCIuLi8uLi8uLi9zZXJ2aWNlL3RyYW5zYWN0aW9uLWV2ZW50LnNlcnZpY2VcIjtcclxuaW1wb3J0IHtTdWJzY3JpcHRpb259IGZyb20gXCJyeGpzXCI7XHJcbmltcG9ydCB7R29vZHNSZWNlaXB0U3RhdHVzfSBmcm9tIFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uYXBpL2J1aWxkL21vZGVsL2dvb2RzLXJlY2VpcHQtc3RhdHVzLmJvXCI7XHJcbmltcG9ydCB7VHJhbnNhY3Rpb25SZWNlaXZlR29vZHNTZXJ2aWNlfSBmcm9tIFwiLi9zZXJ2aWNlL3RyYW5zYWN0aW9uLXJlY2VpdmUtZ29vZHMuc2VydmljZVwiO1xyXG5pbXBvcnQge0V4dGVuZGVkVHJhbnNhY3Rpb25MaW5lVmlld01vZGVsfSBmcm9tIFwiLi4vLi4vLi4vbW9kZWwvZXh0ZW5kZWQtdHJhbnNhY3Rpb24tbGluZS12aWV3LW1vZGVsXCI7XHJcbmltcG9ydCB7VHJhbnNhY3Rpb25LaW5kfSBmcm9tIFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uYXBpL2J1aWxkL2VudW0vdHJhbnNhY3Rpb24ta2luZC5lbnVtXCI7XHJcbmltcG9ydCB7VHJhbnNhY3Rpb25UeXBlQ2F0ZWdvcnl9IGZyb20gXCIuLi8uLi8uLi9lbnVtL3RyYW5zYWN0aW9uLXR5cGUtY2F0ZWdvcnkuZW51bVwiO1xyXG5pbXBvcnQge1RyYW5zYWN0aW9uQmFzZUNvbXBvbmVudH0gZnJvbSBcIi4uLy4uL2NvcmUvYmFzZS90cmFuc2FjdGlvbi1iYXNlLmNvbXBvbmVudFwiO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6IFwiY28tdHJhbnNhY3Rpb24tcmVjZWl2ZS1nb29kcy1saW5lXCIsXHJcbiAgdGVtcGxhdGU6IGBcclxuICAgIDxjby10cmFuc2FjdGlvbi1iYXNlLWxpbmUgW3RyYW5zYWN0aW9uSW5mb109XCJ0cmFuc2FjdGlvbkluZm9cIiBbdHJhbnNhY3Rpb25MaW5lXT1cInZpZXdNb2RlbFwiIFtwcmV2aWV3XT1cInByZXZpZXdcIiBbYWN0aW9uQnV0dG9uc109XCJmYWxzZVwiIChjbGljayk9XCJoYW5kbGVMaW5lQ2xpY2tlZCgkZXZlbnQpXCIgb2JzZXJ2ZVZpc2liaWxpdHkgKHZpc2libGUpPVwiaGFuZGxlUm93VmlzaWJsZSgpXCI+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJsaW5lLWNvbnRlbnQtd3JhcHBlclwiIGRhdGEtYWN0aW9uPVwib3BlblNpZGVQYW5lbFwiPlxyXG4gICAgICAgIDxjby10cmFuc2FjdGlvbi1saW5lLXN0YXR1c2JhciBbdHJhbnNhY3Rpb25MaW5lXT1cInRyYW5zYWN0aW9uTGluZVwiIFt0cmFuc2FjdGlvbkluZm9dPVwidHJhbnNhY3Rpb25JbmZvXCIgW2FjdGl2ZUNhdGVnb3J5XT1cInRyYW5zYWN0aW9uVHlwZUNhdGVnb3J5LlB1cmNoYXNlT3JkZXJSZWNlaXZlZEdvb2RzXCI+PC9jby10cmFuc2FjdGlvbi1saW5lLXN0YXR1c2Jhcj5cclxuICAgICAgICA8Y28tdHJhbnNhY3Rpb24tbGluZS13YXJlaG91c2UtYnV0dG9uIFt0cmFuc2FjdGlvbkxpbmVdPVwidmlld01vZGVsXCIgW3JlYWRvbmx5XT1cInZpZXdNb2RlbC5xdWFudGl0eVJlY2VpdmVkID09PSB2aWV3TW9kZWwuYW1vdW50XCIgW3RyYW5zYWN0aW9uSW5mb109XCJ0cmFuc2FjdGlvbkluZm9cIj48L2NvLXRyYW5zYWN0aW9uLWxpbmUtd2FyZWhvdXNlLWJ1dHRvbj5cclxuICAgICAgICA8Y28tdHJhbnNhY3Rpb24tbGluZS13YXJlaG91c2UtbG9jYXRpb24tYnV0dG9uIFtyZWFkb25seV09XCJ3YXJlaG91c2VCdXR0b25SZWFkb25seSgpXCIgW2xpbmVdPVwidmlld01vZGVsXCI+PC9jby10cmFuc2FjdGlvbi1saW5lLXdhcmVob3VzZS1sb2NhdGlvbi1idXR0b24+XHJcbiAgICAgICAgPGNvLWVkaXRhYmxlLWxhYmVsIGNsYXNzPVwidHJhbnNhY3Rpb24tbGluZS10b3RhbHMtdG90YWwgcHJpY2VcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICBbbW9kZWxdPVwidmlld01vZGVsLmFtb3VudC50b1N0cmluZygpICsgJ3gnXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgW3JlYWRvbmx5XT1cInRydWVcIlxyXG4gICAgICAgID48L2NvLWVkaXRhYmxlLWxhYmVsPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi1saW5lLXRvdGFscy1hbW91bnRcIlxyXG4gICAgICAgICAgICAgW2NsYXNzLmZ1bGx5LWRlbGl2ZXJlZF09XCJ2aWV3TW9kZWwucXVhbnRpdHlSZWNlaXZlZCA9PT0gdmlld01vZGVsLmFtb3VudFwiXHJcbiAgICAgICAgICAgICBbY2xhc3MucGFydGlhbGx5LWRlbGl2ZXJlZF09XCJ2aWV3TW9kZWwucXVhbnRpdHlSZWNlaXZlZCAhPT0gdmlld01vZGVsLmFtb3VudCAmJiB2aWV3TW9kZWwucXVhbnRpdHlSZWNlaXZlZCAhPT0gMFwiPlxyXG4gICAgICAgICAgPGNvLWlucHV0LW51bWJlci1waWNrZXIgY2xhc3M9XCJhbW91bnQtbnVtYmVyLXBpY2tlclwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbKG1vZGVsKV09XCJ2aWV3TW9kZWwucXVhbnRpdHlUb1JlY2VpdmVcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW21pbl09XCIhYWxsb3dQYXJ0aWFsRGVsaXZlcnkgPyB2aWV3TW9kZWwuYW1vdW50IDogMVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbbWF4XT1cInZpZXdNb2RlbC5hbW91bnQgLSB2aWV3TW9kZWwucXVhbnRpdHlSZWNlaXZlZFwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbcmVhZG9ubHldPVwicmVhZG9ubHkgfHwgIWFsbG93UGFydGlhbERlbGl2ZXJ5IHx8IHZpZXdNb2RlbC5xdWFudGl0eVJlY2VpdmVkID09PSB2aWV3TW9kZWwuYW1vdW50XCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIChtb2RlbENoYW5nZSk9XCJjaGFuZ2VMaW5lQW1vdW50KCRldmVudClcIj5cclxuICAgICAgICAgIDwvY28taW5wdXQtbnVtYmVyLXBpY2tlcj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8Y28taW5wdXQtY2hlY2tib3ggY2xhc3M9XCJ0cmFuc2FjdGlvbi1saW5lLWNoZWNrYm94XCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgWyhtb2RlbCldPVwidmlld01vZGVsLnNlbGVjdGVkXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgW2Rpc2FibGVkXT1cInZpZXdNb2RlbC5xdWFudGl0eVJlY2VpdmVkID09PSB2aWV3TW9kZWwuYW1vdW50IHx8IHZpZXdNb2RlbC5xdWFudGl0eVRvUmVjZWl2ZSA8IDBcIlxyXG4gICAgICAgID48L2NvLWlucHV0LWNoZWNrYm94PlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJwcmludC1idXR0b25cIj5cclxuICAgICAgICAgIDxjby1pY29uIFtpY29uRGF0YV09XCJpY29uQ2FjaGVTZXJ2aWNlLmdldEljb24oaWNvbnMuUHJpbnRTb2xpZClcIj48L2NvLWljb24+XHJcbiAgICAgICAgICA8c3BhbiBjbGFzcz1cInByaWNlXCIgW3RleHRDb250ZW50XT1cIjFcIj48L3NwYW4+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9jby10cmFuc2FjdGlvbi1iYXNlLWxpbmU+XHJcbiAgYCxcclxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBUcmFuc2FjdGlvblJlY2VpdmVHb29kc0xpbmVDb21wb25lbnQgZXh0ZW5kcyBUcmFuc2FjdGlvbkJhc2VDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gIHB1YmxpYyByZWFkb25seSBpY29uczogdHlwZW9mIEljb24gPSBJY29uO1xyXG4gIHB1YmxpYyByZWFkb25seSB0cmFuc2FjdGlvblR5cGVDYXRlZ29yeTogdHlwZW9mIFRyYW5zYWN0aW9uVHlwZUNhdGVnb3J5ID0gVHJhbnNhY3Rpb25UeXBlQ2F0ZWdvcnk7XHJcblxyXG4gIHB1YmxpYyBhbGxvd1BhcnRpYWxEZWxpdmVyeTogYm9vbGVhbjtcclxuICBwdWJsaWMgdmlld01vZGVsOiBFeHRlbmRlZFRyYW5zYWN0aW9uTGluZVZpZXdNb2RlbCA9IG5ldyBFeHRlbmRlZFRyYW5zYWN0aW9uTGluZVZpZXdNb2RlbCgpO1xyXG4gIHB1YmxpYyB0cmFuc2FjdGlvbktpbmQ6IFRyYW5zYWN0aW9uS2luZDtcclxuXHJcbiAgQEhvc3RCaW5kaW5nKFwiY2xhc3MuY28tdHJhbnNhY3Rpb24tcmVjZWl2ZS1nb29kcy1saW5lXCIpXHJcbiAgcHVibGljIHNob3dDbGFzcygpIHtcclxuICAgIHJldHVybiB0cnVlO1xyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBfc3Vic2NyaXB0aW9uczogU3Vic2NyaXB0aW9uW10gPSBbXTtcclxuXHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBwdWJsaWMgaWNvbkNhY2hlU2VydmljZTogSWNvbkNhY2hlU2VydmljZSxcclxuICAgIHByb3RlY3RlZCB0cmFuc2FjdGlvblNlcnZpY2U6IFRyYW5zYWN0aW9uU2VydmljZSxcclxuICAgIHByaXZhdGUgX3RyYW5zYWN0aW9uU2VydmljZTogVHJhbnNhY3Rpb25TZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSBfdHJhbnNhY3Rpb25FdmVudFNlcnZpY2U6IFRyYW5zYWN0aW9uRXZlbnRTZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSBfdHJhbnNhY3Rpb25SZWNlaXZlR29vZHNTZXJ2aWNlOiBUcmFuc2FjdGlvblJlY2VpdmVHb29kc1NlcnZpY2VcclxuICApIHtcclxuICAgIHN1cGVyKHRyYW5zYWN0aW9uU2VydmljZSk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgICB0aGlzLmFsbG93UGFydGlhbERlbGl2ZXJ5ID0gdGhpcy50cmFuc2FjdGlvbkluZm8uYWxsb3dQYXJ0aWFsRGVsaXZlcnk7XHJcbiAgICB0aGlzLnRyYW5zYWN0aW9uS2luZCA9IHRoaXMudHJhbnNhY3Rpb25JbmZvLnRyYW5zYWN0aW9uS2luZDtcclxuICAgIHRoaXMuX2luaXRWaWV3TW9kZWwoKTtcclxuXHJcbiAgICB0aGlzLl9zdWJzY3JpcHRpb25zLnB1c2goXHJcbiAgICAgIHRoaXMuX3RyYW5zYWN0aW9uRXZlbnRTZXJ2aWNlLnNlbGVjdEFsbExpbmVzLnN1YnNjcmliZSgodmFsdWUpID0+IHtcclxuICAgICAgICB0aGlzLnZpZXdNb2RlbC5zZWxlY3RlZCA9IHRoaXMudmlld01vZGVsLnF1YW50aXR5UmVjZWl2ZWQgPT09IHRoaXMudmlld01vZGVsLmFtb3VudCB8fCB0aGlzLnZpZXdNb2RlbC5xdWFudGl0eVRvUmVjZWl2ZSA8IDAgPyBmYWxzZSA6IHZhbHVlO1xyXG4gICAgICB9KSxcclxuICAgICAgdGhpcy5fdHJhbnNhY3Rpb25FdmVudFNlcnZpY2UudHJhbnNhY3Rpb25MaW5lQ2hhbmdlZC5zdWJzY3JpYmUoKGxpbmUpID0+IHtcclxuICAgICAgICBpZiAobGluZS5saW5lTnIgPT09IHRoaXMudmlld01vZGVsLmxpbmVOcikge1xyXG4gICAgICAgICAgdGhpcy52aWV3TW9kZWwucXVhbnRpdHlUb1JlY2VpdmUgPSBsaW5lLnF1YW50aXR5VG9SZWNlaXZlO1xyXG4gICAgICAgICAgdGhpcy52aWV3TW9kZWwucXVhbnRpdHlSZWNlaXZlZCA9IGxpbmUucXVhbnRpdHlSZWNlaXZlZDtcclxuICAgICAgICB9XHJcbiAgICAgIH0pXHJcbiAgICApXHJcbiAgfVxyXG5cclxuICBwdWJsaWMgbmdPbkRlc3Ryb3koKTogdm9pZCB7XHJcbiAgICB0aGlzLl9zdWJzY3JpcHRpb25zLmZvckVhY2gocyA9PiBzLnVuc3Vic2NyaWJlKCkpO1xyXG4gICAgdGhpcy5fdHJhbnNhY3Rpb25SZWNlaXZlR29vZHNTZXJ2aWNlLmxpbmVzID0gW107XHJcbiAgfVxyXG5cclxuICBwcml2YXRlIF9pbml0Vmlld01vZGVsKCk6IHZvaWQge1xyXG4gICAgT2JqZWN0LmFzc2lnbih0aGlzLnZpZXdNb2RlbCwgdGhpcy50cmFuc2FjdGlvbkxpbmUpO1xyXG4gICAgdGhpcy52aWV3TW9kZWwucXVhbnRpdHlUb1JlY2VpdmUgPSAwO1xyXG4gICAgdGhpcy52aWV3TW9kZWwucXVhbnRpdHlSZWNlaXZlZCA9IDA7XHJcbiAgICB0aGlzLnZpZXdNb2RlbC5saW5lTnIgPSB0aGlzLnRyYW5zYWN0aW9uTGluZS5saW5lTnI7XHJcbiAgICB0aGlzLnZpZXdNb2RlbC50cmFuc0lkID0gdGhpcy50cmFuc2FjdGlvbkluZm8uaWQ7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgYXN5bmMgaGFuZGxlUm93VmlzaWJsZSgpOiBQcm9taXNlPHZvaWQ+IHtcclxuICAgIGlmICh0aGlzLnRyYW5zYWN0aW9uTGluZS5pc0FydGljbGUpIHtcclxuICAgICAgY29uc3QgZ29vZHNSZWNlaXB0U3RhdHVzOiBHb29kc1JlY2VpcHRTdGF0dXMgPSBhd2FpdCB0aGlzLl90cmFuc2FjdGlvblNlcnZpY2UuZ2V0R29vZHNSZWNlaXB0U3RhdHVzKHRoaXMudHJhbnNhY3Rpb25JbmZvLmlkLCB0aGlzLnRyYW5zYWN0aW9uTGluZS5saW5lTnIpO1xyXG4gICAgICB0aGlzLnZpZXdNb2RlbC5xdWFudGl0eVRvUmVjZWl2ZSA9IGdvb2RzUmVjZWlwdFN0YXR1cy5xdWFudGl0eVRvUmVjZWl2ZTtcclxuICAgICAgdGhpcy52aWV3TW9kZWwucXVhbnRpdHlSZWNlaXZlZCA9IGdvb2RzUmVjZWlwdFN0YXR1cy5xdWFudGl0eVJlY2VpdmVkO1xyXG4gICAgICB0aGlzLnZpZXdNb2RlbC5zZWxlY3RlZCA9IHRoaXMudmlld01vZGVsLnF1YW50aXR5UmVjZWl2ZWQgIT09IHRoaXMudmlld01vZGVsLmFtb3VudCAmJiAhdGhpcy52aWV3TW9kZWwuaXNTZXJpYWxOclJlcXVpcmVkICYmICF0aGlzLnZpZXdNb2RlbC5pc0JhdGNoTnJSZXF1aXJlZCAmJiB0aGlzLnZpZXdNb2RlbC5xdWFudGl0eVRvUmVjZWl2ZSA+IDA7XHJcbiAgICAgIHRoaXMuX3RyYW5zYWN0aW9uUmVjZWl2ZUdvb2RzU2VydmljZS5saW5lcy5wdXNoKHRoaXMudmlld01vZGVsKTtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIHB1YmxpYyBjaGFuZ2VMaW5lQW1vdW50KGFtb3VudDogbnVtYmVyKTogdm9pZCB7XHJcblxyXG4gIH1cclxuXHJcbiAgcHVibGljIGhhbmRsZUxpbmVDbGlja2VkKG1vdXNlQ2xpY2s6IFBvaW50ZXJFdmVudCk6IHZvaWQge1xyXG4gICAgY29uc3QgdGFyZ2V0OiBIVE1MRWxlbWVudCA9IDxIVE1MRWxlbWVudD5tb3VzZUNsaWNrLnRhcmdldDtcclxuICAgIGlmICh0YXJnZXQgJiYgdGFyZ2V0LmRhdGFzZXQgJiYgdGFyZ2V0LmRhdGFzZXRbJ2FjdGlvbiddICYmIHRhcmdldC5kYXRhc2V0WydhY3Rpb24nXSA9PT0gJ29wZW5TaWRlUGFuZWwnKSB7XHJcbiAgICAgIHRoaXMuX3RyYW5zYWN0aW9uRXZlbnRTZXJ2aWNlLm9wZW5TaWRlUGFuZWwubmV4dCh0aGlzLnRyYW5zYWN0aW9uTGluZSk7XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgd2FyZWhvdXNlQnV0dG9uUmVhZG9ubHkoKTogYm9vbGVhbiB7XHJcbiAgICByZXR1cm4gdGhpcy52aWV3TW9kZWwucXVhbnRpdHlSZWNlaXZlZCA9PT0gdGhpcy52aWV3TW9kZWwuYW1vdW50IHx8ICF0aGlzLnZpZXdNb2RlbC5pc0xvY2F0aW9uUmVxdWlyZWQgfHwgdGhpcy52aWV3TW9kZWwuaXNCYXRjaE5yUmVxdWlyZWQgfHwgdGhpcy52aWV3TW9kZWwuaXNTZXJpYWxOclJlcXVpcmVkO1xyXG4gIH1cclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { NgModule } from "@angular/core";
|
|
2
|
+
import { CommonModule } from "@angular/common";
|
|
3
|
+
import { TransactionReceiveGoodsLineComponent } from "./transaction-receive-goods-line.component";
|
|
4
|
+
import { TransactionBaseLineModule } from "../transaction-base-line/transaction-base-line.module";
|
|
5
|
+
import { TransactionLineWarehouseButtonModule } from "../../transaction-line-fields/transaction-line-warehouse-button.module";
|
|
6
|
+
import { TransactionLineWarehouseLocationModule } from "../../transaction-line-fields/transaction-line-warehouse-location.module";
|
|
7
|
+
import { EditableLabelModule } from "../../editable-label/editable-label.module";
|
|
8
|
+
import { IconModule, InputCheckboxModule, InputNumberPickerModule, ObserveVisibilityModule } from "@colijnit/corecomponents_v12";
|
|
9
|
+
import { TransactionLineWarehouseLocationButtonModule } from "../../transaction-line-fields/transaction-line-warehouse-location-button.module";
|
|
10
|
+
import { TransactionLineStatusbarModule } from "../../transaction-line-statusbar/transaction-line-statusbar.module";
|
|
11
|
+
export class TransactionReceiveGoodsLineModule {
|
|
12
|
+
}
|
|
13
|
+
TransactionReceiveGoodsLineModule.decorators = [
|
|
14
|
+
{ type: NgModule, args: [{
|
|
15
|
+
imports: [
|
|
16
|
+
CommonModule,
|
|
17
|
+
TransactionBaseLineModule,
|
|
18
|
+
TransactionLineWarehouseButtonModule,
|
|
19
|
+
TransactionLineWarehouseLocationModule,
|
|
20
|
+
EditableLabelModule,
|
|
21
|
+
InputNumberPickerModule,
|
|
22
|
+
InputCheckboxModule,
|
|
23
|
+
IconModule,
|
|
24
|
+
TransactionLineWarehouseLocationButtonModule,
|
|
25
|
+
ObserveVisibilityModule,
|
|
26
|
+
TransactionLineStatusbarModule
|
|
27
|
+
],
|
|
28
|
+
declarations: [
|
|
29
|
+
TransactionReceiveGoodsLineComponent
|
|
30
|
+
],
|
|
31
|
+
exports: [
|
|
32
|
+
TransactionReceiveGoodsLineComponent
|
|
33
|
+
]
|
|
34
|
+
},] }
|
|
35
|
+
];
|
|
36
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tcmVjZWl2ZS1nb29kcy1saW5lLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RyYW5zYWN0aW9uL3NyYy9saWIvY29tcG9uZW50L3RyYW5zYWN0aW9uLWxpbmUvdHJhbnNhY3Rpb24tcmVjZWl2ZS1nb29kcy1saW5lL3RyYW5zYWN0aW9uLXJlY2VpdmUtZ29vZHMtbGluZS5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFFBQVEsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN2QyxPQUFPLEVBQUMsWUFBWSxFQUFDLE1BQU0saUJBQWlCLENBQUM7QUFDN0MsT0FBTyxFQUFDLG9DQUFvQyxFQUFDLE1BQU0sNENBQTRDLENBQUM7QUFDaEcsT0FBTyxFQUFDLHlCQUF5QixFQUFDLE1BQU0sdURBQXVELENBQUM7QUFDaEcsT0FBTyxFQUNMLG9DQUFvQyxFQUNyQyxNQUFNLHdFQUF3RSxDQUFDO0FBQ2hGLE9BQU8sRUFDTCxzQ0FBc0MsRUFDdkMsTUFBTSwwRUFBMEUsQ0FBQztBQUNsRixPQUFPLEVBQUMsbUJBQW1CLEVBQUMsTUFBTSw0Q0FBNEMsQ0FBQztBQUMvRSxPQUFPLEVBQ0gsVUFBVSxFQUNWLG1CQUFtQixFQUNuQix1QkFBdUIsRUFDdkIsdUJBQXVCLEVBQzFCLE1BQU0sOEJBQThCLENBQUM7QUFDdEMsT0FBTyxFQUNMLDRDQUE0QyxFQUM3QyxNQUFNLGlGQUFpRixDQUFDO0FBQ3pGLE9BQU8sRUFBQyw4QkFBOEIsRUFBQyxNQUFNLG9FQUFvRSxDQUFDO0FBd0JsSCxNQUFNLE9BQU8saUNBQWlDOzs7WUFyQjdDLFFBQVEsU0FBQztnQkFDTixPQUFPLEVBQUU7b0JBQ0wsWUFBWTtvQkFDWix5QkFBeUI7b0JBQ3pCLG9DQUFvQztvQkFDcEMsc0NBQXNDO29CQUN0QyxtQkFBbUI7b0JBQ25CLHVCQUF1QjtvQkFDdkIsbUJBQW1CO29CQUNuQixVQUFVO29CQUNWLDRDQUE0QztvQkFDNUMsdUJBQXVCO29CQUN2Qiw4QkFBOEI7aUJBQ2pDO2dCQUNILFlBQVksRUFBRTtvQkFDWixvQ0FBb0M7aUJBQ3JDO2dCQUNELE9BQU8sRUFBRTtvQkFDUCxvQ0FBb0M7aUJBQ3JDO2FBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge05nTW9kdWxlfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSBcIkBhbmd1bGFyL2NvbW1vblwiO1xyXG5pbXBvcnQge1RyYW5zYWN0aW9uUmVjZWl2ZUdvb2RzTGluZUNvbXBvbmVudH0gZnJvbSBcIi4vdHJhbnNhY3Rpb24tcmVjZWl2ZS1nb29kcy1saW5lLmNvbXBvbmVudFwiO1xyXG5pbXBvcnQge1RyYW5zYWN0aW9uQmFzZUxpbmVNb2R1bGV9IGZyb20gXCIuLi90cmFuc2FjdGlvbi1iYXNlLWxpbmUvdHJhbnNhY3Rpb24tYmFzZS1saW5lLm1vZHVsZVwiO1xyXG5pbXBvcnQge1xyXG4gIFRyYW5zYWN0aW9uTGluZVdhcmVob3VzZUJ1dHRvbk1vZHVsZVxyXG59IGZyb20gXCIuLi8uLi90cmFuc2FjdGlvbi1saW5lLWZpZWxkcy90cmFuc2FjdGlvbi1saW5lLXdhcmVob3VzZS1idXR0b24ubW9kdWxlXCI7XHJcbmltcG9ydCB7XHJcbiAgVHJhbnNhY3Rpb25MaW5lV2FyZWhvdXNlTG9jYXRpb25Nb2R1bGVcclxufSBmcm9tIFwiLi4vLi4vdHJhbnNhY3Rpb24tbGluZS1maWVsZHMvdHJhbnNhY3Rpb24tbGluZS13YXJlaG91c2UtbG9jYXRpb24ubW9kdWxlXCI7XHJcbmltcG9ydCB7RWRpdGFibGVMYWJlbE1vZHVsZX0gZnJvbSBcIi4uLy4uL2VkaXRhYmxlLWxhYmVsL2VkaXRhYmxlLWxhYmVsLm1vZHVsZVwiO1xyXG5pbXBvcnQge1xyXG4gICAgSWNvbk1vZHVsZSxcclxuICAgIElucHV0Q2hlY2tib3hNb2R1bGUsXHJcbiAgICBJbnB1dE51bWJlclBpY2tlck1vZHVsZSxcclxuICAgIE9ic2VydmVWaXNpYmlsaXR5TW9kdWxlXHJcbn0gZnJvbSBcIkBjb2xpam5pdC9jb3JlY29tcG9uZW50c192MTJcIjtcclxuaW1wb3J0IHtcclxuICBUcmFuc2FjdGlvbkxpbmVXYXJlaG91c2VMb2NhdGlvbkJ1dHRvbk1vZHVsZVxyXG59IGZyb20gXCIuLi8uLi90cmFuc2FjdGlvbi1saW5lLWZpZWxkcy90cmFuc2FjdGlvbi1saW5lLXdhcmVob3VzZS1sb2NhdGlvbi1idXR0b24ubW9kdWxlXCI7XHJcbmltcG9ydCB7VHJhbnNhY3Rpb25MaW5lU3RhdHVzYmFyTW9kdWxlfSBmcm9tIFwiLi4vLi4vdHJhbnNhY3Rpb24tbGluZS1zdGF0dXNiYXIvdHJhbnNhY3Rpb24tbGluZS1zdGF0dXNiYXIubW9kdWxlXCI7XHJcblxyXG5cclxuQE5nTW9kdWxlKHtcclxuICAgIGltcG9ydHM6IFtcclxuICAgICAgICBDb21tb25Nb2R1bGUsXHJcbiAgICAgICAgVHJhbnNhY3Rpb25CYXNlTGluZU1vZHVsZSxcclxuICAgICAgICBUcmFuc2FjdGlvbkxpbmVXYXJlaG91c2VCdXR0b25Nb2R1bGUsXHJcbiAgICAgICAgVHJhbnNhY3Rpb25MaW5lV2FyZWhvdXNlTG9jYXRpb25Nb2R1bGUsXHJcbiAgICAgICAgRWRpdGFibGVMYWJlbE1vZHVsZSxcclxuICAgICAgICBJbnB1dE51bWJlclBpY2tlck1vZHVsZSxcclxuICAgICAgICBJbnB1dENoZWNrYm94TW9kdWxlLFxyXG4gICAgICAgIEljb25Nb2R1bGUsXHJcbiAgICAgICAgVHJhbnNhY3Rpb25MaW5lV2FyZWhvdXNlTG9jYXRpb25CdXR0b25Nb2R1bGUsXHJcbiAgICAgICAgT2JzZXJ2ZVZpc2liaWxpdHlNb2R1bGUsXHJcbiAgICAgICAgVHJhbnNhY3Rpb25MaW5lU3RhdHVzYmFyTW9kdWxlXHJcbiAgICBdLFxyXG4gIGRlY2xhcmF0aW9uczogW1xyXG4gICAgVHJhbnNhY3Rpb25SZWNlaXZlR29vZHNMaW5lQ29tcG9uZW50XHJcbiAgXSxcclxuICBleHBvcnRzOiBbXHJcbiAgICBUcmFuc2FjdGlvblJlY2VpdmVHb29kc0xpbmVDb21wb25lbnRcclxuICBdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBUcmFuc2FjdGlvblJlY2VpdmVHb29kc0xpbmVNb2R1bGUge1xyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
import { Component, EventEmitter, HostBinding, Input, Output, ViewEncapsulation } from "@angular/core";
|
|
2
|
+
import { TransactionService } from "../../service/transaction.service";
|
|
3
|
+
import { TransactionKind } from "@colijnit/transactionapi/build/enum/transaction-kind.enum";
|
|
4
|
+
import { Icon } from "../../enum/icon.enum";
|
|
5
|
+
import { DictionaryService } from "../../service/dictionary.service";
|
|
6
|
+
import { IconCacheService } from "../../service/icon-cache.service";
|
|
7
|
+
import { Direction } from "../../enum/direction.enum";
|
|
8
|
+
export class TransactionLineActionButtonsComponent {
|
|
9
|
+
constructor(iconCacheService, _transactionService, _dictionaryService) {
|
|
10
|
+
this.iconCacheService = iconCacheService;
|
|
11
|
+
this._transactionService = _transactionService;
|
|
12
|
+
this._dictionaryService = _dictionaryService;
|
|
13
|
+
this.icons = Icon;
|
|
14
|
+
this.alignDirection = Direction.Down;
|
|
15
|
+
this.waitingForUserAction = new EventEmitter();
|
|
16
|
+
this.sidePanelButtonClicked = new EventEmitter();
|
|
17
|
+
this.showActionButtonsDelayed = false;
|
|
18
|
+
this.showTransactionArticleText = false;
|
|
19
|
+
this.showTransactionArticleTextOverview = false;
|
|
20
|
+
this.readonly = false;
|
|
21
|
+
this._showActionButtons = false;
|
|
22
|
+
}
|
|
23
|
+
set transactionLine(value) {
|
|
24
|
+
this._transactionLine = value;
|
|
25
|
+
this.readonly = this._transactionLine.hasInvoices;
|
|
26
|
+
}
|
|
27
|
+
get transactionLine() {
|
|
28
|
+
return this._transactionLine;
|
|
29
|
+
}
|
|
30
|
+
set showActionButtons(value) {
|
|
31
|
+
this._showActionButtons = value;
|
|
32
|
+
setTimeout(() => {
|
|
33
|
+
this.showActionButtonsDelayed = this._showActionButtons;
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
get showActionButtons() {
|
|
37
|
+
return this._showActionButtons;
|
|
38
|
+
}
|
|
39
|
+
showClass() {
|
|
40
|
+
return true;
|
|
41
|
+
}
|
|
42
|
+
ngOnInit() {
|
|
43
|
+
this.transactionKind = this._transactionService.currentTransaction.transactionInfo.transactionKind;
|
|
44
|
+
}
|
|
45
|
+
handleShowHideClick() {
|
|
46
|
+
this.showActionButtons = !this.showActionButtons;
|
|
47
|
+
setTimeout(() => {
|
|
48
|
+
this.showActionButtonsDelayed = !this.showActionButtonsDelayed;
|
|
49
|
+
}, 1);
|
|
50
|
+
}
|
|
51
|
+
handleTransactionArticleTextOverview() {
|
|
52
|
+
this.articleTextHeader = this._dictionaryService.get("PRODUCT_DESCRIPTION_AND_TEXTS", true);
|
|
53
|
+
this.textToEdit = undefined;
|
|
54
|
+
this._showArticleTextOverviewDialog();
|
|
55
|
+
this.showActionButtons = false;
|
|
56
|
+
this.showActionButtonsDelayed = false;
|
|
57
|
+
}
|
|
58
|
+
handleTransactionArticleText() {
|
|
59
|
+
this.articleTextHeader = this._dictionaryService.get("PRODUCT_DESCRIPTION_AND_TEXTS", true);
|
|
60
|
+
this.textToEdit = undefined;
|
|
61
|
+
this.showArticleTextDialog();
|
|
62
|
+
this.showActionButtons = false;
|
|
63
|
+
this.showActionButtonsDelayed = false;
|
|
64
|
+
}
|
|
65
|
+
handleShowSidePanel() {
|
|
66
|
+
this.sidePanelButtonClicked.next(this.transactionLine);
|
|
67
|
+
this.waitingForUserAction.next(true);
|
|
68
|
+
this.showActionButtons = false;
|
|
69
|
+
this.showActionButtonsDelayed = false;
|
|
70
|
+
}
|
|
71
|
+
showOverviewButton() {
|
|
72
|
+
return (this.transactionKind === TransactionKind.PurchaseOrder ||
|
|
73
|
+
this.transactionKind === TransactionKind.SalesOrder) && !this.readonly;
|
|
74
|
+
}
|
|
75
|
+
showAddTextButton() {
|
|
76
|
+
return (this.transactionKind === TransactionKind.PurchaseOrder ||
|
|
77
|
+
this.transactionKind === TransactionKind.SalesOrder) && !this.readonly;
|
|
78
|
+
}
|
|
79
|
+
showSidebarButton() {
|
|
80
|
+
return this.transactionKind === TransactionKind.PurchaseOrder ||
|
|
81
|
+
this.transactionKind === TransactionKind.SalesOrder;
|
|
82
|
+
}
|
|
83
|
+
onSaveTransactionArticleTextOverview(request) {
|
|
84
|
+
this.saveTransactionArticleLineText(request);
|
|
85
|
+
this.closeTransactionArticleTextOverview();
|
|
86
|
+
}
|
|
87
|
+
saveTransactionArticleLineText(transactionAddTextLineRequest) {
|
|
88
|
+
if (transactionAddTextLineRequest) {
|
|
89
|
+
this._transactionService.addTextLine(transactionAddTextLineRequest.showOnDocuments, transactionAddTextLineRequest.text, 0, true, transactionAddTextLineRequest.refArticleLineNr).then(() => {
|
|
90
|
+
this._hideArticleTextDialog();
|
|
91
|
+
});
|
|
92
|
+
}
|
|
93
|
+
this._hideArticleTextDialog();
|
|
94
|
+
}
|
|
95
|
+
closeTransactionArticleText(event) {
|
|
96
|
+
this._hideArticleTextDialog();
|
|
97
|
+
}
|
|
98
|
+
closeTransactionArticleTextOverview() {
|
|
99
|
+
this._hideArticleTextOverviewDialog();
|
|
100
|
+
}
|
|
101
|
+
showArticleTextDialog() {
|
|
102
|
+
this.showTransactionArticleText = true;
|
|
103
|
+
this.waitingForUserAction.next(true);
|
|
104
|
+
}
|
|
105
|
+
_hideArticleTextDialog() {
|
|
106
|
+
this.showTransactionArticleText = false;
|
|
107
|
+
this.waitingForUserAction.next(false);
|
|
108
|
+
}
|
|
109
|
+
_showArticleTextOverviewDialog() {
|
|
110
|
+
this.showTransactionArticleTextOverview = true;
|
|
111
|
+
this.waitingForUserAction.next(true);
|
|
112
|
+
}
|
|
113
|
+
_hideArticleTextOverviewDialog() {
|
|
114
|
+
this.showTransactionArticleTextOverview = false;
|
|
115
|
+
this.waitingForUserAction.next(false);
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
TransactionLineActionButtonsComponent.decorators = [
|
|
119
|
+
{ type: Component, args: [{
|
|
120
|
+
selector: "co-transaction-line-action-buttons",
|
|
121
|
+
template: `
|
|
122
|
+
<div class="transaction-line-action-buttons-wrapper">
|
|
123
|
+
<!--
|
|
124
|
+
<div class="menu-button-container">
|
|
125
|
+
<co-button
|
|
126
|
+
class="action-menu-button circle"
|
|
127
|
+
[iconData]="iconCacheService.getIcon(icons.EllipsisLight)"
|
|
128
|
+
(click)="handleShowHideClick()">
|
|
129
|
+
</co-button>
|
|
130
|
+
</div>
|
|
131
|
+
-->
|
|
132
|
+
|
|
133
|
+
<div class="action-buttons-container"
|
|
134
|
+
*ngIf="showActionButtons"
|
|
135
|
+
[ngClass]="alignDirection">
|
|
136
|
+
|
|
137
|
+
<co-button
|
|
138
|
+
class="transaction-line-overview-button circle action-button"
|
|
139
|
+
[class.show]="showActionButtonsDelayed"
|
|
140
|
+
[iconData]="iconCacheService.getIcon(icons.TextSizeSolid)"
|
|
141
|
+
(click)="handleTransactionArticleTextOverview()"></co-button>
|
|
142
|
+
|
|
143
|
+
<co-button
|
|
144
|
+
class="transaction-line-add-text-button circle action-button"
|
|
145
|
+
[class.show]="showActionButtonsDelayed"
|
|
146
|
+
[iconData]="iconCacheService.getIcon(icons.TextSolid)"
|
|
147
|
+
(click)="handleTransactionArticleText()"></co-button>
|
|
148
|
+
|
|
149
|
+
<co-button
|
|
150
|
+
class="transaction-line-show-sidebar-button circle action-button"
|
|
151
|
+
[class.show]="showActionButtonsDelayed"
|
|
152
|
+
[iconData]="iconCacheService.getIcon(icons.ObjectIntersectSolid)"
|
|
153
|
+
(click)="handleShowSidePanel()"></co-button>
|
|
154
|
+
</div>
|
|
155
|
+
</div>
|
|
156
|
+
|
|
157
|
+
<co-transaction-article-text-overview *ngIf="showTransactionArticleTextOverview"
|
|
158
|
+
[header]="articleTextHeader | localize"
|
|
159
|
+
[transactionLine]="transactionLine"
|
|
160
|
+
(saveClick)="onSaveTransactionArticleTextOverview($event)"
|
|
161
|
+
(closeClick)="closeTransactionArticleTextOverview()"
|
|
162
|
+
(cancelClick)="closeTransactionArticleTextOverview()"
|
|
163
|
+
></co-transaction-article-text-overview>
|
|
164
|
+
|
|
165
|
+
<co-transaction-article-text *ngIf="showTransactionArticleText"
|
|
166
|
+
[header]="articleTextHeader | localize"
|
|
167
|
+
[articleLineNr]="transactionLine.lineNr"
|
|
168
|
+
[articleRef]="transactionLine.articleNumber"
|
|
169
|
+
[transactionLine]="transactionLine"
|
|
170
|
+
[editText]="textToEdit"
|
|
171
|
+
(saveClick)="saveTransactionArticleLineText($event)"
|
|
172
|
+
(closeClick)="closeTransactionArticleText($event)"
|
|
173
|
+
(cancelClick)="closeTransactionArticleText($event)"
|
|
174
|
+
></co-transaction-article-text>
|
|
175
|
+
`,
|
|
176
|
+
encapsulation: ViewEncapsulation.None
|
|
177
|
+
},] }
|
|
178
|
+
];
|
|
179
|
+
TransactionLineActionButtonsComponent.ctorParameters = () => [
|
|
180
|
+
{ type: IconCacheService },
|
|
181
|
+
{ type: TransactionService },
|
|
182
|
+
{ type: DictionaryService }
|
|
183
|
+
];
|
|
184
|
+
TransactionLineActionButtonsComponent.propDecorators = {
|
|
185
|
+
transactionLine: [{ type: Input }],
|
|
186
|
+
alignDirection: [{ type: Input }],
|
|
187
|
+
showActionButtons: [{ type: Input }],
|
|
188
|
+
waitingForUserAction: [{ type: Output }],
|
|
189
|
+
sidePanelButtonClicked: [{ type: Output }],
|
|
190
|
+
showClass: [{ type: HostBinding, args: ["class.co-transaction-line-action-buttons",] }]
|
|
191
|
+
};
|
|
192
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tbGluZS1hY3Rpb24tYnV0dG9ucy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2NvbXBvbmVudC90cmFuc2FjdGlvbi1saW5lLWFjdGlvbi1idXR0b25zL3RyYW5zYWN0aW9uLWxpbmUtYWN0aW9uLWJ1dHRvbnMuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLFdBQVcsRUFBRSxLQUFLLEVBQVUsTUFBTSxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQy9HLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLG1DQUFtQyxDQUFDO0FBQ3ZFLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSwyREFBMkQsQ0FBQztBQUM1RixPQUFPLEVBQUUsSUFBSSxFQUFFLE1BQU0sc0JBQXNCLENBQUM7QUFDNUMsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sa0NBQWtDLENBQUM7QUFDckUsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sa0NBQWtDLENBQUM7QUFDcEUsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBaUV0RCxNQUFNLE9BQU8scUNBQXFDO0lBa0RoRCxZQUNTLGdCQUFrQyxFQUNqQyxtQkFBdUMsRUFDdkMsa0JBQXFDO1FBRnRDLHFCQUFnQixHQUFoQixnQkFBZ0IsQ0FBa0I7UUFDakMsd0JBQW1CLEdBQW5CLG1CQUFtQixDQUFvQjtRQUN2Qyx1QkFBa0IsR0FBbEIsa0JBQWtCLENBQW1CO1FBcEQvQixVQUFLLEdBQWdCLElBQUksQ0FBQztRQWFuQyxtQkFBYyxHQUFjLFNBQVMsQ0FBQyxJQUFJLENBQUM7UUFlM0MseUJBQW9CLEdBQTBCLElBQUksWUFBWSxFQUFXLENBQUM7UUFHMUUsMkJBQXNCLEdBQXNDLElBQUksWUFBWSxFQUF1QixDQUFDO1FBT3BHLDZCQUF3QixHQUFZLEtBQUssQ0FBQztRQUUxQywrQkFBMEIsR0FBWSxLQUFLLENBQUM7UUFDNUMsdUNBQWtDLEdBQVksS0FBSyxDQUFDO1FBR3BELGFBQVEsR0FBWSxLQUFLLENBQUM7UUFHekIsdUJBQWtCLEdBQVksS0FBSyxDQUFDO0lBTzVDLENBQUM7SUFwREQsSUFDVyxlQUFlLENBQUMsS0FBMEI7UUFDbkQsSUFBSSxDQUFDLGdCQUFnQixHQUFHLEtBQUssQ0FBQztRQUM5QixJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxXQUFXLENBQUM7SUFDcEQsQ0FBQztJQUVELElBQVcsZUFBZTtRQUN4QixPQUFPLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQztJQUMvQixDQUFDO0lBS0QsSUFDVyxpQkFBaUIsQ0FBQyxLQUFjO1FBQ3pDLElBQUksQ0FBQyxrQkFBa0IsR0FBRyxLQUFLLENBQUM7UUFDaEMsVUFBVSxDQUFDLEdBQUcsRUFBRTtZQUNkLElBQUksQ0FBQyx3QkFBd0IsR0FBRyxJQUFJLENBQUMsa0JBQWtCLENBQUM7UUFDMUQsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRUQsSUFBVyxpQkFBaUI7UUFDMUIsT0FBTyxJQUFJLENBQUMsa0JBQWtCLENBQUM7SUFDakMsQ0FBQztJQVNNLFNBQVM7UUFDZCxPQUFPLElBQUksQ0FBQztJQUNkLENBQUM7SUFvQk0sUUFBUTtRQUNiLElBQUksQ0FBQyxlQUFlLEdBQUcsSUFBSSxDQUFDLG1CQUFtQixDQUFDLGtCQUFrQixDQUFDLGVBQWUsQ0FBQyxlQUFlLENBQUM7SUFDckcsQ0FBQztJQUVNLG1CQUFtQjtRQUN4QixJQUFJLENBQUMsaUJBQWlCLEdBQUcsQ0FBQyxJQUFJLENBQUMsaUJBQWlCLENBQUM7UUFDakQsVUFBVSxDQUFDLEdBQUcsRUFBRTtZQUNkLElBQUksQ0FBQyx3QkFBd0IsR0FBRyxDQUFDLElBQUksQ0FBQyx3QkFBd0IsQ0FBQztRQUNqRSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUM7SUFDUixDQUFDO0lBRU0sb0NBQW9DO1FBQ3pDLElBQUksQ0FBQyxpQkFBaUIsR0FBRyxJQUFJLENBQUMsa0JBQWtCLENBQUMsR0FBRyxDQUFDLCtCQUErQixFQUFFLElBQUksQ0FBQyxDQUFDO1FBQzVGLElBQUksQ0FBQyxVQUFVLEdBQUcsU0FBUyxDQUFDO1FBQzVCLElBQUksQ0FBQyw4QkFBOEIsRUFBRSxDQUFDO1FBQ3RDLElBQUksQ0FBQyxpQkFBaUIsR0FBRyxLQUFLLENBQUM7UUFDL0IsSUFBSSxDQUFDLHdCQUF3QixHQUFHLEtBQUssQ0FBQztJQUN4QyxDQUFDO0lBRU0sNEJBQTRCO1FBQ2pDLElBQUksQ0FBQyxpQkFBaUIsR0FBRyxJQUFJLENBQUMsa0JBQWtCLENBQUMsR0FBRyxDQUFDLCtCQUErQixFQUFFLElBQUksQ0FBQyxDQUFDO1FBQzVGLElBQUksQ0FBQyxVQUFVLEdBQUcsU0FBUyxDQUFDO1FBQzVCLElBQUksQ0FBQyxxQkFBcUIsRUFBRSxDQUFDO1FBQzdCLElBQUksQ0FBQyxpQkFBaUIsR0FBRyxLQUFLLENBQUM7UUFDL0IsSUFBSSxDQUFDLHdCQUF3QixHQUFHLEtBQUssQ0FBQztJQUN4QyxDQUFDO0lBRU0sbUJBQW1CO1FBQ3hCLElBQUksQ0FBQyxzQkFBc0IsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLGVBQWUsQ0FBQyxDQUFDO1FBQ3ZELElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7UUFDckMsSUFBSSxDQUFDLGlCQUFpQixHQUFHLEtBQUssQ0FBQztRQUMvQixJQUFJLENBQUMsd0JBQXdCLEdBQUcsS0FBSyxDQUFDO0lBQ3hDLENBQUM7SUFFTSxrQkFBa0I7UUFDdkIsT0FBTyxDQUFDLElBQUksQ0FBQyxlQUFlLEtBQUssZUFBZSxDQUFDLGFBQWE7WUFDNUQsSUFBSSxDQUFDLGVBQWUsS0FBSyxlQUFlLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDO0lBQzNFLENBQUM7SUFFTSxpQkFBaUI7UUFDdEIsT0FBTyxDQUFDLElBQUksQ0FBQyxlQUFlLEtBQUssZUFBZSxDQUFDLGFBQWE7WUFDNUQsSUFBSSxDQUFDLGVBQWUsS0FBSyxlQUFlLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDO0lBQzNFLENBQUM7SUFFTSxpQkFBaUI7UUFDdEIsT0FBTyxJQUFJLENBQUMsZUFBZSxLQUFLLGVBQWUsQ0FBQyxhQUFhO1lBQzNELElBQUksQ0FBQyxlQUFlLEtBQUssZUFBZSxDQUFDLFVBQVUsQ0FBQztJQUN4RCxDQUFDO0lBRU0sb0NBQW9DLENBQUMsT0FBc0M7UUFDaEYsSUFBSSxDQUFDLDhCQUE4QixDQUFDLE9BQU8sQ0FBQyxDQUFDO1FBQzdDLElBQUksQ0FBQyxtQ0FBbUMsRUFBRSxDQUFDO0lBQzdDLENBQUM7SUFFTSw4QkFBOEIsQ0FBQyw2QkFBNEQ7UUFDaEcsSUFBSSw2QkFBNkIsRUFBRTtZQUNqQyxJQUFJLENBQUMsbUJBQW1CLENBQUMsV0FBVyxDQUNsQyw2QkFBNkIsQ0FBQyxlQUFlLEVBQzdDLDZCQUE2QixDQUFDLElBQUksRUFDbEMsQ0FBQyxFQUNELElBQUksRUFDSiw2QkFBNkIsQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLEVBQUU7Z0JBQzFELElBQUksQ0FBQyxzQkFBc0IsRUFBRSxDQUFDO1lBQ2hDLENBQUMsQ0FBQyxDQUFDO1NBQ0o7UUFDRCxJQUFJLENBQUMsc0JBQXNCLEVBQUUsQ0FBQztJQUNoQyxDQUFDO0lBRU0sMkJBQTJCLENBQUMsS0FBaUI7UUFDbEQsSUFBSSxDQUFDLHNCQUFzQixFQUFFLENBQUM7SUFDaEMsQ0FBQztJQUVNLG1DQUFtQztRQUN4QyxJQUFJLENBQUMsOEJBQThCLEVBQUUsQ0FBQztJQUN4QyxDQUFDO0lBRU0scUJBQXFCO1FBQzFCLElBQUksQ0FBQywwQkFBMEIsR0FBRyxJQUFJLENBQUM7UUFDdkMsSUFBSSxDQUFDLG9CQUFvQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUN2QyxDQUFDO0lBRU8sc0JBQXNCO1FBQzVCLElBQUksQ0FBQywwQkFBMEIsR0FBRyxLQUFLLENBQUM7UUFDeEMsSUFBSSxDQUFDLG9CQUFvQixDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUN4QyxDQUFDO0lBRU8sOEJBQThCO1FBQ3BDLElBQUksQ0FBQyxrQ0FBa0MsR0FBRyxJQUFJLENBQUM7UUFDL0MsSUFBSSxDQUFDLG9CQUFvQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUN2QyxDQUFDO0lBRU8sOEJBQThCO1FBQ3BDLElBQUksQ0FBQyxrQ0FBa0MsR0FBRyxLQUFLLENBQUM7UUFDaEQsSUFBSSxDQUFDLG9CQUFvQixDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUN4QyxDQUFDOzs7WUFsTkYsU0FBUyxTQUFDO2dCQUNULFFBQVEsRUFBRSxvQ0FBb0M7Z0JBQzlDLFFBQVEsRUFBRTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0dBc0RUO2dCQUNELGFBQWEsRUFBRSxpQkFBaUIsQ0FBQyxJQUFJO2FBQ3RDOzs7WUFqRVEsZ0JBQWdCO1lBSmhCLGtCQUFrQjtZQUdsQixpQkFBaUI7Ozs4QkFzRXZCLEtBQUs7NkJBVUwsS0FBSztnQ0FHTCxLQUFLO21DQVlMLE1BQU07cUNBR04sTUFBTTt3QkFHTixXQUFXLFNBQUMsMENBQTBDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIEhvc3RCaW5kaW5nLCBJbnB1dCwgT25Jbml0LCBPdXRwdXQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHsgVHJhbnNhY3Rpb25TZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL3NlcnZpY2UvdHJhbnNhY3Rpb24uc2VydmljZVwiO1xyXG5pbXBvcnQgeyBUcmFuc2FjdGlvbktpbmQgfSBmcm9tIFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uYXBpL2J1aWxkL2VudW0vdHJhbnNhY3Rpb24ta2luZC5lbnVtXCI7XHJcbmltcG9ydCB7IEljb24gfSBmcm9tIFwiLi4vLi4vZW51bS9pY29uLmVudW1cIjtcclxuaW1wb3J0IHsgRGljdGlvbmFyeVNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vc2VydmljZS9kaWN0aW9uYXJ5LnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgSWNvbkNhY2hlU2VydmljZSB9IGZyb20gXCIuLi8uLi9zZXJ2aWNlL2ljb24tY2FjaGUuc2VydmljZVwiO1xyXG5pbXBvcnQgeyBEaXJlY3Rpb24gfSBmcm9tIFwiLi4vLi4vZW51bS9kaXJlY3Rpb24uZW51bVwiO1xyXG5pbXBvcnQgeyBUcmFuc2FjdGlvbkxpbmVJbmZvIH0gZnJvbSBcIkBjb2xpam5pdC90cmFuc2FjdGlvbmFwaS9idWlsZC9tb2RlbC90cmFuc2FjdGlvbi1saW5lLWluZm8uYm9cIjtcclxuaW1wb3J0IHtcclxuICBUcmFuc2FjdGlvbkFkZFRleHRMaW5lUmVxdWVzdFxyXG59IGZyb20gXCJAY29saWpuaXQvdHJhbnNhY3Rpb25hcGkvYnVpbGQvbW9kZWwvdHJhbnNhY3Rpb24tYWRkLXRleHQtbGluZS1yZXF1ZXN0LmJvXCI7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogXCJjby10cmFuc2FjdGlvbi1saW5lLWFjdGlvbi1idXR0b25zXCIsXHJcbiAgdGVtcGxhdGU6IGBcclxuICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi1saW5lLWFjdGlvbi1idXR0b25zLXdyYXBwZXJcIj5cclxuPCEtLVxyXG4gICAgICA8ZGl2IGNsYXNzPVwibWVudS1idXR0b24tY29udGFpbmVyXCI+XHJcbiAgICAgICAgPGNvLWJ1dHRvblxyXG4gICAgICAgICAgY2xhc3M9XCJhY3Rpb24tbWVudS1idXR0b24gY2lyY2xlXCJcclxuICAgICAgICAgIFtpY29uRGF0YV09XCJpY29uQ2FjaGVTZXJ2aWNlLmdldEljb24oaWNvbnMuRWxsaXBzaXNMaWdodClcIlxyXG4gICAgICAgICAgKGNsaWNrKT1cImhhbmRsZVNob3dIaWRlQ2xpY2soKVwiPlxyXG4gICAgICAgIDwvY28tYnV0dG9uPlxyXG4gICAgICA8L2Rpdj5cclxuLS0+XHJcblxyXG4gICAgICA8ZGl2IGNsYXNzPVwiYWN0aW9uLWJ1dHRvbnMtY29udGFpbmVyXCJcclxuICAgICAgICAgICAqbmdJZj1cInNob3dBY3Rpb25CdXR0b25zXCJcclxuICAgICAgICAgICBbbmdDbGFzc109XCJhbGlnbkRpcmVjdGlvblwiPlxyXG5cclxuICAgICAgICA8Y28tYnV0dG9uXHJcbiAgICAgICAgICBjbGFzcz1cInRyYW5zYWN0aW9uLWxpbmUtb3ZlcnZpZXctYnV0dG9uIGNpcmNsZSBhY3Rpb24tYnV0dG9uXCJcclxuICAgICAgICAgIFtjbGFzcy5zaG93XT1cInNob3dBY3Rpb25CdXR0b25zRGVsYXllZFwiXHJcbiAgICAgICAgICBbaWNvbkRhdGFdPVwiaWNvbkNhY2hlU2VydmljZS5nZXRJY29uKGljb25zLlRleHRTaXplU29saWQpXCJcclxuICAgICAgICAgIChjbGljayk9XCJoYW5kbGVUcmFuc2FjdGlvbkFydGljbGVUZXh0T3ZlcnZpZXcoKVwiPjwvY28tYnV0dG9uPlxyXG5cclxuICAgICAgICA8Y28tYnV0dG9uXHJcbiAgICAgICAgICBjbGFzcz1cInRyYW5zYWN0aW9uLWxpbmUtYWRkLXRleHQtYnV0dG9uIGNpcmNsZSBhY3Rpb24tYnV0dG9uXCJcclxuICAgICAgICAgIFtjbGFzcy5zaG93XT1cInNob3dBY3Rpb25CdXR0b25zRGVsYXllZFwiXHJcbiAgICAgICAgICBbaWNvbkRhdGFdPVwiaWNvbkNhY2hlU2VydmljZS5nZXRJY29uKGljb25zLlRleHRTb2xpZClcIlxyXG4gICAgICAgICAgKGNsaWNrKT1cImhhbmRsZVRyYW5zYWN0aW9uQXJ0aWNsZVRleHQoKVwiPjwvY28tYnV0dG9uPlxyXG5cclxuICAgICAgICA8Y28tYnV0dG9uXHJcbiAgICAgICAgICBjbGFzcz1cInRyYW5zYWN0aW9uLWxpbmUtc2hvdy1zaWRlYmFyLWJ1dHRvbiBjaXJjbGUgYWN0aW9uLWJ1dHRvblwiXHJcbiAgICAgICAgICBbY2xhc3Muc2hvd109XCJzaG93QWN0aW9uQnV0dG9uc0RlbGF5ZWRcIlxyXG4gICAgICAgICAgW2ljb25EYXRhXT1cImljb25DYWNoZVNlcnZpY2UuZ2V0SWNvbihpY29ucy5PYmplY3RJbnRlcnNlY3RTb2xpZClcIlxyXG4gICAgICAgICAgKGNsaWNrKT1cImhhbmRsZVNob3dTaWRlUGFuZWwoKVwiPjwvY28tYnV0dG9uPlxyXG4gICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG5cclxuICAgIDxjby10cmFuc2FjdGlvbi1hcnRpY2xlLXRleHQtb3ZlcnZpZXcgKm5nSWY9XCJzaG93VHJhbnNhY3Rpb25BcnRpY2xlVGV4dE92ZXJ2aWV3XCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW2hlYWRlcl09XCJhcnRpY2xlVGV4dEhlYWRlciB8IGxvY2FsaXplXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW3RyYW5zYWN0aW9uTGluZV09XCJ0cmFuc2FjdGlvbkxpbmVcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAoc2F2ZUNsaWNrKT1cIm9uU2F2ZVRyYW5zYWN0aW9uQXJ0aWNsZVRleHRPdmVydmlldygkZXZlbnQpXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKGNsb3NlQ2xpY2spPVwiY2xvc2VUcmFuc2FjdGlvbkFydGljbGVUZXh0T3ZlcnZpZXcoKVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIChjYW5jZWxDbGljayk9XCJjbG9zZVRyYW5zYWN0aW9uQXJ0aWNsZVRleHRPdmVydmlldygpXCJcclxuICAgID48L2NvLXRyYW5zYWN0aW9uLWFydGljbGUtdGV4dC1vdmVydmlldz5cclxuXHJcbiAgICA8Y28tdHJhbnNhY3Rpb24tYXJ0aWNsZS10ZXh0ICpuZ0lmPVwic2hvd1RyYW5zYWN0aW9uQXJ0aWNsZVRleHRcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbaGVhZGVyXT1cImFydGljbGVUZXh0SGVhZGVyIHwgbG9jYWxpemVcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbYXJ0aWNsZUxpbmVOcl09XCJ0cmFuc2FjdGlvbkxpbmUubGluZU5yXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW2FydGljbGVSZWZdPVwidHJhbnNhY3Rpb25MaW5lLmFydGljbGVOdW1iZXJcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbdHJhbnNhY3Rpb25MaW5lXT1cInRyYW5zYWN0aW9uTGluZVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtlZGl0VGV4dF09XCJ0ZXh0VG9FZGl0XCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKHNhdmVDbGljayk9XCJzYXZlVHJhbnNhY3Rpb25BcnRpY2xlTGluZVRleHQoJGV2ZW50KVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIChjbG9zZUNsaWNrKT1cImNsb3NlVHJhbnNhY3Rpb25BcnRpY2xlVGV4dCgkZXZlbnQpXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKGNhbmNlbENsaWNrKT1cImNsb3NlVHJhbnNhY3Rpb25BcnRpY2xlVGV4dCgkZXZlbnQpXCJcclxuICAgID48L2NvLXRyYW5zYWN0aW9uLWFydGljbGUtdGV4dD5cclxuICBgLFxyXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcclxufSlcclxuZXhwb3J0IGNsYXNzIFRyYW5zYWN0aW9uTGluZUFjdGlvbkJ1dHRvbnNDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gIHB1YmxpYyByZWFkb25seSBpY29uczogdHlwZW9mIEljb24gPSBJY29uO1xyXG5cclxuICBASW5wdXQoKVxyXG4gIHB1YmxpYyBzZXQgdHJhbnNhY3Rpb25MaW5lKHZhbHVlOiBUcmFuc2FjdGlvbkxpbmVJbmZvKSB7XHJcbiAgICB0aGlzLl90cmFuc2FjdGlvbkxpbmUgPSB2YWx1ZTtcclxuICAgIHRoaXMucmVhZG9ubHkgPSB0aGlzLl90cmFuc2FjdGlvbkxpbmUuaGFzSW52b2ljZXM7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgZ2V0IHRyYW5zYWN0aW9uTGluZSgpOiBUcmFuc2FjdGlvbkxpbmVJbmZvIHtcclxuICAgIHJldHVybiB0aGlzLl90cmFuc2FjdGlvbkxpbmU7XHJcbiAgfVxyXG5cclxuICBASW5wdXQoKVxyXG4gIHB1YmxpYyBhbGlnbkRpcmVjdGlvbjogRGlyZWN0aW9uID0gRGlyZWN0aW9uLkRvd247XHJcblxyXG4gIEBJbnB1dCgpXHJcbiAgcHVibGljIHNldCBzaG93QWN0aW9uQnV0dG9ucyh2YWx1ZTogYm9vbGVhbikge1xyXG4gICAgdGhpcy5fc2hvd0FjdGlvbkJ1dHRvbnMgPSB2YWx1ZTtcclxuICAgIHNldFRpbWVvdXQoKCkgPT4ge1xyXG4gICAgICB0aGlzLnNob3dBY3Rpb25CdXR0b25zRGVsYXllZCA9IHRoaXMuX3Nob3dBY3Rpb25CdXR0b25zO1xyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgZ2V0IHNob3dBY3Rpb25CdXR0b25zKCk6IGJvb2xlYW4ge1xyXG4gICAgcmV0dXJuIHRoaXMuX3Nob3dBY3Rpb25CdXR0b25zO1xyXG4gIH1cclxuXHJcbiAgQE91dHB1dCgpXHJcbiAgcHVibGljIHdhaXRpbmdGb3JVc2VyQWN0aW9uOiBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4gPSBuZXcgRXZlbnRFbWl0dGVyPGJvb2xlYW4+KCk7XHJcblxyXG4gIEBPdXRwdXQoKVxyXG4gIHB1YmxpYyBzaWRlUGFuZWxCdXR0b25DbGlja2VkOiBFdmVudEVtaXR0ZXI8VHJhbnNhY3Rpb25MaW5lSW5mbz4gPSBuZXcgRXZlbnRFbWl0dGVyPFRyYW5zYWN0aW9uTGluZUluZm8+KCk7XHJcblxyXG4gIEBIb3N0QmluZGluZyhcImNsYXNzLmNvLXRyYW5zYWN0aW9uLWxpbmUtYWN0aW9uLWJ1dHRvbnNcIilcclxuICBwdWJsaWMgc2hvd0NsYXNzKCk6IGJvb2xlYW4ge1xyXG4gICAgcmV0dXJuIHRydWU7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgc2hvd0FjdGlvbkJ1dHRvbnNEZWxheWVkOiBib29sZWFuID0gZmFsc2U7XHJcbiAgcHVibGljIHRyYW5zYWN0aW9uS2luZDogVHJhbnNhY3Rpb25LaW5kO1xyXG4gIHB1YmxpYyBzaG93VHJhbnNhY3Rpb25BcnRpY2xlVGV4dDogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIHB1YmxpYyBzaG93VHJhbnNhY3Rpb25BcnRpY2xlVGV4dE92ZXJ2aWV3OiBib29sZWFuID0gZmFsc2U7XHJcbiAgcHVibGljIGFydGljbGVUZXh0SGVhZGVyOiBzdHJpbmc7XHJcbiAgcHVibGljIHRleHRUb0VkaXQ6IHN0cmluZztcclxuICBwdWJsaWMgcmVhZG9ubHk6IGJvb2xlYW4gPSBmYWxzZTtcclxuXHJcbiAgcHJpdmF0ZSBfdHJhbnNhY3Rpb25MaW5lOiBUcmFuc2FjdGlvbkxpbmVJbmZvO1xyXG4gIHByaXZhdGUgX3Nob3dBY3Rpb25CdXR0b25zOiBib29sZWFuID0gZmFsc2U7XHJcblxyXG4gIGNvbnN0cnVjdG9yKFxyXG4gICAgcHVibGljIGljb25DYWNoZVNlcnZpY2U6IEljb25DYWNoZVNlcnZpY2UsXHJcbiAgICBwcml2YXRlIF90cmFuc2FjdGlvblNlcnZpY2U6IFRyYW5zYWN0aW9uU2VydmljZSxcclxuICAgIHByaXZhdGUgX2RpY3Rpb25hcnlTZXJ2aWNlOiBEaWN0aW9uYXJ5U2VydmljZVxyXG4gICkge1xyXG4gIH1cclxuXHJcbiAgcHVibGljIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gICAgdGhpcy50cmFuc2FjdGlvbktpbmQgPSB0aGlzLl90cmFuc2FjdGlvblNlcnZpY2UuY3VycmVudFRyYW5zYWN0aW9uLnRyYW5zYWN0aW9uSW5mby50cmFuc2FjdGlvbktpbmQ7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgaGFuZGxlU2hvd0hpZGVDbGljaygpOiB2b2lkIHtcclxuICAgIHRoaXMuc2hvd0FjdGlvbkJ1dHRvbnMgPSAhdGhpcy5zaG93QWN0aW9uQnV0dG9ucztcclxuICAgIHNldFRpbWVvdXQoKCkgPT4ge1xyXG4gICAgICB0aGlzLnNob3dBY3Rpb25CdXR0b25zRGVsYXllZCA9ICF0aGlzLnNob3dBY3Rpb25CdXR0b25zRGVsYXllZDtcclxuICAgIH0sIDEpO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGhhbmRsZVRyYW5zYWN0aW9uQXJ0aWNsZVRleHRPdmVydmlldygpOiB2b2lkIHtcclxuICAgIHRoaXMuYXJ0aWNsZVRleHRIZWFkZXIgPSB0aGlzLl9kaWN0aW9uYXJ5U2VydmljZS5nZXQoXCJQUk9EVUNUX0RFU0NSSVBUSU9OX0FORF9URVhUU1wiLCB0cnVlKTtcclxuICAgIHRoaXMudGV4dFRvRWRpdCA9IHVuZGVmaW5lZDtcclxuICAgIHRoaXMuX3Nob3dBcnRpY2xlVGV4dE92ZXJ2aWV3RGlhbG9nKCk7XHJcbiAgICB0aGlzLnNob3dBY3Rpb25CdXR0b25zID0gZmFsc2U7XHJcbiAgICB0aGlzLnNob3dBY3Rpb25CdXR0b25zRGVsYXllZCA9IGZhbHNlO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGhhbmRsZVRyYW5zYWN0aW9uQXJ0aWNsZVRleHQoKTogdm9pZCB7XHJcbiAgICB0aGlzLmFydGljbGVUZXh0SGVhZGVyID0gdGhpcy5fZGljdGlvbmFyeVNlcnZpY2UuZ2V0KFwiUFJPRFVDVF9ERVNDUklQVElPTl9BTkRfVEVYVFNcIiwgdHJ1ZSk7XHJcbiAgICB0aGlzLnRleHRUb0VkaXQgPSB1bmRlZmluZWQ7XHJcbiAgICB0aGlzLnNob3dBcnRpY2xlVGV4dERpYWxvZygpO1xyXG4gICAgdGhpcy5zaG93QWN0aW9uQnV0dG9ucyA9IGZhbHNlO1xyXG4gICAgdGhpcy5zaG93QWN0aW9uQnV0dG9uc0RlbGF5ZWQgPSBmYWxzZTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBoYW5kbGVTaG93U2lkZVBhbmVsKCk6IHZvaWQge1xyXG4gICAgdGhpcy5zaWRlUGFuZWxCdXR0b25DbGlja2VkLm5leHQodGhpcy50cmFuc2FjdGlvbkxpbmUpO1xyXG4gICAgdGhpcy53YWl0aW5nRm9yVXNlckFjdGlvbi5uZXh0KHRydWUpO1xyXG4gICAgdGhpcy5zaG93QWN0aW9uQnV0dG9ucyA9IGZhbHNlO1xyXG4gICAgdGhpcy5zaG93QWN0aW9uQnV0dG9uc0RlbGF5ZWQgPSBmYWxzZTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBzaG93T3ZlcnZpZXdCdXR0b24oKTogYm9vbGVhbiB7XHJcbiAgICByZXR1cm4gKHRoaXMudHJhbnNhY3Rpb25LaW5kID09PSBUcmFuc2FjdGlvbktpbmQuUHVyY2hhc2VPcmRlciB8fFxyXG4gICAgICB0aGlzLnRyYW5zYWN0aW9uS2luZCA9PT0gVHJhbnNhY3Rpb25LaW5kLlNhbGVzT3JkZXIpICYmICF0aGlzLnJlYWRvbmx5O1xyXG4gIH1cclxuXHJcbiAgcHVibGljIHNob3dBZGRUZXh0QnV0dG9uKCk6IGJvb2xlYW4ge1xyXG4gICAgcmV0dXJuICh0aGlzLnRyYW5zYWN0aW9uS2luZCA9PT0gVHJhbnNhY3Rpb25LaW5kLlB1cmNoYXNlT3JkZXIgfHxcclxuICAgICAgdGhpcy50cmFuc2FjdGlvbktpbmQgPT09IFRyYW5zYWN0aW9uS2luZC5TYWxlc09yZGVyKSAmJiAhdGhpcy5yZWFkb25seTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBzaG93U2lkZWJhckJ1dHRvbigpOiBib29sZWFuIHtcclxuICAgIHJldHVybiB0aGlzLnRyYW5zYWN0aW9uS2luZCA9PT0gVHJhbnNhY3Rpb25LaW5kLlB1cmNoYXNlT3JkZXIgfHxcclxuICAgICAgdGhpcy50cmFuc2FjdGlvbktpbmQgPT09IFRyYW5zYWN0aW9uS2luZC5TYWxlc09yZGVyO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIG9uU2F2ZVRyYW5zYWN0aW9uQXJ0aWNsZVRleHRPdmVydmlldyhyZXF1ZXN0OiBUcmFuc2FjdGlvbkFkZFRleHRMaW5lUmVxdWVzdCkge1xyXG4gICAgdGhpcy5zYXZlVHJhbnNhY3Rpb25BcnRpY2xlTGluZVRleHQocmVxdWVzdCk7XHJcbiAgICB0aGlzLmNsb3NlVHJhbnNhY3Rpb25BcnRpY2xlVGV4dE92ZXJ2aWV3KCk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgc2F2ZVRyYW5zYWN0aW9uQXJ0aWNsZUxpbmVUZXh0KHRyYW5zYWN0aW9uQWRkVGV4dExpbmVSZXF1ZXN0OiBUcmFuc2FjdGlvbkFkZFRleHRMaW5lUmVxdWVzdCk6IHZvaWQge1xyXG4gICAgaWYgKHRyYW5zYWN0aW9uQWRkVGV4dExpbmVSZXF1ZXN0KSB7XHJcbiAgICAgIHRoaXMuX3RyYW5zYWN0aW9uU2VydmljZS5hZGRUZXh0TGluZShcclxuICAgICAgICB0cmFuc2FjdGlvbkFkZFRleHRMaW5lUmVxdWVzdC5zaG93T25Eb2N1bWVudHMsXHJcbiAgICAgICAgdHJhbnNhY3Rpb25BZGRUZXh0TGluZVJlcXVlc3QudGV4dCxcclxuICAgICAgICAwLFxyXG4gICAgICAgIHRydWUsXHJcbiAgICAgICAgdHJhbnNhY3Rpb25BZGRUZXh0TGluZVJlcXVlc3QucmVmQXJ0aWNsZUxpbmVOcikudGhlbigoKSA9PiB7XHJcbiAgICAgICAgdGhpcy5faGlkZUFydGljbGVUZXh0RGlhbG9nKCk7XHJcbiAgICAgIH0pO1xyXG4gICAgfVxyXG4gICAgdGhpcy5faGlkZUFydGljbGVUZXh0RGlhbG9nKCk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgY2xvc2VUcmFuc2FjdGlvbkFydGljbGVUZXh0KGV2ZW50OiBNb3VzZUV2ZW50KTogdm9pZCB7XHJcbiAgICB0aGlzLl9oaWRlQXJ0aWNsZVRleHREaWFsb2coKTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBjbG9zZVRyYW5zYWN0aW9uQXJ0aWNsZVRleHRPdmVydmlldygpOiB2b2lkIHtcclxuICAgIHRoaXMuX2hpZGVBcnRpY2xlVGV4dE92ZXJ2aWV3RGlhbG9nKCk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgc2hvd0FydGljbGVUZXh0RGlhbG9nKCk6IHZvaWQge1xyXG4gICAgdGhpcy5zaG93VHJhbnNhY3Rpb25BcnRpY2xlVGV4dCA9IHRydWU7XHJcbiAgICB0aGlzLndhaXRpbmdGb3JVc2VyQWN0aW9uLm5leHQodHJ1ZSk7XHJcbiAgfVxyXG5cclxuICBwcml2YXRlIF9oaWRlQXJ0aWNsZVRleHREaWFsb2coKTogdm9pZCB7XHJcbiAgICB0aGlzLnNob3dUcmFuc2FjdGlvbkFydGljbGVUZXh0ID0gZmFsc2U7XHJcbiAgICB0aGlzLndhaXRpbmdGb3JVc2VyQWN0aW9uLm5leHQoZmFsc2UpO1xyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBfc2hvd0FydGljbGVUZXh0T3ZlcnZpZXdEaWFsb2coKTogdm9pZCB7XHJcbiAgICB0aGlzLnNob3dUcmFuc2FjdGlvbkFydGljbGVUZXh0T3ZlcnZpZXcgPSB0cnVlO1xyXG4gICAgdGhpcy53YWl0aW5nRm9yVXNlckFjdGlvbi5uZXh0KHRydWUpO1xyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBfaGlkZUFydGljbGVUZXh0T3ZlcnZpZXdEaWFsb2coKTogdm9pZCB7XHJcbiAgICB0aGlzLnNob3dUcmFuc2FjdGlvbkFydGljbGVUZXh0T3ZlcnZpZXcgPSBmYWxzZTtcclxuICAgIHRoaXMud2FpdGluZ0ZvclVzZXJBY3Rpb24ubmV4dChmYWxzZSk7XHJcbiAgfVxyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { NgModule } from "@angular/core";
|
|
2
|
+
import { CommonModule } from "@angular/common";
|
|
3
|
+
import { CoreModule } from "../core/core.module";
|
|
4
|
+
import { TransactionLineActionButtonsComponent } from "./transaction-line-action-buttons.component";
|
|
5
|
+
import { ButtonModule, ClickoutsideModule } from "@colijnit/corecomponents_v12";
|
|
6
|
+
import { TransactionArticleTextOverviewModule } from "../shared/transaction-article-text-overview/transaction-article-text-overview.module";
|
|
7
|
+
import { TransactionArticleTextModule } from "../shared/transaction-article-text/transaction-article-text.module";
|
|
8
|
+
import { PipeModule } from "../../pipe/pipe.module";
|
|
9
|
+
export class TransactionLineActionButtonsModule {
|
|
10
|
+
}
|
|
11
|
+
TransactionLineActionButtonsModule.decorators = [
|
|
12
|
+
{ type: NgModule, args: [{
|
|
13
|
+
imports: [
|
|
14
|
+
CommonModule,
|
|
15
|
+
CoreModule,
|
|
16
|
+
ButtonModule,
|
|
17
|
+
ClickoutsideModule,
|
|
18
|
+
TransactionArticleTextOverviewModule,
|
|
19
|
+
TransactionArticleTextModule,
|
|
20
|
+
PipeModule
|
|
21
|
+
],
|
|
22
|
+
declarations: [
|
|
23
|
+
TransactionLineActionButtonsComponent
|
|
24
|
+
],
|
|
25
|
+
exports: [
|
|
26
|
+
TransactionLineActionButtonsComponent
|
|
27
|
+
]
|
|
28
|
+
},] }
|
|
29
|
+
];
|
|
30
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tbGluZS1hY3Rpb24tYnV0dG9ucy5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2NvbXBvbmVudC90cmFuc2FjdGlvbi1saW5lLWFjdGlvbi1idXR0b25zL3RyYW5zYWN0aW9uLWxpbmUtYWN0aW9uLWJ1dHRvbnMubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDdkMsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGlCQUFpQixDQUFDO0FBQzdDLE9BQU8sRUFBQyxVQUFVLEVBQUMsTUFBTSxxQkFBcUIsQ0FBQztBQUMvQyxPQUFPLEVBQUMscUNBQXFDLEVBQUMsTUFBTSw2Q0FBNkMsQ0FBQztBQUNsRyxPQUFPLEVBQUMsWUFBWSxFQUFFLGtCQUFrQixFQUFDLE1BQU0sOEJBQThCLENBQUM7QUFDOUUsT0FBTyxFQUNMLG9DQUFvQyxFQUNyQyxNQUFNLHNGQUFzRixDQUFDO0FBQzlGLE9BQU8sRUFBQyw0QkFBNEIsRUFBQyxNQUFNLG9FQUFvRSxDQUFDO0FBQ2hILE9BQU8sRUFBQyxVQUFVLEVBQUMsTUFBTSx3QkFBd0IsQ0FBQztBQW1CbEQsTUFBTSxPQUFPLGtDQUFrQzs7O1lBakI5QyxRQUFRLFNBQUM7Z0JBQ1IsT0FBTyxFQUFFO29CQUNQLFlBQVk7b0JBQ1osVUFBVTtvQkFDVixZQUFZO29CQUNaLGtCQUFrQjtvQkFDbEIsb0NBQW9DO29CQUNwQyw0QkFBNEI7b0JBQzVCLFVBQVU7aUJBQ1g7Z0JBQ0QsWUFBWSxFQUFFO29CQUNaLHFDQUFxQztpQkFDdEM7Z0JBQ0QsT0FBTyxFQUFFO29CQUNQLHFDQUFxQztpQkFDdEM7YUFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7TmdNb2R1bGV9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7Q29tbW9uTW9kdWxlfSBmcm9tIFwiQGFuZ3VsYXIvY29tbW9uXCI7XHJcbmltcG9ydCB7Q29yZU1vZHVsZX0gZnJvbSBcIi4uL2NvcmUvY29yZS5tb2R1bGVcIjtcclxuaW1wb3J0IHtUcmFuc2FjdGlvbkxpbmVBY3Rpb25CdXR0b25zQ29tcG9uZW50fSBmcm9tIFwiLi90cmFuc2FjdGlvbi1saW5lLWFjdGlvbi1idXR0b25zLmNvbXBvbmVudFwiO1xyXG5pbXBvcnQge0J1dHRvbk1vZHVsZSwgQ2xpY2tvdXRzaWRlTW9kdWxlfSBmcm9tIFwiQGNvbGlqbml0L2NvcmVjb21wb25lbnRzX3YxMlwiO1xyXG5pbXBvcnQge1xyXG4gIFRyYW5zYWN0aW9uQXJ0aWNsZVRleHRPdmVydmlld01vZHVsZVxyXG59IGZyb20gXCIuLi9zaGFyZWQvdHJhbnNhY3Rpb24tYXJ0aWNsZS10ZXh0LW92ZXJ2aWV3L3RyYW5zYWN0aW9uLWFydGljbGUtdGV4dC1vdmVydmlldy5tb2R1bGVcIjtcclxuaW1wb3J0IHtUcmFuc2FjdGlvbkFydGljbGVUZXh0TW9kdWxlfSBmcm9tIFwiLi4vc2hhcmVkL3RyYW5zYWN0aW9uLWFydGljbGUtdGV4dC90cmFuc2FjdGlvbi1hcnRpY2xlLXRleHQubW9kdWxlXCI7XHJcbmltcG9ydCB7UGlwZU1vZHVsZX0gZnJvbSBcIi4uLy4uL3BpcGUvcGlwZS5tb2R1bGVcIjtcclxuXHJcbkBOZ01vZHVsZSh7XHJcbiAgaW1wb3J0czogW1xyXG4gICAgQ29tbW9uTW9kdWxlLFxyXG4gICAgQ29yZU1vZHVsZSxcclxuICAgIEJ1dHRvbk1vZHVsZSxcclxuICAgIENsaWNrb3V0c2lkZU1vZHVsZSxcclxuICAgIFRyYW5zYWN0aW9uQXJ0aWNsZVRleHRPdmVydmlld01vZHVsZSxcclxuICAgIFRyYW5zYWN0aW9uQXJ0aWNsZVRleHRNb2R1bGUsXHJcbiAgICBQaXBlTW9kdWxlXHJcbiAgXSxcclxuICBkZWNsYXJhdGlvbnM6IFtcclxuICAgIFRyYW5zYWN0aW9uTGluZUFjdGlvbkJ1dHRvbnNDb21wb25lbnRcclxuICBdLFxyXG4gIGV4cG9ydHM6IFtcclxuICAgIFRyYW5zYWN0aW9uTGluZUFjdGlvbkJ1dHRvbnNDb21wb25lbnRcclxuICBdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBUcmFuc2FjdGlvbkxpbmVBY3Rpb25CdXR0b25zTW9kdWxlIHtcclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { Component, EventEmitter, HostBinding, Input, Output, ViewChild, ViewEncapsulation } from "@angular/core";
|
|
2
|
+
export class TransactionLineCheckboxListComponent {
|
|
3
|
+
constructor() {
|
|
4
|
+
this.collection = [];
|
|
5
|
+
this.readonly = false;
|
|
6
|
+
this.checked = new EventEmitter();
|
|
7
|
+
this.showClass = true;
|
|
8
|
+
this.itemHeight = 1000;
|
|
9
|
+
}
|
|
10
|
+
ngAfterViewChecked() {
|
|
11
|
+
if (this.scrollingItem && this.itemHeight === 1000) {
|
|
12
|
+
this.itemHeight = this.scrollingItem.nativeElement.offsetHeight;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
handleCheckboxChecked(checked, row) {
|
|
16
|
+
this.checked.emit(row);
|
|
17
|
+
}
|
|
18
|
+
handleChecked(event, row) {
|
|
19
|
+
event.preventDefault();
|
|
20
|
+
event.stopPropagation();
|
|
21
|
+
if (!this.readonly) {
|
|
22
|
+
this.checked.emit(row);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
TransactionLineCheckboxListComponent.decorators = [
|
|
27
|
+
{ type: Component, args: [{
|
|
28
|
+
selector: "co-transaction-line-checkbox-list",
|
|
29
|
+
template: `
|
|
30
|
+
<cdk-virtual-scroll-viewport [itemSize]="itemHeight" class="virtual-scroll-container co-small-toolbar">
|
|
31
|
+
<div *cdkVirtualFor="let row of collection" #scrollingItem class="virtual-scroll-item" (click)="handleChecked($event, row)">
|
|
32
|
+
<div class="checkbox-wrapper">
|
|
33
|
+
<co-input-checkbox
|
|
34
|
+
[model]="row.checked"
|
|
35
|
+
[readonly]="readonly"
|
|
36
|
+
(modelChange)="handleCheckboxChecked($event, row)"
|
|
37
|
+
></co-input-checkbox>
|
|
38
|
+
</div>
|
|
39
|
+
<div class="label-wrapper">
|
|
40
|
+
<span *ngFor="let label of row.propsForLabel; let index = index" [innerHTML]="label" [class.first]="index === 0" class="label"></span>
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
43
|
+
</cdk-virtual-scroll-viewport>
|
|
44
|
+
`,
|
|
45
|
+
encapsulation: ViewEncapsulation.None
|
|
46
|
+
},] }
|
|
47
|
+
];
|
|
48
|
+
TransactionLineCheckboxListComponent.propDecorators = {
|
|
49
|
+
scrollingItem: [{ type: ViewChild, args: ['scrollingItem',] }],
|
|
50
|
+
collection: [{ type: Input }],
|
|
51
|
+
readonly: [{ type: Input }],
|
|
52
|
+
checked: [{ type: Output }],
|
|
53
|
+
showClass: [{ type: HostBinding, args: ["class.co-transaction-line-checkbox-list",] }]
|
|
54
|
+
};
|
|
55
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tbGluZS1jaGVja2JveC1saXN0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RyYW5zYWN0aW9uL3NyYy9saWIvY29tcG9uZW50L3RyYW5zYWN0aW9uLWxpbmUtY2hlY2tib3gtbGlzdC90cmFuc2FjdGlvbi1saW5lLWNoZWNrYm94LWxpc3QuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBbUIsU0FBUyxFQUFjLFlBQVksRUFBRSxXQUFXLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRSxTQUFTLEVBQUUsaUJBQWlCLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFzQjlJLE1BQU0sT0FBTyxvQ0FBb0M7SUFwQmpEO1FBeUJTLGVBQVUsR0FBVSxFQUFFLENBQUM7UUFHdkIsYUFBUSxHQUFZLEtBQUssQ0FBQztRQUcxQixZQUFPLEdBQXNCLElBQUksWUFBWSxFQUFPLENBQUM7UUFHckQsY0FBUyxHQUFZLElBQUksQ0FBQztRQUUxQixlQUFVLEdBQUcsSUFBSSxDQUFDO0lBbUIzQixDQUFDO0lBakJRLGtCQUFrQjtRQUN2QixJQUFJLElBQUksQ0FBQyxhQUFhLElBQUksSUFBSSxDQUFDLFVBQVUsS0FBSyxJQUFJLEVBQUU7WUFDbEQsSUFBSSxDQUFDLFVBQVUsR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLGFBQWEsQ0FBQyxZQUFZLENBQUM7U0FDakU7SUFDSCxDQUFDO0lBRU0scUJBQXFCLENBQUMsT0FBZ0IsRUFBRSxHQUFzRDtRQUNuRyxJQUFJLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQztJQUN6QixDQUFDO0lBRU0sYUFBYSxDQUFDLEtBQWlCLEVBQUUsR0FBc0Q7UUFDNUYsS0FBSyxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQ3ZCLEtBQUssQ0FBQyxlQUFlLEVBQUUsQ0FBQztRQUN4QixJQUFJLENBQUMsSUFBSSxDQUFDLFFBQVEsRUFBRTtZQUNsQixJQUFJLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQztTQUN4QjtJQUNILENBQUM7OztZQXRERixTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLG1DQUFtQztnQkFDN0MsUUFBUSxFQUFFOzs7Ozs7Ozs7Ozs7Ozs7R0FlVDtnQkFDRCxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTthQUN0Qzs7OzRCQUVFLFNBQVMsU0FBQyxlQUFlO3lCQUd6QixLQUFLO3VCQUdMLEtBQUs7c0JBR0wsTUFBTTt3QkFHTixXQUFXLFNBQUMseUNBQXlDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtBZnRlclZpZXdDaGVja2VkLCBDb21wb25lbnQsIEVsZW1lbnRSZWYsIEV2ZW50RW1pdHRlciwgSG9zdEJpbmRpbmcsIElucHV0LCBPdXRwdXQsIFZpZXdDaGlsZCwgVmlld0VuY2Fwc3VsYXRpb259IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogXCJjby10cmFuc2FjdGlvbi1saW5lLWNoZWNrYm94LWxpc3RcIixcclxuICB0ZW1wbGF0ZTogYFxyXG4gICAgPGNkay12aXJ0dWFsLXNjcm9sbC12aWV3cG9ydCBbaXRlbVNpemVdPVwiaXRlbUhlaWdodFwiIGNsYXNzPVwidmlydHVhbC1zY3JvbGwtY29udGFpbmVyIGNvLXNtYWxsLXRvb2xiYXJcIj5cclxuICAgICAgPGRpdiAqY2RrVmlydHVhbEZvcj1cImxldCByb3cgb2YgY29sbGVjdGlvblwiICNzY3JvbGxpbmdJdGVtIGNsYXNzPVwidmlydHVhbC1zY3JvbGwtaXRlbVwiIChjbGljayk9XCJoYW5kbGVDaGVja2VkKCRldmVudCwgcm93KVwiPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJjaGVja2JveC13cmFwcGVyXCI+XHJcbiAgICAgICAgICA8Y28taW5wdXQtY2hlY2tib3hcclxuICAgICAgICAgICAgW21vZGVsXT1cInJvdy5jaGVja2VkXCJcclxuICAgICAgICAgICAgW3JlYWRvbmx5XT1cInJlYWRvbmx5XCJcclxuICAgICAgICAgICAgKG1vZGVsQ2hhbmdlKT1cImhhbmRsZUNoZWNrYm94Q2hlY2tlZCgkZXZlbnQsIHJvdylcIlxyXG4gICAgICAgICAgPjwvY28taW5wdXQtY2hlY2tib3g+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImxhYmVsLXdyYXBwZXJcIj5cclxuICAgICAgICAgIDxzcGFuICpuZ0Zvcj1cImxldCBsYWJlbCBvZiByb3cucHJvcHNGb3JMYWJlbDsgbGV0IGluZGV4ID0gaW5kZXhcIiBbaW5uZXJIVE1MXT1cImxhYmVsXCIgW2NsYXNzLmZpcnN0XT1cImluZGV4ID09PSAwXCIgY2xhc3M9XCJsYWJlbFwiPjwvc3Bhbj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgPC9kaXY+XHJcbiAgICA8L2Nkay12aXJ0dWFsLXNjcm9sbC12aWV3cG9ydD5cclxuICBgLFxyXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcclxufSlcclxuZXhwb3J0IGNsYXNzIFRyYW5zYWN0aW9uTGluZUNoZWNrYm94TGlzdENvbXBvbmVudCBpbXBsZW1lbnRzIEFmdGVyVmlld0NoZWNrZWQge1xyXG4gIEBWaWV3Q2hpbGQoJ3Njcm9sbGluZ0l0ZW0nKVxyXG4gIHB1YmxpYyBzY3JvbGxpbmdJdGVtOiBFbGVtZW50UmVmO1xyXG5cclxuICBASW5wdXQoKVxyXG4gIHB1YmxpYyBjb2xsZWN0aW9uOiBhbnlbXSA9IFtdO1xyXG5cclxuICBASW5wdXQoKVxyXG4gIHB1YmxpYyByZWFkb25seTogYm9vbGVhbiA9IGZhbHNlO1xyXG5cclxuICBAT3V0cHV0KClcclxuICBwdWJsaWMgY2hlY2tlZDogRXZlbnRFbWl0dGVyPGFueT4gPSBuZXcgRXZlbnRFbWl0dGVyPGFueT4oKTtcclxuXHJcbiAgQEhvc3RCaW5kaW5nKFwiY2xhc3MuY28tdHJhbnNhY3Rpb24tbGluZS1jaGVja2JveC1saXN0XCIpXHJcbiAgcHVibGljIHNob3dDbGFzczogYm9vbGVhbiA9IHRydWU7XHJcblxyXG4gIHB1YmxpYyBpdGVtSGVpZ2h0ID0gMTAwMDtcclxuXHJcbiAgcHVibGljIG5nQWZ0ZXJWaWV3Q2hlY2tlZCgpOiB2b2lkIHtcclxuICAgIGlmICh0aGlzLnNjcm9sbGluZ0l0ZW0gJiYgdGhpcy5pdGVtSGVpZ2h0ID09PSAxMDAwKSB7XHJcbiAgICAgIHRoaXMuaXRlbUhlaWdodCA9IHRoaXMuc2Nyb2xsaW5nSXRlbS5uYXRpdmVFbGVtZW50Lm9mZnNldEhlaWdodDtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIHB1YmxpYyBoYW5kbGVDaGVja2JveENoZWNrZWQoY2hlY2tlZDogYm9vbGVhbiwgcm93OiB7IHZhbHVlOiBzdHJpbmcsIHRleHQ6IHN0cmluZywgY2hlY2tlZDogYm9vbGVhbiB9KTogdm9pZCB7XHJcbiAgICB0aGlzLmNoZWNrZWQuZW1pdChyb3cpO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGhhbmRsZUNoZWNrZWQoZXZlbnQ6IE1vdXNlRXZlbnQsIHJvdzogeyB2YWx1ZTogc3RyaW5nLCB0ZXh0OiBzdHJpbmcsIGNoZWNrZWQ6IGJvb2xlYW4gfSk6IHZvaWQge1xyXG4gICAgZXZlbnQucHJldmVudERlZmF1bHQoKTtcclxuICAgIGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpO1xyXG4gICAgaWYgKCF0aGlzLnJlYWRvbmx5KSB7XHJcbiAgICAgIHRoaXMuY2hlY2tlZC5lbWl0KHJvdyk7XHJcbiAgICB9XHJcbiAgfVxyXG59XHJcbiJdfQ==
|