@colijnit/transaction 12.1.13 → 12.1.16
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/bundles/colijnit-transaction.umd.js +6256 -2331
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +130 -86
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/colijnit-transaction.js +131 -87
- package/esm2015/lib/assets/dictionary/text.properties.js +98 -2
- package/esm2015/lib/component/avatar/avatar.component.js +64 -0
- package/esm2015/lib/component/avatar/avatar.module.js +21 -0
- package/esm2015/lib/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.js +11 -1
- package/esm2015/lib/component/checkout/checkout.component.js +9 -8
- package/esm2015/lib/component/checkout/checkout.module.js +3 -3
- package/esm2015/lib/component/core/base/components/transaction-header-block/transaction-header-block.component.js +38 -0
- package/esm2015/lib/component/core/base/components/transaction-header-block/transaction-header-block.module.js +19 -0
- package/esm2015/lib/component/core/base/transaction-grid-base.component.js +53 -0
- package/esm2015/lib/component/core/core.module.js +3 -6
- package/esm2015/lib/component/core/icon/icon.component.js +1 -1
- package/esm2015/lib/component/core/relation/customer-groups.component.js +3 -3
- package/esm2015/lib/component/core/stock-status-indicator/stock-status-indicator.component.js +1 -1
- package/esm2015/lib/component/payment/payment.component.js +112 -30
- package/esm2015/lib/component/payment/payment.module.js +7 -3
- package/esm2015/lib/component/payment-tile/payment-tile.component.js +4 -2
- package/esm2015/lib/component/relation-address/relation-address.component.js +3 -3
- package/esm2015/lib/component/shopping-cart/shopping-cart.component.js +7 -2
- package/esm2015/lib/component/transaction/transaction.component.js +41 -39
- package/esm2015/lib/component/transaction/transaction.module.js +15 -9
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button.component.js +29 -0
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar.component.js +54 -0
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar.module.js +28 -0
- package/esm2015/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.js +2 -2
- package/esm2015/lib/component/transaction-confirmation-history/transaction-confirmation-history.module.js +2 -2
- package/esm2015/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.component.js +52 -0
- package/esm2015/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.module.js +28 -0
- package/esm2015/lib/component/transaction-grid/transaction-grid/transaction-grid.component.js +85 -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 +64 -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 +76 -0
- package/esm2015/lib/component/transaction-grid/transaction-lines-grid/transaction-lines-grid.module.js +30 -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 +156 -0
- package/esm2015/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.module.js +30 -0
- package/esm2015/lib/component/transaction-header/transaction-header/transaction-header.component.js +40 -0
- package/esm2015/lib/component/transaction-header/transaction-header/transaction-header.module.js +29 -0
- package/esm2015/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.component.js +75 -0
- package/esm2015/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.module.js +28 -0
- package/esm2015/lib/component/transaction-header/transaction-header-order/transaction-header-order.component.js +41 -0
- package/esm2015/lib/component/transaction-header/transaction-header-order/transaction-header-order.module.js +26 -0
- package/esm2015/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.js +58 -0
- package/esm2015/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.module.js +28 -0
- package/esm2015/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.component.js +36 -0
- package/esm2015/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.module.js +21 -0
- package/esm2015/lib/component/transaction-header/transaction-header.component.js +6 -11
- package/esm2015/lib/component/transaction-header/transaction-header.module.js +8 -6
- package/esm2015/lib/component/transaction-history-grid-status/transaction-history-grid-status.component.js +16 -3
- package/esm2015/lib/component/transaction-line/transaction-line.component.js +26 -29
- package/esm2015/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.js +37 -33
- package/esm2015/lib/component/transaction-line-side-panel/transaction-line-side-panel.module.js +6 -4
- package/esm2015/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.js +87 -0
- package/esm2015/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.module.js +31 -0
- package/esm2015/lib/component/transaction-lines/transaction-lines.component.js +8 -5
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.component.js +72 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.module.js +33 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.js +28 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.module.js +25 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.component.js +23 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.module.js +23 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.js +65 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.module.js +25 -0
- package/esm2015/lib/component/transaction-receiving-goods-details/transaction-receiving-goods-details.component.js +138 -18
- package/esm2015/lib/component/transaction-receiving-goods-details/transaction-receiving-goods-details.module.js +6 -2
- package/esm2015/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.component.js +57 -11
- package/esm2015/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.module.js +7 -4
- package/esm2015/lib/component/transaction-search/service/filter-request.service.js +117 -0
- package/esm2015/lib/component/transaction-search/service/transaction-search.service.js +33 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-filter.component.js +87 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-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-article/transaction-filter-content-article.component.js +120 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content-article/transaction-filter-content-article.module.js +25 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content-logistics/transaction-filter-content-logistics.component.js +242 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content-logistics/transaction-filter-content-logistics.module.js +28 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content-order/transaction-filter-content-order.component.js +240 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content-order/transaction-filter-content-order.module.js +30 -0
- package/esm2015/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.js +62 -0
- package/esm2015/lib/component/transaction-search/transaction-search-result/transaction-search-result.module.js +30 -0
- package/esm2015/lib/component/transaction-search/transaction-search.component.js +55 -0
- package/esm2015/lib/component/transaction-search/transaction-search.module.js +25 -0
- package/esm2015/lib/component/transaction-search/transaction-tile/transaction-tile.component.js +77 -0
- package/esm2015/lib/component/transaction-search/transaction-tile/transaction-tile.module.js +28 -0
- package/esm2015/lib/component/transaction-search-grid/transaction-search-grid.component.js +86 -0
- package/esm2015/lib/component/transaction-search-grid/transaction-search-grid.module.js +26 -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 +2 -1
- package/esm2015/lib/enum/icon.enum.js +18 -1
- package/esm2015/lib/enum/position-grid-row.enum.js +6 -0
- package/esm2015/lib/enum/status-type.enum.js +3 -1
- package/esm2015/lib/enum/transaction-type-category.enum.js +16 -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 +18 -1
- package/esm2015/lib/model/payment.viewmodel.js +6 -0
- package/esm2015/lib/model/received-goods-view-model.js +11 -0
- package/esm2015/lib/model/transaction-bar-button.js +3 -0
- package/esm2015/lib/service/article-connector.service.js +60 -0
- package/esm2015/lib/service/article.service.js +25 -0
- package/esm2015/lib/service/collection-cache.service.js +38 -0
- package/esm2015/lib/service/ione-connector-adapter.service.js +187 -18
- package/esm2015/lib/service/options.service.js +3 -1
- package/esm2015/lib/service/payment.service.js +51 -0
- package/esm2015/lib/service/pending-reason.service.js +5 -5
- package/esm2015/lib/service/shared-connector.service.js +53 -0
- package/esm2015/lib/service/shared.service.js +38 -0
- package/esm2015/lib/service/transaction-connector.service.js +1015 -0
- package/esm2015/lib/service/transaction-event.service.js +29 -0
- package/esm2015/lib/service/transaction-image.service.js +53 -0
- package/esm2015/lib/service/transaction-mapping.service.js +85 -0
- package/esm2015/lib/service/transaction.service.js +97 -117
- package/esm2015/public_api.js +15 -9
- package/fesm2015/colijnit-transaction.js +6270 -2159
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/{seller-information/seller-information.component.d.ts → avatar/avatar.component.d.ts} +5 -3
- package/lib/component/avatar/avatar.module.d.ts +2 -0
- package/lib/component/{seller-information → avatar}/style/_layout.scss +5 -5
- package/lib/component/avatar/style/_material-definition.scss +2 -0
- package/lib/component/avatar/style/_theme.scss +7 -0
- package/lib/component/{order-confirmation-grid → avatar}/style/material.scss +0 -1
- package/lib/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.d.ts +2 -0
- package/lib/component/checkout/checkout-overview-delivery-edit/style/material.scss +0 -1
- package/lib/component/checkout/checkout-overview-relation-edit/style/material.scss +0 -1
- package/lib/component/checkout/checkout-relation-suggestions-list/style/material.scss +0 -1
- package/lib/component/checkout/checkout-relation-suggestions-list-item/style/material.scss +0 -1
- package/lib/component/checkout/style/material.scss +1 -2
- package/lib/component/confirmation-dialog/style/material.scss +0 -1
- package/lib/component/core/base/components/transaction-header-block/style/_layout.scss +53 -0
- package/lib/component/core/base/components/transaction-header-block/style/_material-definition.scss +20 -0
- package/lib/component/core/base/components/transaction-header-block/style/_theme.scss +11 -0
- package/lib/component/core/base/components/transaction-header-block/style/material.scss +4 -0
- package/lib/component/core/base/components/transaction-header-block/transaction-header-block.component.d.ts +8 -0
- package/lib/component/core/base/components/transaction-header-block/transaction-header-block.module.d.ts +2 -0
- package/lib/component/core/base/style/material.scss +0 -1
- package/lib/component/core/base/transaction-grid-base.component.d.ts +25 -0
- package/lib/component/core/characteristic-answer/characteristic-answer.component.scss +0 -1
- package/lib/component/core/icon/icon.component.scss +0 -1
- package/lib/component/core/image-display/style/material.scss +0 -1
- package/lib/component/core/relation/customer-groups.component.d.ts +2 -2
- package/lib/component/core/stock-status-indicator/stock-status-indicator.component.scss +0 -1
- package/lib/component/delivery-type-tile/style/material.scss +0 -1
- package/lib/component/order-confirmation-create/style/material.scss +0 -1
- package/lib/component/payment/payment.component.d.ts +22 -5
- package/lib/component/payment/style/_layout.scss +23 -1
- package/lib/component/payment/style/_material-definition.scss +0 -1
- package/lib/component/payment/style/_theme.scss +24 -0
- package/lib/component/payment/style/material.scss +0 -1
- package/lib/component/payment-tile/payment-tile.component.d.ts +1 -0
- package/lib/component/payment-tile/style/_layout.scss +2 -1
- package/lib/component/payment-tile/style/material.scss +0 -1
- package/lib/component/relation-address/relation-address.component.d.ts +2 -2
- package/lib/component/relation-address/style/material.scss +0 -1
- package/lib/component/relation-address-select/style/material.scss +0 -1
- package/lib/component/relation-address-tile/style/material.scss +0 -1
- package/lib/component/shared/transaction-article-text/style/material.scss +0 -1
- package/lib/component/shared/transaction-article-text-overview/style/material.scss +0 -1
- package/lib/component/shopping-cart/style/material.scss +0 -1
- package/lib/component/shopping-cart-OLD/shopping-cart-manager/shopping-cart-manager.component.scss +0 -1
- package/lib/component/shopping-cart-preview/style/material.scss +0 -1
- package/lib/component/stepper/style/material.scss +0 -1
- package/lib/component/tile/style/material.scss +0 -1
- package/lib/component/transaction/style/_layout.scss +13 -13
- package/lib/component/transaction/style/_material-definition.scss +2 -6
- package/lib/component/transaction/style/_theme.scss +0 -18
- package/lib/component/transaction/style/material.scss +5 -5
- package/lib/component/transaction/transaction.component.d.ts +9 -9
- package/lib/component/transaction-button-bar/style/_layout.scss +50 -0
- package/lib/component/transaction-button-bar/style/_material-definition.scss +12 -0
- package/lib/component/transaction-button-bar/style/_theme.scss +14 -0
- package/lib/component/{order-grid → transaction-button-bar}/style/material.scss +0 -1
- package/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button.component.d.ts +9 -0
- package/lib/component/transaction-button-bar/transaction-button-bar.component.d.ts +17 -0
- package/lib/component/transaction-button-bar/transaction-button-bar.module.d.ts +2 -0
- package/lib/component/transaction-confirmation-history/style/material.scss +0 -1
- package/lib/component/transaction-grid/transaction-base-grid/style/_layout.scss +33 -0
- package/lib/component/transaction-grid/transaction-base-grid/style/_material-definition.scss +8 -0
- package/lib/component/transaction-grid/transaction-base-grid/style/_theme.scss +12 -0
- package/lib/component/{seller-information → transaction-grid/transaction-base-grid}/style/material.scss +0 -1
- 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/lib/component/transaction-grid/transaction-grid/style/_layout.scss +6 -0
- package/lib/component/{transaction-history-grid → transaction-grid/transaction-grid}/style/_material-definition.scss +0 -0
- package/lib/component/transaction-grid/transaction-grid/style/_theme.scss +6 -0
- package/lib/component/transaction-grid/transaction-grid/style/material.scss +5 -0
- package/lib/component/transaction-grid/transaction-grid/transaction-grid.component.d.ts +26 -0
- package/lib/component/transaction-grid/transaction-grid/transaction-grid.module.d.ts +2 -0
- package/lib/component/transaction-grid/transaction-history-grid/style/_layout.scss +15 -0
- package/lib/component/transaction-grid/transaction-history-grid/style/_material-definition.scss +1 -0
- package/lib/component/{transaction-history-grid → transaction-grid/transaction-history-grid}/style/_theme.scss +1 -1
- package/lib/component/{transaction-commit-bar → transaction-grid/transaction-history-grid}/style/material.scss +0 -1
- package/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.component.d.ts +19 -0
- package/lib/component/{transaction-history-grid → transaction-grid/transaction-history-grid}/transaction-history-grid.module.d.ts +0 -0
- package/lib/component/{transaction-lines-grid → transaction-grid/transaction-lines-grid}/style/_layout.scss +5 -1
- package/lib/component/{transaction-lines-grid → transaction-grid/transaction-lines-grid}/style/_material-definition.scss +3 -0
- package/lib/component/{transaction-lines-grid → transaction-grid/transaction-lines-grid}/style/_theme.scss +1 -1
- package/lib/component/transaction-grid/transaction-lines-grid/style/material.scss +4 -0
- package/lib/component/transaction-grid/transaction-lines-grid/transaction-lines-grid.component.d.ts +11 -0
- package/lib/component/{transaction-lines-grid → transaction-grid/transaction-lines-grid}/transaction-lines-grid.module.d.ts +0 -0
- package/lib/component/transaction-grid/transaction-order-confirmation-grid/style/_layout.scss +7 -0
- package/lib/component/{order-confirmation-grid → transaction-grid/transaction-order-confirmation-grid}/style/_material-definition.scss +0 -0
- package/lib/component/transaction-grid/transaction-order-confirmation-grid/style/_theme.scss +7 -0
- package/lib/component/transaction-grid/transaction-order-confirmation-grid/style/material.scss +3 -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/lib/component/transaction-grid/transaction-received-goods-grid/style/_layout.scss +6 -0
- package/lib/component/transaction-grid/transaction-received-goods-grid/style/_material-definition.scss +0 -0
- package/lib/component/transaction-grid/transaction-received-goods-grid/style/_theme.scss +6 -0
- package/lib/component/transaction-grid/transaction-received-goods-grid/style/material.scss +4 -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/lib/component/transaction-header/transaction-header/style/_layout.scss +40 -0
- package/lib/component/transaction-header/transaction-header/style/_material-definition.scss +9 -0
- package/lib/component/transaction-header/transaction-header/style/_theme.scss +11 -0
- package/lib/component/transaction-header/transaction-header/style/material.scss +7 -0
- package/lib/component/transaction-header/transaction-header/transaction-header.component.d.ts +10 -0
- package/lib/component/transaction-header/transaction-header/transaction-header.module.d.ts +2 -0
- package/lib/component/transaction-header/transaction-header-delivery/style/_layout.scss +38 -0
- package/lib/component/transaction-header/transaction-header-delivery/style/_material-definition.scss +7 -0
- package/lib/component/transaction-header/transaction-header-delivery/style/_theme.scss +25 -0
- package/lib/component/transaction-header/transaction-header-delivery/style/material.scss +3 -0
- package/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.component.d.ts +15 -0
- package/lib/component/{transaction-header-delivery → transaction-header/transaction-header-delivery}/transaction-header-delivery.module.d.ts +0 -0
- package/lib/component/transaction-header/transaction-header-order/style/_layout.scss +12 -0
- package/lib/component/transaction-header/transaction-header-order/style/_material-definition.scss +0 -0
- package/lib/component/transaction-header/transaction-header-order/style/_theme.scss +6 -0
- package/lib/component/transaction-header/transaction-header-order/style/material.scss +4 -0
- package/lib/component/transaction-header/transaction-header-order/transaction-header-order.component.d.ts +4 -0
- package/lib/component/transaction-header/transaction-header-order/transaction-header-order.module.d.ts +2 -0
- package/lib/component/transaction-header/transaction-header-payment/style/_layout.scss +14 -0
- package/lib/component/transaction-header/transaction-header-payment/style/_material-definition.scss +4 -0
- package/lib/component/transaction-header/transaction-header-payment/style/_theme.scss +12 -0
- package/lib/component/transaction-header/transaction-header-payment/style/material.scss +5 -0
- package/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.d.ts +6 -0
- package/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.module.d.ts +2 -0
- package/lib/component/transaction-header/transaction-header-relation/style/_layout.scss +7 -0
- package/lib/component/transaction-header/transaction-header-relation/style/_material-definition.scss +0 -0
- package/lib/component/transaction-header/transaction-header-relation/style/_theme.scss +6 -0
- package/lib/component/transaction-header/transaction-header-relation/style/material.scss +4 -0
- package/lib/component/{transaction-header-relation → transaction-header/transaction-header-relation}/transaction-header-relation.component.d.ts +1 -1
- package/lib/component/{transaction-header-relation → transaction-header/transaction-header-relation}/transaction-header-relation.module.d.ts +0 -0
- package/lib/component/transaction-header/transaction-header.component.d.ts +0 -2
- package/lib/component/transaction-history-grid-status/style/_layout.scss +7 -7
- package/lib/component/transaction-history-grid-status/style/_material-definition.scss +8 -0
- package/lib/component/transaction-history-grid-status/style/material.scss +0 -1
- package/lib/component/transaction-history-grid-status/transaction-history-grid-status.component.d.ts +2 -0
- package/lib/component/transaction-line/style/_layout.scss +38 -1
- package/lib/component/transaction-line/style/_material-definition.scss +4 -3
- package/lib/component/transaction-line/style/_theme.scss +5 -0
- package/lib/component/transaction-line/style/material.scss +0 -1
- package/lib/component/transaction-line/transaction-line.component.d.ts +7 -4
- package/lib/component/transaction-line-grid/style/material.scss +0 -1
- package/lib/component/transaction-line-side-panel/style/_layout.scss +3 -2
- package/lib/component/transaction-line-side-panel/style/_material-definition.scss +2 -0
- package/lib/component/transaction-line-side-panel/style/material.scss +0 -1
- package/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.d.ts +13 -6
- package/lib/component/transaction-line-side-panel-default/style/material.scss +0 -1
- package/lib/component/transaction-line-side-panel-purchase/style/_layout.scss +6 -0
- package/lib/component/transaction-line-side-panel-purchase/style/_material-definition.scss +0 -0
- package/lib/component/transaction-line-side-panel-purchase/style/_theme.scss +6 -0
- package/lib/component/transaction-line-side-panel-purchase/style/material.scss +5 -0
- package/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.d.ts +21 -0
- package/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.module.d.ts +2 -0
- package/lib/component/transaction-lines/style/material.scss +0 -1
- package/lib/component/transaction-lines/transaction-lines.component.d.ts +3 -5
- package/lib/component/transaction-quick-access/transaction-quick-access/style/_layout.scss +11 -0
- package/lib/component/{transaction-commit-bar → transaction-quick-access/transaction-quick-access}/style/_material-definition.scss +0 -0
- package/lib/component/{transaction-commit-bar → transaction-quick-access/transaction-quick-access}/style/_theme.scss +1 -1
- package/lib/component/transaction-quick-access/transaction-quick-access/style/material.scss +6 -0
- package/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.component.d.ts +21 -0
- package/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.module.d.ts +2 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/_layout.scss +9 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/_material-definition.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/_theme.scss +6 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/material.scss +4 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.d.ts +4 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.module.d.ts +2 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/style/_layout.scss +7 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/style/_material-definition.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/style/_theme.scss +6 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/style/material.scss +4 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.component.d.ts +4 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.module.d.ts +2 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/style/_layout.scss +9 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/style/_material-definition.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/style/_theme.scss +6 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/style/material.scss +4 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.d.ts +27 -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-receiving-goods-details/style/_layout.scss +4 -4
- package/lib/component/transaction-receiving-goods-details/style/_material-definition.scss +3 -1
- package/lib/component/transaction-receiving-goods-details/style/material.scss +0 -1
- package/lib/component/transaction-receiving-goods-details/transaction-receiving-goods-details.component.d.ts +28 -2
- package/lib/component/transaction-receiving-goods-history/style/material.scss +0 -1
- package/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.component.d.ts +14 -1
- package/lib/component/transaction-search/service/filter-request.service.d.ts +23 -0
- package/lib/component/transaction-search/service/transaction-search.service.d.ts +11 -0
- package/lib/component/transaction-search/style/_layout.scss +37 -0
- package/lib/component/transaction-search/style/_material-definition.scss +41 -0
- package/lib/component/transaction-search/style/_theme.scss +6 -0
- package/lib/component/transaction-search/style/material.scss +7 -0
- package/lib/component/transaction-search/transaction-filter/style/_layout.scss +53 -0
- package/lib/component/transaction-search/transaction-filter/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search/transaction-filter/style/_theme.scss +8 -0
- package/lib/component/transaction-search/transaction-filter/style/material.scss +7 -0
- package/lib/component/transaction-search/transaction-filter/transaction-filter.component.d.ts +21 -0
- package/lib/component/transaction-search/transaction-filter/transaction-filter.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-filter-categories/style/_layout.scss +23 -0
- package/lib/component/transaction-search/transaction-filter-categories/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-categories/style/_theme.scss +13 -0
- package/lib/component/transaction-search/transaction-filter-categories/style/material.scss +3 -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-article/style/_layout.scss +13 -0
- package/lib/component/transaction-search/transaction-filter-content-article/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search/transaction-filter-content-article/style/_theme.scss +6 -0
- package/lib/component/transaction-search/transaction-filter-content-article/style/material.scss +4 -0
- package/lib/component/transaction-search/transaction-filter-content-article/transaction-filter-content-article.component.d.ts +37 -0
- package/lib/component/transaction-search/transaction-filter-content-article/transaction-filter-content-article.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-filter-content-logistics/style/_layout.scss +12 -0
- package/lib/component/transaction-search/transaction-filter-content-logistics/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content-logistics/style/_theme.scss +6 -0
- package/lib/component/transaction-search/transaction-filter-content-logistics/style/material.scss +4 -0
- package/lib/component/transaction-search/transaction-filter-content-logistics/transaction-filter-content-logistics.component.d.ts +36 -0
- package/lib/component/transaction-search/transaction-filter-content-logistics/transaction-filter-content-logistics.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-filter-content-order/style/_layout.scss +12 -0
- package/lib/component/transaction-search/transaction-filter-content-order/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search/transaction-filter-content-order/style/_theme.scss +6 -0
- package/lib/component/transaction-search/transaction-filter-content-order/style/material.scss +4 -0
- package/lib/component/transaction-search/transaction-filter-content-order/transaction-filter-content-order.component.d.ts +60 -0
- package/lib/component/transaction-search/transaction-filter-content-order/transaction-filter-content-order.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-search-result/style/_layout.scss +30 -0
- package/lib/component/transaction-search/transaction-search-result/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search/transaction-search-result/style/_theme.scss +10 -0
- package/lib/component/transaction-search/transaction-search-result/style/material.scss +3 -0
- package/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.d.ts +19 -0
- package/lib/component/transaction-search/transaction-search-result/transaction-search-result.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-search.component.d.ts +12 -0
- package/lib/component/transaction-search/transaction-search.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-tile/style/_layout.scss +91 -0
- package/lib/component/transaction-search/transaction-tile/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-tile/style/_theme.scss +46 -0
- package/lib/component/transaction-search/transaction-tile/style/material.scss +5 -0
- package/lib/component/transaction-search/transaction-tile/transaction-tile.component.d.ts +13 -0
- package/lib/component/transaction-search/transaction-tile/transaction-tile.module.d.ts +2 -0
- package/lib/component/transaction-search-grid/style/_layout.scss +6 -0
- package/lib/component/transaction-search-grid/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search-grid/style/_theme.scss +6 -0
- package/lib/component/transaction-search-grid/style/material.scss +7 -0
- package/lib/component/transaction-search-grid/transaction-search-grid.component.d.ts +13 -0
- package/lib/component/transaction-search-grid/transaction-search-grid.module.d.ts +2 -0
- package/lib/component/transaction-totals/style/material.scss +0 -1
- package/lib/component/view-mode-buttons/style/_layout.scss +20 -0
- package/lib/component/view-mode-buttons/style/_material-definition.scss +5 -0
- package/lib/component/view-mode-buttons/style/_theme.scss +22 -0
- package/lib/component/view-mode-buttons/style/material.scss +3 -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 +2 -1
- package/lib/enum/icon.enum.d.ts +17 -0
- package/lib/enum/position-grid-row.enum.d.ts +4 -0
- package/lib/enum/status-type.enum.d.ts +3 -1
- package/lib/enum/transaction-type-category.enum.d.ts +14 -0
- package/lib/model/filter-item.viewmodel.d.ts +7 -0
- package/lib/model/filter-viewmodel.d.ts +8 -0
- package/lib/model/payment.viewmodel.d.ts +6 -0
- package/lib/model/received-goods-view-model.d.ts +10 -0
- package/lib/model/transaction-bar-button.d.ts +7 -0
- package/lib/service/article-connector.service.d.ts +13 -0
- package/lib/service/article.service.d.ts +6 -0
- package/lib/service/collection-cache.service.d.ts +6 -0
- package/lib/service/ione-connector-adapter.service.d.ts +24 -3
- package/lib/service/options.service.d.ts +1 -0
- package/lib/service/payment.service.d.ts +9 -0
- package/lib/service/pending-reason.service.d.ts +3 -3
- package/lib/service/shared-connector.service.d.ts +12 -0
- package/lib/service/shared.service.d.ts +13 -0
- package/lib/service/transaction-connector.service.d.ts +119 -0
- package/lib/service/transaction-event.service.d.ts +65 -0
- package/lib/service/transaction-image.service.d.ts +10 -0
- package/lib/service/transaction-mapping.service.d.ts +14 -0
- package/lib/service/transaction.service.d.ts +48 -28
- package/lib/style/_variables.scss +41 -36
- package/lib/style/transaction-globals.scss +25 -0
- package/package.json +6 -3
- package/public_api.d.ts +14 -8
- package/esm2015/lib/component/core/base/default-ok-cancel-buttons.component.js +0 -41
- package/esm2015/lib/component/order-confirmation-grid/order-confirmation-grid.component.js +0 -70
- package/esm2015/lib/component/order-confirmation-grid/order-confirmation-grid.module.js +0 -29
- package/esm2015/lib/component/order-grid/order-grid.component.js +0 -99
- package/esm2015/lib/component/order-grid/order-grid.module.js +0 -28
- package/esm2015/lib/component/seller-information/seller-information.component.js +0 -61
- package/esm2015/lib/component/seller-information/seller-information.module.js +0 -21
- package/esm2015/lib/component/transaction-commit-bar/transaction-commit-bar.component.js +0 -46
- package/esm2015/lib/component/transaction-commit-bar/transaction-commit-bar.module.js +0 -27
- package/esm2015/lib/component/transaction-header-contact/transaction-header-contact.component.js +0 -34
- package/esm2015/lib/component/transaction-header-contact/transaction-header-contact.module.js +0 -19
- package/esm2015/lib/component/transaction-header-delivery/transaction-header-delivery.component.js +0 -60
- package/esm2015/lib/component/transaction-header-delivery/transaction-header-delivery.module.js +0 -21
- package/esm2015/lib/component/transaction-header-relation/transaction-header-relation.component.js +0 -35
- package/esm2015/lib/component/transaction-header-relation/transaction-header-relation.module.js +0 -19
- package/esm2015/lib/component/transaction-history-grid/transaction-history-grid.component.js +0 -47
- package/esm2015/lib/component/transaction-history-grid/transaction-history-grid.module.js +0 -27
- package/esm2015/lib/component/transaction-lines-grid/transaction-lines-grid.component.js +0 -64
- package/esm2015/lib/component/transaction-lines-grid/transaction-lines-grid.module.js +0 -27
- package/esm2015/lib/component/transaction-nav-bar/transaction-nav-bar-button/transaction-nav-bar-button.component.js +0 -29
- package/esm2015/lib/component/transaction-nav-bar/transaction-nav-bar.component.js +0 -65
- package/esm2015/lib/component/transaction-nav-bar/transaction-nav-bar.module.js +0 -26
- package/esm2015/lib/enum/tab-category.enum.js +0 -10
- package/lib/component/core/base/default-ok-cancel-buttons.component.d.ts +0 -13
- package/lib/component/order-confirmation-grid/order-confirmation-grid.component.d.ts +0 -15
- package/lib/component/order-confirmation-grid/order-confirmation-grid.module.d.ts +0 -2
- package/lib/component/order-confirmation-grid/style/_layout.scss +0 -5
- package/lib/component/order-confirmation-grid/style/_theme.scss +0 -5
- package/lib/component/order-grid/order-grid.component.d.ts +0 -23
- package/lib/component/order-grid/order-grid.module.d.ts +0 -2
- package/lib/component/order-grid/style/_layout.scss +0 -21
- package/lib/component/order-grid/style/_material-definition.scss +0 -2
- package/lib/component/order-grid/style/_theme.scss +0 -6
- package/lib/component/seller-information/seller-information.module.d.ts +0 -2
- package/lib/component/seller-information/style/_material-definition.scss +0 -2
- package/lib/component/seller-information/style/_theme.scss +0 -7
- package/lib/component/transaction-commit-bar/style/_layout.scss +0 -16
- package/lib/component/transaction-commit-bar/transaction-commit-bar.component.d.ts +0 -11
- package/lib/component/transaction-commit-bar/transaction-commit-bar.module.d.ts +0 -2
- package/lib/component/transaction-header-contact/style/_layout.scss +0 -25
- package/lib/component/transaction-header-contact/style/_material-definition.scss +0 -7
- package/lib/component/transaction-header-contact/style/_theme.scss +0 -11
- package/lib/component/transaction-header-contact/style/material.scss +0 -4
- package/lib/component/transaction-header-contact/transaction-header-contact.component.d.ts +0 -4
- package/lib/component/transaction-header-contact/transaction-header-contact.module.d.ts +0 -2
- package/lib/component/transaction-header-delivery/style/_layout.scss +0 -54
- package/lib/component/transaction-header-delivery/style/_material-definition.scss +0 -12
- package/lib/component/transaction-header-delivery/style/_theme.scss +0 -24
- package/lib/component/transaction-header-delivery/style/material.scss +0 -4
- package/lib/component/transaction-header-delivery/transaction-header-delivery.component.d.ts +0 -13
- package/lib/component/transaction-header-relation/style/_layout.scss +0 -25
- package/lib/component/transaction-header-relation/style/_material-definition.scss +0 -7
- package/lib/component/transaction-header-relation/style/_theme.scss +0 -11
- package/lib/component/transaction-header-relation/style/material.scss +0 -4
- package/lib/component/transaction-history-grid/style/_layout.scss +0 -7
- package/lib/component/transaction-history-grid/style/material.scss +0 -4
- package/lib/component/transaction-history-grid/transaction-history-grid.component.d.ts +0 -14
- package/lib/component/transaction-lines-grid/style/material.scss +0 -5
- package/lib/component/transaction-lines-grid/transaction-lines-grid.component.d.ts +0 -20
- package/lib/component/transaction-nav-bar/style/_layout.scss +0 -13
- package/lib/component/transaction-nav-bar/style/_material-definition.scss +0 -1
- package/lib/component/transaction-nav-bar/style/_theme.scss +0 -7
- package/lib/component/transaction-nav-bar/style/material.scss +0 -4
- package/lib/component/transaction-nav-bar/transaction-nav-bar-button/transaction-nav-bar-button.component.d.ts +0 -14
- package/lib/component/transaction-nav-bar/transaction-nav-bar-button/transaction-nav-bar-button.component.scss +0 -23
- package/lib/component/transaction-nav-bar/transaction-nav-bar.component.d.ts +0 -18
- package/lib/component/transaction-nav-bar/transaction-nav-bar.module.d.ts +0 -2
- package/lib/enum/tab-category.enum.d.ts +0 -8
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('co-transaction-header-delivery-layout') {
|
|
4
|
+
.co-transaction-header-delivery {
|
|
5
|
+
display: flex;
|
|
6
|
+
.transaction-header-block-header {
|
|
7
|
+
co-icon {
|
|
8
|
+
position: relative;
|
|
9
|
+
height: $tp-transaction-header-delivery-button-width;
|
|
10
|
+
width: $tp-transaction-header-delivery-button-width;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
.header-delivery-method {
|
|
14
|
+
display: flex;
|
|
15
|
+
column-gap: 10px;
|
|
16
|
+
align-items: center;
|
|
17
|
+
}
|
|
18
|
+
.planning-request-button {
|
|
19
|
+
border: $tp-transaction-header-delivery-planning-request-button-border;
|
|
20
|
+
border-radius: $tp-transaction-header-delivery-planning-request-button-border-radius;
|
|
21
|
+
|
|
22
|
+
}
|
|
23
|
+
.header-delivery-deliverydate-wrapper {
|
|
24
|
+
display: flex;
|
|
25
|
+
column-gap: 10px;
|
|
26
|
+
align-items: center;
|
|
27
|
+
co-icon {
|
|
28
|
+
width: 15px;
|
|
29
|
+
height: 15px;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
.transaction-header-block-content-third {
|
|
33
|
+
display: flex;
|
|
34
|
+
flex-direction: column;
|
|
35
|
+
align-items: center;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
package/lib/component/transaction-header/transaction-header-delivery/style/_material-definition.scss
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
$tp-transaction-header-delivery-button-width: 40px !default;
|
|
2
|
+
$tp-transaction-header-delivery-planning-request-button-color: $tp-color-active !default;
|
|
3
|
+
$tp-transaction-header-delivery-planning-request-button-border: 1px solid !default;
|
|
4
|
+
$tp-transaction-header-delivery-planning-request-button-border-color: $tp-color-border !default;
|
|
5
|
+
$tp-transaction-header-delivery-planning-request-button-border-radius: 5px !default;
|
|
6
|
+
$tp-transaction-header-delivery-definitive-button-color: $tp-color-active-light !default;
|
|
7
|
+
$tp-transaction-header-delivery-delivery-truck-color: $tp-color-font !default;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('co-transaction-header-delivery-theme') {
|
|
4
|
+
.co-transaction-header-delivery {
|
|
5
|
+
.planning-request-button {
|
|
6
|
+
border-color: $tp-transaction-header-delivery-planning-request-button-border-color;
|
|
7
|
+
& [fill] {
|
|
8
|
+
fill: $tp-transaction-header-delivery-planning-request-button-color;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
.header-delivery-deliverydate-wrapper.closed {
|
|
12
|
+
co-icon [fill] {
|
|
13
|
+
fill: $tp-transaction-header-delivery-definitive-button-color;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
.header-delivery-truck-icon {
|
|
17
|
+
svg { // for fontawesome icons
|
|
18
|
+
fill: $tp-transaction-header-delivery-delivery-truck-color;
|
|
19
|
+
}
|
|
20
|
+
& [fill] { // for own icons
|
|
21
|
+
fill: $tp-transaction-header-delivery-delivery-truck-color;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { TransactionBaseComponent } from "../../core/base/transaction-base.component";
|
|
2
|
+
import { Icon } from "../../../enum/icon.enum";
|
|
3
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
4
|
+
import { DeliveryMethod } from "@colijnit/transactionapi/build/model/delivery-method.bo";
|
|
5
|
+
import { IconCacheService } from "../../../service/icon-cache.service";
|
|
6
|
+
export declare class TransactionHeaderDeliveryComponent extends TransactionBaseComponent {
|
|
7
|
+
iconService: IconCacheService;
|
|
8
|
+
protected service: TransactionService;
|
|
9
|
+
readonly icons: typeof Icon;
|
|
10
|
+
showClass(): boolean;
|
|
11
|
+
deliveryMethod: DeliveryMethod;
|
|
12
|
+
deliveryMethods: DeliveryMethod[];
|
|
13
|
+
constructor(iconService: IconCacheService, service: TransactionService);
|
|
14
|
+
transactionSet(): void;
|
|
15
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('co-transaction-header-order-layout') {
|
|
4
|
+
.co-transaction-header-order {
|
|
5
|
+
display: flex;
|
|
6
|
+
.transaction-header-block-content-third {
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
align-items: center;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
package/lib/component/transaction-header/transaction-header-order/style/_material-definition.scss
ADDED
|
File without changes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('cc-transaction-header-payment-layout') {
|
|
4
|
+
.co-transaction-header-payment {
|
|
5
|
+
display: flex;
|
|
6
|
+
.header-block-balance {
|
|
7
|
+
display: flex;
|
|
8
|
+
cursor: pointer;
|
|
9
|
+
column-gap: 10px;
|
|
10
|
+
border-radius: $tp-transaction-header-block-payment-balance-border-radius;
|
|
11
|
+
padding: $tp-transaction-header-block-payment-balance-padding;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
package/lib/component/transaction-header/transaction-header-payment/style/_material-definition.scss
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
$tp-transaction-header-block-payment-balance-background: $tp-color-active-light !default;
|
|
2
|
+
$tp-transaction-header-block-payment-balance-padding: 5px 10px !default;
|
|
3
|
+
$tp-transaction-header-block-payment-balance-border-radius: 10px !default;
|
|
4
|
+
$tp-transaction-header-block-payment-balance-to-pay-color: #C1002A !default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('cc-transaction-header-payment-theme') {
|
|
4
|
+
.co-transaction-header-payment {
|
|
5
|
+
.header-block-balance {
|
|
6
|
+
background: $tp-transaction-header-block-payment-balance-background;
|
|
7
|
+
.payment-to-pay {
|
|
8
|
+
color: $tp-transaction-header-block-payment-balance-to-pay-color;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
package/lib/component/transaction-header/transaction-header-relation/style/_material-definition.scss
ADDED
|
File without changes
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { TransactionBaseComponent } from "
|
|
1
|
+
import { TransactionBaseComponent } from "../../core/base/transaction-base.component";
|
|
2
2
|
export declare class TransactionHeaderRelationComponent extends TransactionBaseComponent {
|
|
3
3
|
showClass(): boolean;
|
|
4
4
|
}
|
|
File without changes
|
|
@@ -5,8 +5,6 @@ export declare class TransactionHeaderComponent {
|
|
|
5
5
|
set transaction(value: TransactionInfoResponse);
|
|
6
6
|
get transaction(): TransactionInfoResponse;
|
|
7
7
|
showClass(): boolean;
|
|
8
|
-
expanded: boolean;
|
|
9
8
|
relationId: number;
|
|
10
9
|
private _transaction;
|
|
11
|
-
handleExpandClick(event: MouseEvent): void;
|
|
12
10
|
}
|
|
@@ -4,25 +4,25 @@
|
|
|
4
4
|
.co-transaction-history-grid-status {
|
|
5
5
|
.transaction-status-indication {
|
|
6
6
|
display: flex;
|
|
7
|
-
width:
|
|
7
|
+
width: $tp-co-transaction-history-grid-status-button-width;
|
|
8
8
|
border-radius: 22px;
|
|
9
|
-
height:
|
|
10
|
-
background:
|
|
11
|
-
border:
|
|
9
|
+
height: $tp-co-transaction-history-grid-status-button-height;
|
|
10
|
+
background: $tp-co-transaction-history-grid-status-button-background;
|
|
11
|
+
border: $tp-co-transaction-history-grid-status-button-border;
|
|
12
12
|
align-items: center;
|
|
13
13
|
justify-content: center;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.status-color-circle {
|
|
17
|
-
height:
|
|
18
|
-
width:
|
|
17
|
+
height: $tp-co-transaction-history-grid-status-circle-height;
|
|
18
|
+
width: $tp-co-transaction-history-grid-status-circle-width;
|
|
19
19
|
border-radius: 6px;
|
|
20
20
|
background: #dce4ea;
|
|
21
21
|
margin-right: 10px;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
.status-text {
|
|
25
|
-
|
|
25
|
+
font-family: $tp-co-transaction-history-grid-status-button-font-family;
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
$tp-co-transaction-history-grid-status-button-font-family: $tp-font-family !default;
|
|
2
|
+
$tp-co-transaction-history-grid-status-button-width: 130px !default;
|
|
3
|
+
$tp-co-transaction-history-grid-status-button-height: 44px !default;
|
|
4
|
+
$tp-co-transaction-history-grid-status-button-background: white !default;
|
|
5
|
+
$tp-co-transaction-history-grid-status-button-border: 1px solid #dce4ea !default;
|
|
6
|
+
|
|
7
|
+
$tp-co-transaction-history-grid-status-circle-width: 12px !default;
|
|
8
|
+
$tp-co-transaction-history-grid-status-circle-height: 12px !default;
|
package/lib/component/transaction-history-grid-status/transaction-history-grid-status.component.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { AfterViewInit, ElementRef } from "@angular/core";
|
|
2
2
|
import { StatusType } from "../../enum/status-type.enum";
|
|
3
3
|
export declare class TransactionHistoryGridStatusComponent implements AfterViewInit {
|
|
4
|
+
readonly type: typeof StatusType;
|
|
4
5
|
statusType: StatusType;
|
|
6
|
+
subType: string;
|
|
5
7
|
statusIndicator: ElementRef;
|
|
6
8
|
showClass(): boolean;
|
|
7
9
|
private _getStatusIndicatorColor;
|
|
@@ -94,6 +94,8 @@
|
|
|
94
94
|
flex-shrink: 0;
|
|
95
95
|
height: $tp-transaction-line-amount-height;
|
|
96
96
|
padding: $tp-transaction-line-inner-padding;
|
|
97
|
+
width: 100px;
|
|
98
|
+
justify-content: flex-end;
|
|
97
99
|
}
|
|
98
100
|
.transaction-line-buttons {
|
|
99
101
|
display: flex;
|
|
@@ -104,12 +106,48 @@
|
|
|
104
106
|
height: $tp-transaction-line-amount-height;
|
|
105
107
|
padding: $tp-transaction-line-inner-padding;
|
|
106
108
|
.circle {
|
|
109
|
+
opacity: 0;
|
|
107
110
|
height: 25px;
|
|
108
111
|
width: 25px;
|
|
109
112
|
co-icon {
|
|
110
113
|
height: 25px;
|
|
111
114
|
width: 25px;
|
|
112
115
|
}
|
|
116
|
+
&.show {
|
|
117
|
+
opacity: 1;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
.circle:nth-child(1) {
|
|
121
|
+
//animation-delay: .4s;
|
|
122
|
+
transition: all .2s .4s;
|
|
123
|
+
}
|
|
124
|
+
.circle:nth-child(2) {
|
|
125
|
+
//animation-delay: .4s;
|
|
126
|
+
transition: all .2s .3s;
|
|
127
|
+
}
|
|
128
|
+
.circle:nth-child(3) {
|
|
129
|
+
//animation-delay: .6s;
|
|
130
|
+
transition: all .2s .2s;
|
|
131
|
+
}
|
|
132
|
+
.circle:nth-child(4) {
|
|
133
|
+
//animation-delay: .8s;
|
|
134
|
+
transition: all .2s .1s;
|
|
135
|
+
}
|
|
136
|
+
.circle.show:nth-child(1) {
|
|
137
|
+
//animation-delay: .4s;
|
|
138
|
+
transition: all .2s;
|
|
139
|
+
}
|
|
140
|
+
.circle.show:nth-child(2) {
|
|
141
|
+
//animation-delay: .4s;
|
|
142
|
+
transition: all .2s .1s;
|
|
143
|
+
}
|
|
144
|
+
.circle.show:nth-child(3) {
|
|
145
|
+
//animation-delay: .6s;
|
|
146
|
+
transition: all .2s .2s;
|
|
147
|
+
}
|
|
148
|
+
.circle.show:nth-child(4) {
|
|
149
|
+
//animation-delay: .8s;
|
|
150
|
+
transition: all .2s .3s;
|
|
113
151
|
}
|
|
114
152
|
}
|
|
115
153
|
.transaction-line-description-description {
|
|
@@ -134,7 +172,6 @@
|
|
|
134
172
|
font-family: $tp-transaction-line-font-family;
|
|
135
173
|
font-size: $tp-transaction-line-article-text-font-size;
|
|
136
174
|
padding: $tp-transaction-line-article-text-padding;
|
|
137
|
-
background-color: $tp-transaction-line-background-color;
|
|
138
175
|
}
|
|
139
176
|
//.cdk-drop-list-dragging .drag-drop-list:not(.cdk-drag-placeholder) {
|
|
140
177
|
// transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
|
@@ -11,9 +11,9 @@ $tp-transaction-line-border-color: $tp-color-action !default;
|
|
|
11
11
|
$tp-transaction-line-image-border: 1px solid $tp-color-border !default;
|
|
12
12
|
$tp-transaction-line-column-gap: 15px !default;
|
|
13
13
|
$tp-transaction-line-row-gap: 15px !default;
|
|
14
|
-
$tp-transaction-line-image-width:
|
|
14
|
+
$tp-transaction-line-image-width: 67px !default;
|
|
15
15
|
$tp-transaction-line-preview-image-width: 75px !default;
|
|
16
|
-
$tp-transaction-line-image-height:
|
|
16
|
+
$tp-transaction-line-image-height: 50px !default;
|
|
17
17
|
$tp-transaction-line-preview-image-height: 50px !default;
|
|
18
18
|
$tp-transaction-line-amount-height: 50px !default;
|
|
19
19
|
$tp-transaction-line-amount-input-width: 50px !default;
|
|
@@ -25,5 +25,6 @@ $tp-transaction-line-buttons-overview-background-color: $tp-color-active-light !
|
|
|
25
25
|
$tp-transaction-line-buttons-overview-text-color: $tp-color-light !default;
|
|
26
26
|
$tp-transaction-line-buttons-add-text-background-color: $tp-color-action !default;
|
|
27
27
|
$tp-transaction-line-buttons-add-text-text-color: $tp-color-light !default;
|
|
28
|
-
$tp-transaction-line-article-text-font-size: $tp-font-size
|
|
28
|
+
$tp-transaction-line-article-text-font-size: $tp-font-size !default;
|
|
29
|
+
$tp-transaction-line-article-text-font-color: $tp-color-label !default;
|
|
29
30
|
$tp-transaction-line-article-text-padding: 2px !default;
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
.co-transaction-line {
|
|
5
5
|
background-color: $tp-transaction-line-background-color;
|
|
6
6
|
border-color: $tp-transaction-line-border-color;
|
|
7
|
+
color: $tp-color-font;
|
|
7
8
|
.transaction-line-image {
|
|
8
9
|
border: $tp-transaction-line-image-border;
|
|
9
10
|
}
|
|
@@ -37,5 +38,9 @@
|
|
|
37
38
|
fill: $tp-transaction-line-buttons-add-text-text-color;
|
|
38
39
|
}
|
|
39
40
|
}
|
|
41
|
+
.article-text {
|
|
42
|
+
color: $tp-transaction-line-article-text-font-color;
|
|
43
|
+
background-color: $tp-transaction-line-background-color;
|
|
44
|
+
}
|
|
40
45
|
}
|
|
41
46
|
}
|
|
@@ -8,21 +8,25 @@ import { IconCacheService } from "../../service/icon-cache.service";
|
|
|
8
8
|
import { TransactionAddTextLineRequest } from "@colijnit/transactionapi/build/model/transaction-add-text-line-request.bo";
|
|
9
9
|
import { DialogService } from "../../service/dialog.service";
|
|
10
10
|
import { ResolveLinePendingReasonRequest } from "@colijnit/transactionapi/build/model/resolve-pending-reason-request.bo";
|
|
11
|
+
import { TransactionImageService } from "../../service/transaction-image.service";
|
|
11
12
|
export declare class TransactionLineComponent {
|
|
12
13
|
service: TransactionService;
|
|
13
14
|
iconCacheService: IconCacheService;
|
|
14
15
|
private _dialogService;
|
|
15
16
|
private _dictionaryService;
|
|
17
|
+
private _imageService;
|
|
16
18
|
readonly icons: typeof Icon;
|
|
17
19
|
preview: boolean;
|
|
18
20
|
set line(value: TransactionLineInfo);
|
|
19
21
|
get line(): TransactionLineInfo;
|
|
20
22
|
waitingForUserAction: EventEmitter<boolean>;
|
|
21
|
-
|
|
23
|
+
sidePanelButtonClicked: EventEmitter<void>;
|
|
22
24
|
isText: boolean;
|
|
23
25
|
isArticle: boolean;
|
|
24
26
|
isSelected: boolean;
|
|
25
27
|
showClass(): boolean;
|
|
28
|
+
handleMouseOver(event: MouseEvent): void;
|
|
29
|
+
handleMouseLeave(event: MouseEvent): void;
|
|
26
30
|
localAmount: number;
|
|
27
31
|
image: string;
|
|
28
32
|
stock: StockStatus;
|
|
@@ -31,9 +35,9 @@ export declare class TransactionLineComponent {
|
|
|
31
35
|
showTransactionArticleTextOverview: boolean;
|
|
32
36
|
articleTextHeader: string;
|
|
33
37
|
textToEdit: string;
|
|
34
|
-
|
|
38
|
+
mouseOver: boolean;
|
|
35
39
|
private _line;
|
|
36
|
-
constructor(service: TransactionService, iconCacheService: IconCacheService, _dialogService: DialogService, _dictionaryService: DictionaryService);
|
|
40
|
+
constructor(service: TransactionService, iconCacheService: IconCacheService, _dialogService: DialogService, _dictionaryService: DictionaryService, _imageService: TransactionImageService);
|
|
37
41
|
changeLineAmount(amount: number): void;
|
|
38
42
|
deleteTransactionLineClick(): Promise<void>;
|
|
39
43
|
handleTransactionArticleText(event: MouseEvent): void;
|
|
@@ -48,5 +52,4 @@ export declare class TransactionLineComponent {
|
|
|
48
52
|
private _showArticleTextOverviewDialog;
|
|
49
53
|
private _hideArticleTextOverviewDialog;
|
|
50
54
|
handleShowSidePanel(event: MouseEvent): void;
|
|
51
|
-
handleCloseSidePanel(event: MouseEvent): void;
|
|
52
55
|
}
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
font-size: $tp-transaction-line-side-panel-font-size;
|
|
9
9
|
position: fixed;
|
|
10
10
|
right: 0;
|
|
11
|
-
top:
|
|
11
|
+
top: $tp-transaction-line-side-panel-top;
|
|
12
12
|
width: $tp-transaction-line-side-panel-width;
|
|
13
|
-
height:
|
|
13
|
+
height: $tp-transaction-line-side-panel-height;
|
|
14
14
|
z-index: 10;
|
|
15
15
|
box-shadow: $tp-transaction-line-side-panel-box-shadow;
|
|
16
16
|
padding: $tp-transaction-line-side-panel-padding;
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
flex-direction: column;
|
|
51
51
|
flex-basis: 100%;
|
|
52
52
|
overflow-y: auto;
|
|
53
|
+
overflow-x: hidden;
|
|
53
54
|
}
|
|
54
55
|
.save-cancel-wrapper {
|
|
55
56
|
display: flex;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
$tp-transaction-line-side-panel-font-family: $tp-font-family !default;
|
|
2
2
|
$tp-transaction-line-side-panel-font-size: $tp-font-size !default;
|
|
3
|
+
$tp-transaction-line-side-panel-top: 0 !default;
|
|
4
|
+
$tp-transaction-line-side-panel-height: 100% !default;
|
|
3
5
|
$tp-transaction-line-side-panel-width: 700px !default;
|
|
4
6
|
$tp-transaction-line-side-panel-box-shadow: -3px 0px 16px 1px rgb(0, 0, 0, 0.2) !default;
|
|
5
7
|
$tp-transaction-line-side-panel-padding: 10px !default;
|
package/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.d.ts
CHANGED
|
@@ -1,18 +1,25 @@
|
|
|
1
1
|
import { EventEmitter } from "@angular/core";
|
|
2
2
|
import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transaction-line-info.bo";
|
|
3
|
-
import { TabCategory } from "../../enum/tab-category.enum";
|
|
4
3
|
import { Icon } from "../../enum/icon.enum";
|
|
5
4
|
import { IconCacheService } from "../../service/icon-cache.service";
|
|
5
|
+
import { TransactionKind } from "@colijnit/transactionapi/build/enum/transaction-kind.enum";
|
|
6
|
+
import { TransactionTypeCategory } from "../../enum/transaction-type-category.enum";
|
|
7
|
+
import { TransactionService } from "../../service/transaction.service";
|
|
8
|
+
import { TransactionEventService } from "../../service/transaction-event.service";
|
|
6
9
|
export declare class TransactionLineSidePanelComponent {
|
|
7
10
|
iconService: IconCacheService;
|
|
11
|
+
private _service;
|
|
12
|
+
private _transactionEventService;
|
|
8
13
|
readonly icons: typeof Icon;
|
|
9
|
-
readonly
|
|
14
|
+
readonly categories: typeof TransactionTypeCategory;
|
|
15
|
+
readonly transactionTypes: typeof TransactionKind;
|
|
16
|
+
transactionType: TransactionKind;
|
|
10
17
|
transactionLine: TransactionLineInfo;
|
|
11
|
-
|
|
18
|
+
transactionId: number;
|
|
19
|
+
activeCategory: TransactionTypeCategory;
|
|
12
20
|
cancelClick: EventEmitter<MouseEvent>;
|
|
13
21
|
showClass(): boolean;
|
|
14
|
-
|
|
22
|
+
quantityToReceive: number;
|
|
23
|
+
constructor(iconService: IconCacheService, _service: TransactionService, _transactionEventService: TransactionEventService);
|
|
15
24
|
handleCancelClick(event: MouseEvent): void;
|
|
16
|
-
handleSaveDetailsEdit(): void;
|
|
17
|
-
handleCancelDetailsEdit(): void;
|
|
18
25
|
}
|
|
File without changes
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { GoodsReceiptStatusWithHistory } from "@colijnit/transactionapi/build/model/goods-receipt-status-with-history.bo";
|
|
3
|
+
import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transaction-line-info.bo";
|
|
4
|
+
import { TransactionTypeCategory } from "../../enum/transaction-type-category.enum";
|
|
5
|
+
import { TransactionService } from "../../service/transaction.service";
|
|
6
|
+
import { TransactionEventService } from "../../service/transaction-event.service";
|
|
7
|
+
export declare class TransactionLineSidePanelPurchaseComponent {
|
|
8
|
+
private _service;
|
|
9
|
+
private _transactionEventService;
|
|
10
|
+
readonly categories: typeof TransactionTypeCategory;
|
|
11
|
+
transactionLine: TransactionLineInfo;
|
|
12
|
+
set transactionId(value: number);
|
|
13
|
+
get transactionId(): number;
|
|
14
|
+
category: TransactionTypeCategory;
|
|
15
|
+
quantityToReceiveChange: EventEmitter<number>;
|
|
16
|
+
showClass(): boolean;
|
|
17
|
+
goodsReceiptStatus: GoodsReceiptStatusWithHistory;
|
|
18
|
+
private _transactionId;
|
|
19
|
+
constructor(_service: TransactionService, _transactionEventService: TransactionEventService);
|
|
20
|
+
getGoodsReceiptStatusWithHistory(): Promise<void>;
|
|
21
|
+
}
|
|
@@ -14,15 +14,13 @@ export declare class TransactionLinesComponent {
|
|
|
14
14
|
transactionLines: TransactionLineInfo[];
|
|
15
15
|
preview: boolean;
|
|
16
16
|
saveTransactionLine: EventEmitter<TransactionAddTextLineRequest>;
|
|
17
|
-
showSidePanelClicked: EventEmitter<
|
|
18
|
-
show: boolean;
|
|
19
|
-
line: TransactionLineInfo;
|
|
20
|
-
}>;
|
|
17
|
+
showSidePanelClicked: EventEmitter<TransactionLineInfo>;
|
|
21
18
|
showClass(): boolean;
|
|
22
19
|
showTransactionArticleText: boolean;
|
|
23
20
|
selectedArticleText: TransactionLineInfo;
|
|
24
21
|
textToEdit: string;
|
|
25
22
|
userActionRequired: boolean;
|
|
23
|
+
selectedTransactionLine: TransactionLineInfo;
|
|
26
24
|
constructor(iconCacheService: IconCacheService, service: TransactionService);
|
|
27
25
|
trackByFn(index: number, line: TransactionLineInfo): any;
|
|
28
26
|
handleCanDragDrop(drag: CdkDrag, drop: CdkDropList): boolean;
|
|
@@ -31,7 +29,7 @@ export declare class TransactionLinesComponent {
|
|
|
31
29
|
handleTransactionArticleText(event: MouseEvent): void;
|
|
32
30
|
closeTransactionArticleText(event: MouseEvent): void;
|
|
33
31
|
saveTransactionArticleLineText(transactionLine: TransactionAddTextLineRequest): void;
|
|
34
|
-
handleShowSidePanelClicked(
|
|
32
|
+
handleShowSidePanelClicked(line: TransactionLineInfo): void;
|
|
35
33
|
private _showArticleTextDialog;
|
|
36
34
|
private _hideArticleTextDialog;
|
|
37
35
|
}
|