@colijnit/transaction 12.1.18 → 12.1.21
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 +4283 -2304
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +158 -127
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/colijnit-transaction.js +159 -128
- package/esm2015/lib/assets/dictionary/text.properties.js +62 -1
- package/esm2015/lib/component/checkout/checkout.component.js +15 -13
- package/esm2015/lib/component/core/base/components/default-ok-cancel-buttons/default-ok-cancel-buttons.component.js +41 -0
- package/esm2015/lib/component/core/base/components/default-ok-cancel-buttons/default-ok-cancel-buttons.module.js +21 -0
- package/esm2015/lib/component/core/base/transaction-filter-base.component.js +61 -0
- package/esm2015/lib/component/core/base/transaction-filter-content-base.component.js +42 -0
- package/esm2015/lib/component/core/base/transaction-search-grid-base.component.js +25 -0
- package/esm2015/lib/component/core/base/transaction-search-tile-base.component.js +28 -0
- package/esm2015/lib/component/core/core.module.js +6 -3
- package/esm2015/lib/component/core/loader.component.js +44 -0
- package/esm2015/lib/component/editable-label/editable-label.component.js +60 -0
- package/esm2015/lib/component/editable-label/editable-label.module.js +21 -0
- package/esm2015/lib/component/payment/payment.component.js +25 -8
- package/esm2015/lib/component/payment/payment.module.js +4 -2
- package/esm2015/lib/component/payment-qr-code/payment-qr-code.component.js +42 -0
- package/esm2015/lib/component/payment-qr-code/payment-qr-code.module.js +21 -0
- package/esm2015/lib/component/shared/transaction-article-text/transaction-article-text.component.js +1 -2
- package/esm2015/lib/component/transaction/transaction.component.js +2 -1
- package/esm2015/lib/component/transaction-confirmation-details/transaction-confirmation-details.component.js +97 -0
- package/esm2015/lib/component/transaction-confirmation-details/transaction-confirmation-details.module.js +33 -0
- package/esm2015/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.js +43 -7
- package/esm2015/lib/component/transaction-confirmation-history/transaction-confirmation-history.module.js +8 -3
- package/esm2015/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.component.js +5 -2
- package/esm2015/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.module.js +3 -1
- package/esm2015/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.component.js +3 -3
- package/esm2015/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.js +15 -4
- package/esm2015/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.module.js +4 -3
- package/esm2015/lib/component/transaction-line/transaction-line.component.js +48 -137
- package/esm2015/lib/component/transaction-line/transaction-line.module.js +10 -3
- package/esm2015/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.component.js +170 -0
- package/esm2015/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.module.js +30 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-commission-code.component.js +2 -1
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-date.component.js +2 -1
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-method.component.js +2 -1
- package/esm2015/lib/component/transaction-line-fields/transaction-line-discount-amount.component.js +3 -2
- package/esm2015/lib/component/transaction-line-fields/transaction-line-fields-base.component.js +7 -1
- package/esm2015/lib/component/transaction-line-fields/transaction-line-line-discount.component.js +3 -2
- package/esm2015/lib/component/transaction-line-fields/transaction-line-price-list.component.js +2 -1
- package/esm2015/lib/component/transaction-line-fields/transaction-line-price.component.js +36 -6
- package/esm2015/lib/component/transaction-line-fields/transaction-line-quantity.component.js +2 -2
- package/esm2015/lib/component/transaction-line-fields/transaction-line-quantum-discount.component.js +3 -2
- package/esm2015/lib/component/transaction-line-fields/transaction-line-reference.component.js +2 -1
- package/esm2015/lib/component/transaction-line-fields/transaction-line-special-discount.component.js +3 -2
- package/esm2015/lib/component/transaction-line-fields/transaction-line-vat.component.js +2 -1
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse.component.js +2 -1
- package/esm2015/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.js +3 -1
- package/esm2015/lib/component/transaction-line-side-panel/transaction-line-side-panel.module.js +5 -2
- package/esm2015/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.component.js +25 -17
- package/esm2015/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.js +9 -2
- package/esm2015/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.module.js +4 -2
- package/esm2015/lib/component/transaction-receiving-goods-details/transaction-receiving-goods-details.component.js +18 -9
- package/esm2015/lib/component/transaction-search/service/filter-request.service.js +77 -7
- package/esm2015/lib/component/transaction-search/service/transaction-search.service.js +40 -4
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-filter/transaction-filter.component.js +95 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-filter/transaction-filter.module.js +19 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/transaction-purchase-order-filter.component.js +56 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/transaction-purchase-order-filter.module.js +34 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/transaction-sales-order-filter.component.js +56 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/transaction-sales-order-filter.module.js +34 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/transaction-purchase-order-filter-content-article.component.js +137 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/transaction-purchase-order-filter-content-article.module.js +25 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/transaction-purchase-order-filter-content-logistics.component.js +224 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/transaction-purchase-order-filter-content-logistics.module.js +31 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/transaction-purchase-order-filter-content-order.component.js +230 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/transaction-purchase-order-filter-content-order.module.js +30 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/transaction-sales-order-filter-content-article.component.js +139 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/transaction-sales-order-filter-content-article.module.js +25 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/transaction-sales-order-filter-content-logistics.component.js +224 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/transaction-sales-order-filter-content-logistics.module.js +31 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.component.js +255 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.module.js +30 -0
- package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/transaction-search-grid.component.js +81 -0
- package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/transaction-search-grid.module.js +19 -0
- package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.component.js +78 -0
- package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.module.js +24 -0
- package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.component.js +78 -0
- package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.module.js +26 -0
- package/esm2015/lib/component/transaction-search/transaction-search-header/transaction-search-header.component.js +113 -0
- package/esm2015/lib/component/transaction-search/transaction-search-header/transaction-search-header.module.js +26 -0
- package/esm2015/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.js +61 -26
- package/esm2015/lib/component/transaction-search/transaction-search-result/transaction-search-result.module.js +19 -6
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.component.js +58 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.module.js +25 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.component.js +66 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.module.js +28 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/transaction-search-tile.component.js +89 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/transaction-search-tile.module.js +19 -0
- package/esm2015/lib/component/transaction-search/transaction-search.component.js +54 -12
- package/esm2015/lib/component/transaction-search/transaction-search.module.js +6 -2
- package/esm2015/lib/enum/direction.enum.js +9 -0
- package/esm2015/lib/enum/icon.enum.js +7 -1
- package/esm2015/lib/enum/search-view-mode.enum.js +7 -0
- package/esm2015/lib/model/icon-svg.js +7 -1
- package/esm2015/lib/model/transaction-search-result.js +3 -0
- package/esm2015/lib/service/payment.service.js +13 -3
- package/esm2015/lib/service/transaction-connector.service.js +156 -38
- package/esm2015/lib/service/transaction-mapping.service.js +58 -1
- package/esm2015/lib/service/transaction.service.js +14 -2
- package/esm2015/public_api.js +5 -1
- package/fesm2015/colijnit-transaction.js +4463 -2001
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/checkout/checkout.component.d.ts +1 -1
- package/lib/component/core/base/components/default-ok-cancel-buttons/default-ok-cancel-buttons.component.d.ts +13 -0
- package/lib/component/core/base/components/default-ok-cancel-buttons/default-ok-cancel-buttons.module.d.ts +2 -0
- package/lib/component/core/base/{style → components/default-ok-cancel-buttons/style}/_layout.scss +4 -0
- package/lib/component/core/base/{style → components/default-ok-cancel-buttons/style}/_material-definition.scss +0 -0
- package/lib/component/core/base/{style → components/default-ok-cancel-buttons/style}/_theme.scss +0 -0
- package/lib/component/core/base/{style → components/default-ok-cancel-buttons/style}/material.scss +0 -0
- package/lib/component/{transaction-search/transaction-filter/transaction-filter.component.d.ts → core/base/transaction-filter-base.component.d.ts} +8 -3
- package/lib/component/core/base/transaction-filter-content-base.component.d.ts +22 -0
- package/lib/component/{transaction-search-grid/transaction-search-grid.component.d.ts → core/base/transaction-search-grid-base.component.d.ts} +1 -3
- package/lib/component/{transaction-search/transaction-tile/transaction-tile.component.d.ts → core/base/transaction-search-tile-base.component.d.ts} +3 -3
- package/lib/component/core/loader.component.d.ts +2 -0
- package/lib/component/editable-label/editable-label.component.d.ts +15 -0
- package/lib/component/editable-label/editable-label.module.d.ts +2 -0
- package/lib/component/editable-label/style/_layout.scss +4 -0
- package/lib/component/{transaction-search/transaction-filter-content-logistics → editable-label}/style/_material-definition.scss +0 -0
- package/lib/component/editable-label/style/_theme.scss +4 -0
- package/lib/component/editable-label/style/material.scss +4 -0
- package/lib/component/payment/payment.component.d.ts +5 -1
- package/lib/component/payment/style/material.scss +1 -0
- package/lib/component/payment-qr-code/payment-qr-code.component.d.ts +13 -0
- package/lib/component/payment-qr-code/payment-qr-code.module.d.ts +2 -0
- package/lib/component/payment-qr-code/style/_layout.scss +15 -0
- package/lib/component/{transaction-search/transaction-tile → payment-qr-code}/style/_material-definition.scss +0 -0
- package/lib/component/payment-qr-code/style/_theme.scss +4 -0
- package/lib/component/payment-qr-code/style/material.scss +4 -0
- package/lib/component/tile/style/_material-definition.scss +2 -1
- package/lib/component/transaction/style/_layout.scss +1 -0
- package/lib/component/transaction-confirmation-details/style/_layout.scss +75 -0
- package/lib/component/transaction-confirmation-details/style/_material-definition.scss +5 -0
- package/lib/component/transaction-confirmation-details/style/_theme.scss +7 -0
- package/lib/component/{transaction-search/transaction-filter-content-order → transaction-confirmation-details}/style/material.scss +1 -1
- package/lib/component/transaction-confirmation-details/transaction-confirmation-details.component.d.ts +20 -0
- package/lib/component/transaction-confirmation-details/transaction-confirmation-details.module.d.ts +2 -0
- package/lib/component/transaction-confirmation-history/style/_layout.scss +4 -1
- package/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.d.ts +22 -2
- package/lib/component/transaction-grid/transaction-base-grid/style/_layout.scss +4 -0
- package/lib/component/transaction-header/transaction-header/style/_layout.scss +8 -19
- package/lib/component/transaction-header/transaction-header-payment/style/_layout.scss +5 -0
- package/lib/component/transaction-header/transaction-header-payment/style/_material-definition.scss +5 -2
- package/lib/component/transaction-header/transaction-header-payment/style/_theme.scss +1 -0
- package/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.d.ts +7 -0
- package/lib/component/transaction-line/style/_layout.scss +95 -75
- package/lib/component/transaction-line/style/_material-definition.scss +7 -3
- package/lib/component/transaction-line/style/_theme.scss +3 -17
- package/lib/component/transaction-line/transaction-line.component.d.ts +4 -17
- package/lib/component/transaction-line-action-buttons/style/_layout.scss +106 -0
- package/lib/component/transaction-line-action-buttons/style/_material-definition.scss +7 -0
- package/lib/component/transaction-line-action-buttons/style/_theme.scss +7 -0
- package/lib/component/{transaction-search/transaction-filter-content-article → transaction-line-action-buttons}/style/material.scss +0 -1
- package/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.component.d.ts +46 -0
- package/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-fields-base.component.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-price.component.d.ts +7 -0
- package/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.d.ts +1 -0
- package/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.component.d.ts +4 -1
- package/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.d.ts +1 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/style/_layout.scss +12 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/style/_material-definition.scss +2 -0
- package/lib/component/transaction-receiving-goods-details/transaction-receiving-goods-details.component.d.ts +2 -1
- package/lib/component/transaction-search/service/filter-request.service.d.ts +67 -1
- package/lib/component/transaction-search/service/transaction-search.service.d.ts +11 -0
- package/lib/component/transaction-search/style/_layout.scss +36 -18
- package/lib/component/transaction-search/style/_material-definition.scss +70 -14
- package/lib/component/transaction-search/style/_theme.scss +4 -0
- package/lib/component/transaction-search/style/material.scss +4 -3
- package/lib/component/transaction-search/transaction-filter/transaction-filter/style/_layout.scss +55 -0
- package/lib/component/transaction-search/transaction-filter/transaction-filter/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-filter/transaction-filter/style/_theme.scss +8 -0
- package/lib/component/transaction-search/transaction-filter/transaction-filter/style/material.scss +6 -0
- package/lib/component/transaction-search/transaction-filter/transaction-filter/transaction-filter.component.d.ts +26 -0
- package/lib/component/transaction-search/transaction-filter/{transaction-filter.module.d.ts → transaction-filter/transaction-filter.module.d.ts} +0 -0
- package/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/style/_layout.scss +4 -0
- package/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/style/_theme.scss +4 -0
- package/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/style/material.scss +4 -0
- package/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/transaction-purchase-order-filter.component.d.ts +9 -0
- package/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/transaction-purchase-order-filter.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/style/_layout.scss +4 -0
- package/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/style/_theme.scss +6 -0
- package/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/style/material.scss +3 -0
- package/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/transaction-sales-order-filter.component.d.ts +9 -0
- package/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/transaction-sales-order-filter.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-filter-categories/style/_layout.scss +8 -8
- package/lib/component/transaction-search/transaction-filter-categories/style/_theme.scss +3 -3
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/style/_layout.scss +2 -0
- package/lib/component/{transaction-search-grid → transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article}/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/style/_theme.scss +4 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/style/material.scss +3 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/transaction-purchase-order-filter-content-article.component.d.ts +38 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/transaction-purchase-order-filter-content-article.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/style/_layout.scss +2 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/style/_theme.scss +4 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/style/material.scss +3 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/transaction-purchase-order-filter-content-logistics.component.d.ts +36 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/transaction-purchase-order-filter-content-logistics.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/style/_layout.scss +2 -0
- package/lib/component/transaction-search/{transaction-filter-content-article → transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order}/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/style/_theme.scss +4 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/style/material.scss +3 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/transaction-purchase-order-filter-content-order.component.d.ts +48 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/transaction-purchase-order-filter-content-order.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/style/_layout.scss +2 -0
- package/lib/component/transaction-search/{transaction-filter-content-order → transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article}/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/style/_theme.scss +4 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/style/material.scss +3 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/transaction-sales-order-filter-content-article.component.d.ts +38 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/transaction-sales-order-filter-content-article.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/style/_layout.scss +2 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/style/_theme.scss +4 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/style/material.scss +3 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/transaction-sales-order-filter-content-logistics.component.d.ts +36 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/transaction-sales-order-filter-content-logistics.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/style/_layout.scss +2 -0
- package/lib/component/transaction-search/{transaction-filter → transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order}/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/style/_theme.scss +4 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/style/material.scss +3 -0
- package/lib/component/transaction-search/{transaction-filter-content-order/transaction-filter-content-order.component.d.ts → transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.component.d.ts} +8 -15
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.module.d.ts +2 -0
- package/lib/component/transaction-search/{transaction-filter-content-order → transaction-filter-content}/style/_layout.scss +2 -4
- package/lib/component/transaction-search/transaction-filter-content/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content/style/_theme.scss +4 -0
- package/lib/component/transaction-search/transaction-filter-content/style/material.scss +3 -0
- package/lib/component/transaction-search/transaction-filter-historic-state/style/material.scss +0 -1
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/style/_layout.scss +4 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/style/_theme.scss +4 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/style/material.scss +3 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/transaction-search-grid.component.d.ts +22 -0
- package/lib/component/{transaction-search-grid → transaction-search/transaction-search-grid/transaction-search-grid}/transaction-search-grid.module.d.ts +0 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/style/_layout.scss +4 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/style/_theme.scss +4 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/style/material.scss +3 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.component.d.ts +7 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/style/_layout.scss +4 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/style/_theme.scss +4 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/style/material.scss +3 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.component.d.ts +7 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-search-header/style/_layout.scss +83 -0
- package/lib/component/transaction-search/transaction-search-header/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search/transaction-search-header/style/_theme.scss +4 -0
- package/lib/component/transaction-search/transaction-search-header/style/material.scss +5 -0
- package/lib/component/transaction-search/transaction-search-header/transaction-search-header.component.d.ts +32 -0
- package/lib/component/transaction-search/transaction-search-header/transaction-search-header.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-search-result/style/_layout.scss +8 -14
- package/lib/component/transaction-search/transaction-search-result/style/_theme.scss +1 -1
- package/lib/component/transaction-search/transaction-search-result/style/material.scss +2 -0
- package/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.d.ts +17 -6
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/style/_layout.scss +4 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/style/_theme.scss +4 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/style/material.scss +3 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.component.d.ts +3 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/style/_layout.scss +5 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/style/_theme.scss +4 -0
- package/lib/component/transaction-search/{transaction-tile → transaction-search-tile/transaction-search-sales-order-tile}/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.component.d.ts +6 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/style/_layout.scss +108 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/style/_theme.scss +53 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/style/material.scss +3 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/transaction-search-tile.component.d.ts +25 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/transaction-search-tile.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-search.component.d.ts +15 -2
- package/lib/enum/direction.enum.d.ts +6 -0
- package/lib/enum/icon.enum.d.ts +6 -0
- package/lib/enum/search-view-mode.enum.d.ts +4 -0
- package/lib/model/transaction-search-result.d.ts +5 -0
- package/lib/service/payment.service.d.ts +3 -1
- package/lib/service/transaction-connector.service.d.ts +9 -3
- package/lib/service/transaction-mapping.service.d.ts +9 -0
- package/lib/service/transaction.service.d.ts +6 -2
- package/lib/style/_mixin.scss +6 -0
- package/lib/style/_variables.scss +0 -32
- package/package.json +1 -1
- package/public_api.d.ts +4 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-filter.component.js +0 -87
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-filter.module.js +0 -34
- package/esm2015/lib/component/transaction-search/transaction-filter-content-article/transaction-filter-content-article.component.js +0 -143
- package/esm2015/lib/component/transaction-search/transaction-filter-content-article/transaction-filter-content-article.module.js +0 -25
- package/esm2015/lib/component/transaction-search/transaction-filter-content-logistics/transaction-filter-content-logistics.component.js +0 -228
- package/esm2015/lib/component/transaction-search/transaction-filter-content-logistics/transaction-filter-content-logistics.module.js +0 -31
- package/esm2015/lib/component/transaction-search/transaction-filter-content-order/transaction-filter-content-order.component.js +0 -255
- package/esm2015/lib/component/transaction-search/transaction-filter-content-order/transaction-filter-content-order.module.js +0 -30
- package/esm2015/lib/component/transaction-search/transaction-tile/transaction-tile.component.js +0 -77
- package/esm2015/lib/component/transaction-search/transaction-tile/transaction-tile.module.js +0 -28
- package/esm2015/lib/component/transaction-search-grid/transaction-search-grid.component.js +0 -86
- package/esm2015/lib/component/transaction-search-grid/transaction-search-grid.module.js +0 -26
- package/lib/component/transaction-search/transaction-filter/style/_layout.scss +0 -53
- package/lib/component/transaction-search/transaction-filter/style/_theme.scss +0 -8
- package/lib/component/transaction-search/transaction-filter/style/material.scss +0 -7
- package/lib/component/transaction-search/transaction-filter-content-article/style/_layout.scss +0 -13
- package/lib/component/transaction-search/transaction-filter-content-article/style/_theme.scss +0 -6
- package/lib/component/transaction-search/transaction-filter-content-article/transaction-filter-content-article.component.d.ts +0 -50
- package/lib/component/transaction-search/transaction-filter-content-article/transaction-filter-content-article.module.d.ts +0 -2
- package/lib/component/transaction-search/transaction-filter-content-logistics/style/_layout.scss +0 -12
- package/lib/component/transaction-search/transaction-filter-content-logistics/style/_theme.scss +0 -6
- package/lib/component/transaction-search/transaction-filter-content-logistics/style/material.scss +0 -5
- package/lib/component/transaction-search/transaction-filter-content-logistics/transaction-filter-content-logistics.component.d.ts +0 -37
- package/lib/component/transaction-search/transaction-filter-content-logistics/transaction-filter-content-logistics.module.d.ts +0 -2
- package/lib/component/transaction-search/transaction-filter-content-order/style/_theme.scss +0 -6
- package/lib/component/transaction-search/transaction-filter-content-order/transaction-filter-content-order.module.d.ts +0 -2
- package/lib/component/transaction-search/transaction-tile/style/_layout.scss +0 -91
- package/lib/component/transaction-search/transaction-tile/style/_theme.scss +0 -46
- package/lib/component/transaction-search/transaction-tile/transaction-tile.module.d.ts +0 -2
- package/lib/component/transaction-search-grid/style/_layout.scss +0 -6
- package/lib/component/transaction-search-grid/style/_theme.scss +0 -6
- package/lib/component/transaction-search-grid/style/material.scss +0 -7
|
@@ -1,62 +1,97 @@
|
|
|
1
|
-
import { Component, EventEmitter, HostBinding, Output, ViewEncapsulation } from "@angular/core";
|
|
1
|
+
import { Component, EventEmitter, HostBinding, Input, Output, ViewEncapsulation } from "@angular/core";
|
|
2
2
|
import { ContentViewMode } from "../../../enum/content-view-mode.enum";
|
|
3
3
|
import { Icon } from "../../../enum/icon.enum";
|
|
4
|
-
import {
|
|
4
|
+
import { SearchViewMode } from "../../../enum/search-view-mode.enum";
|
|
5
5
|
import { TransactionSearchService } from "../service/transaction-search.service";
|
|
6
6
|
export class TransactionSearchResultComponent {
|
|
7
|
-
constructor(searchService
|
|
7
|
+
constructor(searchService) {
|
|
8
8
|
this.searchService = searchService;
|
|
9
|
-
this.iconCacheService = iconCacheService;
|
|
10
9
|
this.icon = Icon;
|
|
11
|
-
this.
|
|
12
|
-
this.
|
|
10
|
+
this.contentViewModes = ContentViewMode;
|
|
11
|
+
this.searchViewModes = SearchViewMode;
|
|
12
|
+
this.activeSearchViewMode = this.searchViewModes.FullScreen;
|
|
13
|
+
this.filterClick = new EventEmitter();
|
|
13
14
|
this.transactionClick = new EventEmitter();
|
|
14
|
-
this.
|
|
15
|
+
this.resizeClick = new EventEmitter();
|
|
16
|
+
this.closeClick = new EventEmitter();
|
|
17
|
+
this.activeContentViewMode = ContentViewMode.Tiles;
|
|
15
18
|
}
|
|
16
19
|
showClass() {
|
|
17
20
|
return true;
|
|
18
21
|
}
|
|
19
22
|
ngOnInit() {
|
|
20
23
|
}
|
|
24
|
+
get fullscreen() {
|
|
25
|
+
return this.activeSearchViewMode === SearchViewMode.FullScreen;
|
|
26
|
+
}
|
|
21
27
|
onTransactionClick(transaction) {
|
|
28
|
+
this.selectedTransaction = transaction;
|
|
22
29
|
this.transactionClick.emit(transaction);
|
|
23
30
|
}
|
|
31
|
+
onResizeClick() {
|
|
32
|
+
this.activeContentViewMode = this.contentViewModes.Tiles;
|
|
33
|
+
this.resizeClick.emit();
|
|
34
|
+
}
|
|
35
|
+
onCloseClick() {
|
|
36
|
+
this.closeClick.emit();
|
|
37
|
+
}
|
|
38
|
+
onFilterClick() {
|
|
39
|
+
this.filterClick.emit();
|
|
40
|
+
}
|
|
41
|
+
onPaginationPageChange(pageNr) {
|
|
42
|
+
this.searchService.showcasePage = pageNr;
|
|
43
|
+
}
|
|
24
44
|
}
|
|
25
45
|
TransactionSearchResultComponent.decorators = [
|
|
26
46
|
{ type: Component, args: [{
|
|
27
47
|
selector: 'co-transaction-search-result',
|
|
28
48
|
template: `
|
|
29
49
|
<div class="transaction-search-header-wrapper">
|
|
30
|
-
<co-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
50
|
+
<co-transaction-search-header
|
|
51
|
+
[transactionType]="transactionType"
|
|
52
|
+
[activeSearchViewMode]="activeSearchViewMode"
|
|
53
|
+
[activeContentViewMode]="activeContentViewMode"
|
|
54
|
+
(viewModeChange)="activeContentViewMode = $event"
|
|
55
|
+
(resizeClick)="onResizeClick()"
|
|
56
|
+
(filterButtonClick)="onFilterClick()"
|
|
57
|
+
(closeClick)="onCloseClick()">
|
|
58
|
+
</co-transaction-search-header>
|
|
36
59
|
</div>
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
<div class="transaction-tile" *ngFor="let transaction of searchService.transactions
|
|
41
|
-
|
|
42
|
-
|
|
60
|
+
|
|
61
|
+
<div class="transaction-search-result-content-tiles-wrapper" [ngClass]="fullscreen ? 'fullscreen' : 'sidebar'"
|
|
62
|
+
*ngIf="activeContentViewMode === contentViewModes.Tiles">
|
|
63
|
+
<div class="transaction-tile" *ngFor="let transaction of searchService.transactions | paginate:
|
|
64
|
+
{itemsPerPage: searchService.transactionsPerPage, currentPage: searchService.showcasePage, totalItems: searchService.resultCount}">
|
|
65
|
+
<co-transaction-search-tile
|
|
66
|
+
[transaction]="transaction"
|
|
67
|
+
[transactionType]="transactionType"
|
|
68
|
+
[class]="transaction === selectedTransaction ? 'selected' : ''"
|
|
69
|
+
(transactionClick)="onTransactionClick($event)">
|
|
70
|
+
</co-transaction-search-tile>
|
|
43
71
|
</div>
|
|
72
|
+
<co-pagination [previousLabel]="'PREVIOUS' | localize" [nextLabel]="'NEXT' | localize"
|
|
73
|
+
(pageChange)="onPaginationPageChange($event)"></co-pagination>
|
|
44
74
|
</div>
|
|
45
|
-
<div class="transaction-search-result-content-grid-wrapper" *ngIf="
|
|
46
|
-
<co-transaction-search-grid
|
|
47
|
-
|
|
75
|
+
<div class="transaction-search-result-content-grid-wrapper" *ngIf="activeContentViewMode === contentViewModes.Grid">
|
|
76
|
+
<co-transaction-search-grid
|
|
77
|
+
[transactionType]="transactionType"
|
|
78
|
+
(transactionClick)="onTransactionClick($event)"
|
|
79
|
+
></co-transaction-search-grid>
|
|
48
80
|
</div>
|
|
49
81
|
`,
|
|
50
82
|
encapsulation: ViewEncapsulation.None
|
|
51
83
|
},] }
|
|
52
84
|
];
|
|
53
85
|
TransactionSearchResultComponent.ctorParameters = () => [
|
|
54
|
-
{ type: TransactionSearchService }
|
|
55
|
-
{ type: IconCacheService }
|
|
86
|
+
{ type: TransactionSearchService }
|
|
56
87
|
];
|
|
57
88
|
TransactionSearchResultComponent.propDecorators = {
|
|
58
|
-
|
|
89
|
+
transactionType: [{ type: Input }],
|
|
90
|
+
activeSearchViewMode: [{ type: Input }],
|
|
91
|
+
filterClick: [{ type: Output }],
|
|
59
92
|
transactionClick: [{ type: Output }],
|
|
93
|
+
resizeClick: [{ type: Output }],
|
|
94
|
+
closeClick: [{ type: Output }],
|
|
60
95
|
showClass: [{ type: HostBinding, args: ["class.co-transaction-search-result",] }]
|
|
61
96
|
};
|
|
62
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
97
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2VhcmNoLXJlc3VsdC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2NvbXBvbmVudC90cmFuc2FjdGlvbi1zZWFyY2gvdHJhbnNhY3Rpb24tc2VhcmNoLXJlc3VsdC90cmFuc2FjdGlvbi1zZWFyY2gtcmVzdWx0LmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxXQUFXLEVBQUUsS0FBSyxFQUFVLE1BQU0sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUcvRyxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sc0NBQXNDLENBQUM7QUFDdkUsT0FBTyxFQUFFLElBQUksRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQy9DLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQUNyRSxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSx1Q0FBdUMsQ0FBQztBQXdDakYsTUFBTSxPQUFPLGdDQUFnQztJQWdDM0MsWUFDUyxhQUF1QztRQUF2QyxrQkFBYSxHQUFiLGFBQWEsQ0FBMEI7UUFoQ2hDLFNBQUksR0FBZ0IsSUFBSSxDQUFDO1FBQ3pCLHFCQUFnQixHQUEyQixlQUFlLENBQUM7UUFDM0Qsb0JBQWUsR0FBMEIsY0FBYyxDQUFDO1FBUWpFLHlCQUFvQixHQUFtQixJQUFJLENBQUMsZUFBZSxDQUFDLFVBQVUsQ0FBQztRQUd2RSxnQkFBVyxHQUF1QixJQUFJLFlBQVksRUFBUSxDQUFDO1FBRzNELHFCQUFnQixHQUF3QyxJQUFJLFlBQVksRUFBeUIsQ0FBQztRQUdsRyxnQkFBVyxHQUF1QixJQUFJLFlBQVksRUFBUSxDQUFDO1FBRzNELGVBQVUsR0FBdUIsSUFBSSxZQUFZLEVBQVEsQ0FBQztRQU8xRCwwQkFBcUIsR0FBb0IsZUFBZSxDQUFDLEtBQUssQ0FBQztJQUt0RSxDQUFDO0lBVE0sU0FBUztRQUNkLE9BQU8sSUFBSSxDQUFDO0lBQ2QsQ0FBQztJQVNNLFFBQVE7SUFDZixDQUFDO0lBRUQsSUFBVyxVQUFVO1FBQ25CLE9BQU8sSUFBSSxDQUFDLG9CQUFvQixLQUFLLGNBQWMsQ0FBQyxVQUFVLENBQUM7SUFDakUsQ0FBQztJQUVNLGtCQUFrQixDQUFDLFdBQWtDO1FBQzFELElBQUksQ0FBQyxtQkFBbUIsR0FBRyxXQUFXLENBQUM7UUFDdkMsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQztJQUMxQyxDQUFDO0lBRU0sYUFBYTtRQUNsQixJQUFJLENBQUMscUJBQXFCLEdBQUcsSUFBSSxDQUFDLGdCQUFnQixDQUFDLEtBQUssQ0FBQztRQUN6RCxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksRUFBRSxDQUFDO0lBQzFCLENBQUM7SUFFTSxZQUFZO1FBQ2pCLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxFQUFFLENBQUM7SUFDekIsQ0FBQztJQUVNLGFBQWE7UUFDbEIsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLEVBQUUsQ0FBQztJQUMxQixDQUFDO0lBRU0sc0JBQXNCLENBQUMsTUFBYztRQUMxQyxJQUFJLENBQUMsYUFBYSxDQUFDLFlBQVksR0FBRyxNQUFNLENBQUM7SUFDM0MsQ0FBQzs7O1lBdEdGLFNBQVMsU0FBQztnQkFDVCxRQUFRLEVBQUUsOEJBQThCO2dCQUN4QyxRQUFRLEVBQUU7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztHQWlDVDtnQkFDRCxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTthQUN0Qzs7O1lBdkNRLHdCQUF3Qjs7OzhCQStDOUIsS0FBSzttQ0FHTCxLQUFLOzBCQUdMLE1BQU07K0JBR04sTUFBTTswQkFHTixNQUFNO3lCQUdOLE1BQU07d0JBR04sV0FBVyxTQUFDLG9DQUFvQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBIb3N0QmluZGluZywgSW5wdXQsIE9uSW5pdCwgT3V0cHV0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IFRyYW5zYWN0aW9uS2luZCB9IGZyb20gXCJAY29saWpuaXQvdHJhbnNhY3Rpb25hcGkvYnVpbGQvZW51bS90cmFuc2FjdGlvbi1raW5kLmVudW1cIjtcclxuaW1wb3J0IHsgVHJhbnNhY3Rpb25TZWFyY2hWaWV3IH0gZnJvbSBcIkBjb2xpam5pdC90cmFuc2FjdGlvbmFwaS9idWlsZC9tb2RlbC90cmFuc2FjdGlvbi1zZWFyY2gtdmlldy5ib1wiO1xyXG5pbXBvcnQgeyBDb250ZW50Vmlld01vZGUgfSBmcm9tIFwiLi4vLi4vLi4vZW51bS9jb250ZW50LXZpZXctbW9kZS5lbnVtXCI7XHJcbmltcG9ydCB7IEljb24gfSBmcm9tIFwiLi4vLi4vLi4vZW51bS9pY29uLmVudW1cIjtcclxuaW1wb3J0IHsgU2VhcmNoVmlld01vZGUgfSBmcm9tIFwiLi4vLi4vLi4vZW51bS9zZWFyY2gtdmlldy1tb2RlLmVudW1cIjtcclxuaW1wb3J0IHsgVHJhbnNhY3Rpb25TZWFyY2hTZXJ2aWNlIH0gZnJvbSBcIi4uL3NlcnZpY2UvdHJhbnNhY3Rpb24tc2VhcmNoLnNlcnZpY2VcIjtcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnY28tdHJhbnNhY3Rpb24tc2VhcmNoLXJlc3VsdCcsXHJcbiAgdGVtcGxhdGU6IGBcclxuICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi1zZWFyY2gtaGVhZGVyLXdyYXBwZXJcIj5cclxuICAgICAgPGNvLXRyYW5zYWN0aW9uLXNlYXJjaC1oZWFkZXJcclxuICAgICAgICBbdHJhbnNhY3Rpb25UeXBlXT1cInRyYW5zYWN0aW9uVHlwZVwiXHJcbiAgICAgICAgW2FjdGl2ZVNlYXJjaFZpZXdNb2RlXT1cImFjdGl2ZVNlYXJjaFZpZXdNb2RlXCJcclxuICAgICAgICBbYWN0aXZlQ29udGVudFZpZXdNb2RlXT1cImFjdGl2ZUNvbnRlbnRWaWV3TW9kZVwiXHJcbiAgICAgICAgKHZpZXdNb2RlQ2hhbmdlKT1cImFjdGl2ZUNvbnRlbnRWaWV3TW9kZSA9ICRldmVudFwiXHJcbiAgICAgICAgKHJlc2l6ZUNsaWNrKT1cIm9uUmVzaXplQ2xpY2soKVwiXHJcbiAgICAgICAgKGZpbHRlckJ1dHRvbkNsaWNrKT1cIm9uRmlsdGVyQ2xpY2soKVwiXHJcbiAgICAgICAgKGNsb3NlQ2xpY2spPVwib25DbG9zZUNsaWNrKClcIj5cclxuICAgICAgPC9jby10cmFuc2FjdGlvbi1zZWFyY2gtaGVhZGVyPlxyXG4gICAgPC9kaXY+XHJcblxyXG4gICAgPGRpdiBjbGFzcz1cInRyYW5zYWN0aW9uLXNlYXJjaC1yZXN1bHQtY29udGVudC10aWxlcy13cmFwcGVyXCIgW25nQ2xhc3NdPVwiZnVsbHNjcmVlbiA/ICdmdWxsc2NyZWVuJyA6ICdzaWRlYmFyJ1wiXHJcbiAgICAgICAgICpuZ0lmPVwiYWN0aXZlQ29udGVudFZpZXdNb2RlID09PSBjb250ZW50Vmlld01vZGVzLlRpbGVzXCI+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi10aWxlXCIgKm5nRm9yPVwibGV0IHRyYW5zYWN0aW9uIG9mIHNlYXJjaFNlcnZpY2UudHJhbnNhY3Rpb25zIHwgcGFnaW5hdGU6XHJcbiAgICAgIHtpdGVtc1BlclBhZ2U6IHNlYXJjaFNlcnZpY2UudHJhbnNhY3Rpb25zUGVyUGFnZSwgY3VycmVudFBhZ2U6IHNlYXJjaFNlcnZpY2Uuc2hvd2Nhc2VQYWdlLCB0b3RhbEl0ZW1zOiBzZWFyY2hTZXJ2aWNlLnJlc3VsdENvdW50fVwiPlxyXG4gICAgICAgIDxjby10cmFuc2FjdGlvbi1zZWFyY2gtdGlsZVxyXG4gICAgICAgICAgW3RyYW5zYWN0aW9uXT1cInRyYW5zYWN0aW9uXCJcclxuICAgICAgICAgIFt0cmFuc2FjdGlvblR5cGVdPVwidHJhbnNhY3Rpb25UeXBlXCJcclxuICAgICAgICAgIFtjbGFzc109XCJ0cmFuc2FjdGlvbiA9PT0gc2VsZWN0ZWRUcmFuc2FjdGlvbiA/ICdzZWxlY3RlZCcgOiAnJ1wiXHJcbiAgICAgICAgICAodHJhbnNhY3Rpb25DbGljayk9XCJvblRyYW5zYWN0aW9uQ2xpY2soJGV2ZW50KVwiPlxyXG4gICAgICAgIDwvY28tdHJhbnNhY3Rpb24tc2VhcmNoLXRpbGU+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgICA8Y28tcGFnaW5hdGlvbiBbcHJldmlvdXNMYWJlbF09XCInUFJFVklPVVMnIHwgbG9jYWxpemVcIiBbbmV4dExhYmVsXT1cIidORVhUJyB8IGxvY2FsaXplXCJcclxuICAgICAgICAgICAgICAgICAgICAgKHBhZ2VDaGFuZ2UpPVwib25QYWdpbmF0aW9uUGFnZUNoYW5nZSgkZXZlbnQpXCI+PC9jby1wYWdpbmF0aW9uPlxyXG4gICAgPC9kaXY+XHJcbiAgICA8ZGl2IGNsYXNzPVwidHJhbnNhY3Rpb24tc2VhcmNoLXJlc3VsdC1jb250ZW50LWdyaWQtd3JhcHBlclwiICpuZ0lmPVwiYWN0aXZlQ29udGVudFZpZXdNb2RlID09PSBjb250ZW50Vmlld01vZGVzLkdyaWRcIj5cclxuICAgICAgPGNvLXRyYW5zYWN0aW9uLXNlYXJjaC1ncmlkXHJcbiAgICAgICAgW3RyYW5zYWN0aW9uVHlwZV09XCJ0cmFuc2FjdGlvblR5cGVcIlxyXG4gICAgICAgICh0cmFuc2FjdGlvbkNsaWNrKT1cIm9uVHJhbnNhY3Rpb25DbGljaygkZXZlbnQpXCJcclxuICAgICAgPjwvY28tdHJhbnNhY3Rpb24tc2VhcmNoLWdyaWQ+XHJcbiAgICA8L2Rpdj5cclxuICBgLFxyXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcclxufSlcclxuZXhwb3J0IGNsYXNzIFRyYW5zYWN0aW9uU2VhcmNoUmVzdWx0Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuICBwdWJsaWMgcmVhZG9ubHkgaWNvbjogdHlwZW9mIEljb24gPSBJY29uO1xyXG4gIHB1YmxpYyByZWFkb25seSBjb250ZW50Vmlld01vZGVzOiB0eXBlb2YgQ29udGVudFZpZXdNb2RlID0gQ29udGVudFZpZXdNb2RlO1xyXG4gIHB1YmxpYyByZWFkb25seSBzZWFyY2hWaWV3TW9kZXM6IHR5cGVvZiBTZWFyY2hWaWV3TW9kZSA9IFNlYXJjaFZpZXdNb2RlO1xyXG5cclxuICBwdWJsaWMgc2VsZWN0ZWRUcmFuc2FjdGlvbjogVHJhbnNhY3Rpb25TZWFyY2hWaWV3O1xyXG5cclxuICBASW5wdXQoKVxyXG4gIHB1YmxpYyB0cmFuc2FjdGlvblR5cGU6IFRyYW5zYWN0aW9uS2luZDtcclxuXHJcbiAgQElucHV0KClcclxuICBwdWJsaWMgYWN0aXZlU2VhcmNoVmlld01vZGU6IFNlYXJjaFZpZXdNb2RlID0gdGhpcy5zZWFyY2hWaWV3TW9kZXMuRnVsbFNjcmVlbjtcclxuXHJcbiAgQE91dHB1dCgpXHJcbiAgcHVibGljIGZpbHRlckNsaWNrOiBFdmVudEVtaXR0ZXI8dm9pZD4gPSBuZXcgRXZlbnRFbWl0dGVyPHZvaWQ+KCk7XHJcblxyXG4gIEBPdXRwdXQoKVxyXG4gIHB1YmxpYyB0cmFuc2FjdGlvbkNsaWNrOiBFdmVudEVtaXR0ZXI8VHJhbnNhY3Rpb25TZWFyY2hWaWV3PiA9IG5ldyBFdmVudEVtaXR0ZXI8VHJhbnNhY3Rpb25TZWFyY2hWaWV3PigpO1xyXG5cclxuICBAT3V0cHV0KClcclxuICBwdWJsaWMgcmVzaXplQ2xpY2s6IEV2ZW50RW1pdHRlcjx2b2lkPiA9IG5ldyBFdmVudEVtaXR0ZXI8dm9pZD4oKTtcclxuXHJcbiAgQE91dHB1dCgpXHJcbiAgcHVibGljIGNsb3NlQ2xpY2s6IEV2ZW50RW1pdHRlcjx2b2lkPiA9IG5ldyBFdmVudEVtaXR0ZXI8dm9pZD4oKTtcclxuXHJcbiAgQEhvc3RCaW5kaW5nKFwiY2xhc3MuY28tdHJhbnNhY3Rpb24tc2VhcmNoLXJlc3VsdFwiKVxyXG4gIHB1YmxpYyBzaG93Q2xhc3MoKTogYm9vbGVhbiB7XHJcbiAgICByZXR1cm4gdHJ1ZTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBhY3RpdmVDb250ZW50Vmlld01vZGU6IENvbnRlbnRWaWV3TW9kZSA9IENvbnRlbnRWaWV3TW9kZS5UaWxlcztcclxuXHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBwdWJsaWMgc2VhcmNoU2VydmljZTogVHJhbnNhY3Rpb25TZWFyY2hTZXJ2aWNlXHJcbiAgKSB7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgbmdPbkluaXQoKSB7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgZ2V0IGZ1bGxzY3JlZW4oKTogYm9vbGVhbiB7XHJcbiAgICByZXR1cm4gdGhpcy5hY3RpdmVTZWFyY2hWaWV3TW9kZSA9PT0gU2VhcmNoVmlld01vZGUuRnVsbFNjcmVlbjtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBvblRyYW5zYWN0aW9uQ2xpY2sodHJhbnNhY3Rpb246IFRyYW5zYWN0aW9uU2VhcmNoVmlldyk6IHZvaWQge1xyXG4gICAgdGhpcy5zZWxlY3RlZFRyYW5zYWN0aW9uID0gdHJhbnNhY3Rpb247XHJcbiAgICB0aGlzLnRyYW5zYWN0aW9uQ2xpY2suZW1pdCh0cmFuc2FjdGlvbik7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgb25SZXNpemVDbGljaygpOiB2b2lkIHtcclxuICAgIHRoaXMuYWN0aXZlQ29udGVudFZpZXdNb2RlID0gdGhpcy5jb250ZW50Vmlld01vZGVzLlRpbGVzO1xyXG4gICAgdGhpcy5yZXNpemVDbGljay5lbWl0KCk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgb25DbG9zZUNsaWNrKCk6IHZvaWQge1xyXG4gICAgdGhpcy5jbG9zZUNsaWNrLmVtaXQoKTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBvbkZpbHRlckNsaWNrKCk6IHZvaWQge1xyXG4gICAgdGhpcy5maWx0ZXJDbGljay5lbWl0KCk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgb25QYWdpbmF0aW9uUGFnZUNoYW5nZShwYWdlTnI6IG51bWJlcik6IHZvaWQge1xyXG4gICAgdGhpcy5zZWFyY2hTZXJ2aWNlLnNob3djYXNlUGFnZSA9IHBhZ2VOcjtcclxuICB9XHJcbn1cclxuIl19
|
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
import { NgModule } from "@angular/core";
|
|
2
2
|
import { CommonModule } from "@angular/common";
|
|
3
|
+
import { PipeModule } from "../../../pipe/pipe.module";
|
|
3
4
|
import { AvatarModule } from "../../avatar/avatar.module";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
5
|
+
import { TransactionSearchPurchaseOrderGridModule } from "../transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.module";
|
|
6
|
+
import { TransactionSearchSalesOrderGridModule } from "../transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.module";
|
|
7
|
+
import { TransactionSearchHeaderModule } from "../transaction-search-header/transaction-search-header.module";
|
|
8
|
+
import { TransactionSearchGridModule } from "../transaction-search-grid/transaction-search-grid/transaction-search-grid.module";
|
|
9
|
+
import { TransactionSearchPurchaseOrderTileModule } from "../transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.module";
|
|
10
|
+
import { TransactionSearchSalesOrderTileModule } from "../transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.module";
|
|
11
|
+
import { TransactionSearchTileModule } from "../transaction-search-tile/transaction-search-tile/transaction-search-tile.module";
|
|
6
12
|
import { TransactionSearchResultComponent } from "./transaction-search-result.component";
|
|
7
|
-
import { ButtonModule, InputSearchModule } from "@colijnit/corecomponents_v12";
|
|
13
|
+
import { ButtonModule, InputSearchModule, PaginationModule } from "@colijnit/corecomponents_v12";
|
|
8
14
|
import { ViewModeButtonsModule } from "../../view-mode-buttons/view-mode-buttons.module";
|
|
9
15
|
export class TransactionSearchResultModule {
|
|
10
16
|
}
|
|
@@ -16,8 +22,15 @@ TransactionSearchResultModule.decorators = [
|
|
|
16
22
|
ButtonModule,
|
|
17
23
|
ViewModeButtonsModule,
|
|
18
24
|
AvatarModule,
|
|
19
|
-
|
|
20
|
-
|
|
25
|
+
TransactionSearchSalesOrderTileModule,
|
|
26
|
+
TransactionSearchPurchaseOrderTileModule,
|
|
27
|
+
TransactionSearchSalesOrderGridModule,
|
|
28
|
+
TransactionSearchPurchaseOrderGridModule,
|
|
29
|
+
PipeModule,
|
|
30
|
+
TransactionSearchHeaderModule,
|
|
31
|
+
TransactionSearchGridModule,
|
|
32
|
+
TransactionSearchTileModule,
|
|
33
|
+
PaginationModule
|
|
21
34
|
],
|
|
22
35
|
declarations: [
|
|
23
36
|
TransactionSearchResultComponent
|
|
@@ -27,4 +40,4 @@ TransactionSearchResultModule.decorators = [
|
|
|
27
40
|
]
|
|
28
41
|
},] }
|
|
29
42
|
];
|
|
30
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
43
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2VhcmNoLXJlc3VsdC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2NvbXBvbmVudC90cmFuc2FjdGlvbi1zZWFyY2gvdHJhbnNhY3Rpb24tc2VhcmNoLXJlc3VsdC90cmFuc2FjdGlvbi1zZWFyY2gtcmVzdWx0Lm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFDdkQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQzFELE9BQU8sRUFDTCx3Q0FBd0MsRUFDekMsTUFBTSxpSEFBaUgsQ0FBQztBQUN6SCxPQUFPLEVBQUUscUNBQXFDLEVBQUUsTUFBTSwyR0FBMkcsQ0FBQztBQUNsSyxPQUFPLEVBQUUsNkJBQTZCLEVBQUUsTUFBTSwrREFBK0QsQ0FBQztBQUM5RyxPQUFPLEVBQ0wsMkJBQTJCLEVBQzVCLE1BQU0sbUZBQW1GLENBQUM7QUFDM0YsT0FBTyxFQUNMLHdDQUF3QyxFQUN6QyxNQUFNLGlIQUFpSCxDQUFDO0FBQ3pILE9BQU8sRUFBRSxxQ0FBcUMsRUFBRSxNQUFNLDJHQUEyRyxDQUFDO0FBQ2xLLE9BQU8sRUFDTCwyQkFBMkIsRUFDNUIsTUFBTSxtRkFBbUYsQ0FBQztBQUMzRixPQUFPLEVBQUMsZ0NBQWdDLEVBQUMsTUFBTSx1Q0FBdUMsQ0FBQztBQUN2RixPQUFPLEVBQUMsWUFBWSxFQUFFLGlCQUFpQixFQUFFLGdCQUFnQixFQUFDLE1BQU0sOEJBQThCLENBQUM7QUFDL0YsT0FBTyxFQUFDLHFCQUFxQixFQUFDLE1BQU0sa0RBQWtELENBQUM7QUEwQnZGLE1BQU0sT0FBTyw2QkFBNkI7OztZQXhCekMsUUFBUSxTQUFDO2dCQUNOLE9BQU8sRUFBRTtvQkFDTCxZQUFZO29CQUNaLGlCQUFpQjtvQkFDakIsWUFBWTtvQkFDWixxQkFBcUI7b0JBQ3JCLFlBQVk7b0JBQ1oscUNBQXFDO29CQUNyQyx3Q0FBd0M7b0JBQ3hDLHFDQUFxQztvQkFDckMsd0NBQXdDO29CQUN4QyxVQUFVO29CQUNWLDZCQUE2QjtvQkFDN0IsMkJBQTJCO29CQUMzQiwyQkFBMkI7b0JBQzNCLGdCQUFnQjtpQkFDbkI7Z0JBQ0gsWUFBWSxFQUFFO29CQUNaLGdDQUFnQztpQkFDakM7Z0JBQ0QsT0FBTyxFQUFFO29CQUNQLGdDQUFnQztpQkFDakM7YUFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7TmdNb2R1bGV9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7Q29tbW9uTW9kdWxlfSBmcm9tIFwiQGFuZ3VsYXIvY29tbW9uXCI7XHJcbmltcG9ydCB7IFBpcGVNb2R1bGUgfSBmcm9tIFwiLi4vLi4vLi4vcGlwZS9waXBlLm1vZHVsZVwiO1xyXG5pbXBvcnQgeyBBdmF0YXJNb2R1bGUgfSBmcm9tIFwiLi4vLi4vYXZhdGFyL2F2YXRhci5tb2R1bGVcIjtcclxuaW1wb3J0IHtcclxuICBUcmFuc2FjdGlvblNlYXJjaFB1cmNoYXNlT3JkZXJHcmlkTW9kdWxlXHJcbn0gZnJvbSBcIi4uL3RyYW5zYWN0aW9uLXNlYXJjaC1ncmlkL3RyYW5zYWN0aW9uLXNlYXJjaC1wdXJjaGFzZS1vcmRlci1ncmlkL3RyYW5zYWN0aW9uLXNlYXJjaC1wdXJjaGFzZS1vcmRlci1ncmlkLm1vZHVsZVwiO1xyXG5pbXBvcnQgeyBUcmFuc2FjdGlvblNlYXJjaFNhbGVzT3JkZXJHcmlkTW9kdWxlIH0gZnJvbSBcIi4uL3RyYW5zYWN0aW9uLXNlYXJjaC1ncmlkL3RyYW5zYWN0aW9uLXNlYXJjaC1zYWxlcy1vcmRlci1ncmlkL3RyYW5zYWN0aW9uLXNlYXJjaC1zYWxlcy1vcmRlci1ncmlkLm1vZHVsZVwiO1xyXG5pbXBvcnQgeyBUcmFuc2FjdGlvblNlYXJjaEhlYWRlck1vZHVsZSB9IGZyb20gXCIuLi90cmFuc2FjdGlvbi1zZWFyY2gtaGVhZGVyL3RyYW5zYWN0aW9uLXNlYXJjaC1oZWFkZXIubW9kdWxlXCI7XHJcbmltcG9ydCB7XHJcbiAgVHJhbnNhY3Rpb25TZWFyY2hHcmlkTW9kdWxlXHJcbn0gZnJvbSBcIi4uL3RyYW5zYWN0aW9uLXNlYXJjaC1ncmlkL3RyYW5zYWN0aW9uLXNlYXJjaC1ncmlkL3RyYW5zYWN0aW9uLXNlYXJjaC1ncmlkLm1vZHVsZVwiO1xyXG5pbXBvcnQge1xyXG4gIFRyYW5zYWN0aW9uU2VhcmNoUHVyY2hhc2VPcmRlclRpbGVNb2R1bGVcclxufSBmcm9tIFwiLi4vdHJhbnNhY3Rpb24tc2VhcmNoLXRpbGUvdHJhbnNhY3Rpb24tc2VhcmNoLXB1cmNoYXNlLW9yZGVyLXRpbGUvdHJhbnNhY3Rpb24tc2VhcmNoLXB1cmNoYXNlLW9yZGVyLXRpbGUubW9kdWxlXCI7XHJcbmltcG9ydCB7IFRyYW5zYWN0aW9uU2VhcmNoU2FsZXNPcmRlclRpbGVNb2R1bGUgfSBmcm9tIFwiLi4vdHJhbnNhY3Rpb24tc2VhcmNoLXRpbGUvdHJhbnNhY3Rpb24tc2VhcmNoLXNhbGVzLW9yZGVyLXRpbGUvdHJhbnNhY3Rpb24tc2VhcmNoLXNhbGVzLW9yZGVyLXRpbGUubW9kdWxlXCI7XHJcbmltcG9ydCB7XHJcbiAgVHJhbnNhY3Rpb25TZWFyY2hUaWxlTW9kdWxlXHJcbn0gZnJvbSBcIi4uL3RyYW5zYWN0aW9uLXNlYXJjaC10aWxlL3RyYW5zYWN0aW9uLXNlYXJjaC10aWxlL3RyYW5zYWN0aW9uLXNlYXJjaC10aWxlLm1vZHVsZVwiO1xyXG5pbXBvcnQge1RyYW5zYWN0aW9uU2VhcmNoUmVzdWx0Q29tcG9uZW50fSBmcm9tIFwiLi90cmFuc2FjdGlvbi1zZWFyY2gtcmVzdWx0LmNvbXBvbmVudFwiO1xyXG5pbXBvcnQge0J1dHRvbk1vZHVsZSwgSW5wdXRTZWFyY2hNb2R1bGUsIFBhZ2luYXRpb25Nb2R1bGV9IGZyb20gXCJAY29saWpuaXQvY29yZWNvbXBvbmVudHNfdjEyXCI7XHJcbmltcG9ydCB7Vmlld01vZGVCdXR0b25zTW9kdWxlfSBmcm9tIFwiLi4vLi4vdmlldy1tb2RlLWJ1dHRvbnMvdmlldy1tb2RlLWJ1dHRvbnMubW9kdWxlXCI7XHJcblxyXG5ATmdNb2R1bGUoe1xyXG4gICAgaW1wb3J0czogW1xyXG4gICAgICAgIENvbW1vbk1vZHVsZSxcclxuICAgICAgICBJbnB1dFNlYXJjaE1vZHVsZSxcclxuICAgICAgICBCdXR0b25Nb2R1bGUsXHJcbiAgICAgICAgVmlld01vZGVCdXR0b25zTW9kdWxlLFxyXG4gICAgICAgIEF2YXRhck1vZHVsZSxcclxuICAgICAgICBUcmFuc2FjdGlvblNlYXJjaFNhbGVzT3JkZXJUaWxlTW9kdWxlLFxyXG4gICAgICAgIFRyYW5zYWN0aW9uU2VhcmNoUHVyY2hhc2VPcmRlclRpbGVNb2R1bGUsXHJcbiAgICAgICAgVHJhbnNhY3Rpb25TZWFyY2hTYWxlc09yZGVyR3JpZE1vZHVsZSxcclxuICAgICAgICBUcmFuc2FjdGlvblNlYXJjaFB1cmNoYXNlT3JkZXJHcmlkTW9kdWxlLFxyXG4gICAgICAgIFBpcGVNb2R1bGUsXHJcbiAgICAgICAgVHJhbnNhY3Rpb25TZWFyY2hIZWFkZXJNb2R1bGUsXHJcbiAgICAgICAgVHJhbnNhY3Rpb25TZWFyY2hHcmlkTW9kdWxlLFxyXG4gICAgICAgIFRyYW5zYWN0aW9uU2VhcmNoVGlsZU1vZHVsZSxcclxuICAgICAgICBQYWdpbmF0aW9uTW9kdWxlXHJcbiAgICBdLFxyXG4gIGRlY2xhcmF0aW9uczogW1xyXG4gICAgVHJhbnNhY3Rpb25TZWFyY2hSZXN1bHRDb21wb25lbnRcclxuICBdLFxyXG4gIGV4cG9ydHM6IFtcclxuICAgIFRyYW5zYWN0aW9uU2VhcmNoUmVzdWx0Q29tcG9uZW50XHJcbiAgXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgVHJhbnNhY3Rpb25TZWFyY2hSZXN1bHRNb2R1bGUge1xyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { Component, ViewEncapsulation } from "@angular/core";
|
|
2
|
+
import { TransactionSearchTileBaseComponent } from "../../../core/base/transaction-search-tile-base.component";
|
|
3
|
+
export class TransactionSearchPurchaseOrderTileComponent extends TransactionSearchTileBaseComponent {
|
|
4
|
+
}
|
|
5
|
+
TransactionSearchPurchaseOrderTileComponent.decorators = [
|
|
6
|
+
{ type: Component, args: [{
|
|
7
|
+
selector: "co-transaction-search-purchase-order-tile",
|
|
8
|
+
template: `
|
|
9
|
+
<div class="transaction-tile-wrapper" (click)="onTransactionClick(transaction)">
|
|
10
|
+
<div class="transaction-tile-body">
|
|
11
|
+
<div class="transaction-tile-avatar">
|
|
12
|
+
<co-avatar [relationId]="transaction.handledBy"></co-avatar>
|
|
13
|
+
</div>
|
|
14
|
+
<div class="transaction-tile-seller-info">
|
|
15
|
+
<div>
|
|
16
|
+
<div class="header"><span [textContent]="transaction.transNr"></span></div>
|
|
17
|
+
<div class="text"><span [textContent]="transaction.brancheName"></span></div>
|
|
18
|
+
</div>
|
|
19
|
+
<div>
|
|
20
|
+
<div class="text"><span [textContent]="transaction.relationName"></span></div>
|
|
21
|
+
<div class="text"><span [textContent]="transaction.getAdres()"></span></div>
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
<div class="transaction-tile-order-summary">
|
|
25
|
+
<div class="header"><span [textContent]="transaction.totalPriceVat | currency:'EUR'"></span></div>
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
|
28
|
+
<div class="transaction-tile-footer">
|
|
29
|
+
<div class="order-info-section">
|
|
30
|
+
<div class="label"><span [textContent]="'ORDER_DATE' | localize"></span></div>
|
|
31
|
+
<div class="value">
|
|
32
|
+
<span [textContent]="transaction.getTransDate() | date:'dd MMM yyyy'"></span></div>
|
|
33
|
+
</div>
|
|
34
|
+
<div class="order-info-section">
|
|
35
|
+
<div class="label"><span [textContent]="'DELIVERY_DATE' | localize"></span></div>
|
|
36
|
+
<div class="value">
|
|
37
|
+
<span [textContent]="transaction.getDeliveryDate() | date:'dd MMM yyyy'"></span>
|
|
38
|
+
<div *ngIf="transaction.getDeliveryDate()">
|
|
39
|
+
<co-icon *ngIf="transaction.deliveryDateDefinitive; else indefinite"
|
|
40
|
+
[iconData]="this.iconCacheService.getIcon(this.icons.Lock)" class="lock-icon"></co-icon>
|
|
41
|
+
<ng-template #indefinite>
|
|
42
|
+
<co-icon [iconData]="this.iconCacheService.getIcon(this.icons.Unlock)" class="unlock-icon"></co-icon>
|
|
43
|
+
</ng-template>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
</div>
|
|
47
|
+
<div class="order-info-section">
|
|
48
|
+
<div class="label"><span [textContent]="'ORDER_RULE' | localize"></span></div>
|
|
49
|
+
<div class="value">
|
|
50
|
+
<span [textContent]="'68/00'"></span></div>
|
|
51
|
+
</div>
|
|
52
|
+
</div>
|
|
53
|
+
</div>
|
|
54
|
+
`,
|
|
55
|
+
encapsulation: ViewEncapsulation.None
|
|
56
|
+
},] }
|
|
57
|
+
];
|
|
58
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2VhcmNoLXB1cmNoYXNlLW9yZGVyLXRpbGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jb21wb25lbnQvdHJhbnNhY3Rpb24tc2VhcmNoL3RyYW5zYWN0aW9uLXNlYXJjaC10aWxlL3RyYW5zYWN0aW9uLXNlYXJjaC1wdXJjaGFzZS1vcmRlci10aWxlL3RyYW5zYWN0aW9uLXNlYXJjaC1wdXJjaGFzZS1vcmRlci10aWxlLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzdELE9BQU8sRUFBRSxrQ0FBa0MsRUFBRSxNQUFNLDJEQUEyRCxDQUFDO0FBcUQvRyxNQUFNLE9BQU8sMkNBQTRDLFNBQVEsa0NBQWtDOzs7WUFuRGxHLFNBQVMsU0FBQztnQkFDVCxRQUFRLEVBQUUsMkNBQTJDO2dCQUNyRCxRQUFRLEVBQUU7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7R0E4Q1Q7Z0JBQ0QsYUFBYSxFQUFFLGlCQUFpQixDQUFDLElBQUk7YUFDdEMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHsgVHJhbnNhY3Rpb25TZWFyY2hUaWxlQmFzZUNvbXBvbmVudCB9IGZyb20gXCIuLi8uLi8uLi9jb3JlL2Jhc2UvdHJhbnNhY3Rpb24tc2VhcmNoLXRpbGUtYmFzZS5jb21wb25lbnRcIjtcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiBcImNvLXRyYW5zYWN0aW9uLXNlYXJjaC1wdXJjaGFzZS1vcmRlci10aWxlXCIsXHJcbiAgdGVtcGxhdGU6IGBcclxuICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi10aWxlLXdyYXBwZXJcIiAoY2xpY2spPVwib25UcmFuc2FjdGlvbkNsaWNrKHRyYW5zYWN0aW9uKVwiPlxyXG4gICAgICA8ZGl2IGNsYXNzPVwidHJhbnNhY3Rpb24tdGlsZS1ib2R5XCI+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cInRyYW5zYWN0aW9uLXRpbGUtYXZhdGFyXCI+XHJcbiAgICAgICAgICA8Y28tYXZhdGFyIFtyZWxhdGlvbklkXT1cInRyYW5zYWN0aW9uLmhhbmRsZWRCeVwiPjwvY28tYXZhdGFyPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi10aWxlLXNlbGxlci1pbmZvXCI+XHJcbiAgICAgICAgICA8ZGl2PlxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiaGVhZGVyXCI+PHNwYW4gW3RleHRDb250ZW50XT1cInRyYW5zYWN0aW9uLnRyYW5zTnJcIj48L3NwYW4+PC9kaXY+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ0ZXh0XCI+PHNwYW4gW3RleHRDb250ZW50XT1cInRyYW5zYWN0aW9uLmJyYW5jaGVOYW1lXCI+PC9zcGFuPjwvZGl2PlxyXG4gICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICA8ZGl2PlxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwidGV4dFwiPjxzcGFuIFt0ZXh0Q29udGVudF09XCJ0cmFuc2FjdGlvbi5yZWxhdGlvbk5hbWVcIj48L3NwYW4+PC9kaXY+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ0ZXh0XCI+PHNwYW4gW3RleHRDb250ZW50XT1cInRyYW5zYWN0aW9uLmdldEFkcmVzKClcIj48L3NwYW4+PC9kaXY+XHJcbiAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwidHJhbnNhY3Rpb24tdGlsZS1vcmRlci1zdW1tYXJ5XCI+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwiaGVhZGVyXCI+PHNwYW4gW3RleHRDb250ZW50XT1cInRyYW5zYWN0aW9uLnRvdGFsUHJpY2VWYXQgfCBjdXJyZW5jeTonRVVSJ1wiPjwvc3Bhbj48L2Rpdj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgPC9kaXY+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi10aWxlLWZvb3RlclwiPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJvcmRlci1pbmZvLXNlY3Rpb25cIj5cclxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJsYWJlbFwiPjxzcGFuIFt0ZXh0Q29udGVudF09XCInT1JERVJfREFURScgfCBsb2NhbGl6ZVwiPjwvc3Bhbj48L2Rpdj5cclxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJ2YWx1ZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBbdGV4dENvbnRlbnRdPVwidHJhbnNhY3Rpb24uZ2V0VHJhbnNEYXRlKCkgfCBkYXRlOidkZCBNTU0geXl5eSdcIj48L3NwYW4+PC9kaXY+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cIm9yZGVyLWluZm8tc2VjdGlvblwiPlxyXG4gICAgICAgICAgPGRpdiBjbGFzcz1cImxhYmVsXCI+PHNwYW4gW3RleHRDb250ZW50XT1cIidERUxJVkVSWV9EQVRFJyB8IGxvY2FsaXplXCI+PC9zcGFuPjwvZGl2PlxyXG4gICAgICAgICAgPGRpdiBjbGFzcz1cInZhbHVlXCI+XHJcbiAgICAgICAgICAgIDxzcGFuIFt0ZXh0Q29udGVudF09XCJ0cmFuc2FjdGlvbi5nZXREZWxpdmVyeURhdGUoKSB8IGRhdGU6J2RkIE1NTSB5eXl5J1wiPjwvc3Bhbj5cclxuICAgICAgICAgICAgPGRpdiAqbmdJZj1cInRyYW5zYWN0aW9uLmdldERlbGl2ZXJ5RGF0ZSgpXCI+XHJcbiAgICAgICAgICAgICAgPGNvLWljb24gKm5nSWY9XCJ0cmFuc2FjdGlvbi5kZWxpdmVyeURhdGVEZWZpbml0aXZlOyBlbHNlIGluZGVmaW5pdGVcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgIFtpY29uRGF0YV09XCJ0aGlzLmljb25DYWNoZVNlcnZpY2UuZ2V0SWNvbih0aGlzLmljb25zLkxvY2spXCIgY2xhc3M9XCJsb2NrLWljb25cIj48L2NvLWljb24+XHJcbiAgICAgICAgICAgICAgPG5nLXRlbXBsYXRlICNpbmRlZmluaXRlPlxyXG4gICAgICAgICAgICAgICAgPGNvLWljb24gW2ljb25EYXRhXT1cInRoaXMuaWNvbkNhY2hlU2VydmljZS5nZXRJY29uKHRoaXMuaWNvbnMuVW5sb2NrKVwiIGNsYXNzPVwidW5sb2NrLWljb25cIj48L2NvLWljb24+XHJcbiAgICAgICAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwib3JkZXItaW5mby1zZWN0aW9uXCI+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwibGFiZWxcIj48c3BhbiBbdGV4dENvbnRlbnRdPVwiJ09SREVSX1JVTEUnIHwgbG9jYWxpemVcIj48L3NwYW4+PC9kaXY+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwidmFsdWVcIj5cclxuICAgICAgICAgICAgPHNwYW4gW3RleHRDb250ZW50XT1cIic2OC8wMCdcIj48L3NwYW4+PC9kaXY+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+XHJcbiAgYCxcclxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBUcmFuc2FjdGlvblNlYXJjaFB1cmNoYXNlT3JkZXJUaWxlQ29tcG9uZW50IGV4dGVuZHMgVHJhbnNhY3Rpb25TZWFyY2hUaWxlQmFzZUNvbXBvbmVudCB7XHJcbn1cclxuIl19
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { NgModule } from "@angular/core";
|
|
2
|
+
import { CommonModule } from "@angular/common";
|
|
3
|
+
import { IconModule } from "@colijnit/corecomponents_v12";
|
|
4
|
+
import { PipeModule } from "../../../../pipe/pipe.module";
|
|
5
|
+
import { AvatarModule } from "../../../avatar/avatar.module";
|
|
6
|
+
import { TransactionSearchPurchaseOrderTileComponent } from "./transaction-search-purchase-order-tile.component";
|
|
7
|
+
export class TransactionSearchPurchaseOrderTileModule {
|
|
8
|
+
}
|
|
9
|
+
TransactionSearchPurchaseOrderTileModule.decorators = [
|
|
10
|
+
{ type: NgModule, args: [{
|
|
11
|
+
imports: [
|
|
12
|
+
CommonModule,
|
|
13
|
+
PipeModule,
|
|
14
|
+
AvatarModule,
|
|
15
|
+
IconModule
|
|
16
|
+
],
|
|
17
|
+
declarations: [
|
|
18
|
+
TransactionSearchPurchaseOrderTileComponent
|
|
19
|
+
],
|
|
20
|
+
exports: [
|
|
21
|
+
TransactionSearchPurchaseOrderTileComponent
|
|
22
|
+
]
|
|
23
|
+
},] }
|
|
24
|
+
];
|
|
25
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2VhcmNoLXB1cmNoYXNlLW9yZGVyLXRpbGUubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jb21wb25lbnQvdHJhbnNhY3Rpb24tc2VhcmNoL3RyYW5zYWN0aW9uLXNlYXJjaC10aWxlL3RyYW5zYWN0aW9uLXNlYXJjaC1wdXJjaGFzZS1vcmRlci10aWxlL3RyYW5zYWN0aW9uLXNlYXJjaC1wdXJjaGFzZS1vcmRlci10aWxlLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDMUQsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQzFELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUM3RCxPQUFPLEVBQUUsMkNBQTJDLEVBQUUsTUFBTSxvREFBb0QsQ0FBQztBQWdCakgsTUFBTSxPQUFPLHdDQUF3Qzs7O1lBZHBELFFBQVEsU0FBQztnQkFDUixPQUFPLEVBQUU7b0JBQ1AsWUFBWTtvQkFDWixVQUFVO29CQUNWLFlBQVk7b0JBQ1osVUFBVTtpQkFDWDtnQkFDRCxZQUFZLEVBQUU7b0JBQ1osMkNBQTJDO2lCQUM1QztnQkFDRCxPQUFPLEVBQUU7b0JBQ1AsMkNBQTJDO2lCQUM1QzthQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tIFwiQGFuZ3VsYXIvY29tbW9uXCI7XHJcbmltcG9ydCB7IEljb25Nb2R1bGUgfSBmcm9tIFwiQGNvbGlqbml0L2NvcmVjb21wb25lbnRzX3YxMlwiO1xyXG5pbXBvcnQgeyBQaXBlTW9kdWxlIH0gZnJvbSBcIi4uLy4uLy4uLy4uL3BpcGUvcGlwZS5tb2R1bGVcIjtcclxuaW1wb3J0IHsgQXZhdGFyTW9kdWxlIH0gZnJvbSBcIi4uLy4uLy4uL2F2YXRhci9hdmF0YXIubW9kdWxlXCI7XHJcbmltcG9ydCB7IFRyYW5zYWN0aW9uU2VhcmNoUHVyY2hhc2VPcmRlclRpbGVDb21wb25lbnQgfSBmcm9tIFwiLi90cmFuc2FjdGlvbi1zZWFyY2gtcHVyY2hhc2Utb3JkZXItdGlsZS5jb21wb25lbnRcIjtcclxuXHJcbkBOZ01vZHVsZSh7XHJcbiAgaW1wb3J0czogW1xyXG4gICAgQ29tbW9uTW9kdWxlLFxyXG4gICAgUGlwZU1vZHVsZSxcclxuICAgIEF2YXRhck1vZHVsZSxcclxuICAgIEljb25Nb2R1bGVcclxuICBdLFxyXG4gIGRlY2xhcmF0aW9uczogW1xyXG4gICAgVHJhbnNhY3Rpb25TZWFyY2hQdXJjaGFzZU9yZGVyVGlsZUNvbXBvbmVudFxyXG4gIF0sXHJcbiAgZXhwb3J0czogW1xyXG4gICAgVHJhbnNhY3Rpb25TZWFyY2hQdXJjaGFzZU9yZGVyVGlsZUNvbXBvbmVudFxyXG4gIF1cclxufSlcclxuZXhwb3J0IGNsYXNzIFRyYW5zYWN0aW9uU2VhcmNoUHVyY2hhc2VPcmRlclRpbGVNb2R1bGUge1xyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { Component, ViewEncapsulation } from "@angular/core";
|
|
2
|
+
import { IconCacheService } from "../../../../service/icon-cache.service";
|
|
3
|
+
import { TransactionSearchTileBaseComponent } from "../../../core/base/transaction-search-tile-base.component";
|
|
4
|
+
export class TransactionSearchSalesOrderTileComponent extends TransactionSearchTileBaseComponent {
|
|
5
|
+
constructor(iconCacheService) {
|
|
6
|
+
super(iconCacheService);
|
|
7
|
+
this.iconCacheService = iconCacheService;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
TransactionSearchSalesOrderTileComponent.decorators = [
|
|
11
|
+
{ type: Component, args: [{
|
|
12
|
+
selector: "co-transaction-search-sales-order-tile",
|
|
13
|
+
template: `
|
|
14
|
+
<div class="transaction-tile-wrapper" (click)="onTransactionClick(transaction)">
|
|
15
|
+
<div class="transaction-tile-body">
|
|
16
|
+
<div class="transaction-tile-avatar">
|
|
17
|
+
<co-avatar [relationId]="transaction.handledBy"></co-avatar>
|
|
18
|
+
</div>
|
|
19
|
+
<div class="transaction-tile-seller-info">
|
|
20
|
+
<div>
|
|
21
|
+
<div class="header"><span [textContent]="transaction.transNr"></span></div>
|
|
22
|
+
<div class="text"><span [textContent]="transaction.brancheName"></span></div>
|
|
23
|
+
</div>
|
|
24
|
+
<div>
|
|
25
|
+
<div class="text"><span [textContent]="transaction.relationName"></span></div>
|
|
26
|
+
<div class="text"><span [textContent]="transaction.getAdres()"></span></div>
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
<div class="transaction-tile-order-summary">
|
|
30
|
+
<div class="header"><span [textContent]="transaction.totalPriceVat | currency:'EUR'"></span></div>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
<div class="transaction-tile-footer">
|
|
34
|
+
<div class="order-info-section">
|
|
35
|
+
<div class="label"><span [textContent]="'ORDER_DATE' | localize"></span></div>
|
|
36
|
+
<div class="value">
|
|
37
|
+
<span [textContent]="transaction.getTransDate() | date:'dd MMM yyyy'"></span></div>
|
|
38
|
+
</div>
|
|
39
|
+
<div class="order-info-section">
|
|
40
|
+
<div class="label"><span [textContent]="'DELIVERY_DATE' | localize"></span></div>
|
|
41
|
+
<div class="value">
|
|
42
|
+
<span [textContent]="transaction.getDeliveryDate() | date:'dd MMM yyyy'"></span>
|
|
43
|
+
<div *ngIf="transaction.getDeliveryDate()">
|
|
44
|
+
<co-icon *ngIf="transaction.deliveryDateDefinitive; else indefinite"
|
|
45
|
+
[iconData]="this.iconCacheService.getIcon(this.icons.Lock)" class="lock-icon"></co-icon>
|
|
46
|
+
<ng-template #indefinite>
|
|
47
|
+
<co-icon [iconData]="this.iconCacheService.getIcon(this.icons.Unlock)" class="unlock-icon"></co-icon>
|
|
48
|
+
</ng-template>
|
|
49
|
+
</div>
|
|
50
|
+
</div>
|
|
51
|
+
</div>
|
|
52
|
+
<div class="order-info-section">
|
|
53
|
+
<div class="label"><span [textContent]="'ORDER_RULE' | localize"></span></div>
|
|
54
|
+
<div class="value">
|
|
55
|
+
<span [textContent]="'68/00'"></span></div>
|
|
56
|
+
</div>
|
|
57
|
+
</div>
|
|
58
|
+
|
|
59
|
+
</div>`,
|
|
60
|
+
encapsulation: ViewEncapsulation.None
|
|
61
|
+
},] }
|
|
62
|
+
];
|
|
63
|
+
TransactionSearchSalesOrderTileComponent.ctorParameters = () => [
|
|
64
|
+
{ type: IconCacheService }
|
|
65
|
+
];
|
|
66
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2VhcmNoLXNhbGVzLW9yZGVyLXRpbGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jb21wb25lbnQvdHJhbnNhY3Rpb24tc2VhcmNoL3RyYW5zYWN0aW9uLXNlYXJjaC10aWxlL3RyYW5zYWN0aW9uLXNlYXJjaC1zYWxlcy1vcmRlci10aWxlL3RyYW5zYWN0aW9uLXNlYXJjaC1zYWxlcy1vcmRlci10aWxlLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzdELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHdDQUF3QyxDQUFDO0FBQzFFLE9BQU8sRUFBRSxrQ0FBa0MsRUFBRSxNQUFNLDJEQUEyRCxDQUFDO0FBcUQvRyxNQUFNLE9BQU8sd0NBQXlDLFNBQVEsa0NBQWtDO0lBQzlGLFlBQ1MsZ0JBQWtDO1FBRXpDLEtBQUssQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFBO1FBRmhCLHFCQUFnQixHQUFoQixnQkFBZ0IsQ0FBa0I7SUFHM0MsQ0FBQzs7O1lBeERGLFNBQVMsU0FBQztnQkFDVCxRQUFRLEVBQUUsd0NBQXdDO2dCQUNsRCxRQUFRLEVBQUU7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7V0E4Q0Q7Z0JBQ1QsYUFBYSxFQUFFLGlCQUFpQixDQUFDLElBQUk7YUFDdEM7OztZQXJEUSxnQkFBZ0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHsgSWNvbkNhY2hlU2VydmljZSB9IGZyb20gXCIuLi8uLi8uLi8uLi9zZXJ2aWNlL2ljb24tY2FjaGUuc2VydmljZVwiO1xyXG5pbXBvcnQgeyBUcmFuc2FjdGlvblNlYXJjaFRpbGVCYXNlQ29tcG9uZW50IH0gZnJvbSBcIi4uLy4uLy4uL2NvcmUvYmFzZS90cmFuc2FjdGlvbi1zZWFyY2gtdGlsZS1iYXNlLmNvbXBvbmVudFwiO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6IFwiY28tdHJhbnNhY3Rpb24tc2VhcmNoLXNhbGVzLW9yZGVyLXRpbGVcIixcclxuICB0ZW1wbGF0ZTogYFxyXG4gICAgPGRpdiBjbGFzcz1cInRyYW5zYWN0aW9uLXRpbGUtd3JhcHBlclwiIChjbGljayk9XCJvblRyYW5zYWN0aW9uQ2xpY2sodHJhbnNhY3Rpb24pXCI+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi10aWxlLWJvZHlcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwidHJhbnNhY3Rpb24tdGlsZS1hdmF0YXJcIj5cclxuICAgICAgICAgIDxjby1hdmF0YXIgW3JlbGF0aW9uSWRdPVwidHJhbnNhY3Rpb24uaGFuZGxlZEJ5XCI+PC9jby1hdmF0YXI+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cInRyYW5zYWN0aW9uLXRpbGUtc2VsbGVyLWluZm9cIj5cclxuICAgICAgICAgIDxkaXY+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJoZWFkZXJcIj48c3BhbiBbdGV4dENvbnRlbnRdPVwidHJhbnNhY3Rpb24udHJhbnNOclwiPjwvc3Bhbj48L2Rpdj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cInRleHRcIj48c3BhbiBbdGV4dENvbnRlbnRdPVwidHJhbnNhY3Rpb24uYnJhbmNoZU5hbWVcIj48L3NwYW4+PC9kaXY+XHJcbiAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgIDxkaXY+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ0ZXh0XCI+PHNwYW4gW3RleHRDb250ZW50XT1cInRyYW5zYWN0aW9uLnJlbGF0aW9uTmFtZVwiPjwvc3Bhbj48L2Rpdj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cInRleHRcIj48c3BhbiBbdGV4dENvbnRlbnRdPVwidHJhbnNhY3Rpb24uZ2V0QWRyZXMoKVwiPjwvc3Bhbj48L2Rpdj5cclxuICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi10aWxlLW9yZGVyLXN1bW1hcnlcIj5cclxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJoZWFkZXJcIj48c3BhbiBbdGV4dENvbnRlbnRdPVwidHJhbnNhY3Rpb24udG90YWxQcmljZVZhdCB8IGN1cnJlbmN5OidFVVInXCI+PC9zcGFuPjwvZGl2PlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICA8L2Rpdj5cclxuICAgICAgPGRpdiBjbGFzcz1cInRyYW5zYWN0aW9uLXRpbGUtZm9vdGVyXCI+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cIm9yZGVyLWluZm8tc2VjdGlvblwiPlxyXG4gICAgICAgICAgPGRpdiBjbGFzcz1cImxhYmVsXCI+PHNwYW4gW3RleHRDb250ZW50XT1cIidPUkRFUl9EQVRFJyB8IGxvY2FsaXplXCI+PC9zcGFuPjwvZGl2PlxyXG4gICAgICAgICAgPGRpdiBjbGFzcz1cInZhbHVlXCI+XHJcbiAgICAgICAgICAgIDxzcGFuIFt0ZXh0Q29udGVudF09XCJ0cmFuc2FjdGlvbi5nZXRUcmFuc0RhdGUoKSB8IGRhdGU6J2RkIE1NTSB5eXl5J1wiPjwvc3Bhbj48L2Rpdj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwib3JkZXItaW5mby1zZWN0aW9uXCI+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwibGFiZWxcIj48c3BhbiBbdGV4dENvbnRlbnRdPVwiJ0RFTElWRVJZX0RBVEUnIHwgbG9jYWxpemVcIj48L3NwYW4+PC9kaXY+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwidmFsdWVcIj5cclxuICAgICAgICAgICAgPHNwYW4gW3RleHRDb250ZW50XT1cInRyYW5zYWN0aW9uLmdldERlbGl2ZXJ5RGF0ZSgpIHwgZGF0ZTonZGQgTU1NIHl5eXknXCI+PC9zcGFuPlxyXG4gICAgICAgICAgICA8ZGl2ICpuZ0lmPVwidHJhbnNhY3Rpb24uZ2V0RGVsaXZlcnlEYXRlKClcIj5cclxuICAgICAgICAgICAgICA8Y28taWNvbiAqbmdJZj1cInRyYW5zYWN0aW9uLmRlbGl2ZXJ5RGF0ZURlZmluaXRpdmU7IGVsc2UgaW5kZWZpbml0ZVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgW2ljb25EYXRhXT1cInRoaXMuaWNvbkNhY2hlU2VydmljZS5nZXRJY29uKHRoaXMuaWNvbnMuTG9jaylcIiBjbGFzcz1cImxvY2staWNvblwiPjwvY28taWNvbj5cclxuICAgICAgICAgICAgICA8bmctdGVtcGxhdGUgI2luZGVmaW5pdGU+XHJcbiAgICAgICAgICAgICAgICA8Y28taWNvbiBbaWNvbkRhdGFdPVwidGhpcy5pY29uQ2FjaGVTZXJ2aWNlLmdldEljb24odGhpcy5pY29ucy5VbmxvY2spXCIgY2xhc3M9XCJ1bmxvY2staWNvblwiPjwvY28taWNvbj5cclxuICAgICAgICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJvcmRlci1pbmZvLXNlY3Rpb25cIj5cclxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJsYWJlbFwiPjxzcGFuIFt0ZXh0Q29udGVudF09XCInT1JERVJfUlVMRScgfCBsb2NhbGl6ZVwiPjwvc3Bhbj48L2Rpdj5cclxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJ2YWx1ZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBbdGV4dENvbnRlbnRdPVwiJzY4LzAwJ1wiPjwvc3Bhbj48L2Rpdj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgPC9kaXY+XHJcblxyXG4gICAgPC9kaXY+YCxcclxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBUcmFuc2FjdGlvblNlYXJjaFNhbGVzT3JkZXJUaWxlQ29tcG9uZW50IGV4dGVuZHMgVHJhbnNhY3Rpb25TZWFyY2hUaWxlQmFzZUNvbXBvbmVudCB7XHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBwdWJsaWMgaWNvbkNhY2hlU2VydmljZTogSWNvbkNhY2hlU2VydmljZSxcclxuICApIHtcclxuICAgIHN1cGVyKGljb25DYWNoZVNlcnZpY2UpXHJcbiAgfVxyXG5cclxuXHJcbn1cclxuIl19
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { CommonModule } from "@angular/common";
|
|
2
|
+
import { NgModule } from "@angular/core";
|
|
3
|
+
import { ButtonModule, IconModule } from "@colijnit/corecomponents_v12";
|
|
4
|
+
import { PipeModule } from "../../../../pipe/pipe.module";
|
|
5
|
+
import { CoreModule } from "../../../core/core.module";
|
|
6
|
+
import { AvatarModule } from "../../../avatar/avatar.module";
|
|
7
|
+
import { TransactionSearchSalesOrderTileComponent } from "./transaction-search-sales-order-tile.component";
|
|
8
|
+
export class TransactionSearchSalesOrderTileModule {
|
|
9
|
+
}
|
|
10
|
+
TransactionSearchSalesOrderTileModule.decorators = [
|
|
11
|
+
{ type: NgModule, args: [{
|
|
12
|
+
imports: [
|
|
13
|
+
CommonModule,
|
|
14
|
+
CoreModule,
|
|
15
|
+
AvatarModule,
|
|
16
|
+
ButtonModule,
|
|
17
|
+
PipeModule,
|
|
18
|
+
IconModule,
|
|
19
|
+
],
|
|
20
|
+
declarations: [
|
|
21
|
+
TransactionSearchSalesOrderTileComponent
|
|
22
|
+
],
|
|
23
|
+
exports: [
|
|
24
|
+
TransactionSearchSalesOrderTileComponent
|
|
25
|
+
]
|
|
26
|
+
},] }
|
|
27
|
+
];
|
|
28
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2VhcmNoLXNhbGVzLW9yZGVyLXRpbGUubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jb21wb25lbnQvdHJhbnNhY3Rpb24tc2VhcmNoL3RyYW5zYWN0aW9uLXNlYXJjaC10aWxlL3RyYW5zYWN0aW9uLXNlYXJjaC1zYWxlcy1vcmRlci10aWxlL3RyYW5zYWN0aW9uLXNlYXJjaC1zYWxlcy1vcmRlci10aWxlLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLFVBQVUsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQ3hFLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQztBQUMxRCxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFDdkQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQzdELE9BQU8sRUFBRSx3Q0FBd0MsRUFBRSxNQUFNLGlEQUFpRCxDQUFDO0FBa0IzRyxNQUFNLE9BQU8scUNBQXFDOzs7WUFoQmpELFFBQVEsU0FBQztnQkFDUixPQUFPLEVBQUU7b0JBQ1AsWUFBWTtvQkFDWixVQUFVO29CQUNWLFlBQVk7b0JBQ1osWUFBWTtvQkFDWixVQUFVO29CQUNWLFVBQVU7aUJBQ1g7Z0JBQ0QsWUFBWSxFQUFFO29CQUNaLHdDQUF3QztpQkFDekM7Z0JBQ0QsT0FBTyxFQUFFO29CQUNQLHdDQUF3QztpQkFDekM7YUFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gXCJAYW5ndWxhci9jb21tb25cIjtcclxuaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBCdXR0b25Nb2R1bGUsIEljb25Nb2R1bGUgfSBmcm9tIFwiQGNvbGlqbml0L2NvcmVjb21wb25lbnRzX3YxMlwiO1xyXG5pbXBvcnQgeyBQaXBlTW9kdWxlIH0gZnJvbSBcIi4uLy4uLy4uLy4uL3BpcGUvcGlwZS5tb2R1bGVcIjtcclxuaW1wb3J0IHsgQ29yZU1vZHVsZSB9IGZyb20gXCIuLi8uLi8uLi9jb3JlL2NvcmUubW9kdWxlXCI7XHJcbmltcG9ydCB7IEF2YXRhck1vZHVsZSB9IGZyb20gXCIuLi8uLi8uLi9hdmF0YXIvYXZhdGFyLm1vZHVsZVwiO1xyXG5pbXBvcnQgeyBUcmFuc2FjdGlvblNlYXJjaFNhbGVzT3JkZXJUaWxlQ29tcG9uZW50IH0gZnJvbSBcIi4vdHJhbnNhY3Rpb24tc2VhcmNoLXNhbGVzLW9yZGVyLXRpbGUuY29tcG9uZW50XCI7XHJcblxyXG5ATmdNb2R1bGUoe1xyXG4gIGltcG9ydHM6IFtcclxuICAgIENvbW1vbk1vZHVsZSxcclxuICAgIENvcmVNb2R1bGUsXHJcbiAgICBBdmF0YXJNb2R1bGUsXHJcbiAgICBCdXR0b25Nb2R1bGUsXHJcbiAgICBQaXBlTW9kdWxlLFxyXG4gICAgSWNvbk1vZHVsZSxcclxuICBdLFxyXG4gIGRlY2xhcmF0aW9uczogW1xyXG4gICAgVHJhbnNhY3Rpb25TZWFyY2hTYWxlc09yZGVyVGlsZUNvbXBvbmVudFxyXG4gIF0sXHJcbiAgZXhwb3J0czogW1xyXG4gICAgVHJhbnNhY3Rpb25TZWFyY2hTYWxlc09yZGVyVGlsZUNvbXBvbmVudFxyXG4gIF1cclxufSlcclxuZXhwb3J0IGNsYXNzIFRyYW5zYWN0aW9uU2VhcmNoU2FsZXNPcmRlclRpbGVNb2R1bGUge1xyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { ApplicationRef, Component, ComponentFactoryResolver, ElementRef, EventEmitter, HostBinding, Injector, Input, Output, ViewChild, ViewEncapsulation } from "@angular/core";
|
|
2
|
+
import { TransactionMappingService } from "../../../../service/transaction-mapping.service";
|
|
3
|
+
import { TransactionSearchService } from "../../service/transaction-search.service";
|
|
4
|
+
export class TransactionSearchTileComponent {
|
|
5
|
+
constructor(_mappingService, _compFactoryResolver, appRef, injector, searchService) {
|
|
6
|
+
this._mappingService = _mappingService;
|
|
7
|
+
this._compFactoryResolver = _compFactoryResolver;
|
|
8
|
+
this.appRef = appRef;
|
|
9
|
+
this.injector = injector;
|
|
10
|
+
this.searchService = searchService;
|
|
11
|
+
this.transactionClick = new EventEmitter();
|
|
12
|
+
}
|
|
13
|
+
set container(content) {
|
|
14
|
+
if (content) {
|
|
15
|
+
this._transactionSearchTileContainer = content;
|
|
16
|
+
this._prepareContent();
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
set transactionType(value) {
|
|
20
|
+
this._transactionType = value;
|
|
21
|
+
this._prepareContent();
|
|
22
|
+
}
|
|
23
|
+
get transactionType() {
|
|
24
|
+
return this._transactionType;
|
|
25
|
+
}
|
|
26
|
+
set transaction(value) {
|
|
27
|
+
this._transaction = value;
|
|
28
|
+
this._prepareContent();
|
|
29
|
+
}
|
|
30
|
+
get transaction() {
|
|
31
|
+
return this._transaction;
|
|
32
|
+
}
|
|
33
|
+
showClass() {
|
|
34
|
+
return true;
|
|
35
|
+
}
|
|
36
|
+
_prepareContent() {
|
|
37
|
+
if (!this._transactionType || !this._transactionSearchTileContainer) {
|
|
38
|
+
return;
|
|
39
|
+
}
|
|
40
|
+
const componentClass = this._mappingService.getTransactionSearchTileComponent(this.transactionType);
|
|
41
|
+
if (this._componentRef) {
|
|
42
|
+
this._componentRef.destroy();
|
|
43
|
+
}
|
|
44
|
+
if (!componentClass) {
|
|
45
|
+
return;
|
|
46
|
+
}
|
|
47
|
+
this._componentRef = this._compFactoryResolver
|
|
48
|
+
.resolveComponentFactory(componentClass)
|
|
49
|
+
.create(this.injector);
|
|
50
|
+
this.appRef.attachView(this._componentRef.hostView);
|
|
51
|
+
//inputs
|
|
52
|
+
this._componentRef.instance.transaction = this.transaction;
|
|
53
|
+
//outputs
|
|
54
|
+
this._componentRef.instance.transactionClick.subscribe(transaction => {
|
|
55
|
+
this.transactionClick.emit(transaction);
|
|
56
|
+
});
|
|
57
|
+
const domElem = this._componentRef.hostView
|
|
58
|
+
.rootNodes[0];
|
|
59
|
+
this._transactionSearchTileContainer.nativeElement.appendChild(domElem);
|
|
60
|
+
this._componentRef.onDestroy(() => {
|
|
61
|
+
this.appRef.detachView(this._componentRef.hostView);
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
TransactionSearchTileComponent.decorators = [
|
|
66
|
+
{ type: Component, args: [{
|
|
67
|
+
selector: "co-transaction-search-tile",
|
|
68
|
+
template: `
|
|
69
|
+
<div #transactionSearchTile class="transaction-search-tile-wrapper">
|
|
70
|
+
</div>
|
|
71
|
+
`,
|
|
72
|
+
encapsulation: ViewEncapsulation.None
|
|
73
|
+
},] }
|
|
74
|
+
];
|
|
75
|
+
TransactionSearchTileComponent.ctorParameters = () => [
|
|
76
|
+
{ type: TransactionMappingService },
|
|
77
|
+
{ type: ComponentFactoryResolver },
|
|
78
|
+
{ type: ApplicationRef },
|
|
79
|
+
{ type: Injector },
|
|
80
|
+
{ type: TransactionSearchService }
|
|
81
|
+
];
|
|
82
|
+
TransactionSearchTileComponent.propDecorators = {
|
|
83
|
+
container: [{ type: ViewChild, args: ['transactionSearchTile', { read: ElementRef },] }],
|
|
84
|
+
transactionType: [{ type: Input }],
|
|
85
|
+
transaction: [{ type: Input }],
|
|
86
|
+
transactionClick: [{ type: Output }],
|
|
87
|
+
showClass: [{ type: HostBinding, args: ["class.co-transaction-search-tile",] }]
|
|
88
|
+
};
|
|
89
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2VhcmNoLXRpbGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jb21wb25lbnQvdHJhbnNhY3Rpb24tc2VhcmNoL3RyYW5zYWN0aW9uLXNlYXJjaC10aWxlL3RyYW5zYWN0aW9uLXNlYXJjaC10aWxlL3RyYW5zYWN0aW9uLXNlYXJjaC10aWxlLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsY0FBYyxFQUNkLFNBQVMsRUFDVCx3QkFBd0IsRUFDeEIsVUFBVSxFQUVWLFlBQVksRUFDWixXQUFXLEVBQ1gsUUFBUSxFQUNSLEtBQUssRUFDTCxNQUFNLEVBRU4sU0FBUyxFQUNULGlCQUFpQixFQUNsQixNQUFNLGVBQWUsQ0FBQztBQUd2QixPQUFPLEVBQUUseUJBQXlCLEVBQUUsTUFBTSxpREFBaUQsQ0FBQztBQUU1RixPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSwwQ0FBMEMsQ0FBQztBQVVwRixNQUFNLE9BQU8sOEJBQThCO0lBMEN6QyxZQUNVLGVBQTBDLEVBQzFDLG9CQUE4QyxFQUM5QyxNQUFzQixFQUN0QixRQUFrQixFQUNuQixhQUF1QztRQUp0QyxvQkFBZSxHQUFmLGVBQWUsQ0FBMkI7UUFDMUMseUJBQW9CLEdBQXBCLG9CQUFvQixDQUEwQjtRQUM5QyxXQUFNLEdBQU4sTUFBTSxDQUFnQjtRQUN0QixhQUFRLEdBQVIsUUFBUSxDQUFVO1FBQ25CLGtCQUFhLEdBQWIsYUFBYSxDQUEwQjtRQWxCekMscUJBQWdCLEdBQXlDLElBQUksWUFBWSxFQUF5QixDQUFDO0lBb0IxRyxDQUFDO0lBaERELElBQTRELFNBQVMsQ0FBQyxPQUFPO1FBQzNFLElBQUksT0FBTyxFQUFFO1lBQ1gsSUFBSSxDQUFDLCtCQUErQixHQUFHLE9BQU8sQ0FBQztZQUMvQyxJQUFJLENBQUMsZUFBZSxFQUFFLENBQUM7U0FDeEI7SUFDSCxDQUFDO0lBRUQsSUFDVyxlQUFlLENBQUMsS0FBc0I7UUFDL0MsSUFBSSxDQUFDLGdCQUFnQixHQUFHLEtBQUssQ0FBQztRQUM5QixJQUFJLENBQUMsZUFBZSxFQUFFLENBQUM7SUFDekIsQ0FBQztJQUVELElBQVcsZUFBZTtRQUN4QixPQUFPLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQztJQUMvQixDQUFDO0lBRUQsSUFDVyxXQUFXLENBQUMsS0FBNEI7UUFDakQsSUFBSSxDQUFDLFlBQVksR0FBRyxLQUFLLENBQUM7UUFDMUIsSUFBSSxDQUFDLGVBQWUsRUFBRSxDQUFDO0lBQ3pCLENBQUM7SUFFRCxJQUFXLFdBQVc7UUFDcEIsT0FBTyxJQUFJLENBQUMsWUFBWSxDQUFDO0lBQzNCLENBQUM7SUFPTSxTQUFTO1FBQ2QsT0FBTyxJQUFJLENBQUM7SUFDZCxDQUFDO0lBZ0JPLGVBQWU7UUFDckIsSUFBSSxDQUFDLElBQUksQ0FBQyxnQkFBZ0IsSUFBSSxDQUFDLElBQUksQ0FBQywrQkFBK0IsRUFBRTtZQUNuRSxPQUFPO1NBQ1I7UUFDRCxNQUFNLGNBQWMsR0FBNkMsSUFBSSxDQUFDLGVBQWUsQ0FBQyxpQ0FBaUMsQ0FBQyxJQUFJLENBQUMsZUFBZSxDQUFDLENBQUM7UUFFOUksSUFBSSxJQUFJLENBQUMsYUFBYSxFQUFFO1lBQ3RCLElBQUksQ0FBQyxhQUFhLENBQUMsT0FBTyxFQUFFLENBQUM7U0FDOUI7UUFDRCxJQUFJLENBQUMsY0FBYyxFQUFFO1lBQ25CLE9BQU87U0FDUjtRQUVELElBQUksQ0FBQyxhQUFhLEdBQUcsSUFBSSxDQUFDLG9CQUFvQjthQUMzQyx1QkFBdUIsQ0FBQyxjQUFjLENBQUM7YUFDdkMsTUFBTSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQztRQUV6QixJQUFJLENBQUMsTUFBTSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBRXBELFFBQVE7UUFDUixJQUFJLENBQUMsYUFBYSxDQUFDLFFBQVEsQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQztRQUUzRCxTQUFTO1FBQ1QsSUFBSSxDQUFDLGFBQWEsQ0FBQyxRQUFRLENBQUMsZ0JBQWdCLENBQUMsU0FBUyxDQUFDLFdBQVcsQ0FBQyxFQUFFO1lBQ25FLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLENBQUM7UUFDMUMsQ0FBQyxDQUFDLENBQUE7UUFFRixNQUFNLE9BQU8sR0FBSSxJQUFJLENBQUMsYUFBYSxDQUFDLFFBQWlDO2FBQ2xFLFNBQVMsQ0FBQyxDQUFDLENBQWdCLENBQUM7UUFFL0IsSUFBSSxDQUFDLCtCQUErQixDQUFDLGFBQWEsQ0FBQyxXQUFXLENBQUMsT0FBTyxDQUFDLENBQUM7UUFDeEUsSUFBSSxDQUFDLGFBQWEsQ0FBQyxTQUFTLENBQUMsR0FBRyxFQUFFO1lBQ2hDLElBQUksQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsUUFBUSxDQUFDLENBQUM7UUFDdEQsQ0FBQyxDQUFDLENBQUM7SUFFTCxDQUFDOzs7WUE5RkYsU0FBUyxTQUFDO2dCQUNULFFBQVEsRUFBRSw0QkFBNEI7Z0JBQ3RDLFFBQVEsRUFBRTs7O0tBR1A7Z0JBQ0gsYUFBYSxFQUFFLGlCQUFpQixDQUFDLElBQUk7YUFDdEM7OztZQVhRLHlCQUF5QjtZQWRoQyx3QkFBd0I7WUFGeEIsY0FBYztZQU9kLFFBQVE7WUFXRCx3QkFBd0I7Ozt3QkFXOUIsU0FBUyxTQUFDLHVCQUF1QixFQUFFLEVBQUMsSUFBSSxFQUFFLFVBQVUsRUFBQzs4QkFPckQsS0FBSzswQkFVTCxLQUFLOytCQVVMLE1BQU07d0JBSU4sV0FBVyxTQUFDLGtDQUFrQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XHJcbiAgQXBwbGljYXRpb25SZWYsXHJcbiAgQ29tcG9uZW50LFxyXG4gIENvbXBvbmVudEZhY3RvcnlSZXNvbHZlcixcclxuICBFbGVtZW50UmVmLFxyXG4gIEVtYmVkZGVkVmlld1JlZixcclxuICBFdmVudEVtaXR0ZXIsXHJcbiAgSG9zdEJpbmRpbmcsXHJcbiAgSW5qZWN0b3IsXHJcbiAgSW5wdXQsXHJcbiAgT3V0cHV0LFxyXG4gIFR5cGUsXHJcbiAgVmlld0NoaWxkLFxyXG4gIFZpZXdFbmNhcHN1bGF0aW9uXHJcbn0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHsgVHJhbnNhY3Rpb25LaW5kIH0gZnJvbSBcIkBjb2xpam5pdC90cmFuc2FjdGlvbmFwaS9idWlsZC9lbnVtL3RyYW5zYWN0aW9uLWtpbmQuZW51bVwiO1xyXG5pbXBvcnQgeyBUcmFuc2FjdGlvblNlYXJjaFZpZXcgfSBmcm9tIFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uYXBpL2J1aWxkL21vZGVsL3RyYW5zYWN0aW9uLXNlYXJjaC12aWV3LmJvXCI7XHJcbmltcG9ydCB7IFRyYW5zYWN0aW9uTWFwcGluZ1NlcnZpY2UgfSBmcm9tIFwiLi4vLi4vLi4vLi4vc2VydmljZS90cmFuc2FjdGlvbi1tYXBwaW5nLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgVHJhbnNhY3Rpb25TZWFyY2hUaWxlQmFzZUNvbXBvbmVudCB9IGZyb20gXCIuLi8uLi8uLi9jb3JlL2Jhc2UvdHJhbnNhY3Rpb24tc2VhcmNoLXRpbGUtYmFzZS5jb21wb25lbnRcIjtcclxuaW1wb3J0IHsgVHJhbnNhY3Rpb25TZWFyY2hTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL3NlcnZpY2UvdHJhbnNhY3Rpb24tc2VhcmNoLnNlcnZpY2VcIjtcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiBcImNvLXRyYW5zYWN0aW9uLXNlYXJjaC10aWxlXCIsXHJcbiAgdGVtcGxhdGU6IGBcclxuICAgIDxkaXYgI3RyYW5zYWN0aW9uU2VhcmNoVGlsZSBjbGFzcz1cInRyYW5zYWN0aW9uLXNlYXJjaC10aWxlLXdyYXBwZXJcIj5cclxuICAgIDwvZGl2PlxyXG4gICAgYCxcclxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBUcmFuc2FjdGlvblNlYXJjaFRpbGVDb21wb25lbnQge1xyXG4gIEBWaWV3Q2hpbGQoJ3RyYW5zYWN0aW9uU2VhcmNoVGlsZScsIHtyZWFkOiBFbGVtZW50UmVmfSkgc2V0IGNvbnRhaW5lcihjb250ZW50KSB7XHJcbiAgICBpZiAoY29udGVudCkge1xyXG4gICAgICB0aGlzLl90cmFuc2FjdGlvblNlYXJjaFRpbGVDb250YWluZXIgPSBjb250ZW50O1xyXG4gICAgICB0aGlzLl9wcmVwYXJlQ29udGVudCgpO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgQElucHV0KClcclxuICBwdWJsaWMgc2V0IHRyYW5zYWN0aW9uVHlwZSh2YWx1ZTogVHJhbnNhY3Rpb25LaW5kKSB7XHJcbiAgICB0aGlzLl90cmFuc2FjdGlvblR5cGUgPSB2YWx1ZTtcclxuICAgIHRoaXMuX3ByZXBhcmVDb250ZW50KCk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgZ2V0IHRyYW5zYWN0aW9uVHlwZSgpOiBUcmFuc2FjdGlvbktpbmQge1xyXG4gICAgcmV0dXJuIHRoaXMuX3RyYW5zYWN0aW9uVHlwZTtcclxuICB9XHJcblxyXG4gIEBJbnB1dCgpXHJcbiAgcHVibGljIHNldCB0cmFuc2FjdGlvbih2YWx1ZTogVHJhbnNhY3Rpb25TZWFyY2hWaWV3KSB7XHJcbiAgICB0aGlzLl90cmFuc2FjdGlvbiA9IHZhbHVlO1xyXG4gICAgdGhpcy5fcHJlcGFyZUNvbnRlbnQoKTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBnZXQgdHJhbnNhY3Rpb24oKTogVHJhbnNhY3Rpb25TZWFyY2hWaWV3IHtcclxuICAgIHJldHVybiB0aGlzLl90cmFuc2FjdGlvbjtcclxuICB9XHJcblxyXG4gIEBPdXRwdXQoKVxyXG4gIHB1YmxpYyB0cmFuc2FjdGlvbkNsaWNrOiAgRXZlbnRFbWl0dGVyPFRyYW5zYWN0aW9uU2VhcmNoVmlldz4gPSBuZXcgRXZlbnRFbWl0dGVyPFRyYW5zYWN0aW9uU2VhcmNoVmlldz4oKTtcclxuXHJcblxyXG4gIEBIb3N0QmluZGluZyhcImNsYXNzLmNvLXRyYW5zYWN0aW9uLXNlYXJjaC10aWxlXCIpXHJcbiAgcHVibGljIHNob3dDbGFzcygpIHtcclxuICAgIHJldHVybiB0cnVlO1xyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBfdHJhbnNhY3Rpb25TZWFyY2hUaWxlQ29udGFpbmVyOiBFbGVtZW50UmVmO1xyXG4gIHByaXZhdGUgX3RyYW5zYWN0aW9uOiBUcmFuc2FjdGlvblNlYXJjaFZpZXc7XHJcbiAgcHJpdmF0ZSBfdHJhbnNhY3Rpb25UeXBlOiBUcmFuc2FjdGlvbktpbmQ7XHJcbiAgcHJpdmF0ZSBfY29tcG9uZW50UmVmOiBhbnk7XHJcblxyXG4gIGNvbnN0cnVjdG9yKFxyXG4gICAgcHJpdmF0ZSBfbWFwcGluZ1NlcnZpY2U6IFRyYW5zYWN0aW9uTWFwcGluZ1NlcnZpY2UsXHJcbiAgICBwcml2YXRlIF9jb21wRmFjdG9yeVJlc29sdmVyOiBDb21wb25lbnRGYWN0b3J5UmVzb2x2ZXIsXHJcbiAgICBwcml2YXRlIGFwcFJlZjogQXBwbGljYXRpb25SZWYsXHJcbiAgICBwcml2YXRlIGluamVjdG9yOiBJbmplY3RvcixcclxuICAgIHB1YmxpYyBzZWFyY2hTZXJ2aWNlOiBUcmFuc2FjdGlvblNlYXJjaFNlcnZpY2VcclxuICApIHtcclxuICB9XHJcblxyXG4gIHByaXZhdGUgX3ByZXBhcmVDb250ZW50KCk6IHZvaWQge1xyXG4gICAgaWYgKCF0aGlzLl90cmFuc2FjdGlvblR5cGUgfHwgIXRoaXMuX3RyYW5zYWN0aW9uU2VhcmNoVGlsZUNvbnRhaW5lcikge1xyXG4gICAgICByZXR1cm47XHJcbiAgICB9XHJcbiAgICBjb25zdCBjb21wb25lbnRDbGFzczogVHlwZTxUcmFuc2FjdGlvblNlYXJjaFRpbGVCYXNlQ29tcG9uZW50PiA9IHRoaXMuX21hcHBpbmdTZXJ2aWNlLmdldFRyYW5zYWN0aW9uU2VhcmNoVGlsZUNvbXBvbmVudCh0aGlzLnRyYW5zYWN0aW9uVHlwZSk7XHJcblxyXG4gICAgaWYgKHRoaXMuX2NvbXBvbmVudFJlZikge1xyXG4gICAgICB0aGlzLl9jb21wb25lbnRSZWYuZGVzdHJveSgpO1xyXG4gICAgfVxyXG4gICAgaWYgKCFjb21wb25lbnRDbGFzcykge1xyXG4gICAgICByZXR1cm47XHJcbiAgICB9XHJcblxyXG4gICAgdGhpcy5fY29tcG9uZW50UmVmID0gdGhpcy5fY29tcEZhY3RvcnlSZXNvbHZlclxyXG4gICAgICAucmVzb2x2ZUNvbXBvbmVudEZhY3RvcnkoY29tcG9uZW50Q2xhc3MpXHJcbiAgICAgIC5jcmVhdGUodGhpcy5pbmplY3Rvcik7XHJcblxyXG4gICAgdGhpcy5hcHBSZWYuYXR0YWNoVmlldyh0aGlzLl9jb21wb25lbnRSZWYuaG9zdFZpZXcpO1xyXG5cclxuICAgIC8vaW5wdXRzXHJcbiAgICB0aGlzLl9jb21wb25lbnRSZWYuaW5zdGFuY2UudHJhbnNhY3Rpb24gPSB0aGlzLnRyYW5zYWN0aW9uO1xyXG5cclxuICAgIC8vb3V0cHV0c1xyXG4gICAgdGhpcy5fY29tcG9uZW50UmVmLmluc3RhbmNlLnRyYW5zYWN0aW9uQ2xpY2suc3Vic2NyaWJlKHRyYW5zYWN0aW9uID0+IHtcclxuICAgICAgdGhpcy50cmFuc2FjdGlvbkNsaWNrLmVtaXQodHJhbnNhY3Rpb24pO1xyXG4gICAgfSlcclxuXHJcbiAgICBjb25zdCBkb21FbGVtID0gKHRoaXMuX2NvbXBvbmVudFJlZi5ob3N0VmlldyBhcyBFbWJlZGRlZFZpZXdSZWY8YW55PilcclxuICAgICAgLnJvb3ROb2Rlc1swXSBhcyBIVE1MRWxlbWVudDtcclxuXHJcbiAgICB0aGlzLl90cmFuc2FjdGlvblNlYXJjaFRpbGVDb250YWluZXIubmF0aXZlRWxlbWVudC5hcHBlbmRDaGlsZChkb21FbGVtKTtcclxuICAgIHRoaXMuX2NvbXBvbmVudFJlZi5vbkRlc3Ryb3koKCkgPT4ge1xyXG4gICAgICB0aGlzLmFwcFJlZi5kZXRhY2hWaWV3KHRoaXMuX2NvbXBvbmVudFJlZi5ob3N0Vmlldyk7XHJcbiAgICB9KTtcclxuXHJcbiAgfVxyXG5cclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { NgModule } from "@angular/core";
|
|
2
|
+
import { CommonModule } from "@angular/common";
|
|
3
|
+
import { TransactionSearchTileComponent } from "./transaction-search-tile.component";
|
|
4
|
+
export class TransactionSearchTileModule {
|
|
5
|
+
}
|
|
6
|
+
TransactionSearchTileModule.decorators = [
|
|
7
|
+
{ type: NgModule, args: [{
|
|
8
|
+
imports: [
|
|
9
|
+
CommonModule
|
|
10
|
+
],
|
|
11
|
+
declarations: [
|
|
12
|
+
TransactionSearchTileComponent
|
|
13
|
+
],
|
|
14
|
+
exports: [
|
|
15
|
+
TransactionSearchTileComponent
|
|
16
|
+
]
|
|
17
|
+
},] }
|
|
18
|
+
];
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2VhcmNoLXRpbGUubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jb21wb25lbnQvdHJhbnNhY3Rpb24tc2VhcmNoL3RyYW5zYWN0aW9uLXNlYXJjaC10aWxlL3RyYW5zYWN0aW9uLXNlYXJjaC10aWxlL3RyYW5zYWN0aW9uLXNlYXJjaC10aWxlLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsOEJBQThCLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQWFyRixNQUFNLE9BQU8sMkJBQTJCOzs7WUFYdkMsUUFBUSxTQUFDO2dCQUNSLE9BQU8sRUFBRTtvQkFDUCxZQUFZO2lCQUNiO2dCQUNELFlBQVksRUFBRTtvQkFDWiw4QkFBOEI7aUJBQy9CO2dCQUNELE9BQU8sRUFBRTtvQkFDUCw4QkFBOEI7aUJBQy9CO2FBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gXCJAYW5ndWxhci9jb21tb25cIjtcclxuaW1wb3J0IHsgVHJhbnNhY3Rpb25TZWFyY2hUaWxlQ29tcG9uZW50IH0gZnJvbSBcIi4vdHJhbnNhY3Rpb24tc2VhcmNoLXRpbGUuY29tcG9uZW50XCI7XHJcblxyXG5ATmdNb2R1bGUoe1xyXG4gIGltcG9ydHM6IFtcclxuICAgIENvbW1vbk1vZHVsZVxyXG4gIF0sXHJcbiAgZGVjbGFyYXRpb25zOiBbXHJcbiAgICBUcmFuc2FjdGlvblNlYXJjaFRpbGVDb21wb25lbnRcclxuICBdLFxyXG4gIGV4cG9ydHM6IFtcclxuICAgIFRyYW5zYWN0aW9uU2VhcmNoVGlsZUNvbXBvbmVudFxyXG4gIF1cclxufSlcclxuZXhwb3J0IGNsYXNzIFRyYW5zYWN0aW9uU2VhcmNoVGlsZU1vZHVsZSB7XHJcbn1cclxuIl19
|