@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
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
import { Component, HostBinding } from "@angular/core";
|
|
2
|
+
import { FilterViewmodel } from "../../../../../model/filter-viewmodel";
|
|
3
|
+
import { TransactionService } from "../../../../../service/transaction.service";
|
|
4
|
+
import { TransactionFilterContentBaseComponent } from "../../../../core/base/transaction-filter-content-base.component";
|
|
5
|
+
import { FilterRequestService } from "../../../service/filter-request.service";
|
|
6
|
+
import { TransactionSearchService } from "../../../service/transaction-search.service";
|
|
7
|
+
export class TransactionSalesOrderFilterContentLogisticsComponent extends TransactionFilterContentBaseComponent {
|
|
8
|
+
constructor(searchService, filterRequestService, transactionService) {
|
|
9
|
+
super(searchService, filterRequestService, transactionService);
|
|
10
|
+
this.searchService = searchService;
|
|
11
|
+
this.filterRequestService = filterRequestService;
|
|
12
|
+
this.transactionService = transactionService;
|
|
13
|
+
this.deliveryMethods = [];
|
|
14
|
+
this.deliveryMethodFields = { text: "description", value: "code" };
|
|
15
|
+
this.warehouseFields = { text: "description", value: "warehouseNo" };
|
|
16
|
+
this.sourceWarehouseFields = { text: "description", value: "warehouseNo" };
|
|
17
|
+
}
|
|
18
|
+
showClass() {
|
|
19
|
+
return true;
|
|
20
|
+
}
|
|
21
|
+
ngOnInit() {
|
|
22
|
+
this._setRangeDates();
|
|
23
|
+
this._setDeliveryMethods();
|
|
24
|
+
this._setWarehouses();
|
|
25
|
+
this._setSourceWarehouses();
|
|
26
|
+
}
|
|
27
|
+
_setRangeDates() {
|
|
28
|
+
this.confirmedDeliveryStartDate = this.filterRequestService.getDateFromFilterRequestRange(this.searchRequest.confirmedDeliveryDateRange, 0);
|
|
29
|
+
this.confirmedDeliveryEndDate = this.filterRequestService.getDateFromFilterRequestRange(this.searchRequest.confirmedDeliveryDateRange, 1);
|
|
30
|
+
this.arrivalStartDate = this.filterRequestService.getDateFromFilterRequestRange(this.searchRequest.arrivalDateRange, 0);
|
|
31
|
+
this.arrivalEndDate = this.filterRequestService.getDateFromFilterRequestRange(this.searchRequest.arrivalDateRange, 1);
|
|
32
|
+
}
|
|
33
|
+
//Delivery Methods
|
|
34
|
+
_setDeliveryMethods() {
|
|
35
|
+
this.transactionService.getDeliveryMethods().then((deliveryMethods) => {
|
|
36
|
+
this.deliveryMethods = new FilterViewmodel(deliveryMethods, this.deliveryMethodFields).filterItems;
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
//Warehouses
|
|
40
|
+
_setWarehouses() {
|
|
41
|
+
this.transactionService.getWarehouses().then((warehouses) => {
|
|
42
|
+
this.warehouses = new FilterViewmodel(warehouses, this.warehouseFields).filterItems;
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
//Source Warehouses
|
|
46
|
+
_setSourceWarehouses() {
|
|
47
|
+
this.transactionService.getWarehouses().then((warehouses) => {
|
|
48
|
+
this.sourceWarehouses = new FilterViewmodel(warehouses, this.sourceWarehouseFields).filterItems;
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
TransactionSalesOrderFilterContentLogisticsComponent.decorators = [
|
|
53
|
+
{ type: Component, args: [{
|
|
54
|
+
selector: 'co-transaction-sales-order-filter-content-logistics',
|
|
55
|
+
template: `
|
|
56
|
+
<div class="transaction-filter-content-logistics-wrapper">
|
|
57
|
+
|
|
58
|
+
<!--Levermethode-->
|
|
59
|
+
<co-filter-item
|
|
60
|
+
[placeholder]="'DELIVERY_METHOD' | localize"
|
|
61
|
+
[expanded]="true"
|
|
62
|
+
[collection]="deliveryMethods"
|
|
63
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
64
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
65
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
66
|
+
[showLessLabel]="showLessLabel | localize"
|
|
67
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForRange($event, 'rangeDeliveryMethod')">
|
|
68
|
+
</co-filter-item>
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
<!--Leverdatum definitief-->
|
|
72
|
+
<co-filter-item
|
|
73
|
+
[placeholder]="'DELIVERY_DATE_FINAL' | localize"
|
|
74
|
+
[customContent]="true"
|
|
75
|
+
[expanded]="true">
|
|
76
|
+
<co-input-checkbox
|
|
77
|
+
[model]="searchRequest.deliveryDateDefinitive === 'J'"
|
|
78
|
+
(modelChange)="filterRequestService.handleCheckboxValueChangeForString($event, 'deliveryDateDefinitive')"
|
|
79
|
+
[label]="'DELIVERY_DATE_FINAL' | localize"></co-input-checkbox>
|
|
80
|
+
</co-filter-item>
|
|
81
|
+
|
|
82
|
+
<!--Toegewezen-->
|
|
83
|
+
<co-transaction-filter-historic-state
|
|
84
|
+
[label]="'ALLOCATED'"
|
|
85
|
+
(filterClicked)="filterRequestService.handleCollectionChangeForSingleNumber($event, 'quantityAllocated')"
|
|
86
|
+
></co-transaction-filter-historic-state>
|
|
87
|
+
|
|
88
|
+
<!--Geleverd-->
|
|
89
|
+
<co-transaction-filter-historic-state
|
|
90
|
+
[label]="'DELIVERED'"
|
|
91
|
+
(filterClicked)="filterRequestService.handleCollectionChangeForSingleNumber($event, 'quantityDelivered')"
|
|
92
|
+
></co-transaction-filter-historic-state>
|
|
93
|
+
|
|
94
|
+
<!--Gefactureerd-->
|
|
95
|
+
<co-transaction-filter-historic-state
|
|
96
|
+
[label]="'INVOICED'"
|
|
97
|
+
(filterClicked)="filterRequestService.handleCollectionChangeForSingleNumber($event, 'quantityInvoiced')"
|
|
98
|
+
></co-transaction-filter-historic-state>
|
|
99
|
+
|
|
100
|
+
<!--Te picken-->
|
|
101
|
+
<co-transaction-filter-historic-state
|
|
102
|
+
[label]="'TO_BE_PICKED'"
|
|
103
|
+
(filterClicked)="filterRequestService.handleCollectionChangeForSingleNumber($event, 'quantityToBePicked')"
|
|
104
|
+
></co-transaction-filter-historic-state>
|
|
105
|
+
|
|
106
|
+
<!--Gepicked-->
|
|
107
|
+
<co-transaction-filter-historic-state
|
|
108
|
+
[label]="'PICKED'"
|
|
109
|
+
(filterClicked)="filterRequestService.handleCollectionChangeForSingleNumber($event, 'quantityPicked')"
|
|
110
|
+
></co-transaction-filter-historic-state>
|
|
111
|
+
|
|
112
|
+
<!--Bevestigde leverdatum-->
|
|
113
|
+
<co-filter-item
|
|
114
|
+
[placeholder]="'CONFIRMED_DELIVERY_DATE' | localize"
|
|
115
|
+
[customContent]="true"
|
|
116
|
+
[expanded]="true">
|
|
117
|
+
<co-input-date-range
|
|
118
|
+
[startDate]="confirmedDeliveryStartDate"
|
|
119
|
+
[endDate]="confirmedDeliveryEndDate"
|
|
120
|
+
(dateRangeChange)="onDateRangeChange($event, 'confirmedDeliveryDateRange')"
|
|
121
|
+
(cleared)="onClearedDateRangeChange('confirmedDeliveryDateRange')"
|
|
122
|
+
[placeholder]="'SELECT_DATE' | localize">
|
|
123
|
+
</co-input-date-range>
|
|
124
|
+
</co-filter-item>
|
|
125
|
+
|
|
126
|
+
<!--Aankomstdatum-->
|
|
127
|
+
<co-filter-item
|
|
128
|
+
[placeholder]="'ARRIVAL_DATE' | localize"
|
|
129
|
+
[customContent]="true"
|
|
130
|
+
[expanded]="true">
|
|
131
|
+
<co-input-date-range
|
|
132
|
+
[startDate]="arrivalStartDate"
|
|
133
|
+
[endDate]="arrivalEndDate"
|
|
134
|
+
(dateRangeChange)="onDateRangeChange($event, 'arrivalDateRange')"
|
|
135
|
+
(cleared)="onClearedDateRangeChange('arrivalDateRange')"
|
|
136
|
+
[placeholder]="'SELECT_DATE' | localize">
|
|
137
|
+
</co-input-date-range>
|
|
138
|
+
</co-filter-item>
|
|
139
|
+
|
|
140
|
+
<!--Deellevering-->
|
|
141
|
+
<co-filter-item
|
|
142
|
+
[placeholder]="'PART_DELIVERY' | localize"
|
|
143
|
+
[customContent]="true"
|
|
144
|
+
[expanded]="true">
|
|
145
|
+
<co-input-checkbox
|
|
146
|
+
[model]="searchRequest.partialDelivery === 'J'"
|
|
147
|
+
(modelChange)="filterRequestService.handleCheckboxValueChangeForString($event, 'partialDelivery')"
|
|
148
|
+
[label]="'PART_DELIVERY' | localize">
|
|
149
|
+
</co-input-checkbox>
|
|
150
|
+
</co-filter-item>
|
|
151
|
+
|
|
152
|
+
<!--Magazijn -->
|
|
153
|
+
<co-filter-item
|
|
154
|
+
[placeholder]="'WAREHOUSE' | localize"
|
|
155
|
+
[expanded]="true"
|
|
156
|
+
[singleSelect]="true"
|
|
157
|
+
[collection]="warehouses"
|
|
158
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
159
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
160
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
161
|
+
[showLessLabel]="showLessLabel | localize"
|
|
162
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForSingleSelect($event, 'warehouse')">
|
|
163
|
+
</co-filter-item>
|
|
164
|
+
|
|
165
|
+
<!--Bron magazijn-->
|
|
166
|
+
<co-filter-item
|
|
167
|
+
[placeholder]="'SOURCE_WAREHOUSE' | localize"
|
|
168
|
+
[expanded]="true"
|
|
169
|
+
[singleSelect]="true"
|
|
170
|
+
[collection]="sourceWarehouses"
|
|
171
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
172
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
173
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
174
|
+
[showLessLabel]="showLessLabel | localize"
|
|
175
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForSingleSelect($event, 'sourceWarehouse')">
|
|
176
|
+
</co-filter-item>
|
|
177
|
+
|
|
178
|
+
<!--Serienummer -->
|
|
179
|
+
<co-filter-item
|
|
180
|
+
[placeholder]="'SERIAL_NUMBER' | localize"
|
|
181
|
+
[customContent]="true"
|
|
182
|
+
[expanded]="true">
|
|
183
|
+
<co-input-text [(model)]="searchRequest.serialNumber"
|
|
184
|
+
[placeholder]="searchPlaceholder | localize"></co-input-text>
|
|
185
|
+
</co-filter-item>
|
|
186
|
+
|
|
187
|
+
<!--Batchnummer -->
|
|
188
|
+
<co-filter-item
|
|
189
|
+
[placeholder]="'BATCH_NUMBER' | localize"
|
|
190
|
+
[customContent]="true"
|
|
191
|
+
[expanded]="true">
|
|
192
|
+
<co-input-text [(model)]="searchRequest.batchNumber" [placeholder]="searchPlaceholder | localize"></co-input-text>
|
|
193
|
+
</co-filter-item>
|
|
194
|
+
|
|
195
|
+
<!--Inclusief retouren-->
|
|
196
|
+
<co-filter-item
|
|
197
|
+
[placeholder]="'INCLUDING_RETURNS' | localize"
|
|
198
|
+
[customContent]="true"
|
|
199
|
+
[expanded]="true">
|
|
200
|
+
<co-input-checkbox
|
|
201
|
+
[label]="'INCLUDING_RETURNS' | localize"
|
|
202
|
+
[model]="searchRequest.includingReturns === 1"
|
|
203
|
+
(modelChange)="filterRequestService.handleCheckboxValueChangeForNumber($event, 'includingReturns')"
|
|
204
|
+
>
|
|
205
|
+
</co-input-checkbox>
|
|
206
|
+
</co-filter-item>
|
|
207
|
+
|
|
208
|
+
<!--Levermethode op (regel/header): todo: nog uitzoeken welke filter dit is-->
|
|
209
|
+
<div class="filter-button-container">
|
|
210
|
+
<co-button class="clickable" [label]="'Filter'" (click)="onFilterButtonClick()"></co-button>
|
|
211
|
+
</div>
|
|
212
|
+
</div>
|
|
213
|
+
`
|
|
214
|
+
},] }
|
|
215
|
+
];
|
|
216
|
+
TransactionSalesOrderFilterContentLogisticsComponent.ctorParameters = () => [
|
|
217
|
+
{ type: TransactionSearchService },
|
|
218
|
+
{ type: FilterRequestService },
|
|
219
|
+
{ type: TransactionService }
|
|
220
|
+
];
|
|
221
|
+
TransactionSalesOrderFilterContentLogisticsComponent.propDecorators = {
|
|
222
|
+
showClass: [{ type: HostBinding, args: ["class.co-transaction-search-filter-content",] }]
|
|
223
|
+
};
|
|
224
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2FsZXMtb3JkZXItZmlsdGVyLWNvbnRlbnQtbG9naXN0aWNzLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RyYW5zYWN0aW9uL3NyYy9saWIvY29tcG9uZW50L3RyYW5zYWN0aW9uLXNlYXJjaC90cmFuc2FjdGlvbi1maWx0ZXItY29udGVudC9zYWxlcy1vcmRlci1maWx0ZXItY29udGVudC90cmFuc2FjdGlvbi1zYWxlcy1vcmRlci1maWx0ZXItY29udGVudC1sb2dpc3RpY3MvdHJhbnNhY3Rpb24tc2FsZXMtb3JkZXItZmlsdGVyLWNvbnRlbnQtbG9naXN0aWNzLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFdBQVcsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUl2RCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sdUNBQXVDLENBQUM7QUFDeEUsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sNENBQTRDLENBQUM7QUFDaEYsT0FBTyxFQUFFLHFDQUFxQyxFQUFFLE1BQU0saUVBQWlFLENBQUM7QUFDeEgsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0seUNBQXlDLENBQUM7QUFDL0UsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sNkNBQTZDLENBQUM7QUFvS3ZGLE1BQU0sT0FBTyxvREFBcUQsU0FBUSxxQ0FBcUM7SUFzQjdHLFlBQ1MsYUFBdUMsRUFDdkMsb0JBQTBDLEVBQzFDLGtCQUFzQztRQUU3QyxLQUFLLENBQUMsYUFBYSxFQUFFLG9CQUFvQixFQUFFLGtCQUFrQixDQUFDLENBQUE7UUFKdkQsa0JBQWEsR0FBYixhQUFhLENBQTBCO1FBQ3ZDLHlCQUFvQixHQUFwQixvQkFBb0IsQ0FBc0I7UUFDMUMsdUJBQWtCLEdBQWxCLGtCQUFrQixDQUFvQjtRQWxCeEMsb0JBQWUs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eEIsV0FBVyxTQUFDLDRDQUE0QyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSG9zdEJpbmRpbmcgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBEZWxpdmVyeU1ldGhvZCB9IGZyb20gXCJAY29saWpuaXQvdHJhbnNhY3Rpb25hcGkvYnVpbGQvbW9kZWwvZGVsaXZlcnktbWV0aG9kLmJvXCI7XHJcbmltcG9ydCB7IFdhcmVob3VzZSB9IGZyb20gXCJAY29saWpuaXQvdHJhbnNhY3Rpb25hcGkvYnVpbGQvbW9kZWwvd2FyZWhvdXNlLmJvXCI7XHJcbmltcG9ydCB7IEZpbHRlckl0ZW1WaWV3bW9kZWwgfSBmcm9tIFwiLi4vLi4vLi4vLi4vLi4vbW9kZWwvZmlsdGVyLWl0ZW0udmlld21vZGVsXCI7XHJcbmltcG9ydCB7IEZpbHRlclZpZXdtb2RlbCB9IGZyb20gXCIuLi8uLi8uLi8uLi8uLi9tb2RlbC9maWx0ZXItdmlld21vZGVsXCI7XHJcbmltcG9ydCB7IFRyYW5zYWN0aW9uU2VydmljZSB9IGZyb20gXCIuLi8uLi8uLi8uLi8uLi9zZXJ2aWNlL3RyYW5zYWN0aW9uLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgVHJhbnNhY3Rpb25GaWx0ZXJDb250ZW50QmFzZUNvbXBvbmVudCB9IGZyb20gXCIuLi8uLi8uLi8uLi9jb3JlL2Jhc2UvdHJhbnNhY3Rpb24tZmlsdGVyLWNvbnRlbnQtYmFzZS5jb21wb25lbnRcIjtcclxuaW1wb3J0IHsgRmlsdGVyUmVxdWVzdFNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vLi4vc2VydmljZS9maWx0ZXItcmVxdWVzdC5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IFRyYW5zYWN0aW9uU2VhcmNoU2VydmljZSB9IGZyb20gXCIuLi8uLi8uLi9zZXJ2aWNlL3RyYW5zYWN0aW9uLXNlYXJjaC5zZXJ2aWNlXCI7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2NvLXRyYW5zYWN0aW9uLXNhbGVzLW9yZGVyLWZpbHRlci1jb250ZW50LWxvZ2lzdGljcycsXHJcbiAgdGVtcGxhdGU6IGBcclxuICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi1maWx0ZXItY29udGVudC1sb2dpc3RpY3Mtd3JhcHBlclwiPlxyXG5cclxuICAgICAgPCEtLUxldmVybWV0aG9kZS0tPlxyXG4gICAgICA8Y28tZmlsdGVyLWl0ZW1cclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ0RFTElWRVJZX01FVEhPRCcgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW2V4cGFuZGVkXT1cInRydWVcIlxyXG4gICAgICAgIFtjb2xsZWN0aW9uXT1cImRlbGl2ZXJ5TWV0aG9kc1wiXHJcbiAgICAgICAgW3NlYXJjaFBsYWNlaG9sZGVyXT1cInNlYXJjaENvbGxlY3Rpb25QbGFjZWhvbGRlciB8IGxvY2FsaXplXCJcclxuICAgICAgICBbbm9SZXN1bHRzTGFiZWxdPVwibm9SZXN1bHRzTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW3Nob3dNb3JlTGFiZWxdPVwic2hvd01vcmVMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICBbc2hvd0xlc3NMYWJlbF09XCJzaG93TGVzc0xhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIChjb2xsZWN0aW9uQ2hhbmdlKT1cImZpbHRlclJlcXVlc3RTZXJ2aWNlLmhhbmRsZUNvbGxlY3Rpb25DaGFuZ2VGb3JSYW5nZSgkZXZlbnQsICdyYW5nZURlbGl2ZXJ5TWV0aG9kJylcIj5cclxuICAgICAgPC9jby1maWx0ZXItaXRlbT5cclxuXHJcblxyXG4gICAgICA8IS0tTGV2ZXJkYXR1bSBkZWZpbml0aWVmLS0+XHJcbiAgICAgIDxjby1maWx0ZXItaXRlbVxyXG4gICAgICAgIFtwbGFjZWhvbGRlcl09XCInREVMSVZFUllfREFURV9GSU5BTCcgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW2N1c3RvbUNvbnRlbnRdPVwidHJ1ZVwiXHJcbiAgICAgICAgW2V4cGFuZGVkXT1cInRydWVcIj5cclxuICAgICAgICA8Y28taW5wdXQtY2hlY2tib3hcclxuICAgICAgICAgIFttb2RlbF09XCJzZWFyY2hSZXF1ZXN0LmRlbGl2ZXJ5RGF0ZURlZmluaXRpdmUgPT09ICdKJ1wiXHJcbiAgICAgICAgICAobW9kZWxDaGFuZ2UpPVwiZmlsdGVyUmVxdWVzdFNlcnZpY2UuaGFuZGxlQ2hlY2tib3hWYWx1ZUNoYW5nZUZvclN0cmluZygkZXZlbnQsICdkZWxpdmVyeURhdGVEZWZpbml0aXZlJylcIlxyXG4gICAgICAgICAgW2xhYmVsXT1cIidERUxJVkVSWV9EQVRFX0ZJTkFMJyB8IGxvY2FsaXplXCI+PC9jby1pbnB1dC1jaGVja2JveD5cclxuICAgICAgPC9jby1maWx0ZXItaXRlbT5cclxuXHJcbiAgICAgIDwhLS1Ub2VnZXdlemVuLS0+XHJcbiAgICAgIDxjby10cmFuc2FjdGlvbi1maWx0ZXItaGlzdG9yaWMtc3RhdGVcclxuICAgICAgICBbbGFiZWxdPVwiJ0FMTE9DQVRFRCdcIlxyXG4gICAgICAgIChmaWx0ZXJDbGlja2VkKT1cImZpbHRlclJlcXVlc3RTZXJ2aWNlLmhhbmRsZUNvbGxlY3Rpb25DaGFuZ2VGb3JTaW5nbGVOdW1iZXIoJGV2ZW50LCAncXVhbnRpdHlBbGxvY2F0ZWQnKVwiXHJcbiAgICAgID48L2NvLXRyYW5zYWN0aW9uLWZpbHRlci1oaXN0b3JpYy1zdGF0ZT5cclxuXHJcbiAgICAgIDwhLS1HZWxldmVyZC0tPlxyXG4gICAgICA8Y28tdHJhbnNhY3Rpb24tZmlsdGVyLWhpc3RvcmljLXN0YXRlXHJcbiAgICAgICAgW2xhYmVsXT1cIidERUxJVkVSRUQnXCJcclxuICAgICAgICAoZmlsdGVyQ2xpY2tlZCk9XCJmaWx0ZXJSZXF1ZXN0U2VydmljZS5oYW5kbGVDb2xsZWN0aW9uQ2hhbmdlRm9yU2luZ2xlTnVtYmVyKCRldmVudCwgJ3F1YW50aXR5RGVsaXZlcmVkJylcIlxyXG4gICAgICA+PC9jby10cmFuc2FjdGlvbi1maWx0ZXItaGlzdG9yaWMtc3RhdGU+XHJcblxyXG4gICAgICA8IS0tR2VmYWN0dXJlZXJkLS0+XHJcbiAgICAgIDxjby10cmFuc2FjdGlvbi1maWx0ZXItaGlzdG9yaWMtc3RhdGVcclxuICAgICAgICBbbGFiZWxdPVwiJ0lOVk9JQ0VEJ1wiXHJcbiAgICAgICAgKGZpbHRlckNsaWNrZWQpPVwiZmlsdGVyUmVxdWVzdFNlcnZpY2UuaGFuZGxlQ29sbGVjdGlvbkNoYW5nZUZvclNpbmdsZU51bWJlcigkZXZlbnQsICdxdWFudGl0eUludm9pY2VkJylcIlxyXG4gICAgICA+PC9jby10cmFuc2FjdGlvbi1maWx0ZXItaGlzdG9yaWMtc3RhdGU+XHJcblxyXG4gICAgICA8IS0tVGUgcGlja2VuLS0+XHJcbiAgICAgIDxjby10cmFuc2FjdGlvbi1maWx0ZXItaGlzdG9yaWMtc3RhdGVcclxuICAgICAgICBbbGFiZWxdPVwiJ1RPX0JFX1BJQ0tFRCdcIlxyXG4gICAgICAgIChmaWx0ZXJDbGlja2VkKT1cImZpbHRlclJlcXVlc3RTZXJ2aWNlLmhhbmRsZUNvbGxlY3Rpb25DaGFuZ2VGb3JTaW5nbGVOdW1iZXIoJGV2ZW50LCAncXVhbnRpdHlUb0JlUGlja2VkJylcIlxyXG4gICAgICA+PC9jby10cmFuc2FjdGlvbi1maWx0ZXItaGlzdG9yaWMtc3RhdGU+XHJcblxyXG4gICAgICA8IS0tR2VwaWNrZWQtLT5cclxuICAgICAgPGNvLXRyYW5zYWN0aW9uLWZpbHRlci1oaXN0b3JpYy1zdGF0ZVxyXG4gICAgICAgIFtsYWJlbF09XCInUElDS0VEJ1wiXHJcbiAgICAgICAgKGZpbHRlckNsaWNrZWQpPVwiZmlsdGVyUmVxdWVzdFNlcnZpY2UuaGFuZGxlQ29sbGVjdGlvbkNoYW5nZUZvclNpbmdsZU51bWJlcigkZXZlbnQsICdxdWFudGl0eVBpY2tlZCcpXCJcclxuICAgICAgPjwvY28tdHJhbnNhY3Rpb24tZmlsdGVyLWhpc3RvcmljLXN0YXRlPlxyXG5cclxuICAgICAgPCEtLUJldmVzdGlnZGUgbGV2ZXJkYXR1bS0tPlxyXG4gICAgICA8Y28tZmlsdGVyLWl0ZW1cclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ0NPTkZJUk1FRF9ERUxJVkVSWV9EQVRFJyB8IGxvY2FsaXplXCJcclxuICAgICAgICBbY3VzdG9tQ29udGVudF09XCJ0cnVlXCJcclxuICAgICAgICBbZXhwYW5kZWRdPVwidHJ1ZVwiPlxyXG4gICAgICAgIDxjby1pbnB1dC1kYXRlLXJhbmdlXHJcbiAgICAgICAgICBbc3RhcnREYXRlXT1cImNvbmZpcm1lZERlbGl2ZXJ5U3RhcnREYXRlXCJcclxuICAgICAgICAgIFtlbmREYXRlXT1cImNvbmZpcm1lZERlbGl2ZXJ5RW5kRGF0ZVwiXHJcbiAgICAgICAgICAoZGF0ZVJhbmdlQ2hhbmdlKT1cIm9uRGF0ZVJhbmdlQ2hhbmdlKCRldmVudCwgJ2NvbmZpcm1lZERlbGl2ZXJ5RGF0ZVJhbmdlJylcIlxyXG4gICAgICAgICAgKGNsZWFyZWQpPVwib25DbGVhcmVkRGF0ZVJhbmdlQ2hhbmdlKCdjb25maXJtZWREZWxpdmVyeURhdGVSYW5nZScpXCJcclxuICAgICAgICAgIFtwbGFjZWhvbGRlcl09XCInU0VMRUNUX0RBVEUnIHwgbG9jYWxpemVcIj5cclxuICAgICAgICA8L2NvLWlucHV0LWRhdGUtcmFuZ2U+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcblxyXG4gICAgICA8IS0tQWFua29tc3RkYXR1bS0tPlxyXG4gICAgICA8Y28tZmlsdGVyLWl0ZW1cclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ0FSUklWQUxfREFURScgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW2N1c3RvbUNvbnRlbnRdPVwidHJ1ZVwiXHJcbiAgICAgICAgW2V4cGFuZGVkXT1cInRydWVcIj5cclxuICAgICAgICA8Y28taW5wdXQtZGF0ZS1yYW5nZVxyXG4gICAgICAgICAgW3N0YXJ0RGF0ZV09XCJhcnJpdmFsU3RhcnREYXRlXCJcclxuICAgICAgICAgIFtlbmREYXRlXT1cImFycml2YWxFbmREYXRlXCJcclxuICAgICAgICAgIChkYXRlUmFuZ2VDaGFuZ2UpPVwib25EYXRlUmFuZ2VDaGFuZ2UoJGV2ZW50LCAnYXJyaXZhbERhdGVSYW5nZScpXCJcclxuICAgICAgICAgIChjbGVhcmVkKT1cIm9uQ2xlYXJlZERhdGVSYW5nZUNoYW5nZSgnYXJyaXZhbERhdGVSYW5nZScpXCJcclxuICAgICAgICAgIFtwbGFjZWhvbGRlcl09XCInU0VMRUNUX0RBVEUnIHwgbG9jYWxpemVcIj5cclxuICAgICAgICA8L2NvLWlucHV0LWRhdGUtcmFuZ2U+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcblxyXG4gICAgICA8IS0tRGVlbGxldmVyaW5nLS0+XHJcbiAgICAgIDxjby1maWx0ZXItaXRlbVxyXG4gICAgICAgIFtwbGFjZWhvbGRlcl09XCInUEFSVF9ERUxJVkVSWScgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW2N1c3RvbUNvbnRlbnRdPVwidHJ1ZVwiXHJcbiAgICAgICAgW2V4cGFuZGVkXT1cInRydWVcIj5cclxuICAgICAgICA8Y28taW5wdXQtY2hlY2tib3hcclxuICAgICAgICAgIFttb2RlbF09XCJzZWFyY2hSZXF1ZXN0LnBhcnRpYWxEZWxpdmVyeSA9PT0gJ0onXCJcclxuICAgICAgICAgIChtb2RlbENoYW5nZSk9XCJmaWx0ZXJSZXF1ZXN0U2VydmljZS5oYW5kbGVDaGVja2JveFZhbHVlQ2hhbmdlRm9yU3RyaW5nKCRldmVudCwgJ3BhcnRpYWxEZWxpdmVyeScpXCJcclxuICAgICAgICAgIFtsYWJlbF09XCInUEFSVF9ERUxJVkVSWScgfCBsb2NhbGl6ZVwiPlxyXG4gICAgICAgIDwvY28taW5wdXQtY2hlY2tib3g+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcblxyXG4gICAgICA8IS0tTWFnYXppam4gLS0+XHJcbiAgICAgIDxjby1maWx0ZXItaXRlbVxyXG4gICAgICAgIFtwbGFjZWhvbGRlcl09XCInV0FSRUhPVVNFJyB8IGxvY2FsaXplXCJcclxuICAgICAgICBbZXhwYW5kZWRdPVwidHJ1ZVwiXHJcbiAgICAgICAgW3NpbmdsZVNlbGVjdF09XCJ0cnVlXCJcclxuICAgICAgICBbY29sbGVjdGlvbl09XCJ3YXJlaG91c2VzXCJcclxuICAgICAgICBbc2VhcmNoUGxhY2Vob2xkZXJdPVwic2VhcmNoQ29sbGVjdGlvblBsYWNlaG9sZGVyIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtub1Jlc3VsdHNMYWJlbF09XCJub1Jlc3VsdHNMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICBbc2hvd01vcmVMYWJlbF09XCJzaG93TW9yZUxhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtzaG93TGVzc0xhYmVsXT1cInNob3dMZXNzTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgKGNvbGxlY3Rpb25DaGFuZ2UpPVwiZmlsdGVyUmVxdWVzdFNlcnZpY2UuaGFuZGxlQ29sbGVjdGlvbkNoYW5nZUZvclNpbmdsZVNlbGVjdCgkZXZlbnQsICd3YXJlaG91c2UnKVwiPlxyXG4gICAgICA8L2NvLWZpbHRlci1pdGVtPlxyXG5cclxuICAgICAgPCEtLUJyb24gbWFnYXppam4tLT5cclxuICAgICAgPGNvLWZpbHRlci1pdGVtXHJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidTT1VSQ0VfV0FSRUhPVVNFJyB8IGxvY2FsaXplXCJcclxuICAgICAgICBbZXhwYW5kZWRdPVwidHJ1ZVwiXHJcbiAgICAgICAgW3NpbmdsZVNlbGVjdF09XCJ0cnVlXCJcclxuICAgICAgICBbY29sbGVjdGlvbl09XCJzb3VyY2VXYXJlaG91c2VzXCJcclxuICAgICAgICBbc2VhcmNoUGxhY2Vob2xkZXJdPVwic2VhcmNoQ29sbGVjdGlvblBsYWNlaG9sZGVyIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtub1Jlc3VsdHNMYWJlbF09XCJub1Jlc3VsdHNMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICBbc2hvd01vcmVMYWJlbF09XCJzaG93TW9yZUxhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtzaG93TGVzc0xhYmVsXT1cInNob3dMZXNzTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgKGNvbGxlY3Rpb25DaGFuZ2UpPVwiZmlsdGVyUmVxdWVzdFNlcnZpY2UuaGFuZGxlQ29sbGVjdGlvbkNoYW5nZUZvclNpbmdsZVNlbGVjdCgkZXZlbnQsICdzb3VyY2VXYXJlaG91c2UnKVwiPlxyXG4gICAgICA8L2NvLWZpbHRlci1pdGVtPlxyXG5cclxuICAgICAgPCEtLVNlcmllbnVtbWVyIC0tPlxyXG4gICAgICA8Y28tZmlsdGVyLWl0ZW1cclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ1NFUklBTF9OVU1CRVInIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtjdXN0b21Db250ZW50XT1cInRydWVcIlxyXG4gICAgICAgIFtleHBhbmRlZF09XCJ0cnVlXCI+XHJcbiAgICAgICAgPGNvLWlucHV0LXRleHQgWyhtb2RlbCldPVwic2VhcmNoUmVxdWVzdC5zZXJpYWxOdW1iZXJcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgIFtwbGFjZWhvbGRlcl09XCJzZWFyY2hQbGFjZWhvbGRlciB8IGxvY2FsaXplXCI+PC9jby1pbnB1dC10ZXh0PlxyXG4gICAgICA8L2NvLWZpbHRlci1pdGVtPlxyXG5cclxuICAgICAgPCEtLUJhdGNobnVtbWVyIC0tPlxyXG4gICAgICA8Y28tZmlsdGVyLWl0ZW1cclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ0JBVENIX05VTUJFUicgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW2N1c3RvbUNvbnRlbnRdPVwidHJ1ZVwiXHJcbiAgICAgICAgW2V4cGFuZGVkXT1cInRydWVcIj5cclxuICAgICAgICA8Y28taW5wdXQtdGV4dCBbKG1vZGVsKV09XCJzZWFyY2hSZXF1ZXN0LmJhdGNoTnVtYmVyXCIgW3BsYWNlaG9sZGVyXT1cInNlYXJjaFBsYWNlaG9sZGVyIHwgbG9jYWxpemVcIj48L2NvLWlucHV0LXRleHQ+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcblxyXG4gICAgICA8IS0tSW5jbHVzaWVmIHJldG91cmVuLS0+XHJcbiAgICAgIDxjby1maWx0ZXItaXRlbVxyXG4gICAgICAgIFtwbGFjZWhvbGRlcl09XCInSU5DTFVESU5HX1JFVFVSTlMnIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtjdXN0b21Db250ZW50XT1cInRydWVcIlxyXG4gICAgICAgIFtleHBhbmRlZF09XCJ0cnVlXCI+XHJcbiAgICAgICAgPGNvLWlucHV0LWNoZWNrYm94XHJcbiAgICAgICAgICBbbGFiZWxdPVwiJ0lOQ0xVRElOR19SRVRVUk5TJyB8IGxvY2FsaXplXCJcclxuICAgICAgICAgIFttb2RlbF09XCJzZWFyY2hSZXF1ZXN0LmluY2x1ZGluZ1JldHVybnMgPT09IDFcIlxyXG4gICAgICAgICAgKG1vZGVsQ2hhbmdlKT1cImZpbHRlclJlcXVlc3RTZXJ2aWNlLmhhbmRsZUNoZWNrYm94VmFsdWVDaGFuZ2VGb3JOdW1iZXIoJGV2ZW50LCAnaW5jbHVkaW5nUmV0dXJucycpXCJcclxuICAgICAgICA+XHJcbiAgICAgICAgPC9jby1pbnB1dC1jaGVja2JveD5cclxuICAgICAgPC9jby1maWx0ZXItaXRlbT5cclxuXHJcbiAgICAgIDwhLS1MZXZlcm1ldGhvZGUgb3AgKHJlZ2VsL2hlYWRlcik6IHRvZG86IG5vZyB1aXR6b2VrZW4gd2Vsa2UgZmlsdGVyIGRpdCBpcy0tPlxyXG4gICAgICA8ZGl2IGNsYXNzPVwiZmlsdGVyLWJ1dHRvbi1jb250YWluZXJcIj5cclxuICAgICAgICA8Y28tYnV0dG9uIGNsYXNzPVwiY2xpY2thYmxlXCIgW2xhYmVsXT1cIidGaWx0ZXInXCIgKGNsaWNrKT1cIm9uRmlsdGVyQnV0dG9uQ2xpY2soKVwiPjwvY28tYnV0dG9uPlxyXG4gICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG4gIGBcclxufSlcclxuZXhwb3J0IGNsYXNzIFRyYW5zYWN0aW9uU2FsZXNPcmRlckZpbHRlckNvbnRlbnRMb2dpc3RpY3NDb21wb25lbnQgZXh0ZW5kcyBUcmFuc2FjdGlvbkZpbHRlckNvbnRlbnRCYXNlQ29tcG9uZW50IHtcclxuXHJcbiAgQEhvc3RCaW5kaW5nKFwiY2xhc3MuY28tdHJhbnNhY3Rpb24tc2VhcmNoLWZpbHRlci1jb250ZW50XCIpXHJcbiAgcHVibGljIHNob3dDbGFzcygpOiBib29sZWFuIHtcclxuICAgIHJldHVybiB0cnVlO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGRlbGl2ZXJ5TWV0aG9kcyA9IFtdO1xyXG4gIHB1YmxpYyBkZWxpdmVyeU1ldGhvZEZpZWxkczogeyB0ZXh0LCB2YWx1ZSB9ID0ge3RleHQ6IFwiZGVzY3JpcHRpb25cIiwgdmFsdWU6IFwiY29kZVwifTtcclxuXHJcbiAgcHVibGljIHdhcmVob3VzZXM6IEZpbHRlckl0ZW1WaWV3bW9kZWxbXTtcclxuICBwdWJsaWMgd2FyZWhvdXNlRmllbGRzOiB7IHRleHQsIHZhbHVlIH0gPSB7dGV4dDogXCJkZXNjcmlwdGlvblwiLCB2YWx1ZTogXCJ3YXJlaG91c2VOb1wifTtcclxuXHJcbiAgcHVibGljIHNvdXJjZVdhcmVob3VzZXM6IEZpbHRlckl0ZW1WaWV3bW9kZWxbXTtcclxuICBwdWJsaWMgc291cmNlV2FyZWhvdXNlRmllbGRzOiB7IHRleHQsIHZhbHVlIH0gPSB7dGV4dDogXCJkZXNjcmlwdGlvblwiLCB2YWx1ZTogXCJ3YXJlaG91c2VOb1wifTtcclxuXHJcbiAgcHVibGljIGNvbmZpcm1lZERlbGl2ZXJ5U3RhcnREYXRlOiBEYXRlO1xyXG4gIHB1YmxpYyBjb25maXJtZWREZWxpdmVyeUVuZERhdGU6IERhdGU7XHJcblxyXG4gIHB1YmxpYyBhcnJpdmFsU3RhcnREYXRlOiBEYXRlO1xyXG4gIHB1YmxpYyBhcnJpdmFsRW5kRGF0ZTogRGF0ZTtcclxuXHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBwdWJsaWMgc2VhcmNoU2VydmljZTogVHJhbnNhY3Rpb25TZWFyY2hTZXJ2aWNlLFxyXG4gICAgcHVibGljIGZpbHRlclJlcXVlc3RTZXJ2aWNlOiBGaWx0ZXJSZXF1ZXN0U2VydmljZSxcclxuICAgIHB1YmxpYyB0cmFuc2FjdGlvblNlcnZpY2U6IFRyYW5zYWN0aW9uU2VydmljZSxcclxuICApIHtcclxuICAgIHN1cGVyKHNlYXJjaFNlcnZpY2UsIGZpbHRlclJlcXVlc3RTZXJ2aWNlLCB0cmFuc2FjdGlvblNlcnZpY2UpXHJcbiAgfVxyXG5cclxuICBwdWJsaWMgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgICB0aGlzLl9zZXRSYW5nZURhdGVzKCk7XHJcbiAgICB0aGlzLl9zZXREZWxpdmVyeU1ldGhvZHMoKTtcclxuICAgIHRoaXMuX3NldFdhcmVob3VzZXMoKTtcclxuICAgIHRoaXMuX3NldFNvdXJjZVdhcmVob3VzZXMoKTtcclxuICB9XHJcblxyXG4gIHByaXZhdGUgX3NldFJhbmdlRGF0ZXMoKTogdm9pZCB7XHJcbiAgICB0aGlzLmNvbmZpcm1lZERlbGl2ZXJ5U3RhcnREYXRlID0gdGhpcy5maWx0ZXJSZXF1ZXN0U2VydmljZS5nZXREYXRlRnJvbUZpbHRlclJlcXVlc3RSYW5nZSh0aGlzLnNlYXJjaFJlcXVlc3QuY29uZmlybWVkRGVsaXZlcnlEYXRlUmFuZ2UsIDApO1xyXG4gICAgdGhpcy5jb25maXJtZWREZWxpdmVyeUVuZERhdGUgPSB0aGlzLmZpbHRlclJlcXVlc3RTZXJ2aWNlLmdldERhdGVGcm9tRmlsdGVyUmVxdWVzdFJhbmdlKHRoaXMuc2VhcmNoUmVxdWVzdC5jb25maXJtZWREZWxpdmVyeURhdGVSYW5nZSwgMSk7XHJcbiAgICB0aGlzLmFycml2YWxTdGFydERhdGUgPSB0aGlzLmZpbHRlclJlcXVlc3RTZXJ2aWNlLmdldERhdGVGcm9tRmlsdGVyUmVxdWVzdFJhbmdlKHRoaXMuc2VhcmNoUmVxdWVzdC5hcnJpdmFsRGF0ZVJhbmdlLCAwKTtcclxuICAgIHRoaXMuYXJyaXZhbEVuZERhdGUgPSB0aGlzLmZpbHRlclJlcXVlc3RTZXJ2aWNlLmdldERhdGVGcm9tRmlsdGVyUmVxdWVzdFJhbmdlKHRoaXMuc2VhcmNoUmVxdWVzdC5hcnJpdmFsRGF0ZVJhbmdlLCAxKTtcclxuICB9XHJcblxyXG4gIC8vRGVsaXZlcnkgTWV0aG9kc1xyXG4gIHByaXZhdGUgX3NldERlbGl2ZXJ5TWV0aG9kcygpOiB2b2lkIHtcclxuICAgIHRoaXMudHJhbnNhY3Rpb25TZXJ2aWNlLmdldERlbGl2ZXJ5TWV0aG9kcygpLnRoZW4oKGRlbGl2ZXJ5TWV0aG9kczogRGVsaXZlcnlNZXRob2RbXSkgPT4ge1xyXG4gICAgICB0aGlzLmRlbGl2ZXJ5TWV0aG9kcyA9IG5ldyBGaWx0ZXJWaWV3bW9kZWwoZGVsaXZlcnlNZXRob2RzLCB0aGlzLmRlbGl2ZXJ5TWV0aG9kRmllbGRzKS5maWx0ZXJJdGVtcztcclxuICAgIH0pO1xyXG4gIH1cclxuXHJcbiAgLy9XYXJlaG91c2VzXHJcbiAgcHJpdmF0ZSBfc2V0V2FyZWhvdXNlcygpOiB2b2lkIHtcclxuICAgIHRoaXMudHJhbnNhY3Rpb25TZXJ2aWNlLmdldFdhcmVob3VzZXMoKS50aGVuKCh3YXJlaG91c2VzOiBXYXJlaG91c2VbXSkgPT4ge1xyXG4gICAgICB0aGlzLndhcmVob3VzZXMgPSBuZXcgRmlsdGVyVmlld21vZGVsKHdhcmVob3VzZXMsIHRoaXMud2FyZWhvdXNlRmllbGRzKS5maWx0ZXJJdGVtcztcclxuICAgIH0pO1xyXG4gIH1cclxuXHJcbiAgLy9Tb3VyY2UgV2FyZWhvdXNlc1xyXG4gIHByaXZhdGUgX3NldFNvdXJjZVdhcmVob3VzZXMoKTogdm9pZCB7XHJcbiAgICB0aGlzLnRyYW5zYWN0aW9uU2VydmljZS5nZXRXYXJlaG91c2VzKCkudGhlbigod2FyZWhvdXNlczogV2FyZWhvdXNlW10pID0+IHtcclxuICAgICAgdGhpcy5zb3VyY2VXYXJlaG91c2VzID0gbmV3IEZpbHRlclZpZXdtb2RlbCh3YXJlaG91c2VzLCB0aGlzLnNvdXJjZVdhcmVob3VzZUZpZWxkcykuZmlsdGVySXRlbXM7XHJcbiAgICB9KTtcclxuICB9XHJcbn1cclxuIl19
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { NgModule } from "@angular/core";
|
|
2
|
+
import { CommonModule } from "@angular/common";
|
|
3
|
+
import { ButtonModule, FilterItemModule, InputCheckboxModule, InputDatePickerModule, InputDateRangePickerModule, InputRadioButtonModule, InputTextModule } from "@colijnit/corecomponents_v12";
|
|
4
|
+
import { PipeModule } from "../../../../../pipe/pipe.module";
|
|
5
|
+
import { TransactionSalesOrderFilterContentLogisticsComponent } from "./transaction-sales-order-filter-content-logistics.component";
|
|
6
|
+
import { TransactionFilterHistoricStateModule } from "../../../transaction-filter-historic-state/transaction-filter-historic-state.module";
|
|
7
|
+
export class TransactionSalesOrderFilterContentLogisticsModule {
|
|
8
|
+
}
|
|
9
|
+
TransactionSalesOrderFilterContentLogisticsModule.decorators = [
|
|
10
|
+
{ type: NgModule, args: [{
|
|
11
|
+
imports: [
|
|
12
|
+
CommonModule,
|
|
13
|
+
FilterItemModule,
|
|
14
|
+
InputDateRangePickerModule,
|
|
15
|
+
InputTextModule,
|
|
16
|
+
PipeModule,
|
|
17
|
+
InputDatePickerModule,
|
|
18
|
+
ButtonModule,
|
|
19
|
+
InputCheckboxModule,
|
|
20
|
+
InputRadioButtonModule,
|
|
21
|
+
TransactionFilterHistoricStateModule
|
|
22
|
+
],
|
|
23
|
+
declarations: [
|
|
24
|
+
TransactionSalesOrderFilterContentLogisticsComponent
|
|
25
|
+
],
|
|
26
|
+
exports: [
|
|
27
|
+
TransactionSalesOrderFilterContentLogisticsComponent
|
|
28
|
+
]
|
|
29
|
+
},] }
|
|
30
|
+
];
|
|
31
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2FsZXMtb3JkZXItZmlsdGVyLWNvbnRlbnQtbG9naXN0aWNzLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RyYW5zYWN0aW9uL3NyYy9saWIvY29tcG9uZW50L3RyYW5zYWN0aW9uLXNlYXJjaC90cmFuc2FjdGlvbi1maWx0ZXItY29udGVudC9zYWxlcy1vcmRlci1maWx0ZXItY29udGVudC90cmFuc2FjdGlvbi1zYWxlcy1vcmRlci1maWx0ZXItY29udGVudC1sb2dpc3RpY3MvdHJhbnNhY3Rpb24tc2FsZXMtb3JkZXItZmlsdGVyLWNvbnRlbnQtbG9naXN0aWNzLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQUMsWUFBWSxFQUFFLGdCQUFnQixFQUFFLG1CQUFtQixFQUFFLHFCQUFxQixFQUFFLDBCQUEwQixFQUFFLHNCQUFzQixFQUFFLGVBQWUsRUFBQyxNQUFNLDhCQUE4QixDQUFDO0FBQzdMLE9BQU8sRUFBQyxVQUFVLEVBQUMsTUFBTSxpQ0FBaUMsQ0FBQztBQUMzRCxPQUFPLEVBQUMsb0RBQW9ELEVBQUMsTUFBTSw4REFBOEQsQ0FBQztBQUNsSSxPQUFPLEVBQUMsb0NBQW9DLEVBQUMsTUFBTSxxRkFBcUYsQ0FBQztBQXNCekksTUFBTSxPQUFPLGlEQUFpRDs7O1lBcEI3RCxRQUFRLFNBQUM7Z0JBQ04sT0FBTyxFQUFFO29CQUNMLFlBQVk7b0JBQ1osZ0JBQWdCO29CQUNoQiwwQkFBMEI7b0JBQzFCLGVBQWU7b0JBQ2YsVUFBVTtvQkFDVixxQkFBcUI7b0JBQ3JCLFlBQVk7b0JBQ1osbUJBQW1CO29CQUNuQixzQkFBc0I7b0JBQ3RCLG9DQUFvQztpQkFDdkM7Z0JBQ0gsWUFBWSxFQUFFO29CQUNaLG9EQUFvRDtpQkFDckQ7Z0JBQ0QsT0FBTyxFQUFFO29CQUNQLG9EQUFvRDtpQkFDckQ7YUFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7TmdNb2R1bGV9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7Q29tbW9uTW9kdWxlfSBmcm9tIFwiQGFuZ3VsYXIvY29tbW9uXCI7XHJcbmltcG9ydCB7QnV0dG9uTW9kdWxlLCBGaWx0ZXJJdGVtTW9kdWxlLCBJbnB1dENoZWNrYm94TW9kdWxlLCBJbnB1dERhdGVQaWNrZXJNb2R1bGUsIElucHV0RGF0ZVJhbmdlUGlja2VyTW9kdWxlLCBJbnB1dFJhZGlvQnV0dG9uTW9kdWxlLCBJbnB1dFRleHRNb2R1bGV9IGZyb20gXCJAY29saWpuaXQvY29yZWNvbXBvbmVudHNfdjEyXCI7XHJcbmltcG9ydCB7UGlwZU1vZHVsZX0gZnJvbSBcIi4uLy4uLy4uLy4uLy4uL3BpcGUvcGlwZS5tb2R1bGVcIjtcclxuaW1wb3J0IHtUcmFuc2FjdGlvblNhbGVzT3JkZXJGaWx0ZXJDb250ZW50TG9naXN0aWNzQ29tcG9uZW50fSBmcm9tIFwiLi90cmFuc2FjdGlvbi1zYWxlcy1vcmRlci1maWx0ZXItY29udGVudC1sb2dpc3RpY3MuY29tcG9uZW50XCI7XHJcbmltcG9ydCB7VHJhbnNhY3Rpb25GaWx0ZXJIaXN0b3JpY1N0YXRlTW9kdWxlfSBmcm9tIFwiLi4vLi4vLi4vdHJhbnNhY3Rpb24tZmlsdGVyLWhpc3RvcmljLXN0YXRlL3RyYW5zYWN0aW9uLWZpbHRlci1oaXN0b3JpYy1zdGF0ZS5tb2R1bGVcIjtcclxuXHJcbkBOZ01vZHVsZSh7XHJcbiAgICBpbXBvcnRzOiBbXHJcbiAgICAgICAgQ29tbW9uTW9kdWxlLFxyXG4gICAgICAgIEZpbHRlckl0ZW1Nb2R1bGUsXHJcbiAgICAgICAgSW5wdXREYXRlUmFuZ2VQaWNrZXJNb2R1bGUsXHJcbiAgICAgICAgSW5wdXRUZXh0TW9kdWxlLFxyXG4gICAgICAgIFBpcGVNb2R1bGUsXHJcbiAgICAgICAgSW5wdXREYXRlUGlja2VyTW9kdWxlLFxyXG4gICAgICAgIEJ1dHRvbk1vZHVsZSxcclxuICAgICAgICBJbnB1dENoZWNrYm94TW9kdWxlLFxyXG4gICAgICAgIElucHV0UmFkaW9CdXR0b25Nb2R1bGUsXHJcbiAgICAgICAgVHJhbnNhY3Rpb25GaWx0ZXJIaXN0b3JpY1N0YXRlTW9kdWxlXHJcbiAgICBdLFxyXG4gIGRlY2xhcmF0aW9uczogW1xyXG4gICAgVHJhbnNhY3Rpb25TYWxlc09yZGVyRmlsdGVyQ29udGVudExvZ2lzdGljc0NvbXBvbmVudFxyXG4gIF0sXHJcbiAgZXhwb3J0czogW1xyXG4gICAgVHJhbnNhY3Rpb25TYWxlc09yZGVyRmlsdGVyQ29udGVudExvZ2lzdGljc0NvbXBvbmVudFxyXG4gIF1cclxufSlcclxuZXhwb3J0IGNsYXNzIFRyYW5zYWN0aW9uU2FsZXNPcmRlckZpbHRlckNvbnRlbnRMb2dpc3RpY3NNb2R1bGUge1xyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
import { __awaiter } from "tslib";
|
|
2
|
+
import { Component, HostBinding } from "@angular/core";
|
|
3
|
+
import { RelationRequest } from "@colijnit/transactionapi/build/model/relation-request";
|
|
4
|
+
import { FilterViewmodel } from "../../../../../model/filter-viewmodel";
|
|
5
|
+
import { TransactionService } from "../../../../../service/transaction.service";
|
|
6
|
+
import { TransactionFilterContentBaseComponent } from "../../../../core/base/transaction-filter-content-base.component";
|
|
7
|
+
import { FilterRequestService } from "../../../service/filter-request.service";
|
|
8
|
+
import { TransactionSearchService } from "../../../service/transaction-search.service";
|
|
9
|
+
export class TransactionSalesOrderFilterContentOrderComponent extends TransactionFilterContentBaseComponent {
|
|
10
|
+
constructor(searchService, filterRequestService, transactionService) {
|
|
11
|
+
super(searchService, filterRequestService, transactionService);
|
|
12
|
+
this.searchService = searchService;
|
|
13
|
+
this.filterRequestService = filterRequestService;
|
|
14
|
+
this.transactionService = transactionService;
|
|
15
|
+
this.salesPersonsFields = { text: "name", value: "relationId" };
|
|
16
|
+
this.tagsFields = { text: "description", value: "tagValueId" };
|
|
17
|
+
this.branchFields = { text: "description", value: "relationId" };
|
|
18
|
+
this.onHoldCodeFields = { text: "description", value: "onHoldCode" };
|
|
19
|
+
this.commissionCodeFields = { text: "description", value: "code" };
|
|
20
|
+
this.customerGroupFields = { text: "naam", value: "groepsnummer" };
|
|
21
|
+
this.loadCustomers = (nameFilter) => __awaiter(this, void 0, void 0, function* () {
|
|
22
|
+
const request = new RelationRequest();
|
|
23
|
+
request.familyName = nameFilter;
|
|
24
|
+
return this.transactionService.getRelationListObjects(request).then((relations) => {
|
|
25
|
+
return new FilterViewmodel(relations, { text: 'familyName', value: 'familyName' }).filterItems;
|
|
26
|
+
});
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
showClass() {
|
|
30
|
+
return true;
|
|
31
|
+
}
|
|
32
|
+
ngOnInit() {
|
|
33
|
+
this._setRangeDates();
|
|
34
|
+
this._setSalesPersons();
|
|
35
|
+
this._setTags();
|
|
36
|
+
this._setBranches();
|
|
37
|
+
this._setOnHoldCodes();
|
|
38
|
+
this._setCommissionCodes();
|
|
39
|
+
this._setCustomerGroups();
|
|
40
|
+
}
|
|
41
|
+
_setRangeDates() {
|
|
42
|
+
this.transStartDate = this.filterRequestService.getDateFromFilterRequestRange(this.searchRequest.rangeTransDate, 0);
|
|
43
|
+
this.transEndDate = this.filterRequestService.getDateFromFilterRequestRange(this.searchRequest.rangeTransDate, 1);
|
|
44
|
+
this.deliveryStartDate = this.filterRequestService.getDateFromFilterRequestRange(this.searchRequest.deliveryDateRange, 0);
|
|
45
|
+
this.deliveryEndDate = this.filterRequestService.getDateFromFilterRequestRange(this.searchRequest.deliveryDateRange, 1);
|
|
46
|
+
}
|
|
47
|
+
//Verkoper
|
|
48
|
+
_setSalesPersons() {
|
|
49
|
+
this.transactionService.getSalesPersons().then((salesPersons) => {
|
|
50
|
+
this.salesPersons = new FilterViewmodel(salesPersons, this.salesPersonsFields).filterItems;
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
// Tags
|
|
54
|
+
_setTags() {
|
|
55
|
+
this.transactionService.getTags(1).then((tags) => {
|
|
56
|
+
this.tags = new FilterViewmodel(tags, this.tagsFields).filterItems;
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
//Branches
|
|
60
|
+
_setBranches() {
|
|
61
|
+
this.transactionService.getBranches().then((branches) => {
|
|
62
|
+
this.branches = new FilterViewmodel(branches, this.branchFields).filterItems;
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
//OnHoldCodes
|
|
66
|
+
_setOnHoldCodes() {
|
|
67
|
+
this.transactionService.getOnHoldCodes().then((onHoldCodes) => {
|
|
68
|
+
this.onHoldCodes = new FilterViewmodel(onHoldCodes, this.onHoldCodeFields).filterItems;
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
//CommissionCodes
|
|
72
|
+
_setCommissionCodes() {
|
|
73
|
+
this.transactionService.getCommissionCodes("NL").then((commissionCodes) => {
|
|
74
|
+
this.commissionCodes = new FilterViewmodel(commissionCodes, this.commissionCodeFields).filterItems;
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
//CustomerGroups
|
|
78
|
+
_setCustomerGroups() {
|
|
79
|
+
this.transactionService.getCustomerGroups().then((customerGroups) => {
|
|
80
|
+
this.customerGroups = new FilterViewmodel(customerGroups, this.customerGroupFields).filterItems;
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
TransactionSalesOrderFilterContentOrderComponent.decorators = [
|
|
85
|
+
{ type: Component, args: [{
|
|
86
|
+
selector: 'co-transaction-sales-order-filter-content-order',
|
|
87
|
+
template: `
|
|
88
|
+
<div class="transaction-filter-content-order-wrapper">
|
|
89
|
+
|
|
90
|
+
<!--Orderdatum-->
|
|
91
|
+
<co-filter-item
|
|
92
|
+
[placeholder]="'ORDER_DATE' | localize"
|
|
93
|
+
[expanded]="true"
|
|
94
|
+
[customContent]="true">
|
|
95
|
+
<co-input-date-range
|
|
96
|
+
[startDate]="transStartDate"
|
|
97
|
+
[endDate]="transEndDate"
|
|
98
|
+
(dateRangeChange)="onDateRangeChange($event, 'rangeTransDate')"
|
|
99
|
+
(cleared)="onClearedDateRangeChange('rangeTransDate')"
|
|
100
|
+
[placeholder]="'SELECT_DATE' | localize">
|
|
101
|
+
</co-input-date-range>
|
|
102
|
+
</co-filter-item>
|
|
103
|
+
|
|
104
|
+
<!--Leverdatum-->
|
|
105
|
+
<co-filter-item
|
|
106
|
+
[placeholder]="'DELIVERY_DATE' | localize"
|
|
107
|
+
[expanded]="true"
|
|
108
|
+
[customContent]="true">
|
|
109
|
+
<co-input-date-range
|
|
110
|
+
[startDate]="deliveryStartDate"
|
|
111
|
+
[endDate]="deliveryEndDate"
|
|
112
|
+
(dateRangeChange)="onDateRangeChange($event, 'deliveryDateRange')"
|
|
113
|
+
(cleared)="onClearedDateRangeChange('deliveryDateRange')"
|
|
114
|
+
[placeholder]="'SELECT_DATE' | localize">
|
|
115
|
+
</co-input-date-range>
|
|
116
|
+
</co-filter-item>
|
|
117
|
+
|
|
118
|
+
<!--Filiaal-->
|
|
119
|
+
<co-filter-item
|
|
120
|
+
[placeholder]="'BRANCH' | localize"
|
|
121
|
+
[expanded]="true"
|
|
122
|
+
[collection]="branches"
|
|
123
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
124
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
125
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
126
|
+
[showLessLabel]="showLessLabel | localize"
|
|
127
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForRange($event, 'rangeBranchId')"
|
|
128
|
+
>
|
|
129
|
+
</co-filter-item>
|
|
130
|
+
|
|
131
|
+
<!--Verkoper-->
|
|
132
|
+
<co-filter-item
|
|
133
|
+
[placeholder]="'HANDLED_BY' | localize"
|
|
134
|
+
[expanded]="true"
|
|
135
|
+
[collection]="salesPersons"
|
|
136
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
137
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
138
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
139
|
+
[showLessLabel]="showLessLabel | localize"
|
|
140
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForRange($event, 'rangeSalesPerson')"
|
|
141
|
+
>
|
|
142
|
+
</co-filter-item>
|
|
143
|
+
|
|
144
|
+
<!--Eigen referentie-->
|
|
145
|
+
<co-filter-item
|
|
146
|
+
[placeholder]="'OWN_REFERENCE' | localize"
|
|
147
|
+
[customContent]="true"
|
|
148
|
+
[expanded]="true">
|
|
149
|
+
<co-input-text [(model)]="searchRequest.userReference"
|
|
150
|
+
[placeholder]="'OWN_REFERENCE' | localize"></co-input-text>
|
|
151
|
+
</co-filter-item>
|
|
152
|
+
|
|
153
|
+
<!--Tags-->
|
|
154
|
+
<co-filter-item
|
|
155
|
+
[placeholder]="'TAGS' | localize"
|
|
156
|
+
[expanded]="true"
|
|
157
|
+
[collection]="tags"
|
|
158
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
159
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
160
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
161
|
+
[showLessLabel]="showLessLabel | localize"
|
|
162
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForRange($event, 'tagRange')"
|
|
163
|
+
>
|
|
164
|
+
<co-input-text [(model)]="searchRequest.tagRange" [placeholder]="'TAGS' | localize"></co-input-text>
|
|
165
|
+
</co-filter-item>
|
|
166
|
+
|
|
167
|
+
<!--On hold codes-->
|
|
168
|
+
<co-filter-item
|
|
169
|
+
[placeholder]="'ON_HOLD' | localize"
|
|
170
|
+
[expanded]="true"
|
|
171
|
+
[collection]="onHoldCodes"
|
|
172
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
173
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
174
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
175
|
+
[showLessLabel]="showLessLabel | localize"
|
|
176
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForRange($event,'rangeOnHoldCodes')"
|
|
177
|
+
>
|
|
178
|
+
<co-input-text [(model)]="searchRequest.tagRange" [placeholder]="'TAGS' | localize"></co-input-text>
|
|
179
|
+
</co-filter-item>
|
|
180
|
+
|
|
181
|
+
<!--Order definitief-->
|
|
182
|
+
<co-filter-item
|
|
183
|
+
[placeholder]="'ORDER_DEFINITIVE' | localize"
|
|
184
|
+
[customContent]="true"
|
|
185
|
+
[expanded]="true">
|
|
186
|
+
<co-input-checkbox
|
|
187
|
+
[model]="searchRequest.transactionDefinitive === 'J'"
|
|
188
|
+
(modelChange)="filterRequestService.handleCheckboxValueChangeForString($event, 'transactionDefinitive')"
|
|
189
|
+
[label]="'ORDER_DEFINITIVE' | localize"></co-input-checkbox>
|
|
190
|
+
</co-filter-item>
|
|
191
|
+
|
|
192
|
+
<!--Commissiecode-->
|
|
193
|
+
<co-filter-item
|
|
194
|
+
[placeholder]="'COMMISSION_CODE' | localize"
|
|
195
|
+
[expanded]="true"
|
|
196
|
+
[collection]="commissionCodes"
|
|
197
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
198
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
199
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
200
|
+
[showLessLabel]="showLessLabel | localize"
|
|
201
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForArray($event, 'commissionCodes')"
|
|
202
|
+
>
|
|
203
|
+
</co-filter-item>
|
|
204
|
+
|
|
205
|
+
<!--Inactieve transacties-->
|
|
206
|
+
<co-filter-item
|
|
207
|
+
[placeholder]="'INACTIVE_TRANSACTIONS' | localize"
|
|
208
|
+
[customContent]="true"
|
|
209
|
+
[expanded]="true">
|
|
210
|
+
<co-input-checkbox
|
|
211
|
+
[model]="searchRequest.active === false"
|
|
212
|
+
(modelChange)="searchRequest.active = !$event"
|
|
213
|
+
[label]="'INACTIVE_TRANSACTIONS' | localize"
|
|
214
|
+
></co-input-checkbox>
|
|
215
|
+
</co-filter-item>
|
|
216
|
+
|
|
217
|
+
<!--Klantnaam-->
|
|
218
|
+
<co-filter-item
|
|
219
|
+
[placeholder]="'CUSTOMER_NAME' | localize"
|
|
220
|
+
[expanded]="true"
|
|
221
|
+
[singleSelect]="true"
|
|
222
|
+
[minSearchCharsToLoadCollection]="3"
|
|
223
|
+
[collectionLoadFn]="loadCustomers"
|
|
224
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForSingleSelect($event, 'relationName' )"
|
|
225
|
+
>
|
|
226
|
+
</co-filter-item>
|
|
227
|
+
|
|
228
|
+
<!--Klantgroep-->
|
|
229
|
+
<co-filter-item
|
|
230
|
+
[placeholder]="'CUSTOMER_GROUP' | localize"
|
|
231
|
+
[expanded]="true"
|
|
232
|
+
[singleSelect]="true"
|
|
233
|
+
[collection]="customerGroups"
|
|
234
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
235
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
236
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
237
|
+
[showLessLabel]="showLessLabel | localize"
|
|
238
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForSingleSelect($event, 'customerGroupId')">
|
|
239
|
+
</co-filter-item>
|
|
240
|
+
<div class="filter-button-container">
|
|
241
|
+
<co-button class="clickable" [label]="'Filter'" (click)="onFilterButtonClick()"></co-button>
|
|
242
|
+
</div>
|
|
243
|
+
</div>
|
|
244
|
+
`
|
|
245
|
+
},] }
|
|
246
|
+
];
|
|
247
|
+
TransactionSalesOrderFilterContentOrderComponent.ctorParameters = () => [
|
|
248
|
+
{ type: TransactionSearchService },
|
|
249
|
+
{ type: FilterRequestService },
|
|
250
|
+
{ type: TransactionService }
|
|
251
|
+
];
|
|
252
|
+
TransactionSalesOrderFilterContentOrderComponent.propDecorators = {
|
|
253
|
+
showClass: [{ type: HostBinding, args: ["class.co-transaction-search-filter-content",] }]
|
|
254
|
+
};
|
|
255
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2FsZXMtb3JkZXItZmlsdGVyLWNvbnRlbnQtb3JkZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jb21wb25lbnQvdHJhbnNhY3Rpb24tc2VhcmNoL3RyYW5zYWN0aW9uLWZpbHRlci1jb250ZW50L3NhbGVzLW9yZGVyLWZpbHRlci1jb250ZW50L3RyYW5zYWN0aW9uLXNhbGVzLW9yZGVyLWZpbHRlci1jb250ZW50LW9yZGVyL3RyYW5zYWN0aW9uLXNhbGVzLW9yZGVyLWZpbHRlci1jb250ZW50LW9yZGVyLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxXQUFXLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFNdkQsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHVEQUF1RCxDQUFDO0FBSXhGLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSx1Q0FBdUMsQ0FBQztBQUN4RSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSw0Q0FBNEMsQ0FBQztBQUNoRixPQUFPLEVBQUUscUNBQXFDLEVBQUUsTUFBTSxpRUFBaUUsQ0FBQztBQUN4SCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSx5Q0FBeUMsQ0FBQztBQUMvRSxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSw2Q0FBNkMsQ0FBQztBQW1LdkYsTUFBTSxPQUFPLGdEQUFpRCxTQUFRLHFDQUFxQztJQThCekcsWUFDUyxhQUF1QyxFQUN2QyxvQkFBMEMsRUFDMUMsa0JBQXNDO1FBRTdDLEtBQUssQ0FBQyxhQUFhLEVBQUUsb0JBQW9CLEVBQUUsa0JBQWtCLENBQUMsQ0FBQTtRQUp2RCxrQkFBYSxHQUFiLGFBQWEsQ0FBMEI7UUFDdkMseUJBQW9CLEdBQXBCLG9CQUFvQixDQUFzQjtRQUMxQyx1QkFBa0Is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QixFQUFFLEVBQUU7WUFDbkYsSUFBSSxDQUFDLGNBQWMsR0FBRyxJQUFJLGVBQWUsQ0FBQyxjQUFjLEVBQUUsSUFBSSxDQUFDLG1CQUFtQixDQUFDLENBQUMsV0FBVyxDQUFDO1FBQ2xHLENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQzs7O1lBelFGLFNBQVMsU0FBQztnQkFDVCxRQUFRLEVBQUUsaURBQWlEO2dCQUMzRCxRQUFRLEVBQUU7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7R0E2SlQ7YUFDRjs7O1lBbEtRLHdCQUF3QjtZQUR4QixvQkFBb0I7WUFGcEIsa0JBQWtCOzs7d0JBd0t4QixXQUFXLFNBQUMsNENBQTRDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBIb3N0QmluZGluZyB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IEJyYW5jaExvdiB9IGZyb20gXCJAY29saWpuaXQvdHJhbnNhY3Rpb25hcGkvYnVpbGQvbW9kZWwvYnJhbmNoLWxvdi5ib1wiO1xyXG5pbXBvcnQgeyBDb0RvbWFpblZhbHVlIH0gZnJvbSBcIkBjb2xpam5pdC90cmFuc2FjdGlvbmFwaS9idWlsZC9tb2RlbC9jby1kb21haW4tdmFsdWUuYm9cIjtcclxuaW1wb3J0IHsgQ3VzdG9tZXJHcm91cCB9IGZyb20gXCJAY29saWpuaXQvdHJhbnNhY3Rpb25hcGkvYnVpbGQvbW9kZWwvY3VzdG9tZXItZ3JvdXAuYm9cIjtcclxuaW1wb3J0IHsgT25Ib2xkQ29kZSB9IGZyb20gXCJAY29saWpuaXQvdHJhbnNhY3Rpb25hcGkvYnVpbGQvbW9kZWwvb24taG9sZC1jb2RlLmJvXCI7XHJcbmltcG9ydCB7IFJlbGF0aW9uTGlzdE9iamVjdCB9IGZyb20gXCJAY29saWpuaXQvdHJhbnNhY3Rpb25hcGkvYnVpbGQvbW9kZWwvcmVsYXRpb24tbGlzdC1vYmplY3QuYm9cIjtcclxuaW1wb3J0IHsgUmVsYXRpb25SZXF1ZXN0IH0gZnJvbSBcIkBjb2xpam5pdC90cmFuc2FjdGlvbmFwaS9idWlsZC9tb2RlbC9yZWxhdGlvbi1yZXF1ZXN0XCI7XHJcbmltcG9ydCB7IFNhbGVzUGVyc29uIH0gZnJvbSBcIkBjb2xpam5pdC90cmFuc2FjdGlvbmFwaS9idWlsZC9tb2RlbC9zYWxlcy1wZXJzb24uYm9cIjtcclxuaW1wb3J0IHsgVGFnIH0gZnJvbSBcIkBjb2xpam5pdC90cmFuc2FjdGlvbmFwaS9idWlsZC9tb2RlbC90YWdcIjtcclxuaW1wb3J0IHsgRmlsdGVySXRlbVZpZXdtb2RlbCB9IGZyb20gXCIuLi8uLi8uLi8uLi8uLi9tb2RlbC9maWx0ZXItaXRlbS52aWV3bW9kZWxcIjtcclxuaW1wb3J0IHsgRmlsdGVyVmlld21vZGVsIH0gZnJvbSBcIi4uLy4uLy4uLy4uLy4uL21vZGVsL2ZpbHRlci12aWV3bW9kZWxcIjtcclxuaW1wb3J0IHsgVHJhbnNhY3Rpb25TZXJ2aWNlIH0gZnJvbSBcIi4uLy4uLy4uLy4uLy4uL3NlcnZpY2UvdHJhbnNhY3Rpb24uc2VydmljZVwiO1xyXG5pbXBvcnQgeyBUcmFuc2FjdGlvbkZpbHRlckNvbnRlbnRCYXNlQ29tcG9uZW50IH0gZnJvbSBcIi4uLy4uLy4uLy4uL2NvcmUvYmFzZS90cmFuc2FjdGlvbi1maWx0ZXItY29udGVudC1iYXNlLmNvbXBvbmVudFwiO1xyXG5pbXBvcnQgeyBGaWx0ZXJSZXF1ZXN0U2VydmljZSB9IGZyb20gXCIuLi8uLi8uLi9zZXJ2aWNlL2ZpbHRlci1yZXF1ZXN0LnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgVHJhbnNhY3Rpb25TZWFyY2hTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uLy4uL3NlcnZpY2UvdHJhbnNhY3Rpb24tc2VhcmNoLnNlcnZpY2VcIjtcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnY28tdHJhbnNhY3Rpb24tc2FsZXMtb3JkZXItZmlsdGVyLWNvbnRlbnQtb3JkZXInLFxyXG4gIHRlbXBsYXRlOiBgXHJcbiAgICA8ZGl2IGNsYXNzPVwidHJhbnNhY3Rpb24tZmlsdGVyLWNvbnRlbnQtb3JkZXItd3JhcHBlclwiPlxyXG5cclxuICAgICAgPCEtLU9yZGVyZGF0dW0tLT5cclxuICAgICAgPGNvLWZpbHRlci1pdGVtXHJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidPUkRFUl9EQVRFJyB8IGxvY2FsaXplXCJcclxuICAgICAgICBbZXhwYW5kZWRdPVwidHJ1ZVwiXHJcbiAgICAgICAgW2N1c3RvbUNvbnRlbnRdPVwidHJ1ZVwiPlxyXG4gICAgICAgIDxjby1pbnB1dC1kYXRlLXJhbmdlXHJcbiAgICAgICAgICBbc3RhcnREYXRlXT1cInRyYW5zU3RhcnREYXRlXCJcclxuICAgICAgICAgIFtlbmREYXRlXT1cInRyYW5zRW5kRGF0ZVwiXHJcbiAgICAgICAgICAoZGF0ZVJhbmdlQ2hhbmdlKT1cIm9uRGF0ZVJhbmdlQ2hhbmdlKCRldmVudCwgJ3JhbmdlVHJhbnNEYXRlJylcIlxyXG4gICAgICAgICAgKGNsZWFyZWQpPVwib25DbGVhcmVkRGF0ZVJhbmdlQ2hhbmdlKCdyYW5nZVRyYW5zRGF0ZScpXCJcclxuICAgICAgICAgIFtwbGFjZWhvbGRlcl09XCInU0VMRUNUX0RBVEUnIHwgbG9jYWxpemVcIj5cclxuICAgICAgICA8L2NvLWlucHV0LWRhdGUtcmFuZ2U+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcblxyXG4gICAgICA8IS0tTGV2ZXJkYXR1bS0tPlxyXG4gICAgICA8Y28tZmlsdGVyLWl0ZW1cclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ0RFTElWRVJZX0RBVEUnIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtleHBhbmRlZF09XCJ0cnVlXCJcclxuICAgICAgICBbY3VzdG9tQ29udGVudF09XCJ0cnVlXCI+XHJcbiAgICAgICAgPGNvLWlucHV0LWRhdGUtcmFuZ2VcclxuICAgICAgICAgIFtzdGFydERhdGVdPVwiZGVsaXZlcnlTdGFydERhdGVcIlxyXG4gICAgICAgICAgW2VuZERhdGVdPVwiZGVsaXZlcnlFbmREYXRlXCJcclxuICAgICAgICAgIChkYXRlUmFuZ2VDaGFuZ2UpPVwib25EYXRlUmFuZ2VDaGFuZ2UoJGV2ZW50LCAnZGVsaXZlcnlEYXRlUmFuZ2UnKVwiXHJcbiAgICAgICAgICAoY2xlYXJlZCk9XCJvbkNsZWFyZWREYXRlUmFuZ2VDaGFuZ2UoJ2RlbGl2ZXJ5RGF0ZVJhbmdlJylcIlxyXG4gICAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidTRUxFQ1RfREFURScgfCBsb2NhbGl6ZVwiPlxyXG4gICAgICAgIDwvY28taW5wdXQtZGF0ZS1yYW5nZT5cclxuICAgICAgPC9jby1maWx0ZXItaXRlbT5cclxuXHJcbiAgICAgIDwhLS1GaWxpYWFsLS0+XHJcbiAgICAgIDxjby1maWx0ZXItaXRlbVxyXG4gICAgICAgIFtwbGFjZWhvbGRlcl09XCInQlJBTkNIJyB8IGxvY2FsaXplXCJcclxuICAgICAgICBbZXhwYW5kZWRdPVwidHJ1ZVwiXHJcbiAgICAgICAgW2NvbGxlY3Rpb25dPVwiYnJhbmNoZXNcIlxyXG4gICAgICAgIFtzZWFyY2hQbGFjZWhvbGRlcl09XCJzZWFyY2hDb2xsZWN0aW9uUGxhY2Vob2xkZXIgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW25vUmVzdWx0c0xhYmVsXT1cIm5vUmVzdWx0c0xhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtzaG93TW9yZUxhYmVsXT1cInNob3dNb3JlTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW3Nob3dMZXNzTGFiZWxdPVwic2hvd0xlc3NMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICAoY29sbGVjdGlvbkNoYW5nZSk9XCJmaWx0ZXJSZXF1ZXN0U2VydmljZS5oYW5kbGVDb2xsZWN0aW9uQ2hhbmdlRm9yUmFuZ2UoJGV2ZW50LCAncmFuZ2VCcmFuY2hJZCcpXCJcclxuICAgICAgPlxyXG4gICAgICA8L2NvLWZpbHRlci1pdGVtPlxyXG5cclxuICAgICAgPCEtLVZlcmtvcGVyLS0+XHJcbiAgICAgIDxjby1maWx0ZXItaXRlbVxyXG4gICAgICAgIFtwbGFjZWhvbGRlcl09XCInSEFORExFRF9CWScgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW2V4cGFuZGVkXT1cInRydWVcIlxyXG4gICAgICAgIFtjb2xsZWN0aW9uXT1cInNhbGVzUGVyc29uc1wiXHJcbiAgICAgICAgW3NlYXJjaFBsYWNlaG9sZGVyXT1cInNlYXJjaENvbGxlY3Rpb25QbGFjZWhvbGRlciB8IGxvY2FsaXplXCJcclxuICAgICAgICBbbm9SZXN1bHRzTGFiZWxdPVwibm9SZXN1bHRzTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW3Nob3dNb3JlTGFiZWxdPVwic2hvd01vcmVMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICBbc2hvd0xlc3NMYWJlbF09XCJzaG93TGVzc0xhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIChjb2xsZWN0aW9uQ2hhbmdlKT1cImZpbHRlclJlcXVlc3RTZXJ2aWNlLmhhbmRsZUNvbGxlY3Rpb25DaGFuZ2VGb3JSYW5nZSgkZXZlbnQsICdyYW5nZVNhbGVzUGVyc29uJylcIlxyXG4gICAgICA+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcblxyXG4gICAgICA8IS0tRWlnZW4gcmVmZXJlbnRpZS0tPlxyXG4gICAgICA8Y28tZmlsdGVyLWl0ZW1cclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ09XTl9SRUZFUkVOQ0UnIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtjdXN0b21Db250ZW50XT1cInRydWVcIlxyXG4gICAgICAgIFtleHBhbmRlZF09XCJ0cnVlXCI+XHJcbiAgICAgICAgPGNvLWlucHV0LXRleHQgWyhtb2RlbCldPVwic2VhcmNoUmVxdWVzdC51c2VyUmVmZXJlbmNlXCJcclxuICAgICAgICAgICAgICAgICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ09XTl9SRUZFUkVOQ0UnIHwgbG9jYWxpemVcIj48L2NvLWlucHV0LXRleHQ+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcblxyXG4gICAgICA8IS0tVGFncy0tPlxyXG4gICAgICA8Y28tZmlsdGVyLWl0ZW1cclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ1RBR1MnIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtleHBhbmRlZF09XCJ0cnVlXCJcclxuICAgICAgICBbY29sbGVjdGlvbl09XCJ0YWdzXCJcclxuICAgICAgICBbc2VhcmNoUGxhY2Vob2xkZXJdPVwic2VhcmNoQ29sbGVjdGlvblBsYWNlaG9sZGVyIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtub1Jlc3VsdHNMYWJlbF09XCJub1Jlc3VsdHNMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICBbc2hvd01vcmVMYWJlbF09XCJzaG93TW9yZUxhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtzaG93TGVzc0xhYmVsXT1cInNob3dMZXNzTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgKGNvbGxlY3Rpb25DaGFuZ2UpPVwiZmlsdGVyUmVxdWVzdFNlcnZpY2UuaGFuZGxlQ29sbGVjdGlvbkNoYW5nZUZvclJhbmdlKCRldmVudCwgJ3RhZ1JhbmdlJylcIlxyXG4gICAgICA+XHJcbiAgICAgICAgPGNvLWlucHV0LXRleHQgWyhtb2RlbCldPVwic2VhcmNoUmVxdWVzdC50YWdSYW5nZVwiIFtwbGFjZWhvbGRlcl09XCInVEFHUycgfCBsb2NhbGl6ZVwiPjwvY28taW5wdXQtdGV4dD5cclxuICAgICAgPC9jby1maWx0ZXItaXRlbT5cclxuXHJcbiAgICAgIDwhLS1PbiBob2xkIGNvZGVzLS0+XHJcbiAgICAgIDxjby1maWx0ZXItaXRlbVxyXG4gICAgICAgIFtwbGFjZWhvbGRlcl09XCInT05fSE9MRCcgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW2V4cGFuZGVkXT1cInRydWVcIlxyXG4gICAgICAgIFtjb2xsZWN0aW9uXT1cIm9uSG9sZENvZGVzXCJcclxuICAgICAgICBbc2VhcmNoUGxhY2Vob2xkZXJdPVwic2VhcmNoQ29sbGVjdGlvblBsYWNlaG9sZGVyIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtub1Jlc3VsdHNMYWJlbF09XCJub1Jlc3VsdHNMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICBbc2hvd01vcmVMYWJlbF09XCJzaG93TW9yZUxhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtzaG93TGVzc0xhYmVsXT1cInNob3dMZXNzTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgKGNvbGxlY3Rpb25DaGFuZ2UpPVwiZmlsdGVyUmVxdWVzdFNlcnZpY2UuaGFuZGxlQ29sbGVjdGlvbkNoYW5nZUZvclJhbmdlKCRldmVudCwncmFuZ2VPbkhvbGRDb2RlcycpXCJcclxuICAgICAgPlxyXG4gICAgICAgIDxjby1pbnB1dC10ZXh0IFsobW9kZWwpXT1cInNlYXJjaFJlcXVlc3QudGFnUmFuZ2VcIiBbcGxhY2Vob2xkZXJdPVwiJ1RBR1MnIHwgbG9jYWxpemVcIj48L2NvLWlucHV0LXRleHQ+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcblxyXG4gICAgICA8IS0tT3JkZXIgZGVmaW5pdGllZi0tPlxyXG4gICAgICA8Y28tZmlsdGVyLWl0ZW1cclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ09SREVSX0RFRklOSVRJVkUnIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtjdXN0b21Db250ZW50XT1cInRydWVcIlxyXG4gICAgICAgIFtleHBhbmRlZF09XCJ0cnVlXCI+XHJcbiAgICAgICAgPGNvLWlucHV0LWNoZWNrYm94XHJcbiAgICAgICAgICBbbW9kZWxdPVwic2VhcmNoUmVxdWVzdC50cmFuc2FjdGlvbkRlZmluaXRpdmUgPT09ICdKJ1wiXHJcbiAgICAgICAgICAobW9kZWxDaGFuZ2UpPVwiZmlsdGVyUmVxdWVzdFNlcnZpY2UuaGFuZGxlQ2hlY2tib3hWYWx1ZUNoYW5nZUZvclN0cmluZygkZXZlbnQsICd0cmFuc2FjdGlvbkRlZmluaXRpdmUnKVwiXHJcbiAgICAgICAgICBbbGFiZWxdPVwiJ09SREVSX0RFRklOSVRJVkUnIHwgbG9jYWxpemVcIj48L2NvLWlucHV0LWNoZWNrYm94PlxyXG4gICAgICA8L2NvLWZpbHRlci1pdGVtPlxyXG5cclxuICAgICAgPCEtLUNvbW1pc3NpZWNvZGUtLT5cclxuICAgICAgPGNvLWZpbHRlci1pdGVtXHJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidDT01NSVNTSU9OX0NPREUnIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtleHBhbmRlZF09XCJ0cnVlXCJcclxuICAgICAgICBbY29sbGVjdGlvbl09XCJjb21taXNzaW9uQ29kZXNcIlxyXG4gICAgICAgIFtzZWFyY2hQbGFjZWhvbGRlcl09XCJzZWFyY2hDb2xsZWN0aW9uUGxhY2Vob2xkZXIgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW25vUmVzdWx0c0xhYmVsXT1cIm5vUmVzdWx0c0xhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtzaG93TW9yZUxhYmVsXT1cInNob3dNb3JlTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW3Nob3dMZXNzTGFiZWxdPVwic2hvd0xlc3NMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICAoY29sbGVjdGlvbkNoYW5nZSk9XCJmaWx0ZXJSZXF1ZXN0U2VydmljZS5oYW5kbGVDb2xsZWN0aW9uQ2hhbmdlRm9yQXJyYXkoJGV2ZW50LCAnY29tbWlzc2lvbkNvZGVzJylcIlxyXG4gICAgICA+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcblxyXG4gICAgICA8IS0tSW5hY3RpZXZlIHRyYW5zYWN0aWVzLS0+XHJcbiAgICAgIDxjby1maWx0ZXItaXRlbVxyXG4gICAgICAgIFtwbGFjZWhvbGRlcl09XCInSU5BQ1RJVkVfVFJBTlNBQ1RJT05TJyB8IGxvY2FsaXplXCJcclxuICAgICAgICBbY3VzdG9tQ29udGVudF09XCJ0cnVlXCJcclxuICAgICAgICBbZXhwYW5kZWRdPVwidHJ1ZVwiPlxyXG4gICAgICAgIDxjby1pbnB1dC1jaGVja2JveFxyXG4gICAgICAgICAgW21vZGVsXT1cInNlYXJjaFJlcXVlc3QuYWN0aXZlID09PSBmYWxzZVwiXHJcbiAgICAgICAgICAobW9kZWxDaGFuZ2UpPVwic2VhcmNoUmVxdWVzdC5hY3RpdmUgPSAhJGV2ZW50XCJcclxuICAgICAgICAgIFtsYWJlbF09XCInSU5BQ1RJVkVfVFJBTlNBQ1RJT05TJyB8IGxvY2FsaXplXCJcclxuICAgICAgICA+PC9jby1pbnB1dC1jaGVja2JveD5cclxuICAgICAgPC9jby1maWx0ZXItaXRlbT5cclxuXHJcbiAgICAgIDwhLS1LbGFudG5hYW0tLT5cclxuICAgICAgPGNvLWZpbHRlci1pdGVtXHJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidDVVNUT01FUl9OQU1FJyB8IGxvY2FsaXplXCJcclxuICAgICAgICBbZXhwYW5kZWRdPVwidHJ1ZVwiXHJcbiAgICAgICAgW3NpbmdsZVNlbGVjdF09XCJ0cnVlXCJcclxuICAgICAgICBbbWluU2VhcmNoQ2hhcnNUb0xvYWRDb2xsZWN0aW9uXT1cIjNcIlxyXG4gICAgICAgIFtjb2xsZWN0aW9uTG9hZEZuXT1cImxvYWRDdXN0b21lcnNcIlxyXG4gICAgICAgIChjb2xsZWN0aW9uQ2hhbmdlKT1cImZpbHRlclJlcXVlc3RTZXJ2aWNlLmhhbmRsZUNvbGxlY3Rpb25DaGFuZ2VGb3JTaW5nbGVTZWxlY3QoJGV2ZW50LCAncmVsYXRpb25OYW1lJyApXCJcclxuICAgICAgPlxyXG4gICAgICA8L2NvLWZpbHRlci1pdGVtPlxyXG5cclxuICAgICAgPCEtLUtsYW50Z3JvZXAtLT5cclxuICAgICAgPGNvLWZpbHRlci1pdGVtXHJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidDVVNUT01FUl9HUk9VUCcgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW2V4cGFuZGVkXT1cInRydWVcIlxyXG4gICAgICAgIFtzaW5nbGVTZWxlY3RdPVwidHJ1ZVwiXHJcbiAgICAgICAgW2NvbGxlY3Rpb25dPVwiY3VzdG9tZXJHcm91cHNcIlxyXG4gICAgICAgIFtzZWFyY2hQbGFjZWhvbGRlcl09XCJzZWFyY2hDb2xsZWN0aW9uUGxhY2Vob2xkZXIgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW25vUmVzdWx0c0xhYmVsXT1cIm5vUmVzdWx0c0xhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtzaG93TW9yZUxhYmVsXT1cInNob3dNb3JlTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW3Nob3dMZXNzTGFiZWxdPVwic2hvd0xlc3NMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICAoY29sbGVjdGlvbkNoYW5nZSk9XCJmaWx0ZXJSZXF1ZXN0U2VydmljZS5oYW5kbGVDb2xsZWN0aW9uQ2hhbmdlRm9yU2luZ2xlU2VsZWN0KCRldmVudCwgJ2N1c3RvbWVyR3JvdXBJZCcpXCI+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJmaWx0ZXItYnV0dG9uLWNvbnRhaW5lclwiPlxyXG4gICAgICAgIDxjby1idXR0b24gY2xhc3M9XCJjbGlja2FibGVcIiBbbGFiZWxdPVwiJ0ZpbHRlcidcIiAoY2xpY2spPVwib25GaWx0ZXJCdXR0b25DbGljaygpXCI+PC9jby1idXR0b24+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+XHJcbiAgYFxyXG59KVxyXG5leHBvcnQgY2xhc3MgVHJhbnNhY3Rpb25TYWxlc09yZGVyRmlsdGVyQ29udGVudE9yZGVyQ29tcG9uZW50IGV4dGVuZHMgVHJhbnNhY3Rpb25GaWx0ZXJDb250ZW50QmFzZUNvbXBvbmVudCB7XHJcblxyXG4gIEBIb3N0QmluZGluZyhcImNsYXNzLmNvLXRyYW5zYWN0aW9uLXNlYXJjaC1maWx0ZXItY29udGVudFwiKVxyXG4gIHB1YmxpYyBzaG93Q2xhc3MoKTogYm9vbGVhbiB7XHJcbiAgICByZXR1cm4gdHJ1ZTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBzYWxlc1BlcnNvbnM6IEZpbHRlckl0ZW1WaWV3bW9kZWxbXTtcclxuICBwdWJsaWMgc2FsZXNQZXJzb25zRmllbGRzOiB7IHRleHQsIHZhbHVlIH0gPSB7dGV4dDogXCJuYW1lXCIsIHZhbHVlOiBcInJlbGF0aW9uSWRcIn07XHJcblxyXG4gIHB1YmxpYyB0YWdzOiBGaWx0ZXJJdGVtVmlld21vZGVsW107XHJcbiAgcHVibGljIHRhZ3NGaWVsZHM6IHsgdGV4dCwgdmFsdWUgfSA9IHt0ZXh0OiBcImRlc2NyaXB0aW9uXCIsIHZhbHVlOiBcInRhZ1ZhbHVlSWRcIn07XHJcblxyXG4gIHB1YmxpYyBicmFuY2hlczogRmlsdGVySXRlbVZpZXdtb2RlbFtdO1xyXG4gIHB1YmxpYyBicmFuY2hGaWVsZHM6IHsgdGV4dCwgdmFsdWUgfSA9IHt0ZXh0OiBcImRlc2NyaXB0aW9uXCIsIHZhbHVlOiBcInJlbGF0aW9uSWRcIn07XHJcblxyXG4gIHB1YmxpYyBvbkhvbGRDb2RlczogRmlsdGVySXRlbVZpZXdtb2RlbFtdO1xyXG4gIHB1YmxpYyBvbkhvbGRDb2RlRmllbGRzOiB7IHRleHQsIHZhbHVlIH0gPSB7dGV4dDogXCJkZXNjcmlwdGlvblwiLCB2YWx1ZTogXCJvbkhvbGRDb2RlXCJ9O1xyXG5cclxuICBwdWJsaWMgY29tbWlzc2lvbkNvZGVzOiBGaWx0ZXJJdGVtVmlld21vZGVsW107XHJcbiAgcHVibGljIGNvbW1pc3Npb25Db2RlRmllbGRzOiB7IHRleHQsIHZhbHVlIH0gPSB7dGV4dDogXCJkZXNjcmlwdGlvblwiLCB2YWx1ZTogXCJjb2RlXCJ9O1xyXG5cclxuICBwdWJsaWMgY3VzdG9tZXJHcm91cHM6IEZpbHRlckl0ZW1WaWV3bW9kZWxbXTtcclxuICBwdWJsaWMgY3VzdG9tZXJHcm91cEZpZWxkczogeyB0ZXh0LCB2YWx1ZSB9ID0ge3RleHQ6IFwibmFhbVwiLCB2YWx1ZTogXCJncm9lcHNudW1tZXJcIn07XHJcblxyXG4gIHB1YmxpYyB0cmFuc1N0YXJ0RGF0ZTogRGF0ZTtcclxuICBwdWJsaWMgdHJhbnNFbmREYXRlOiBEYXRlO1xyXG4gIHB1YmxpYyBkZWxpdmVyeVN0YXJ0RGF0ZTogRGF0ZTtcclxuICBwdWJsaWMgZGVsaXZlcnlFbmREYXRlOiBEYXRlO1xyXG5cclxuICBjb25zdHJ1Y3RvcihcclxuICAgIHB1YmxpYyBzZWFyY2hTZXJ2aWNlOiBUcmFuc2FjdGlvblNlYXJjaFNlcnZpY2UsXHJcbiAgICBwdWJsaWMgZmlsdGVyUmVxdWVzdFNlcnZpY2U6IEZpbHRlclJlcXVlc3RTZXJ2aWNlLFxyXG4gICAgcHVibGljIHRyYW5zYWN0aW9uU2VydmljZTogVHJhbnNhY3Rpb25TZXJ2aWNlLFxyXG4gICkge1xyXG4gICAgc3VwZXIoc2VhcmNoU2VydmljZSwgZmlsdGVyUmVxdWVzdFNlcnZpY2UsIHRyYW5zYWN0aW9uU2VydmljZSlcclxuICB9XHJcblxyXG4gIHB1YmxpYyBuZ09uSW5pdCgpOiB2b2lkIHtcclxuICAgIHRoaXMuX3NldFJhbmdlRGF0ZXMoKTtcclxuICAgIHRoaXMuX3NldFNhbGVzUGVyc29ucygpO1xyXG4gICAgdGhpcy5fc2V0VGFncygpO1xyXG4gICAgdGhpcy5fc2V0QnJhbmNoZXMoKTtcclxuICAgIHRoaXMuX3NldE9uSG9sZENvZGVzKCk7XHJcbiAgICB0aGlzLl9zZXRDb21taXNzaW9uQ29kZXMoKTtcclxuICAgIHRoaXMuX3NldEN1c3RvbWVyR3JvdXBzKCk7XHJcbiAgfVxyXG5cclxuXHJcbiAgcHVibGljIGxvYWRDdXN0b21lcnMgPSBhc3luYyAobmFtZUZpbHRlcjogc3RyaW5nKSA9PiB7XHJcbiAgICBjb25zdCByZXF1ZXN0OiBSZWxhdGlvblJlcXVlc3QgPSBuZXcgUmVsYXRpb25SZXF1ZXN0KCk7XHJcbiAgICByZXF1ZXN0LmZhbWlseU5hbWUgPSBuYW1lRmlsdGVyO1xyXG4gICAgcmV0dXJuIHRoaXMudHJhbnNhY3Rpb25TZXJ2aWNlLmdldFJlbGF0aW9uTGlzdE9iamVjdHMocmVxdWVzdCkudGhlbigocmVsYXRpb25zOiBSZWxhdGlvbkxpc3RPYmplY3RbXSkgPT4ge1xyXG4gICAgICByZXR1cm4gbmV3IEZpbHRlclZpZXdtb2RlbChyZWxhdGlvbnMsIHt0ZXh0OiAnZmFtaWx5TmFtZScsIHZhbHVlOiAnZmFtaWx5TmFtZSd9KS5maWx0ZXJJdGVtcztcclxuICAgIH0pO1xyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBfc2V0UmFuZ2VEYXRlcygpOiB2b2lkIHtcclxuICAgIHRoaXMudHJhbnNTdGFydERhdGUgPSB0aGlzLmZpbHRlclJlcXVlc3RTZXJ2aWNlLmdldERhdGVGcm9tRmlsdGVyUmVxdWVzdFJhbmdlKHRoaXMuc2VhcmNoUmVxdWVzdC5yYW5nZVRyYW5zRGF0ZSwgMCk7XHJcbiAgICB0aGlzLnRyYW5zRW5kRGF0ZSA9IHRoaXMuZmlsdGVyUmVxdWVzdFNlcnZpY2UuZ2V0RGF0ZUZyb21GaWx0ZXJSZXF1ZXN0UmFuZ2UodGhpcy5zZWFyY2hSZXF1ZXN0LnJhbmdlVHJhbnNEYXRlLCAxKTtcclxuICAgIHRoaXMuZGVsaXZlcnlTdGFydERhdGUgPSB0aGlzLmZpbHRlclJlcXVlc3RTZXJ2aWNlLmdldERhdGVGcm9tRmlsdGVyUmVxdWVzdFJhbmdlKHRoaXMuc2VhcmNoUmVxdWVzdC5kZWxpdmVyeURhdGVSYW5nZSwgMCk7XHJcbiAgICB0aGlzLmRlbGl2ZXJ5RW5kRGF0ZSA9IHRoaXMuZmlsdGVyUmVxdWVzdFNlcnZpY2UuZ2V0RGF0ZUZyb21GaWx0ZXJSZXF1ZXN0UmFuZ2UodGhpcy5zZWFyY2hSZXF1ZXN0LmRlbGl2ZXJ5RGF0ZVJhbmdlLCAxKTtcclxuICB9XHJcblxyXG4gIC8vVmVya29wZXJcclxuICBwcml2YXRlIF9zZXRTYWxlc1BlcnNvbnMoKTogdm9pZCB7XHJcbiAgICB0aGlzLnRyYW5zYWN0aW9uU2VydmljZS5nZXRTYWxlc1BlcnNvbnMoKS50aGVuKChzYWxlc1BlcnNvbnM6IFNhbGVzUGVyc29uW10pID0+IHtcclxuICAgICAgdGhpcy5zYWxlc1BlcnNvbnMgPSBuZXcgRmlsdGVyVmlld21vZGVsKHNhbGVzUGVyc29ucywgdGhpcy5zYWxlc1BlcnNvbnNGaWVsZHMpLmZpbHRlckl0ZW1zO1xyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICAvLyBUYWdzXHJcbiAgcHJpdmF0ZSBfc2V0VGFncygpOiB2b2lkIHtcclxuICAgIHRoaXMudHJhbnNhY3Rpb25TZXJ2aWNlLmdldFRhZ3MoMSkudGhlbigodGFnczogVGFnW10pID0+IHtcclxuICAgICAgdGhpcy50YWdzID0gbmV3IEZpbHRlclZpZXdtb2RlbCh0YWdzLCB0aGlzLnRhZ3NGaWVsZHMpLmZpbHRlckl0ZW1zO1xyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICAvL0JyYW5jaGVzXHJcbiAgcHJpdmF0ZSBfc2V0QnJhbmNoZXMoKTogdm9pZCB7XHJcbiAgICB0aGlzLnRyYW5zYWN0aW9uU2VydmljZS5nZXRCcmFuY2hlcygpLnRoZW4oKGJyYW5jaGVzOiBCcmFuY2hMb3ZbXSkgPT4ge1xyXG4gICAgICB0aGlzLmJyYW5jaGVzID0gbmV3IEZpbHRlclZpZXdtb2RlbChicmFuY2hlcywgdGhpcy5icmFuY2hGaWVsZHMpLmZpbHRlckl0ZW1zO1xyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICAvL09uSG9sZENvZGVzXHJcbiAgcHJpdmF0ZSBfc2V0T25Ib2xkQ29kZXMoKTogdm9pZCB7XHJcbiAgICB0aGlzLnRyYW5zYWN0aW9uU2VydmljZS5nZXRPbkhvbGRDb2RlcygpLnRoZW4oKG9uSG9sZENvZGVzOiBPbkhvbGRDb2RlW10pID0+IHtcclxuICAgICAgdGhpcy5vbkhvbGRDb2RlcyA9IG5ldyBGaWx0ZXJWaWV3bW9kZWwob25Ib2xkQ29kZXMsIHRoaXMub25Ib2xkQ29kZUZpZWxkcykuZmlsdGVySXRlbXM7XHJcbiAgICB9KTtcclxuICB9XHJcblxyXG4gIC8vQ29tbWlzc2lvbkNvZGVzXHJcbiAgcHJpdmF0ZSBfc2V0Q29tbWlzc2lvbkNvZGVzKCk6IHZvaWQge1xyXG4gICAgdGhpcy50cmFuc2FjdGlvblNlcnZpY2UuZ2V0Q29tbWlzc2lvbkNvZGVzKFwiTkxcIikudGhlbigoY29tbWlzc2lvbkNvZGVzOiBDb0RvbWFpblZhbHVlW10pID0+IHtcclxuICAgICAgdGhpcy5jb21taXNzaW9uQ29kZXMgPSBuZXcgRmlsdGVyVmlld21vZGVsKGNvbW1pc3Npb25Db2RlcywgdGhpcy5jb21taXNzaW9uQ29kZUZpZWxkcykuZmlsdGVySXRlbXM7XHJcbiAgICB9KTtcclxuICB9XHJcblxyXG4gIC8vQ3VzdG9tZXJHcm91cHNcclxuICBwcml2YXRlIF9zZXRDdXN0b21lckdyb3VwcygpOiB2b2lkIHtcclxuICAgIHRoaXMudHJhbnNhY3Rpb25TZXJ2aWNlLmdldEN1c3RvbWVyR3JvdXBzKCkudGhlbigoY3VzdG9tZXJHcm91cHM6IEN1c3RvbWVyR3JvdXBbXSkgPT4ge1xyXG4gICAgICB0aGlzLmN1c3RvbWVyR3JvdXBzID0gbmV3IEZpbHRlclZpZXdtb2RlbChjdXN0b21lckdyb3VwcywgdGhpcy5jdXN0b21lckdyb3VwRmllbGRzKS5maWx0ZXJJdGVtcztcclxuICAgIH0pO1xyXG4gIH1cclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { NgModule } from "@angular/core";
|
|
2
|
+
import { CommonModule } from "@angular/common";
|
|
3
|
+
import { InputDatePickerModule, InputListboxModule, InputTextModule, MultiSelectListModule, FilterItemModule, InputDateRangePickerModule, ButtonModule, InputCheckboxModule } from "@colijnit/corecomponents_v12";
|
|
4
|
+
import { PipeModule } from "../../../../../pipe/pipe.module";
|
|
5
|
+
import { TransactionSalesOrderFilterContentOrderComponent } from "./transaction-sales-order-filter-content-order.component";
|
|
6
|
+
export class TransactionSalesOrderFilterContentOrderModule {
|
|
7
|
+
}
|
|
8
|
+
TransactionSalesOrderFilterContentOrderModule.decorators = [
|
|
9
|
+
{ type: NgModule, args: [{
|
|
10
|
+
imports: [
|
|
11
|
+
CommonModule,
|
|
12
|
+
InputDatePickerModule,
|
|
13
|
+
PipeModule,
|
|
14
|
+
MultiSelectListModule,
|
|
15
|
+
InputTextModule,
|
|
16
|
+
InputListboxModule,
|
|
17
|
+
FilterItemModule,
|
|
18
|
+
InputDateRangePickerModule,
|
|
19
|
+
ButtonModule,
|
|
20
|
+
InputCheckboxModule
|
|
21
|
+
],
|
|
22
|
+
declarations: [
|
|
23
|
+
TransactionSalesOrderFilterContentOrderComponent
|
|
24
|
+
],
|
|
25
|
+
exports: [
|
|
26
|
+
TransactionSalesOrderFilterContentOrderComponent
|
|
27
|
+
]
|
|
28
|
+
},] }
|
|
29
|
+
];
|
|
30
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2FsZXMtb3JkZXItZmlsdGVyLWNvbnRlbnQtb3JkZXIubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jb21wb25lbnQvdHJhbnNhY3Rpb24tc2VhcmNoL3RyYW5zYWN0aW9uLWZpbHRlci1jb250ZW50L3NhbGVzLW9yZGVyLWZpbHRlci1jb250ZW50L3RyYW5zYWN0aW9uLXNhbGVzLW9yZGVyLWZpbHRlci1jb250ZW50LW9yZGVyL3RyYW5zYWN0aW9uLXNhbGVzLW9yZGVyLWZpbHRlci1jb250ZW50LW9yZGVyLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQ0wscUJBQXFCLEVBQ3JCLGtCQUFrQixFQUNsQixlQUFlLEVBQ2YscUJBQXFCLEVBQ3JCLGdCQUFnQixFQUFFLDBCQUEwQixFQUFFLFlBQVksRUFBRSxtQkFBbUIsRUFDaEYsTUFBTSw4QkFBOEIsQ0FBQztBQUN0QyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDN0QsT0FBTyxFQUFDLGdEQUFnRCxFQUFDLE1BQU0sMERBQTBELENBQUM7QUFzQjFILE1BQU0sT0FBTyw2Q0FBNkM7OztZQXBCekQsUUFBUSxTQUFDO2dCQUNSLE9BQU8sRUFBRTtvQkFDUCxZQUFZO29CQUNaLHFCQUFxQjtvQkFDckIsVUFBVTtvQkFDVixxQkFBcUI7b0JBQ3JCLGVBQWU7b0JBQ2Ysa0JBQWtCO29CQUNsQixnQkFBZ0I7b0JBQ2hCLDBCQUEwQjtvQkFDMUIsWUFBWTtvQkFDWixtQkFBbUI7aUJBQ3BCO2dCQUNELFlBQVksRUFBRTtvQkFDWixnREFBZ0Q7aUJBQ2pEO2dCQUNELE9BQU8sRUFBRTtvQkFDUCxnREFBZ0Q7aUJBQ2pEO2FBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge05nTW9kdWxlfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSBcIkBhbmd1bGFyL2NvbW1vblwiO1xyXG5pbXBvcnQge1xyXG4gIElucHV0RGF0ZVBpY2tlck1vZHVsZSxcclxuICBJbnB1dExpc3Rib3hNb2R1bGUsXHJcbiAgSW5wdXRUZXh0TW9kdWxlLFxyXG4gIE11bHRpU2VsZWN0TGlzdE1vZHVsZSxcclxuICBGaWx0ZXJJdGVtTW9kdWxlLCBJbnB1dERhdGVSYW5nZVBpY2tlck1vZHVsZSwgQnV0dG9uTW9kdWxlLCBJbnB1dENoZWNrYm94TW9kdWxlXHJcbn0gZnJvbSBcIkBjb2xpam5pdC9jb3JlY29tcG9uZW50c192MTJcIjtcclxuaW1wb3J0IHsgUGlwZU1vZHVsZSB9IGZyb20gXCIuLi8uLi8uLi8uLi8uLi9waXBlL3BpcGUubW9kdWxlXCI7XHJcbmltcG9ydCB7VHJhbnNhY3Rpb25TYWxlc09yZGVyRmlsdGVyQ29udGVudE9yZGVyQ29tcG9uZW50fSBmcm9tIFwiLi90cmFuc2FjdGlvbi1zYWxlcy1vcmRlci1maWx0ZXItY29udGVudC1vcmRlci5jb21wb25lbnRcIjtcclxuXHJcbkBOZ01vZHVsZSh7XHJcbiAgaW1wb3J0czogW1xyXG4gICAgQ29tbW9uTW9kdWxlLFxyXG4gICAgSW5wdXREYXRlUGlja2VyTW9kdWxlLFxyXG4gICAgUGlwZU1vZHVsZSxcclxuICAgIE11bHRpU2VsZWN0TGlzdE1vZHVsZSxcclxuICAgIElucHV0VGV4dE1vZHVsZSxcclxuICAgIElucHV0TGlzdGJveE1vZHVsZSxcclxuICAgIEZpbHRlckl0ZW1Nb2R1bGUsXHJcbiAgICBJbnB1dERhdGVSYW5nZVBpY2tlck1vZHVsZSxcclxuICAgIEJ1dHRvbk1vZHVsZSxcclxuICAgIElucHV0Q2hlY2tib3hNb2R1bGVcclxuICBdLFxyXG4gIGRlY2xhcmF0aW9uczogW1xyXG4gICAgVHJhbnNhY3Rpb25TYWxlc09yZGVyRmlsdGVyQ29udGVudE9yZGVyQ29tcG9uZW50XHJcbiAgXSxcclxuICBleHBvcnRzOiBbXHJcbiAgICBUcmFuc2FjdGlvblNhbGVzT3JkZXJGaWx0ZXJDb250ZW50T3JkZXJDb21wb25lbnRcclxuICBdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBUcmFuc2FjdGlvblNhbGVzT3JkZXJGaWx0ZXJDb250ZW50T3JkZXJNb2R1bGUge1xyXG59XHJcbiJdfQ==
|