@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,37 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { TransactionSearchViewRequest } from "@colijnit/transactionapi/build/model/transaction-search-view-request";
|
|
3
|
+
import { FilterItemViewmodel } from "../../../model/filter-item.viewmodel";
|
|
4
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
5
|
+
import { FilterRequestService } from "../service/filter-request.service";
|
|
6
|
+
import { TransactionSearchService } from "../service/transaction-search.service";
|
|
7
|
+
export declare class TransactionFilterContentArticleComponent implements OnInit {
|
|
8
|
+
searchService: TransactionSearchService;
|
|
9
|
+
filterRequestService: FilterRequestService;
|
|
10
|
+
private _transactionService;
|
|
11
|
+
showClass(): boolean;
|
|
12
|
+
searchRequest: TransactionSearchViewRequest;
|
|
13
|
+
searchPlaceholder: string;
|
|
14
|
+
showMoreLabel: string;
|
|
15
|
+
showLessLabel: string;
|
|
16
|
+
articleNumbers: FilterItemViewmodel[];
|
|
17
|
+
articleNumberFields: {
|
|
18
|
+
text: any;
|
|
19
|
+
value: any;
|
|
20
|
+
};
|
|
21
|
+
exceedanceCodes: FilterItemViewmodel[];
|
|
22
|
+
exceedanceCodeFields: {
|
|
23
|
+
text: any;
|
|
24
|
+
value: any;
|
|
25
|
+
};
|
|
26
|
+
suppliers: FilterItemViewmodel[];
|
|
27
|
+
supplierFields: {
|
|
28
|
+
text: any;
|
|
29
|
+
value: any;
|
|
30
|
+
};
|
|
31
|
+
constructor(searchService: TransactionSearchService, filterRequestService: FilterRequestService, _transactionService: TransactionService);
|
|
32
|
+
ngOnInit(): void;
|
|
33
|
+
onFilterButtonClick(): void;
|
|
34
|
+
private _setArticleNumbers;
|
|
35
|
+
private _setExceedanceCodes;
|
|
36
|
+
private _setSuppliers;
|
|
37
|
+
}
|
package/lib/component/transaction-search/transaction-filter-content-logistics/style/_layout.scss
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('co-transaction-filter-content-logistics-layout') {
|
|
4
|
+
.co-transaction-filter-content-logistics {
|
|
5
|
+
width: $tp-co-transaction-search-filter-width;
|
|
6
|
+
|
|
7
|
+
.filter-button-container {
|
|
8
|
+
padding: $tp-co-transaction-search-filter-button-padding;
|
|
9
|
+
width: $tp-co-transaction-search-filter-button-width;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { TransactionSearchViewRequest } from "@colijnit/transactionapi/build/model/transaction-search-view-request";
|
|
3
|
+
import { FilterItemViewmodel } from "../../../model/filter-item.viewmodel";
|
|
4
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
5
|
+
import { FilterRequestService } from "../service/filter-request.service";
|
|
6
|
+
import { TransactionSearchService } from "../service/transaction-search.service";
|
|
7
|
+
export declare class TransactionFilterContentLogisticsComponent implements OnInit {
|
|
8
|
+
searchService: TransactionSearchService;
|
|
9
|
+
filterRequestService: FilterRequestService;
|
|
10
|
+
private _transactionService;
|
|
11
|
+
showClass(): boolean;
|
|
12
|
+
searchRequest: TransactionSearchViewRequest;
|
|
13
|
+
searchPlaceholder: string;
|
|
14
|
+
showMoreLabel: string;
|
|
15
|
+
showLessLabel: string;
|
|
16
|
+
deliveryMethods: any[];
|
|
17
|
+
deliveryMethodFields: {
|
|
18
|
+
text: any;
|
|
19
|
+
value: any;
|
|
20
|
+
};
|
|
21
|
+
warehouses: FilterItemViewmodel[];
|
|
22
|
+
warehouseFields: {
|
|
23
|
+
text: any;
|
|
24
|
+
value: any;
|
|
25
|
+
};
|
|
26
|
+
confirmedDeliveryStartDate: Date;
|
|
27
|
+
confirmedDeliveryEndDate: Date;
|
|
28
|
+
arrivalStartDate: Date;
|
|
29
|
+
arrivalEndDate: Date;
|
|
30
|
+
constructor(searchService: TransactionSearchService, filterRequestService: FilterRequestService, _transactionService: TransactionService);
|
|
31
|
+
ngOnInit(): void;
|
|
32
|
+
onFilterButtonClick(): void;
|
|
33
|
+
private _setRangeDates;
|
|
34
|
+
private _setDeliveryMethods;
|
|
35
|
+
private _setWarehouses;
|
|
36
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('co-transaction-filter-content-order-layout') {
|
|
4
|
+
.co-transaction-filter-content-order {
|
|
5
|
+
width: $tp-co-transaction-search-filter-width;
|
|
6
|
+
|
|
7
|
+
.filter-button-container {
|
|
8
|
+
padding: $tp-co-transaction-search-filter-button-padding;
|
|
9
|
+
width: $tp-co-transaction-search-filter-button-width;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { TransactionSearchViewRequest } from "@colijnit/transactionapi/build/model/transaction-search-view-request";
|
|
3
|
+
import { FilterItemViewmodel } from "../../../model/filter-item.viewmodel";
|
|
4
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
5
|
+
import { FilterRequestService } from "../service/filter-request.service";
|
|
6
|
+
import { TransactionSearchService } from "../service/transaction-search.service";
|
|
7
|
+
export declare class TransactionFilterContentOrderComponent implements OnInit {
|
|
8
|
+
searchService: TransactionSearchService;
|
|
9
|
+
filterRequestService: FilterRequestService;
|
|
10
|
+
private _transactionService;
|
|
11
|
+
showClass(): boolean;
|
|
12
|
+
searchRequest: TransactionSearchViewRequest;
|
|
13
|
+
searchPlaceholder: string;
|
|
14
|
+
showMoreLabel: string;
|
|
15
|
+
showLessLabel: string;
|
|
16
|
+
salesPersons: FilterItemViewmodel[];
|
|
17
|
+
salesPersonsFields: {
|
|
18
|
+
text: any;
|
|
19
|
+
value: any;
|
|
20
|
+
};
|
|
21
|
+
tags: FilterItemViewmodel[];
|
|
22
|
+
tagsFields: {
|
|
23
|
+
text: any;
|
|
24
|
+
value: any;
|
|
25
|
+
};
|
|
26
|
+
branches: FilterItemViewmodel[];
|
|
27
|
+
branchFields: {
|
|
28
|
+
text: any;
|
|
29
|
+
value: any;
|
|
30
|
+
};
|
|
31
|
+
onHoldCodes: FilterItemViewmodel[];
|
|
32
|
+
onHoldCodeFields: {
|
|
33
|
+
text: any;
|
|
34
|
+
value: any;
|
|
35
|
+
};
|
|
36
|
+
commissionCodes: FilterItemViewmodel[];
|
|
37
|
+
commissionCodeFields: {
|
|
38
|
+
text: any;
|
|
39
|
+
value: any;
|
|
40
|
+
};
|
|
41
|
+
customerGroups: FilterItemViewmodel[];
|
|
42
|
+
customerGroupFields: {
|
|
43
|
+
text: any;
|
|
44
|
+
value: any;
|
|
45
|
+
};
|
|
46
|
+
transStartDate: Date;
|
|
47
|
+
transEndDate: Date;
|
|
48
|
+
deliveryStartDate: Date;
|
|
49
|
+
deliveryEndDate: Date;
|
|
50
|
+
constructor(searchService: TransactionSearchService, filterRequestService: FilterRequestService, _transactionService: TransactionService);
|
|
51
|
+
ngOnInit(): void;
|
|
52
|
+
onFilterButtonClick(): void;
|
|
53
|
+
private _setRangeDates;
|
|
54
|
+
private _setSalesPersons;
|
|
55
|
+
private _setTags;
|
|
56
|
+
private _setBranches;
|
|
57
|
+
private _setOnHoldCodes;
|
|
58
|
+
private _setCommissionCodes;
|
|
59
|
+
private _setCustomerGroups;
|
|
60
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('co-transaction-search-result-layout') {
|
|
4
|
+
.co-transaction-search {
|
|
5
|
+
.co-input-text {
|
|
6
|
+
border: $tp-co-transaction-search-filter-input-border;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.transaction-filter-wrapper {
|
|
10
|
+
overflow-y: auto;
|
|
11
|
+
overflow-x: hidden;
|
|
12
|
+
min-width: $tp-co-transaction-search-filter-wrapper-min-width;
|
|
13
|
+
height: $tp-co-transaction-search-filter-wrapper-height;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.co-transaction-search-result {
|
|
18
|
+
width: $tp-co-transaction-search-result-width;
|
|
19
|
+
|
|
20
|
+
.transaction-search-result-content-tiles-wrapper {
|
|
21
|
+
display: flex;
|
|
22
|
+
flex-basis: 100%;
|
|
23
|
+
justify-content: start;
|
|
24
|
+
flex-wrap: wrap;
|
|
25
|
+
padding: $tp-transaction-tiles-wrapper-padding;
|
|
26
|
+
column-gap: $tp-transaction-tiles-wrapper-column-gap;
|
|
27
|
+
row-gap: $tp-transaction-tiles-wrapper-row-gap;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
package/lib/component/transaction-search/transaction-search-result/style/_material-definition.scss
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('co-transaction-search-result-theme') {
|
|
4
|
+
.co-transaction-search-result {
|
|
5
|
+
.transaction-search-filter-button {
|
|
6
|
+
background-color: $tp-co-transaction-search-filter-button-color;
|
|
7
|
+
cursor: pointer;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from "@angular/core";
|
|
2
|
+
import { TransactionSearchView } from "@colijnit/transactionapi/build/model/transaction-search-view.bo";
|
|
3
|
+
import { ContentViewMode } from "../../../enum/content-view-mode.enum";
|
|
4
|
+
import { Icon } from "../../../enum/icon.enum";
|
|
5
|
+
import { IconCacheService } from "../../../service/icon-cache.service";
|
|
6
|
+
import { TransactionSearchService } from "../service/transaction-search.service";
|
|
7
|
+
export declare class TransactionSearchResultComponent implements OnInit {
|
|
8
|
+
searchService: TransactionSearchService;
|
|
9
|
+
iconCacheService: IconCacheService;
|
|
10
|
+
readonly icon: typeof Icon;
|
|
11
|
+
readonly viewModes: typeof ContentViewMode;
|
|
12
|
+
filterButtonClick: EventEmitter<void>;
|
|
13
|
+
transactionClick: EventEmitter<TransactionSearchView>;
|
|
14
|
+
showClass(): boolean;
|
|
15
|
+
activeViewMode: ContentViewMode;
|
|
16
|
+
constructor(searchService: TransactionSearchService, iconCacheService: IconCacheService);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
onTransactionClick(transaction: TransactionSearchView): void;
|
|
19
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { TransactionSearchView } from "@colijnit/transactionapi/build/model/transaction-search-view.bo";
|
|
3
|
+
export declare class TransactionSearchComponent {
|
|
4
|
+
transactionClick: EventEmitter<TransactionSearchView>;
|
|
5
|
+
showClass(): boolean;
|
|
6
|
+
showFilterSidebar: boolean;
|
|
7
|
+
constructor();
|
|
8
|
+
handleShowFilter(): void;
|
|
9
|
+
handleHideFilter(): void;
|
|
10
|
+
handleResetFilter(): void;
|
|
11
|
+
onTransactionClick(transaction: TransactionSearchView): void;
|
|
12
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('co-transaction-tile-layout') {
|
|
4
|
+
.co-transaction-tile {
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-direction: column;
|
|
7
|
+
justify-content: space-between;
|
|
8
|
+
height: $tp-transaction-tile-height;
|
|
9
|
+
width: $tp-transaction-tile-width;
|
|
10
|
+
border-radius: $tp-tile-border-radius;
|
|
11
|
+
padding: $tp-transaction-tile-padding;
|
|
12
|
+
row-gap: $tp-transaction-tile-row-gap;
|
|
13
|
+
|
|
14
|
+
font-family: $tp-transaction-tile-font-family;
|
|
15
|
+
font-size: $tp-transaction-tile-font-size;
|
|
16
|
+
|
|
17
|
+
.transaction-tile-wrapper {
|
|
18
|
+
cursor: pointer;
|
|
19
|
+
width: $tp-transaction-tiles-wrapper-width;
|
|
20
|
+
height: $tp-transaction-tiles-wrapper-height;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.header {
|
|
24
|
+
font-weight: $tp-transaction-tile-header-font-weight;
|
|
25
|
+
font-size: $tp-transaction-tile-header-font-size;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.transaction-tile-body {
|
|
29
|
+
display: flex;
|
|
30
|
+
justify-content: space-between;
|
|
31
|
+
column-gap: $tp-transaction-tile-column-gap;
|
|
32
|
+
|
|
33
|
+
co-avatar {
|
|
34
|
+
width: $tp-transaction-tile-avatar-width;
|
|
35
|
+
height: $tp-transaction-tile-avatar-height;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.transaction-tile-seller-info {
|
|
39
|
+
display: flex;
|
|
40
|
+
flex-direction: column;
|
|
41
|
+
row-gap: $tp-transaction-tile-row-gap;
|
|
42
|
+
max-width: 50%;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.transaction-tile-order-summary {
|
|
46
|
+
display: flex;
|
|
47
|
+
flex-direction: column;
|
|
48
|
+
align-items: flex-end;
|
|
49
|
+
|
|
50
|
+
co-button {
|
|
51
|
+
font-weight: $tp-transaction-tile-button-font-weight;
|
|
52
|
+
margin-top: $tp-transaction-tile-button-margin-top;
|
|
53
|
+
border-radius: $tp-transaction-tile-button-border-radius;
|
|
54
|
+
height: $tp-transaction-tile-button-height;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.transaction-tile-footer {
|
|
60
|
+
display: flex;
|
|
61
|
+
justify-content: space-between;
|
|
62
|
+
padding: $tp-transaction-tile-padding 0;
|
|
63
|
+
|
|
64
|
+
.order-info-section {
|
|
65
|
+
width: 100%;
|
|
66
|
+
display: flex;
|
|
67
|
+
flex-direction: column;
|
|
68
|
+
align-items: center;
|
|
69
|
+
|
|
70
|
+
.label {
|
|
71
|
+
font-size: $tp-transaction-tile-font-size-small;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.value {
|
|
75
|
+
display: flex;
|
|
76
|
+
flex-direction: row;
|
|
77
|
+
align-items: flex-end;
|
|
78
|
+
min-width: fit-content;
|
|
79
|
+
font-size: $tp-transaction-tile-font-size-small;
|
|
80
|
+
height: $tp-transaction-tile-value-height;
|
|
81
|
+
|
|
82
|
+
co-icon {
|
|
83
|
+
height: $tp-transaction-tile-icon-height;
|
|
84
|
+
width: $tp-transaction-tile-icon-width;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
File without changes
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('co-transaction-tile-theme') {
|
|
4
|
+
.co-transaction-tile {
|
|
5
|
+
background-color: $tp-tile-background-color;
|
|
6
|
+
border: 1px solid $tp-tile-border-color;
|
|
7
|
+
|
|
8
|
+
.header {
|
|
9
|
+
color: $tp-transaction-tile-header-font-color;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.text {
|
|
13
|
+
color: $tp-transaction-tile-font-color;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.transaction-tile-order-summary {
|
|
17
|
+
co-button {
|
|
18
|
+
background-color: $tp-transaction-tile-button-color;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.transaction-tile-footer {
|
|
24
|
+
.order-info-section {
|
|
25
|
+
&:not(:last-child) {
|
|
26
|
+
border-right: 1px solid $tp-color-border;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.label {
|
|
30
|
+
color: $tp-transaction-tile-font-color;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.value {
|
|
34
|
+
color: $tp-transaction-tile-font-color-dark;
|
|
35
|
+
|
|
36
|
+
.lock-icon [fill] {
|
|
37
|
+
fill: $tp-transaction-tile-icon-active-color;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.unlock-icon [fill] {
|
|
41
|
+
fill: $tp-transaction-tile-icon-inactive-color;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { TransactionSearchView } from "@colijnit/transactionapi/build/model/transaction-search-view.bo";
|
|
3
|
+
import { Icon } from "../../../enum/icon.enum";
|
|
4
|
+
import { IconCacheService } from "../../../service/icon-cache.service";
|
|
5
|
+
export declare class TransactionTileComponent {
|
|
6
|
+
iconCacheService: IconCacheService;
|
|
7
|
+
readonly icons: typeof Icon;
|
|
8
|
+
transaction: TransactionSearchView;
|
|
9
|
+
tileClick: EventEmitter<MouseEvent>;
|
|
10
|
+
showClass(): boolean;
|
|
11
|
+
constructor(iconCacheService: IconCacheService);
|
|
12
|
+
onTileClick(event: MouseEvent): void;
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
@import "../../../style/variables";
|
|
2
|
+
@import "./material-definition";
|
|
3
|
+
@import "./layout";
|
|
4
|
+
@import "./theme";
|
|
5
|
+
@import "../../../component/transaction-line/style/material";
|
|
6
|
+
@import "../../shared/transaction-article-text/style/material";
|
|
7
|
+
@import "../../shared/transaction-article-text-overview/style/material";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter, QueryList } from "@angular/core";
|
|
2
|
+
import { ColumnAlign, SimpleGridColumnDirective } from "@colijnit/corecomponents_v12";
|
|
3
|
+
import { TransactionSearchView } from "@colijnit/transactionapi/build/model/transaction-search-view.bo";
|
|
4
|
+
export declare class TransactionSearchGridComponent {
|
|
5
|
+
readonly align: typeof ColumnAlign;
|
|
6
|
+
set content(columnComponents: QueryList<SimpleGridColumnDirective>);
|
|
7
|
+
showClass(): boolean;
|
|
8
|
+
transactions: TransactionSearchView[];
|
|
9
|
+
transactionClick: EventEmitter<TransactionSearchView>;
|
|
10
|
+
extraColumns: SimpleGridColumnDirective[];
|
|
11
|
+
constructor();
|
|
12
|
+
onTransactionClick(transaction: any): void;
|
|
13
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
@import "../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('co-view-mode-buttons-layout') {
|
|
4
|
+
.co-view-mode-buttons {
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-direction: row;
|
|
7
|
+
justify-content: flex-end;
|
|
8
|
+
align-items: center;
|
|
9
|
+
.view-button {
|
|
10
|
+
justify-content: center;
|
|
11
|
+
padding: 0;
|
|
12
|
+
height: $tp-transaction-view-mode-button-size;
|
|
13
|
+
width: $tp-transaction-view-mode-button-size;
|
|
14
|
+
border-radius: $tp-transaction-view-mode-button-border-radius;
|
|
15
|
+
&:not(.circle) {
|
|
16
|
+
padding: 0;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
$tp-transaction-view-mode-button-size: 30px !default;
|
|
2
|
+
$tp-transaction-view-mode-button-background-color: $tp-color-dark !default;
|
|
3
|
+
$tp-transaction-view-mode-button-selected-background-color: $tp-color-action !default;
|
|
4
|
+
$tp-transaction-view-mode-button-background-color-hover: $tp-color-light !default;
|
|
5
|
+
$tp-transaction-view-mode-button-border-radius: 3px !default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
@import "../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('co-view-mode-buttons-theme') {
|
|
4
|
+
.co-view-mode-buttons {
|
|
5
|
+
.view-button {
|
|
6
|
+
[fill] {
|
|
7
|
+
fill: $tp-transaction-view-mode-button-background-color;
|
|
8
|
+
}
|
|
9
|
+
&:hover {
|
|
10
|
+
[fill] {
|
|
11
|
+
fill: $tp-transaction-view-mode-button-background-color-hover;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
&.selected {
|
|
15
|
+
background-color: $tp-transaction-view-mode-button-selected-background-color;
|
|
16
|
+
[fill] {
|
|
17
|
+
fill: $tp-transaction-view-mode-button-background-color-hover;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from "@angular/core";
|
|
2
|
+
import { ContentViewMode } from "../../enum/content-view-mode.enum";
|
|
3
|
+
import { Icon } from "../../enum/icon.enum";
|
|
4
|
+
import { IconCacheService } from "../../service/icon-cache.service";
|
|
5
|
+
export declare class ViewModeButtonsComponent implements OnInit {
|
|
6
|
+
iconCacheService: IconCacheService;
|
|
7
|
+
readonly icons: typeof Icon;
|
|
8
|
+
readonly viewModes: typeof ContentViewMode;
|
|
9
|
+
showViewModes: ContentViewMode[];
|
|
10
|
+
viewModeChange: EventEmitter<ContentViewMode>;
|
|
11
|
+
showClass(): boolean;
|
|
12
|
+
set activeViewMode(value: ContentViewMode);
|
|
13
|
+
get activeViewMode(): ContentViewMode;
|
|
14
|
+
private _activeViewMode;
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
constructor(iconCacheService: IconCacheService);
|
|
17
|
+
}
|
package/lib/enum/icon.enum.d.ts
CHANGED
|
@@ -3,24 +3,41 @@ export declare enum Icon {
|
|
|
3
3
|
ArrowPointDown = "arrow_point_down",
|
|
4
4
|
ArrowPointLeft = "arrow_point_left",
|
|
5
5
|
ArrowPointRight = "arrow_point_right",
|
|
6
|
+
Article = "article",
|
|
6
7
|
Barcode = "barcode",
|
|
8
|
+
BarcodeSolid = "barcode_solid",
|
|
9
|
+
BarsFilter = "bars_filter",
|
|
7
10
|
CalendarDay = "calendar_day",
|
|
8
11
|
Cancel = "cancel",
|
|
12
|
+
CartFlatbedBoxesSolid = "cart_flatbed_boxes_solid",
|
|
13
|
+
CartShoppingSolid = "cart_shopping_solid",
|
|
9
14
|
CashRegister = "cash_register",
|
|
10
15
|
DeliveryTruck = "delivery_truck",
|
|
11
16
|
EditPencil = "edit_pencil",
|
|
12
17
|
IdealLogo = "ideal_logo",
|
|
18
|
+
ListView = "list_view",
|
|
19
|
+
LocationDotSolid = "location_dot_solid",
|
|
20
|
+
Lock = "lock",
|
|
13
21
|
MapMarker = "map_marker",
|
|
14
22
|
MasterDetail = "master_detail",
|
|
23
|
+
MemoCircleCheckSolid = "memo_circle_check_solid",
|
|
15
24
|
Menu = "menu",
|
|
25
|
+
PalletBoxesSolid = "pallet_boxes_solid",
|
|
16
26
|
PlusRound = "plus_round",
|
|
27
|
+
Purchase = "purchase",
|
|
28
|
+
ShelvesSolid = "shelves_solid",
|
|
17
29
|
SidePanel = "side_panel",
|
|
30
|
+
SyncAlt = "sync_alt",
|
|
18
31
|
Tag = "tag",
|
|
19
32
|
ThickLines = "thick_lines",
|
|
20
33
|
ThinLines = "thin_lines",
|
|
34
|
+
TrashBin = "trash_bin",
|
|
21
35
|
TriangleDown = "triangle_down",
|
|
22
36
|
TriangleUp = "triangle_up",
|
|
23
37
|
Truck = "truck",
|
|
38
|
+
TruckArrowRightSolid = "truck_arrow_right_solid",
|
|
39
|
+
TruckContainerSolid = "truck_container_solid",
|
|
24
40
|
Txt = "txt",
|
|
41
|
+
Unlock = "unlock",
|
|
25
42
|
Warehouse = "warehouse"
|
|
26
43
|
}
|