@colijnit/transaction 12.1.20 → 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 +2846 -1134
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +158 -131
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/colijnit-transaction.js +159 -132
- package/esm2015/lib/assets/dictionary/text.properties.js +54 -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-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 +34 -27
- package/esm2015/lib/component/transaction-line/transaction-line.module.js +8 -3
- package/esm2015/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.component.js +13 -5
- 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 +17 -3
- 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 +14 -22
- package/esm2015/lib/component/transaction-search/transaction-search-header/transaction-search-header.component.js +12 -19
- package/esm2015/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.js +18 -7
- package/esm2015/lib/component/transaction-search/transaction-search-result/transaction-search-result.module.js +12 -3
- 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 +8 -19
- 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 +3 -1
- package/esm2015/lib/component/transaction-search/transaction-search.module.js +6 -2
- package/esm2015/lib/enum/icon.enum.js +5 -1
- package/esm2015/lib/model/icon-svg.js +5 -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 +4210 -2082
- 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/components/default-ok-cancel-buttons/style/_layout.scss +4 -0
- package/lib/component/{transaction-search/transaction-filter/transaction-filter.component.d.ts → core/base/transaction-filter-base.component.d.ts} +5 -3
- package/lib/component/core/base/transaction-filter-content-base.component.d.ts +22 -0
- package/lib/component/core/base/transaction-search-grid-base.component.d.ts +11 -0
- package/lib/component/core/base/transaction-search-tile-base.component.d.ts +13 -0
- package/lib/component/core/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/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/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-article → 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-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 +96 -29
- package/lib/component/transaction-line/style/_material-definition.scss +7 -3
- package/lib/component/transaction-line/style/_theme.scss +3 -0
- package/lib/component/transaction-line/transaction-line.component.d.ts +1 -0
- package/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.component.d.ts +4 -1
- 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 +5 -0
- package/lib/component/transaction-search/style/_layout.scss +1 -1
- package/lib/component/transaction-search/style/_material-definition.scss +43 -4
- package/lib/component/transaction-search/style/_theme.scss +1 -1
- package/lib/component/transaction-search/style/material.scss +4 -4
- 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-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/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-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-order → transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article}/style/material.scss +0 -1
- 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-order → 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 → 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-content/sales-order-filter-content/transaction-sales-order-filter-content-order/style/_material-definition.scss +1 -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/transaction-search-grid/transaction-search-grid/transaction-search-grid.module.d.ts +2 -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 +0 -2
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/style/_theme.scss +0 -2
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/style/material.scss +0 -4
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.component.d.ts +5 -11
- package/lib/component/transaction-search/transaction-search-header/style/_layout.scss +77 -2
- package/lib/component/transaction-search/transaction-search-header/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search/transaction-search-header/style/material.scss +2 -0
- package/lib/component/transaction-search/transaction-search-result/style/_layout.scss +0 -77
- 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 +4 -1
- 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 +0 -84
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/style/_theme.scss +0 -44
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.component.d.ts +2 -9
- 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 +3 -2
- package/lib/enum/icon.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 -91
- 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/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
|
@@ -0,0 +1,230 @@
|
|
|
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 TransactionPurchaseOrderFilterContentOrderComponent 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.purchasePersonsFields = { text: "name", value: "relationId" };
|
|
14
|
+
this.tagsFields = { text: "description", value: "tagValueId" };
|
|
15
|
+
this.branchFields = { text: "description", value: "relationId" };
|
|
16
|
+
this.onHoldCodeFields = { text: "description", value: "onHoldCode" };
|
|
17
|
+
this.commissionCodeFields = { text: "description", value: "code" };
|
|
18
|
+
}
|
|
19
|
+
showClass() {
|
|
20
|
+
return true;
|
|
21
|
+
}
|
|
22
|
+
ngOnInit() {
|
|
23
|
+
this._setRangeDates();
|
|
24
|
+
this._setPurchasePersons();
|
|
25
|
+
this._setTags();
|
|
26
|
+
this._setBranches();
|
|
27
|
+
this._setOnHoldCodes();
|
|
28
|
+
this._setCommissionCodes();
|
|
29
|
+
}
|
|
30
|
+
_setRangeDates() {
|
|
31
|
+
this.transStartDate = this.filterRequestService.getDateFromFilterRequestRange(this.searchRequest.rangeTransDate, 0);
|
|
32
|
+
this.transEndDate = this.filterRequestService.getDateFromFilterRequestRange(this.searchRequest.rangeTransDate, 1);
|
|
33
|
+
this.deliveryStartDate = this.filterRequestService.getDateFromFilterRequestRange(this.searchRequest.deliveryDateRange, 0);
|
|
34
|
+
this.deliveryEndDate = this.filterRequestService.getDateFromFilterRequestRange(this.searchRequest.deliveryDateRange, 1);
|
|
35
|
+
}
|
|
36
|
+
//Inkoper
|
|
37
|
+
_setPurchasePersons() {
|
|
38
|
+
this.transactionService.getSalesPersons().then((persons) => {
|
|
39
|
+
this.purchasePersons = new FilterViewmodel(persons, this.purchasePersonsFields).filterItems;
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
// Tags
|
|
43
|
+
_setTags() {
|
|
44
|
+
this.transactionService.getTags(1).then((tags) => {
|
|
45
|
+
this.tags = new FilterViewmodel(tags, this.tagsFields).filterItems;
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
//Branches
|
|
49
|
+
_setBranches() {
|
|
50
|
+
this.transactionService.getBranches().then((branches) => {
|
|
51
|
+
this.branches = new FilterViewmodel(branches, this.branchFields).filterItems;
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
//OnHoldCodes
|
|
55
|
+
_setOnHoldCodes() {
|
|
56
|
+
this.transactionService.getOnHoldCodes().then((onHoldCodes) => {
|
|
57
|
+
this.onHoldCodes = new FilterViewmodel(onHoldCodes, this.onHoldCodeFields).filterItems;
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
//CommissionCodes
|
|
61
|
+
_setCommissionCodes() {
|
|
62
|
+
this.transactionService.getCommissionCodes("NL").then((commissionCodes) => {
|
|
63
|
+
this.commissionCodes = new FilterViewmodel(commissionCodes, this.commissionCodeFields).filterItems;
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
TransactionPurchaseOrderFilterContentOrderComponent.decorators = [
|
|
68
|
+
{ type: Component, args: [{
|
|
69
|
+
selector: 'co-transaction-purchase-order-filter-content-order',
|
|
70
|
+
template: `
|
|
71
|
+
<div class="transaction-filter-content-order-wrapper">
|
|
72
|
+
|
|
73
|
+
<!--Inkoopnummer-->
|
|
74
|
+
<co-filter-item
|
|
75
|
+
[placeholder]="'PURCHASENUMBER' | localize"
|
|
76
|
+
[expanded]="true"
|
|
77
|
+
[customContent]="true">
|
|
78
|
+
<co-input-text [(model)]="searchRequest.transNr"
|
|
79
|
+
[placeholder]="'PURCHASENUMBER' | localize"></co-input-text>
|
|
80
|
+
</co-filter-item>
|
|
81
|
+
|
|
82
|
+
<!--Orderdatum-->
|
|
83
|
+
<co-filter-item
|
|
84
|
+
[placeholder]="'ORDER_DATE' | localize"
|
|
85
|
+
[expanded]="true"
|
|
86
|
+
[customContent]="true">
|
|
87
|
+
<co-input-date-range
|
|
88
|
+
[startDate]="transStartDate"
|
|
89
|
+
[endDate]="transEndDate"
|
|
90
|
+
(dateRangeChange)="onDateRangeChange($event, 'rangeTransDate')"
|
|
91
|
+
(cleared)="onClearedDateRangeChange('rangeTransDate')"
|
|
92
|
+
[placeholder]="'SELECT_DATE' | localize">
|
|
93
|
+
</co-input-date-range>
|
|
94
|
+
</co-filter-item>
|
|
95
|
+
|
|
96
|
+
<!--Leverdatum-->
|
|
97
|
+
<co-filter-item
|
|
98
|
+
[placeholder]="'DELIVERY_DATE' | localize"
|
|
99
|
+
[expanded]="true"
|
|
100
|
+
[customContent]="true">
|
|
101
|
+
<co-input-date-range
|
|
102
|
+
[startDate]="deliveryStartDate"
|
|
103
|
+
[endDate]="deliveryEndDate"
|
|
104
|
+
(dateRangeChange)="onDateRangeChange($event, 'deliveryDateRange')"
|
|
105
|
+
(cleared)="onClearedDateRangeChange('deliveryDateRange')"
|
|
106
|
+
[placeholder]="'SELECT_DATE' | localize">
|
|
107
|
+
</co-input-date-range>
|
|
108
|
+
</co-filter-item>
|
|
109
|
+
|
|
110
|
+
<!--Filiaal-->
|
|
111
|
+
<co-filter-item
|
|
112
|
+
[placeholder]="'BRANCH' | localize"
|
|
113
|
+
[expanded]="true"
|
|
114
|
+
[collection]="branches"
|
|
115
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
116
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
117
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
118
|
+
[showLessLabel]="showLessLabel | localize"
|
|
119
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForRange($event, 'rangeBranchId')"
|
|
120
|
+
>
|
|
121
|
+
</co-filter-item>
|
|
122
|
+
|
|
123
|
+
<!--Inkoper-->
|
|
124
|
+
<co-filter-item
|
|
125
|
+
[placeholder]="'PURCHASE_PERSON' | localize"
|
|
126
|
+
[expanded]="true"
|
|
127
|
+
[collection]="purchasePersons"
|
|
128
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
129
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
130
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
131
|
+
[showLessLabel]="showLessLabel | localize"
|
|
132
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForRange($event, 'rangeSalesPerson')"
|
|
133
|
+
>
|
|
134
|
+
</co-filter-item>
|
|
135
|
+
|
|
136
|
+
<!--Eigen referentie-->
|
|
137
|
+
<co-filter-item
|
|
138
|
+
[placeholder]="'OWN_REFERENCE' | localize"
|
|
139
|
+
[customContent]="true"
|
|
140
|
+
[expanded]="true">
|
|
141
|
+
<co-input-text [(model)]="searchRequest.userReference"
|
|
142
|
+
[placeholder]="'OWN_REFERENCE' | localize"></co-input-text>
|
|
143
|
+
</co-filter-item>
|
|
144
|
+
|
|
145
|
+
<!--Tags-->
|
|
146
|
+
<co-filter-item
|
|
147
|
+
[placeholder]="'TAGS' | localize"
|
|
148
|
+
[expanded]="true"
|
|
149
|
+
[collection]="tags"
|
|
150
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
151
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
152
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
153
|
+
[showLessLabel]="showLessLabel | localize"
|
|
154
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForRange($event, 'tagRange')"
|
|
155
|
+
>
|
|
156
|
+
</co-filter-item>
|
|
157
|
+
|
|
158
|
+
<!--On hold codes-->
|
|
159
|
+
<co-filter-item
|
|
160
|
+
[placeholder]="'ON_HOLD' | localize"
|
|
161
|
+
[expanded]="true"
|
|
162
|
+
[collection]="onHoldCodes"
|
|
163
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
164
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
165
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
166
|
+
[showLessLabel]="showLessLabel | localize"
|
|
167
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForRange($event,'rangeOnHoldCodes')"
|
|
168
|
+
>
|
|
169
|
+
</co-filter-item>
|
|
170
|
+
|
|
171
|
+
<!--Commissiecode-->
|
|
172
|
+
<co-filter-item
|
|
173
|
+
[placeholder]="'COMMISSION_CODE' | localize"
|
|
174
|
+
[expanded]="true"
|
|
175
|
+
[collection]="commissionCodes"
|
|
176
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
177
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
178
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
179
|
+
[showLessLabel]="showLessLabel | localize"
|
|
180
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForArray($event, 'commissionCodes')"
|
|
181
|
+
>
|
|
182
|
+
</co-filter-item>
|
|
183
|
+
|
|
184
|
+
<!--Meer filters -->
|
|
185
|
+
<co-filter-item
|
|
186
|
+
[placeholder]="'MORE_FILTERS' | localize"
|
|
187
|
+
[customContent]="true"
|
|
188
|
+
[expanded]="false">
|
|
189
|
+
|
|
190
|
+
<!--Order definitief-->
|
|
191
|
+
<co-input-checkbox
|
|
192
|
+
[model]="searchRequest.transactionDefinitive === 'J'"
|
|
193
|
+
(modelChange)="filterRequestService.handleCheckboxValueChangeForString($event, 'transactionDefinitive')"
|
|
194
|
+
[label]="'ORDER_DEFINITIVE' | localize"></co-input-checkbox>
|
|
195
|
+
|
|
196
|
+
<!--Inactieve transacties-->
|
|
197
|
+
<co-input-checkbox
|
|
198
|
+
[model]="searchRequest.active === false"
|
|
199
|
+
(modelChange)="searchRequest.active = !$event"
|
|
200
|
+
[label]="'INACTIVE_TRANSACTIONS' | localize"
|
|
201
|
+
></co-input-checkbox>
|
|
202
|
+
|
|
203
|
+
<!--Inclusief retouren -->
|
|
204
|
+
<co-input-checkbox
|
|
205
|
+
[label]="'INCLUDING_RETURNS' | localize"
|
|
206
|
+
[model]="searchRequest.includingReturns === 1"
|
|
207
|
+
(modelChange)="filterRequestService.handleCheckboxValueChangeForNumber($event, 'includingReturns')"
|
|
208
|
+
>
|
|
209
|
+
</co-input-checkbox>
|
|
210
|
+
|
|
211
|
+
<!--Levermethode op (regel/header): nog niet in API -->
|
|
212
|
+
|
|
213
|
+
</co-filter-item>
|
|
214
|
+
|
|
215
|
+
<div class="filter-button-container">
|
|
216
|
+
<co-button class="clickable" [label]="'Filter'" (click)="onFilterButtonClick()"></co-button>
|
|
217
|
+
</div>
|
|
218
|
+
</div>
|
|
219
|
+
`
|
|
220
|
+
},] }
|
|
221
|
+
];
|
|
222
|
+
TransactionPurchaseOrderFilterContentOrderComponent.ctorParameters = () => [
|
|
223
|
+
{ type: TransactionSearchService },
|
|
224
|
+
{ type: FilterRequestService },
|
|
225
|
+
{ type: TransactionService }
|
|
226
|
+
];
|
|
227
|
+
TransactionPurchaseOrderFilterContentOrderComponent.propDecorators = {
|
|
228
|
+
showClass: [{ type: HostBinding, args: ["class.co-transaction-search-filter-content",] }]
|
|
229
|
+
};
|
|
230
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tcHVyY2hhc2Utb3JkZXItZmlsdGVyLWNvbnRlbnQtb3JkZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jb21wb25lbnQvdHJhbnNhY3Rpb24tc2VhcmNoL3RyYW5zYWN0aW9uLWZpbHRlci1jb250ZW50L3B1cmNoYXNlLW9yZGVyLWZpbHRlci1jb250ZW50L3RyYW5zYWN0aW9uLXB1cmNoYXNlLW9yZGVyLWZpbHRlci1jb250ZW50LW9yZGVyL3RyYW5zYWN0aW9uLXB1cmNoYXNlLW9yZGVyLWZpbHRlci1jb250ZW50LW9yZGVyLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFdBQVcsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQU92RCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sdUNBQXVDLENBQUM7QUFDeEUsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sNENBQTRDLENBQUM7QUFDaEYsT0FBTyxFQUFFLHFDQUFxQyxFQUFFLE1BQU0saUVBQWlFLENBQUM7QUFDeEgsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0seUNBQXlDLENBQUM7QUFDL0UsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sNkNBQTZDLENBQUM7QUEySnZGLE1BQU0sT0FBTyxtREFBb0QsU0FBUSxxQ0FBcUM7SUEyQjVHLFlBQ1MsYUFBdUMsRUFDdkMsb0JBQTBDLEVBQzFDLGtCQUFzQztRQUU3QyxLQUFLLENBQUMsYUFBYSxFQUFFLG9CQUFvQixFQUFFLGtCQUFrQixDQUFDLENBQUE7UUFKdkQsa0JBQWEsR0FBYixhQUFhLENBQTBCO1FBQ3ZDLHlCQUFvQixHQUFwQixvQkFBb0IsQ0FBc0I7UUFDMUMsdUJBQWtCLEdBQWxCLGtCQUFrQixDQUFvQjtRQXRCeEMsMEJBQXFC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R0FBRyxJQUFJLGVBQWUsQ0FBQyxXQUFXLEVBQUUsSUFBSSxDQUFDLGdCQUFnQixDQUFDLENBQUMsV0FBVyxDQUFDO1FBQ3pGLENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVELGlCQUFpQjtJQUNULG1CQUFtQjtRQUN6QixJQUFJLENBQUMsa0JBQWtCLENBQUMsa0JBQWtCLENBQUMsSUFBSSxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsZUFBZ0MsRUFBRSxFQUFFO1lBQ3pGLElBQUksQ0FBQyxlQUFlLEdBQUcsSUFBSSxlQUFlLENBQUMsZUFBZSxFQUFFLElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxDQUFDLFdBQVcsQ0FBQztRQUNyRyxDQUFDLENBQUMsQ0FBQztJQUNMLENBQUM7OztZQTdPRixTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLG9EQUFvRDtnQkFDOUQsUUFBUSxFQUFFOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztHQXFKVDthQUNGOzs7WUExSlEsd0JBQXdCO1lBRHhCLG9CQUFvQjtZQUZwQixrQkFBa0I7Ozt3QkFnS3hCLFdBQVcsU0FBQyw0Q0FBNEMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEhvc3RCaW5kaW5nIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHsgQnJhbmNoTG92IH0gZnJvbSBcIkBjb2xpam5pdC90cmFuc2FjdGlvbmFwaS9idWlsZC9tb2RlbC9icmFuY2gtbG92LmJvXCI7XHJcbmltcG9ydCB7IENvRG9tYWluVmFsdWUgfSBmcm9tIFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uYXBpL2J1aWxkL21vZGVsL2NvLWRvbWFpbi12YWx1ZS5ib1wiO1xyXG5pbXBvcnQgeyBPbkhvbGRDb2RlIH0gZnJvbSBcIkBjb2xpam5pdC90cmFuc2FjdGlvbmFwaS9idWlsZC9tb2RlbC9vbi1ob2xkLWNvZGUuYm9cIjtcclxuaW1wb3J0IHsgU2FsZXNQZXJzb24gfSBmcm9tIFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uYXBpL2J1aWxkL21vZGVsL3NhbGVzLXBlcnNvbi5ib1wiO1xyXG5pbXBvcnQgeyBUYWcgfSBmcm9tIFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uYXBpL2J1aWxkL21vZGVsL3RhZ1wiO1xyXG5pbXBvcnQgeyBGaWx0ZXJJdGVtVmlld21vZGVsIH0gZnJvbSBcIi4uLy4uLy4uLy4uLy4uL21vZGVsL2ZpbHRlci1pdGVtLnZpZXdtb2RlbFwiO1xyXG5pbXBvcnQgeyBGaWx0ZXJWaWV3bW9kZWwgfSBmcm9tIFwiLi4vLi4vLi4vLi4vLi4vbW9kZWwvZmlsdGVyLXZpZXdtb2RlbFwiO1xyXG5pbXBvcnQgeyBUcmFuc2FjdGlvblNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vLi4vLi4vLi4vc2VydmljZS90cmFuc2FjdGlvbi5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IFRyYW5zYWN0aW9uRmlsdGVyQ29udGVudEJhc2VDb21wb25lbnQgfSBmcm9tIFwiLi4vLi4vLi4vLi4vY29yZS9iYXNlL3RyYW5zYWN0aW9uLWZpbHRlci1jb250ZW50LWJhc2UuY29tcG9uZW50XCI7XHJcbmltcG9ydCB7IEZpbHRlclJlcXVlc3RTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uLy4uL3NlcnZpY2UvZmlsdGVyLXJlcXVlc3Quc2VydmljZVwiO1xyXG5pbXBvcnQgeyBUcmFuc2FjdGlvblNlYXJjaFNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vLi4vc2VydmljZS90cmFuc2FjdGlvbi1zZWFyY2guc2VydmljZVwiO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdjby10cmFuc2FjdGlvbi1wdXJjaGFzZS1vcmRlci1maWx0ZXItY29udGVudC1vcmRlcicsXHJcbiAgdGVtcGxhdGU6IGBcclxuICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi1maWx0ZXItY29udGVudC1vcmRlci13cmFwcGVyXCI+XHJcblxyXG4gICAgICA8IS0tSW5rb29wbnVtbWVyLS0+XHJcbiAgICAgIDxjby1maWx0ZXItaXRlbVxyXG4gICAgICAgIFtwbGFjZWhvbGRlcl09XCInUFVSQ0hBU0VOVU1CRVInIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtleHBhbmRlZF09XCJ0cnVlXCJcclxuICAgICAgICBbY3VzdG9tQ29udGVudF09XCJ0cnVlXCI+XHJcbiAgICAgICAgPGNvLWlucHV0LXRleHQgWyhtb2RlbCldPVwic2VhcmNoUmVxdWVzdC50cmFuc05yXCJcclxuICAgICAgICAgICAgICAgICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ1BVUkNIQVNFTlVNQkVSJyB8IGxvY2FsaXplXCI+PC9jby1pbnB1dC10ZXh0PlxyXG4gICAgICA8L2NvLWZpbHRlci1pdGVtPlxyXG5cclxuICAgICAgPCEtLU9yZGVyZGF0dW0tLT5cclxuICAgICAgPGNvLWZpbHRlci1pdGVtXHJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidPUkRFUl9EQVRFJyB8IGxvY2FsaXplXCJcclxuICAgICAgICBbZXhwYW5kZWRdPVwidHJ1ZVwiXHJcbiAgICAgICAgW2N1c3RvbUNvbnRlbnRdPVwidHJ1ZVwiPlxyXG4gICAgICAgIDxjby1pbnB1dC1kYXRlLXJhbmdlXHJcbiAgICAgICAgICBbc3RhcnREYXRlXT1cInRyYW5zU3RhcnREYXRlXCJcclxuICAgICAgICAgIFtlbmREYXRlXT1cInRyYW5zRW5kRGF0ZVwiXHJcbiAgICAgICAgICAoZGF0ZVJhbmdlQ2hhbmdlKT1cIm9uRGF0ZVJhbmdlQ2hhbmdlKCRldmVudCwgJ3JhbmdlVHJhbnNEYXRlJylcIlxyXG4gICAgICAgICAgKGNsZWFyZWQpPVwib25DbGVhcmVkRGF0ZVJhbmdlQ2hhbmdlKCdyYW5nZVRyYW5zRGF0ZScpXCJcclxuICAgICAgICAgIFtwbGFjZWhvbGRlcl09XCInU0VMRUNUX0RBVEUnIHwgbG9jYWxpemVcIj5cclxuICAgICAgICA8L2NvLWlucHV0LWRhdGUtcmFuZ2U+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcblxyXG4gICAgICA8IS0tTGV2ZXJkYXR1bS0tPlxyXG4gICAgICA8Y28tZmlsdGVyLWl0ZW1cclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ0RFTElWRVJZX0RBVEUnIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtleHBhbmRlZF09XCJ0cnVlXCJcclxuICAgICAgICBbY3VzdG9tQ29udGVudF09XCJ0cnVlXCI+XHJcbiAgICAgICAgPGNvLWlucHV0LWRhdGUtcmFuZ2VcclxuICAgICAgICAgIFtzdGFydERhdGVdPVwiZGVsaXZlcnlTdGFydERhdGVcIlxyXG4gICAgICAgICAgW2VuZERhdGVdPVwiZGVsaXZlcnlFbmREYXRlXCJcclxuICAgICAgICAgIChkYXRlUmFuZ2VDaGFuZ2UpPVwib25EYXRlUmFuZ2VDaGFuZ2UoJGV2ZW50LCAnZGVsaXZlcnlEYXRlUmFuZ2UnKVwiXHJcbiAgICAgICAgICAoY2xlYXJlZCk9XCJvbkNsZWFyZWREYXRlUmFuZ2VDaGFuZ2UoJ2RlbGl2ZXJ5RGF0ZVJhbmdlJylcIlxyXG4gICAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidTRUxFQ1RfREFURScgfCBsb2NhbGl6ZVwiPlxyXG4gICAgICAgIDwvY28taW5wdXQtZGF0ZS1yYW5nZT5cclxuICAgICAgPC9jby1maWx0ZXItaXRlbT5cclxuXHJcbiAgICAgIDwhLS1GaWxpYWFsLS0+XHJcbiAgICAgIDxjby1maWx0ZXItaXRlbVxyXG4gICAgICAgIFtwbGFjZWhvbGRlcl09XCInQlJBTkNIJyB8IGxvY2FsaXplXCJcclxuICAgICAgICBbZXhwYW5kZWRdPVwidHJ1ZVwiXHJcbiAgICAgICAgW2NvbGxlY3Rpb25dPVwiYnJhbmNoZXNcIlxyXG4gICAgICAgIFtzZWFyY2hQbGFjZWhvbGRlcl09XCJzZWFyY2hDb2xsZWN0aW9uUGxhY2Vob2xkZXIgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW25vUmVzdWx0c0xhYmVsXT1cIm5vUmVzdWx0c0xhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtzaG93TW9yZUxhYmVsXT1cInNob3dNb3JlTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW3Nob3dMZXNzTGFiZWxdPVwic2hvd0xlc3NMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICAoY29sbGVjdGlvbkNoYW5nZSk9XCJmaWx0ZXJSZXF1ZXN0U2VydmljZS5oYW5kbGVDb2xsZWN0aW9uQ2hhbmdlRm9yUmFuZ2UoJGV2ZW50LCAncmFuZ2VCcmFuY2hJZCcpXCJcclxuICAgICAgPlxyXG4gICAgICA8L2NvLWZpbHRlci1pdGVtPlxyXG5cclxuICAgICAgPCEtLUlua29wZXItLT5cclxuICAgICAgPGNvLWZpbHRlci1pdGVtXHJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidQVVJDSEFTRV9QRVJTT04nIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtleHBhbmRlZF09XCJ0cnVlXCJcclxuICAgICAgICBbY29sbGVjdGlvbl09XCJwdXJjaGFzZVBlcnNvbnNcIlxyXG4gICAgICAgIFtzZWFyY2hQbGFjZWhvbGRlcl09XCJzZWFyY2hDb2xsZWN0aW9uUGxhY2Vob2xkZXIgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW25vUmVzdWx0c0xhYmVsXT1cIm5vUmVzdWx0c0xhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtzaG93TW9yZUxhYmVsXT1cInNob3dNb3JlTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW3Nob3dMZXNzTGFiZWxdPVwic2hvd0xlc3NMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICAoY29sbGVjdGlvbkNoYW5nZSk9XCJmaWx0ZXJSZXF1ZXN0U2VydmljZS5oYW5kbGVDb2xsZWN0aW9uQ2hhbmdlRm9yUmFuZ2UoJGV2ZW50LCAncmFuZ2VTYWxlc1BlcnNvbicpXCJcclxuICAgICAgPlxyXG4gICAgICA8L2NvLWZpbHRlci1pdGVtPlxyXG5cclxuICAgICAgPCEtLUVpZ2VuIHJlZmVyZW50aWUtLT5cclxuICAgICAgPGNvLWZpbHRlci1pdGVtXHJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidPV05fUkVGRVJFTkNFJyB8IGxvY2FsaXplXCJcclxuICAgICAgICBbY3VzdG9tQ29udGVudF09XCJ0cnVlXCJcclxuICAgICAgICBbZXhwYW5kZWRdPVwidHJ1ZVwiPlxyXG4gICAgICAgIDxjby1pbnB1dC10ZXh0IFsobW9kZWwpXT1cInNlYXJjaFJlcXVlc3QudXNlclJlZmVyZW5jZVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidPV05fUkVGRVJFTkNFJyB8IGxvY2FsaXplXCI+PC9jby1pbnB1dC10ZXh0PlxyXG4gICAgICA8L2NvLWZpbHRlci1pdGVtPlxyXG5cclxuICAgICAgPCEtLVRhZ3MtLT5cclxuICAgICAgPGNvLWZpbHRlci1pdGVtXHJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidUQUdTJyB8IGxvY2FsaXplXCJcclxuICAgICAgICBbZXhwYW5kZWRdPVwidHJ1ZVwiXHJcbiAgICAgICAgW2NvbGxlY3Rpb25dPVwidGFnc1wiXHJcbiAgICAgICAgW3NlYXJjaFBsYWNlaG9sZGVyXT1cInNlYXJjaENvbGxlY3Rpb25QbGFjZWhvbGRlciB8IGxvY2FsaXplXCJcclxuICAgICAgICBbbm9SZXN1bHRzTGFiZWxdPVwibm9SZXN1bHRzTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW3Nob3dNb3JlTGFiZWxdPVwic2hvd01vcmVMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICBbc2hvd0xlc3NMYWJlbF09XCJzaG93TGVzc0xhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIChjb2xsZWN0aW9uQ2hhbmdlKT1cImZpbHRlclJlcXVlc3RTZXJ2aWNlLmhhbmRsZUNvbGxlY3Rpb25DaGFuZ2VGb3JSYW5nZSgkZXZlbnQsICd0YWdSYW5nZScpXCJcclxuICAgICAgPlxyXG4gICAgICA8L2NvLWZpbHRlci1pdGVtPlxyXG5cclxuICAgICAgPCEtLU9uIGhvbGQgY29kZXMtLT5cclxuICAgICAgPGNvLWZpbHRlci1pdGVtXHJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidPTl9IT0xEJyB8IGxvY2FsaXplXCJcclxuICAgICAgICBbZXhwYW5kZWRdPVwidHJ1ZVwiXHJcbiAgICAgICAgW2NvbGxlY3Rpb25dPVwib25Ib2xkQ29kZXNcIlxyXG4gICAgICAgIFtzZWFyY2hQbGFjZWhvbGRlcl09XCJzZWFyY2hDb2xsZWN0aW9uUGxhY2Vob2xkZXIgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW25vUmVzdWx0c0xhYmVsXT1cIm5vUmVzdWx0c0xhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtzaG93TW9yZUxhYmVsXT1cInNob3dNb3JlTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW3Nob3dMZXNzTGFiZWxdPVwic2hvd0xlc3NMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICAoY29sbGVjdGlvbkNoYW5nZSk9XCJmaWx0ZXJSZXF1ZXN0U2VydmljZS5oYW5kbGVDb2xsZWN0aW9uQ2hhbmdlRm9yUmFuZ2UoJGV2ZW50LCdyYW5nZU9uSG9sZENvZGVzJylcIlxyXG4gICAgICA+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcblxyXG4gICAgICA8IS0tQ29tbWlzc2llY29kZS0tPlxyXG4gICAgICA8Y28tZmlsdGVyLWl0ZW1cclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ0NPTU1JU1NJT05fQ09ERScgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW2V4cGFuZGVkXT1cInRydWVcIlxyXG4gICAgICAgIFtjb2xsZWN0aW9uXT1cImNvbW1pc3Npb25Db2Rlc1wiXHJcbiAgICAgICAgW3NlYXJjaFBsYWNlaG9sZGVyXT1cInNlYXJjaENvbGxlY3Rpb25QbGFjZWhvbGRlciB8IGxvY2FsaXplXCJcclxuICAgICAgICBbbm9SZXN1bHRzTGFiZWxdPVwibm9SZXN1bHRzTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW3Nob3dNb3JlTGFiZWxdPVwic2hvd01vcmVMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICBbc2hvd0xlc3NMYWJlbF09XCJzaG93TGVzc0xhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIChjb2xsZWN0aW9uQ2hhbmdlKT1cImZpbHRlclJlcXVlc3RTZXJ2aWNlLmhhbmRsZUNvbGxlY3Rpb25DaGFuZ2VGb3JBcnJheSgkZXZlbnQsICdjb21taXNzaW9uQ29kZXMnKVwiXHJcbiAgICAgID5cclxuICAgICAgPC9jby1maWx0ZXItaXRlbT5cclxuXHJcbiAgICAgIDwhLS1NZWVyIGZpbHRlcnMgLS0+XHJcbiAgICAgIDxjby1maWx0ZXItaXRlbVxyXG4gICAgICAgIFtwbGFjZWhvbGRlcl09XCInTU9SRV9GSUxURVJTJyB8IGxvY2FsaXplXCJcclxuICAgICAgICBbY3VzdG9tQ29udGVudF09XCJ0cnVlXCJcclxuICAgICAgICBbZXhwYW5kZWRdPVwiZmFsc2VcIj5cclxuXHJcbiAgICAgICAgPCEtLU9yZGVyIGRlZmluaXRpZWYtLT5cclxuICAgICAgICA8Y28taW5wdXQtY2hlY2tib3hcclxuICAgICAgICAgIFttb2RlbF09XCJzZWFyY2hSZXF1ZXN0LnRyYW5zYWN0aW9uRGVmaW5pdGl2ZSA9PT0gJ0onXCJcclxuICAgICAgICAgIChtb2RlbENoYW5nZSk9XCJmaWx0ZXJSZXF1ZXN0U2VydmljZS5oYW5kbGVDaGVja2JveFZhbHVlQ2hhbmdlRm9yU3RyaW5nKCRldmVudCwgJ3RyYW5zYWN0aW9uRGVmaW5pdGl2ZScpXCJcclxuICAgICAgICAgIFtsYWJlbF09XCInT1JERVJfREVGSU5JVElWRScgfCBsb2NhbGl6ZVwiPjwvY28taW5wdXQtY2hlY2tib3g+XHJcblxyXG4gICAgICAgIDwhLS1JbmFjdGlldmUgdHJhbnNhY3RpZXMtLT5cclxuICAgICAgICA8Y28taW5wdXQtY2hlY2tib3hcclxuICAgICAgICAgIFttb2RlbF09XCJzZWFyY2hSZXF1ZXN0LmFjdGl2ZSA9PT0gZmFsc2VcIlxyXG4gICAgICAgICAgKG1vZGVsQ2hhbmdlKT1cInNlYXJjaFJlcXVlc3QuYWN0aXZlID0gISRldmVudFwiXHJcbiAgICAgICAgICBbbGFiZWxdPVwiJ0lOQUNUSVZFX1RSQU5TQUNUSU9OUycgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgPjwvY28taW5wdXQtY2hlY2tib3g+XHJcblxyXG4gICAgICAgIDwhLS1JbmNsdXNpZWYgcmV0b3VyZW4gLS0+XHJcbiAgICAgICAgPGNvLWlucHV0LWNoZWNrYm94XHJcbiAgICAgICAgICBbbGFiZWxdPVwiJ0lOQ0xVRElOR19SRVRVUk5TJyB8IGxvY2FsaXplXCJcclxuICAgICAgICAgIFttb2RlbF09XCJzZWFyY2hSZXF1ZXN0LmluY2x1ZGluZ1JldHVybnMgPT09IDFcIlxyXG4gICAgICAgICAgKG1vZGVsQ2hhbmdlKT1cImZpbHRlclJlcXVlc3RTZXJ2aWNlLmhhbmRsZUNoZWNrYm94VmFsdWVDaGFuZ2VGb3JOdW1iZXIoJGV2ZW50LCAnaW5jbHVkaW5nUmV0dXJucycpXCJcclxuICAgICAgICA+XHJcbiAgICAgICAgPC9jby1pbnB1dC1jaGVja2JveD5cclxuXHJcbiAgICAgICAgPCEtLUxldmVybWV0aG9kZSBvcCAocmVnZWwvaGVhZGVyKTogbm9nIG5pZXQgaW4gQVBJIC0tPlxyXG5cclxuICAgICAgPC9jby1maWx0ZXItaXRlbT5cclxuXHJcbiAgICAgIDxkaXYgY2xhc3M9XCJmaWx0ZXItYnV0dG9uLWNvbnRhaW5lclwiPlxyXG4gICAgICAgIDxjby1idXR0b24gY2xhc3M9XCJjbGlja2FibGVcIiBbbGFiZWxdPVwiJ0ZpbHRlcidcIiAoY2xpY2spPVwib25GaWx0ZXJCdXR0b25DbGljaygpXCI+PC9jby1idXR0b24+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+XHJcbiAgYFxyXG59KVxyXG5leHBvcnQgY2xhc3MgVHJhbnNhY3Rpb25QdXJjaGFzZU9yZGVyRmlsdGVyQ29udGVudE9yZGVyQ29tcG9uZW50IGV4dGVuZHMgVHJhbnNhY3Rpb25GaWx0ZXJDb250ZW50QmFzZUNvbXBvbmVudCB7XHJcblxyXG4gIEBIb3N0QmluZGluZyhcImNsYXNzLmNvLXRyYW5zYWN0aW9uLXNlYXJjaC1maWx0ZXItY29udGVudFwiKVxyXG4gIHB1YmxpYyBzaG93Q2xhc3MoKTogYm9vbGVhbiB7XHJcbiAgICByZXR1cm4gdHJ1ZTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBwdXJjaGFzZVBlcnNvbnM6IEZpbHRlckl0ZW1WaWV3bW9kZWxbXTtcclxuICBwdWJsaWMgcHVyY2hhc2VQZXJzb25zRmllbGRzOiB7IHRleHQsIHZhbHVlIH0gPSB7dGV4dDogXCJuYW1lXCIsIHZhbHVlOiBcInJlbGF0aW9uSWRcIn07XHJcblxyXG4gIHB1YmxpYyB0YWdzOiBGaWx0ZXJJdGVtVmlld21vZGVsW107XHJcbiAgcHVibGljIHRhZ3NGaWVsZHM6IHsgdGV4dCwgdmFsdWUgfSA9IHt0ZXh0OiBcImRlc2NyaXB0aW9uXCIsIHZhbHVlOiBcInRhZ1ZhbHVlSWRcIn07XHJcblxyXG4gIHB1YmxpYyBicmFuY2hlczogRmlsdGVySXRlbVZpZXdtb2RlbFtdO1xyXG4gIHB1YmxpYyBicmFuY2hGaWVsZHM6IHsgdGV4dCwgdmFsdWUgfSA9IHt0ZXh0OiBcImRlc2NyaXB0aW9uXCIsIHZhbHVlOiBcInJlbGF0aW9uSWRcIn07XHJcblxyXG4gIHB1YmxpYyBvbkhvbGRDb2RlczogRmlsdGVySXRlbVZpZXdtb2RlbFtdO1xyXG4gIHB1YmxpYyBvbkhvbGRDb2RlRmllbGRzOiB7IHRleHQsIHZhbHVlIH0gPSB7dGV4dDogXCJkZXNjcmlwdGlvblwiLCB2YWx1ZTogXCJvbkhvbGRDb2RlXCJ9O1xyXG5cclxuICBwdWJsaWMgY29tbWlzc2lvbkNvZGVzOiBGaWx0ZXJJdGVtVmlld21vZGVsW107XHJcbiAgcHVibGljIGNvbW1pc3Npb25Db2RlRmllbGRzOiB7IHRleHQsIHZhbHVlIH0gPSB7dGV4dDogXCJkZXNjcmlwdGlvblwiLCB2YWx1ZTogXCJjb2RlXCJ9O1xyXG5cclxuICBwdWJsaWMgdHJhbnNTdGFydERhdGU6IERhdGU7XHJcbiAgcHVibGljIHRyYW5zRW5kRGF0ZTogRGF0ZTtcclxuICBwdWJsaWMgZGVsaXZlcnlTdGFydERhdGU6IERhdGU7XHJcbiAgcHVibGljIGRlbGl2ZXJ5RW5kRGF0ZTogRGF0ZTtcclxuXHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBwdWJsaWMgc2VhcmNoU2VydmljZTogVHJhbnNhY3Rpb25TZWFyY2hTZXJ2aWNlLFxyXG4gICAgcHVibGljIGZpbHRlclJlcXVlc3RTZXJ2aWNlOiBGaWx0ZXJSZXF1ZXN0U2VydmljZSxcclxuICAgIHB1YmxpYyB0cmFuc2FjdGlvblNlcnZpY2U6IFRyYW5zYWN0aW9uU2VydmljZSxcclxuICApIHtcclxuICAgIHN1cGVyKHNlYXJjaFNlcnZpY2UsIGZpbHRlclJlcXVlc3RTZXJ2aWNlLCB0cmFuc2FjdGlvblNlcnZpY2UpXHJcbiAgfVxyXG5cclxuICBwdWJsaWMgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgICB0aGlzLl9zZXRSYW5nZURhdGVzKCk7XHJcbiAgICB0aGlzLl9zZXRQdXJjaGFzZVBlcnNvbnMoKTtcclxuICAgIHRoaXMuX3NldFRhZ3MoKTtcclxuICAgIHRoaXMuX3NldEJyYW5jaGVzKCk7XHJcbiAgICB0aGlzLl9zZXRPbkhvbGRDb2RlcygpO1xyXG4gICAgdGhpcy5fc2V0Q29tbWlzc2lvbkNvZGVzKCk7XHJcbiAgfVxyXG5cclxuICBwcml2YXRlIF9zZXRSYW5nZURhdGVzKCk6IHZvaWQge1xyXG4gICAgdGhpcy50cmFuc1N0YXJ0RGF0ZSA9IHRoaXMuZmlsdGVyUmVxdWVzdFNlcnZpY2UuZ2V0RGF0ZUZyb21GaWx0ZXJSZXF1ZXN0UmFuZ2UodGhpcy5zZWFyY2hSZXF1ZXN0LnJhbmdlVHJhbnNEYXRlLCAwKTtcclxuICAgIHRoaXMudHJhbnNFbmREYXRlID0gdGhpcy5maWx0ZXJSZXF1ZXN0U2VydmljZS5nZXREYXRlRnJvbUZpbHRlclJlcXVlc3RSYW5nZSh0aGlzLnNlYXJjaFJlcXVlc3QucmFuZ2VUcmFuc0RhdGUsIDEpO1xyXG4gICAgdGhpcy5kZWxpdmVyeVN0YXJ0RGF0ZSA9IHRoaXMuZmlsdGVyUmVxdWVzdFNlcnZpY2UuZ2V0RGF0ZUZyb21GaWx0ZXJSZXF1ZXN0UmFuZ2UodGhpcy5zZWFyY2hSZXF1ZXN0LmRlbGl2ZXJ5RGF0ZVJhbmdlLCAwKTtcclxuICAgIHRoaXMuZGVsaXZlcnlFbmREYXRlID0gdGhpcy5maWx0ZXJSZXF1ZXN0U2VydmljZS5nZXREYXRlRnJvbUZpbHRlclJlcXVlc3RSYW5nZSh0aGlzLnNlYXJjaFJlcXVlc3QuZGVsaXZlcnlEYXRlUmFuZ2UsIDEpO1xyXG4gIH1cclxuXHJcbiAgLy9JbmtvcGVyXHJcbiAgcHJpdmF0ZSBfc2V0UHVyY2hhc2VQZXJzb25zKCk6IHZvaWQge1xyXG4gICAgdGhpcy50cmFuc2FjdGlvblNlcnZpY2UuZ2V0U2FsZXNQZXJzb25zKCkudGhlbigocGVyc29uczogU2FsZXNQZXJzb25bXSkgPT4ge1xyXG4gICAgICB0aGlzLnB1cmNoYXNlUGVyc29ucyA9IG5ldyBGaWx0ZXJWaWV3bW9kZWwocGVyc29ucywgdGhpcy5wdXJjaGFzZVBlcnNvbnNGaWVsZHMpLmZpbHRlckl0ZW1zO1xyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICAvLyBUYWdzXHJcbiAgcHJpdmF0ZSBfc2V0VGFncygpOiB2b2lkIHtcclxuICAgIHRoaXMudHJhbnNhY3Rpb25TZXJ2aWNlLmdldFRhZ3MoMSkudGhlbigodGFnczogVGFnW10pID0+IHtcclxuICAgICAgdGhpcy50YWdzID0gbmV3IEZpbHRlclZpZXdtb2RlbCh0YWdzLCB0aGlzLnRhZ3NGaWVsZHMpLmZpbHRlckl0ZW1zO1xyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICAvL0JyYW5jaGVzXHJcbiAgcHJpdmF0ZSBfc2V0QnJhbmNoZXMoKTogdm9pZCB7XHJcbiAgICB0aGlzLnRyYW5zYWN0aW9uU2VydmljZS5nZXRCcmFuY2hlcygpLnRoZW4oKGJyYW5jaGVzOiBCcmFuY2hMb3ZbXSkgPT4ge1xyXG4gICAgICB0aGlzLmJyYW5jaGVzID0gbmV3IEZpbHRlclZpZXdtb2RlbChicmFuY2hlcywgdGhpcy5icmFuY2hGaWVsZHMpLmZpbHRlckl0ZW1zO1xyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICAvL09uSG9sZENvZGVzXHJcbiAgcHJpdmF0ZSBfc2V0T25Ib2xkQ29kZXMoKTogdm9pZCB7XHJcbiAgICB0aGlzLnRyYW5zYWN0aW9uU2VydmljZS5nZXRPbkhvbGRDb2RlcygpLnRoZW4oKG9uSG9sZENvZGVzOiBPbkhvbGRDb2RlW10pID0+IHtcclxuICAgICAgdGhpcy5vbkhvbGRDb2RlcyA9IG5ldyBGaWx0ZXJWaWV3bW9kZWwob25Ib2xkQ29kZXMsIHRoaXMub25Ib2xkQ29kZUZpZWxkcykuZmlsdGVySXRlbXM7XHJcbiAgICB9KTtcclxuICB9XHJcblxyXG4gIC8vQ29tbWlzc2lvbkNvZGVzXHJcbiAgcHJpdmF0ZSBfc2V0Q29tbWlzc2lvbkNvZGVzKCk6IHZvaWQge1xyXG4gICAgdGhpcy50cmFuc2FjdGlvblNlcnZpY2UuZ2V0Q29tbWlzc2lvbkNvZGVzKFwiTkxcIikudGhlbigoY29tbWlzc2lvbkNvZGVzOiBDb0RvbWFpblZhbHVlW10pID0+IHtcclxuICAgICAgdGhpcy5jb21taXNzaW9uQ29kZXMgPSBuZXcgRmlsdGVyVmlld21vZGVsKGNvbW1pc3Npb25Db2RlcywgdGhpcy5jb21taXNzaW9uQ29kZUZpZWxkcykuZmlsdGVySXRlbXM7XHJcbiAgICB9KTtcclxuICB9XHJcbn1cclxuIl19
|
|
@@ -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 { TransactionPurchaseOrderFilterContentOrderComponent } from "./transaction-purchase-order-filter-content-order.component";
|
|
6
|
+
export class TransactionPurchaseOrderFilterContentOrderModule {
|
|
7
|
+
}
|
|
8
|
+
TransactionPurchaseOrderFilterContentOrderModule.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
|
+
TransactionPurchaseOrderFilterContentOrderComponent
|
|
24
|
+
],
|
|
25
|
+
exports: [
|
|
26
|
+
TransactionPurchaseOrderFilterContentOrderComponent
|
|
27
|
+
]
|
|
28
|
+
},] }
|
|
29
|
+
];
|
|
30
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tcHVyY2hhc2Utb3JkZXItZmlsdGVyLWNvbnRlbnQtb3JkZXIubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jb21wb25lbnQvdHJhbnNhY3Rpb24tc2VhcmNoL3RyYW5zYWN0aW9uLWZpbHRlci1jb250ZW50L3B1cmNoYXNlLW9yZGVyLWZpbHRlci1jb250ZW50L3RyYW5zYWN0aW9uLXB1cmNoYXNlLW9yZGVyLWZpbHRlci1jb250ZW50LW9yZGVyL3RyYW5zYWN0aW9uLXB1cmNoYXNlLW9yZGVyLWZpbHRlci1jb250ZW50LW9yZGVyLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQ0wscUJBQXFCLEVBQ3JCLGtCQUFrQixFQUNsQixlQUFlLEVBQ2YscUJBQXFCLEVBQ3JCLGdCQUFnQixFQUFFLDBCQUEwQixFQUFFLFlBQVksRUFBRSxtQkFBbUIsRUFDaEYsTUFBTSw4QkFBOEIsQ0FBQztBQUN0QyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDN0QsT0FBTyxFQUFDLG1EQUFtRCxFQUFDLE1BQU0sNkRBQTZELENBQUM7QUFzQmhJLE1BQU0sT0FBTyxnREFBZ0Q7OztZQXBCNUQsUUFBUSxTQUFDO2dCQUNSLE9BQU8sRUFBRTtvQkFDUCxZQUFZO29CQUNaLHFCQUFxQjtvQkFDckIsVUFBVTtvQkFDVixxQkFBcUI7b0JBQ3JCLGVBQWU7b0JBQ2Ysa0JBQWtCO29CQUNsQixnQkFBZ0I7b0JBQ2hCLDBCQUEwQjtvQkFDMUIsWUFBWTtvQkFDWixtQkFBbUI7aUJBQ3BCO2dCQUNELFlBQVksRUFBRTtvQkFDWixtREFBbUQ7aUJBQ3BEO2dCQUNELE9BQU8sRUFBRTtvQkFDUCxtREFBbUQ7aUJBQ3BEO2FBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge05nTW9kdWxlfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSBcIkBhbmd1bGFyL2NvbW1vblwiO1xyXG5pbXBvcnQge1xyXG4gIElucHV0RGF0ZVBpY2tlck1vZHVsZSxcclxuICBJbnB1dExpc3Rib3hNb2R1bGUsXHJcbiAgSW5wdXRUZXh0TW9kdWxlLFxyXG4gIE11bHRpU2VsZWN0TGlzdE1vZHVsZSxcclxuICBGaWx0ZXJJdGVtTW9kdWxlLCBJbnB1dERhdGVSYW5nZVBpY2tlck1vZHVsZSwgQnV0dG9uTW9kdWxlLCBJbnB1dENoZWNrYm94TW9kdWxlXHJcbn0gZnJvbSBcIkBjb2xpam5pdC9jb3JlY29tcG9uZW50c192MTJcIjtcclxuaW1wb3J0IHsgUGlwZU1vZHVsZSB9IGZyb20gXCIuLi8uLi8uLi8uLi8uLi9waXBlL3BpcGUubW9kdWxlXCI7XHJcbmltcG9ydCB7VHJhbnNhY3Rpb25QdXJjaGFzZU9yZGVyRmlsdGVyQ29udGVudE9yZGVyQ29tcG9uZW50fSBmcm9tIFwiLi90cmFuc2FjdGlvbi1wdXJjaGFzZS1vcmRlci1maWx0ZXItY29udGVudC1vcmRlci5jb21wb25lbnRcIjtcclxuXHJcbkBOZ01vZHVsZSh7XHJcbiAgaW1wb3J0czogW1xyXG4gICAgQ29tbW9uTW9kdWxlLFxyXG4gICAgSW5wdXREYXRlUGlja2VyTW9kdWxlLFxyXG4gICAgUGlwZU1vZHVsZSxcclxuICAgIE11bHRpU2VsZWN0TGlzdE1vZHVsZSxcclxuICAgIElucHV0VGV4dE1vZHVsZSxcclxuICAgIElucHV0TGlzdGJveE1vZHVsZSxcclxuICAgIEZpbHRlckl0ZW1Nb2R1bGUsXHJcbiAgICBJbnB1dERhdGVSYW5nZVBpY2tlck1vZHVsZSxcclxuICAgIEJ1dHRvbk1vZHVsZSxcclxuICAgIElucHV0Q2hlY2tib3hNb2R1bGVcclxuICBdLFxyXG4gIGRlY2xhcmF0aW9uczogW1xyXG4gICAgVHJhbnNhY3Rpb25QdXJjaGFzZU9yZGVyRmlsdGVyQ29udGVudE9yZGVyQ29tcG9uZW50XHJcbiAgXSxcclxuICBleHBvcnRzOiBbXHJcbiAgICBUcmFuc2FjdGlvblB1cmNoYXNlT3JkZXJGaWx0ZXJDb250ZW50T3JkZXJDb21wb25lbnRcclxuICBdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBUcmFuc2FjdGlvblB1cmNoYXNlT3JkZXJGaWx0ZXJDb250ZW50T3JkZXJNb2R1bGUge1xyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import { Component, HostBinding } from "@angular/core";
|
|
2
|
+
import { ArticleExtendedRequest } from "@colijnit/articleapi/build/model/article-extended-request";
|
|
3
|
+
import { RelationKind } from "@colijnit/transactionapi/build/enum/relation-kind.enum";
|
|
4
|
+
import { RelationRequest } from "@colijnit/transactionapi/build/model/relation-request";
|
|
5
|
+
import { FilterViewmodel } from "../../../../../model/filter-viewmodel";
|
|
6
|
+
import { TransactionService } from "../../../../../service/transaction.service";
|
|
7
|
+
import { TransactionFilterContentBaseComponent } from "../../../../core/base/transaction-filter-content-base.component";
|
|
8
|
+
import { FilterRequestService } from "../../../service/filter-request.service";
|
|
9
|
+
import { TransactionSearchService } from "../../../service/transaction-search.service";
|
|
10
|
+
export class TransactionSalesOrderFilterContentArticleComponent extends TransactionFilterContentBaseComponent {
|
|
11
|
+
constructor(searchService, filterRequestService, transactionService) {
|
|
12
|
+
super(searchService, filterRequestService, transactionService);
|
|
13
|
+
this.searchService = searchService;
|
|
14
|
+
this.filterRequestService = filterRequestService;
|
|
15
|
+
this.transactionService = transactionService;
|
|
16
|
+
this.exceedanceCodeFields = { text: "description", value: "code" };
|
|
17
|
+
this.turnoverGroupFields = { text: "description", value: "turnovergroupNr" };
|
|
18
|
+
this.mainArticleFields = { text: "description", value: "articlenumber" };
|
|
19
|
+
this.supplierFields = { text: "displayName", value: "relationId" };
|
|
20
|
+
this.getArticles = (text) => {
|
|
21
|
+
const request = new ArticleExtendedRequest();
|
|
22
|
+
request.articleNumber = text;
|
|
23
|
+
return this.transactionService.getArticles(request).then((articles) => {
|
|
24
|
+
return new FilterViewmodel(articles, { text: 'articleNumber', value: 'articleNumber' }).filterItems;
|
|
25
|
+
});
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
showClass() {
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
ngOnInit() {
|
|
32
|
+
this._setExceedanceCodes();
|
|
33
|
+
this._setSuppliers();
|
|
34
|
+
this._setTurnoverGroups();
|
|
35
|
+
this._setMainArticles();
|
|
36
|
+
}
|
|
37
|
+
_setExceedanceCodes() {
|
|
38
|
+
this.transactionService.getInOutCollection("NL").then((exceedanceCodes) => {
|
|
39
|
+
this.exceedanceCodes = new FilterViewmodel(exceedanceCodes, this.exceedanceCodeFields).filterItems;
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
_setTurnoverGroups() {
|
|
43
|
+
this.transactionService.getTurnoverGroups().then((turnoverGroups) => {
|
|
44
|
+
this.turnoverGroups = new FilterViewmodel(turnoverGroups, this.turnoverGroupFields).filterItems;
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
_setMainArticles() {
|
|
48
|
+
this.transactionService.getMainArticles().then((articles) => {
|
|
49
|
+
this.mainArticles = new FilterViewmodel(articles, this.mainArticleFields).filterItems;
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
_setSuppliers() {
|
|
53
|
+
const request = new RelationRequest();
|
|
54
|
+
request.relationType = RelationKind.Supplier;
|
|
55
|
+
this.transactionService.getRelationListObjects(request).then((relationListObjects) => {
|
|
56
|
+
this.suppliers = new FilterViewmodel(relationListObjects, this.supplierFields).filterItems;
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
TransactionSalesOrderFilterContentArticleComponent.decorators = [
|
|
61
|
+
{ type: Component, args: [{
|
|
62
|
+
selector: 'co-transaction-sales-order-filter-content-article',
|
|
63
|
+
template: `
|
|
64
|
+
<div class="transaction-filter-content-article-wrapper">
|
|
65
|
+
|
|
66
|
+
<!--Artikelnummer-->
|
|
67
|
+
<co-filter-item
|
|
68
|
+
[placeholder]="'ARTICLE_NR' | localize"
|
|
69
|
+
[expanded]="true"
|
|
70
|
+
[singleSelect]="true"
|
|
71
|
+
[minSearchCharsToLoadCollection]="3"
|
|
72
|
+
[collectionLoadFn]="getArticles"
|
|
73
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForSingleSelect($event, 'articleNr')"
|
|
74
|
+
>
|
|
75
|
+
</co-filter-item>
|
|
76
|
+
|
|
77
|
+
<!--Omzetgroep-->
|
|
78
|
+
<co-filter-item
|
|
79
|
+
[placeholder]="'TURNOVER_GROUP' | localize"
|
|
80
|
+
[expanded]="true"
|
|
81
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
82
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
83
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
84
|
+
[showLessLabel]="showLessLabel | localize"
|
|
85
|
+
[collection]="turnoverGroups"
|
|
86
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForRange($event, 'rangeTurnoverGroup')"
|
|
87
|
+
>
|
|
88
|
+
</co-filter-item>
|
|
89
|
+
|
|
90
|
+
<!--Hoofdartikel-->
|
|
91
|
+
<co-filter-item
|
|
92
|
+
[placeholder]="'MAIN_ARTICLE' | localize"
|
|
93
|
+
[expanded]="true"
|
|
94
|
+
[collection]="mainArticles"
|
|
95
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForRange($event, 'mainArticleNrRange')"
|
|
96
|
+
>
|
|
97
|
+
</co-filter-item>
|
|
98
|
+
|
|
99
|
+
<!--Uitloopcode -->
|
|
100
|
+
<co-filter-item
|
|
101
|
+
[placeholder]="'EXCEEDENCE_CODE' | localize"
|
|
102
|
+
[expanded]="true"
|
|
103
|
+
[collection]="exceedanceCodes"
|
|
104
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
105
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
106
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
107
|
+
[showLessLabel]="showLessLabel | localize"
|
|
108
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForArray($event, 'exceedanceCodes')"
|
|
109
|
+
>
|
|
110
|
+
</co-filter-item>
|
|
111
|
+
|
|
112
|
+
<!--Leverancier-->
|
|
113
|
+
<co-filter-item
|
|
114
|
+
[placeholder]="'SUPPLIER' | localize"
|
|
115
|
+
[expanded]="true"
|
|
116
|
+
[collection]="suppliers"
|
|
117
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
118
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
119
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
120
|
+
[showLessLabel]="showLessLabel | localize"
|
|
121
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForRange($event, 'rangeSupplier')"
|
|
122
|
+
>
|
|
123
|
+
</co-filter-item>
|
|
124
|
+
<div class="filter-button-container">
|
|
125
|
+
<co-button class="clickable" [label]="'Filter'" (click)="onFilterButtonClick()"></co-button>
|
|
126
|
+
</div>
|
|
127
|
+
</div>
|
|
128
|
+
`
|
|
129
|
+
},] }
|
|
130
|
+
];
|
|
131
|
+
TransactionSalesOrderFilterContentArticleComponent.ctorParameters = () => [
|
|
132
|
+
{ type: TransactionSearchService },
|
|
133
|
+
{ type: FilterRequestService },
|
|
134
|
+
{ type: TransactionService }
|
|
135
|
+
];
|
|
136
|
+
TransactionSalesOrderFilterContentArticleComponent.propDecorators = {
|
|
137
|
+
showClass: [{ type: HostBinding, args: ["class.co-transaction-search-filter-content",] }]
|
|
138
|
+
};
|
|
139
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2FsZXMtb3JkZXItZmlsdGVyLWNvbnRlbnQtYXJ0aWNsZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2NvbXBvbmVudC90cmFuc2FjdGlvbi1zZWFyY2gvdHJhbnNhY3Rpb24tZmlsdGVyLWNvbnRlbnQvc2FsZXMtb3JkZXItZmlsdGVyLWNvbnRlbnQvdHJhbnNhY3Rpb24tc2FsZXMtb3JkZXItZmlsdGVyLWNvbnRlbnQtYXJ0aWNsZS90cmFuc2FjdGlvbi1zYWxlcy1vcmRlci1maWx0ZXItY29udGVudC1hcnRpY2xlLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFdBQVcsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN2RCxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSwyREFBMkQsQ0FBQztBQUluRyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sd0RBQXdELENBQUM7QUFFdEYsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHVEQUF1RCxDQUFDO0FBRXhGLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSx1Q0FBdUMsQ0FBQztBQUN4RSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSw0Q0FBNEMsQ0FBQztBQUNoRixPQUFPLEVBQUUscUNBQXFDLEVBQUUsTUFBTSxpRUFBaUUsQ0FBQztBQUN4SCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSx5Q0FBeUMsQ0FBQztBQUMvRSxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSw2Q0FBNkMsQ0FBQztBQXVFdkYsTUFBTSxPQUFPLGtEQUFtRCxTQUFRLHFDQUFxQztJQW1CM0csWUFDUyxhQUF1QyxFQUN2QyxvQkFBMEMsRUFDMUMsa0JBQXNDO1FBRTdDLEtBQUssQ0FBQyxhQUFhLEVBQUUsb0JBQW9CLEVB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QUUsSUFBSSxDQUFDLGNBQWMsQ0FBQyxDQUFDLFdBQVcsQ0FBQztRQUM3RixDQUFDLENBQUMsQ0FBQTtJQUNKLENBQUM7OztZQXZJRixTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLG1EQUFtRDtnQkFDN0QsUUFBUSxFQUFFOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztHQWlFVDthQUNGOzs7WUF0RVEsd0JBQXdCO1lBRHhCLG9CQUFvQjtZQUZwQixrQkFBa0I7Ozt3QkE0RXhCLFdBQVcsU0FBQyw0Q0FBNEMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEhvc3RCaW5kaW5nIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHsgQXJ0aWNsZUV4dGVuZGVkUmVxdWVzdCB9IGZyb20gXCJAY29saWpuaXQvYXJ0aWNsZWFwaS9idWlsZC9tb2RlbC9hcnRpY2xlLWV4dGVuZGVkLXJlcXVlc3RcIjtcclxuaW1wb3J0IHsgQXJ0aWNsZUxpZ2h0IH0gZnJvbSBcIkBjb2xpam5pdC9hcnRpY2xlYXBpL2J1aWxkL21vZGVsL2FydGljbGUtbGlnaHQuYm9cIjtcclxuaW1wb3J0IHsgTWFpbkFydGljbGUgfSBmcm9tIFwiQGNvbGlqbml0L2FydGljbGVhcGkvYnVpbGQvbW9kZWwvbWFpbi1hcnRpY2xlLmJvXCI7XHJcbmltcG9ydCB7IFR1cm5vdmVyR3JvdXBJbWFnZSB9IGZyb20gXCJAY29saWpuaXQvYXJ0aWNsZWFwaS9idWlsZC9tb2RlbC90dXJub3Zlci1ncm91cC1pbWFnZS5ib1wiO1xyXG5pbXBvcnQgeyBSZWxhdGlvbktpbmQgfSBmcm9tIFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uYXBpL2J1aWxkL2VudW0vcmVsYXRpb24ta2luZC5lbnVtXCI7XHJcbmltcG9ydCB7IENvRG9tYWluVmFsdWUgfSBmcm9tIFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uYXBpL2J1aWxkL21vZGVsL2NvLWRvbWFpbi12YWx1ZS5ib1wiO1xyXG5pbXBvcnQgeyBSZWxhdGlvblJlcXVlc3QgfSBmcm9tIFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uYXBpL2J1aWxkL21vZGVsL3JlbGF0aW9uLXJlcXVlc3RcIjtcclxuaW1wb3J0IHsgRmlsdGVySXRlbVZpZXdtb2RlbCB9IGZyb20gXCIuLi8uLi8uLi8uLi8uLi9tb2RlbC9maWx0ZXItaXRlbS52aWV3bW9kZWxcIjtcclxuaW1wb3J0IHsgRmlsdGVyVmlld21vZGVsIH0gZnJvbSBcIi4uLy4uLy4uLy4uLy4uL21vZGVsL2ZpbHRlci12aWV3bW9kZWxcIjtcclxuaW1wb3J0IHsgVHJhbnNhY3Rpb25TZXJ2aWNlIH0gZnJvbSBcIi4uLy4uLy4uLy4uLy4uL3NlcnZpY2UvdHJhbnNhY3Rpb24uc2VydmljZVwiO1xyXG5pbXBvcnQgeyBUcmFuc2FjdGlvbkZpbHRlckNvbnRlbnRCYXNlQ29tcG9uZW50IH0gZnJvbSBcIi4uLy4uLy4uLy4uL2NvcmUvYmFzZS90cmFuc2FjdGlvbi1maWx0ZXItY29udGVudC1iYXNlLmNvbXBvbmVudFwiO1xyXG5pbXBvcnQgeyBGaWx0ZXJSZXF1ZXN0U2VydmljZSB9IGZyb20gXCIuLi8uLi8uLi9zZXJ2aWNlL2ZpbHRlci1yZXF1ZXN0LnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgVHJhbnNhY3Rpb25TZWFyY2hTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uLy4uL3NlcnZpY2UvdHJhbnNhY3Rpb24tc2VhcmNoLnNlcnZpY2VcIjtcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnY28tdHJhbnNhY3Rpb24tc2FsZXMtb3JkZXItZmlsdGVyLWNvbnRlbnQtYXJ0aWNsZScsXHJcbiAgdGVtcGxhdGU6IGBcclxuICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi1maWx0ZXItY29udGVudC1hcnRpY2xlLXdyYXBwZXJcIj5cclxuXHJcbiAgICAgIDwhLS1BcnRpa2VsbnVtbWVyLS0+XHJcbiAgICAgIDxjby1maWx0ZXItaXRlbVxyXG4gICAgICAgIFtwbGFjZWhvbGRlcl09XCInQVJUSUNMRV9OUicgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW2V4cGFuZGVkXT1cInRydWVcIlxyXG4gICAgICAgIFtzaW5nbGVTZWxlY3RdPVwidHJ1ZVwiXHJcbiAgICAgICAgW21pblNlYXJjaENoYXJzVG9Mb2FkQ29sbGVjdGlvbl09XCIzXCJcclxuICAgICAgICBbY29sbGVjdGlvbkxvYWRGbl09XCJnZXRBcnRpY2xlc1wiXHJcbiAgICAgICAgKGNvbGxlY3Rpb25DaGFuZ2UpPVwiZmlsdGVyUmVxdWVzdFNlcnZpY2UuaGFuZGxlQ29sbGVjdGlvbkNoYW5nZUZvclNpbmdsZVNlbGVjdCgkZXZlbnQsICdhcnRpY2xlTnInKVwiXHJcbiAgICAgID5cclxuICAgICAgPC9jby1maWx0ZXItaXRlbT5cclxuXHJcbiAgICAgIDwhLS1PbXpldGdyb2VwLS0+XHJcbiAgICAgIDxjby1maWx0ZXItaXRlbVxyXG4gICAgICAgIFtwbGFjZWhvbGRlcl09XCInVFVSTk9WRVJfR1JPVVAnIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtleHBhbmRlZF09XCJ0cnVlXCJcclxuICAgICAgICBbc2VhcmNoUGxhY2Vob2xkZXJdPVwic2VhcmNoQ29sbGVjdGlvblBsYWNlaG9sZGVyIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtub1Jlc3VsdHNMYWJlbF09XCJub1Jlc3VsdHNMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICBbc2hvd01vcmVMYWJlbF09XCJzaG93TW9yZUxhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtzaG93TGVzc0xhYmVsXT1cInNob3dMZXNzTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW2NvbGxlY3Rpb25dPVwidHVybm92ZXJHcm91cHNcIlxyXG4gICAgICAgIChjb2xsZWN0aW9uQ2hhbmdlKT1cImZpbHRlclJlcXVlc3RTZXJ2aWNlLmhhbmRsZUNvbGxlY3Rpb25DaGFuZ2VGb3JSYW5nZSgkZXZlbnQsICdyYW5nZVR1cm5vdmVyR3JvdXAnKVwiXHJcbiAgICAgID5cclxuICAgICAgPC9jby1maWx0ZXItaXRlbT5cclxuXHJcbiAgICAgIDwhLS1Ib29mZGFydGlrZWwtLT5cclxuICAgICAgPGNvLWZpbHRlci1pdGVtXHJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidNQUlOX0FSVElDTEUnIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtleHBhbmRlZF09XCJ0cnVlXCJcclxuICAgICAgICBbY29sbGVjdGlvbl09XCJtYWluQXJ0aWNsZXNcIlxyXG4gICAgICAgIChjb2xsZWN0aW9uQ2hhbmdlKT1cImZpbHRlclJlcXVlc3RTZXJ2aWNlLmhhbmRsZUNvbGxlY3Rpb25DaGFuZ2VGb3JSYW5nZSgkZXZlbnQsICdtYWluQXJ0aWNsZU5yUmFuZ2UnKVwiXHJcbiAgICAgID5cclxuICAgICAgPC9jby1maWx0ZXItaXRlbT5cclxuXHJcbiAgICAgIDwhLS1VaXRsb29wY29kZSAtLT5cclxuICAgICAgPGNvLWZpbHRlci1pdGVtXHJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidFWENFRURFTkNFX0NPREUnIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtleHBhbmRlZF09XCJ0cnVlXCJcclxuICAgICAgICBbY29sbGVjdGlvbl09XCJleGNlZWRhbmNlQ29kZXNcIlxyXG4gICAgICAgIFtzZWFyY2hQbGFjZWhvbGRlcl09XCJzZWFyY2hDb2xsZWN0aW9uUGxhY2Vob2xkZXIgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW25vUmVzdWx0c0xhYmVsXT1cIm5vUmVzdWx0c0xhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtzaG93TW9yZUxhYmVsXT1cInNob3dNb3JlTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW3Nob3dMZXNzTGFiZWxdPVwic2hvd0xlc3NMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICAoY29sbGVjdGlvbkNoYW5nZSk9XCJmaWx0ZXJSZXF1ZXN0U2VydmljZS5oYW5kbGVDb2xsZWN0aW9uQ2hhbmdlRm9yQXJyYXkoJGV2ZW50LCAnZXhjZWVkYW5jZUNvZGVzJylcIlxyXG4gICAgICA+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcblxyXG4gICAgICA8IS0tTGV2ZXJhbmNpZXItLT5cclxuICAgICAgPGNvLWZpbHRlci1pdGVtXHJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidTVVBQTElFUicgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW2V4cGFuZGVkXT1cInRydWVcIlxyXG4gICAgICAgIFtjb2xsZWN0aW9uXT1cInN1cHBsaWVyc1wiXHJcbiAgICAgICAgW3NlYXJjaFBsYWNlaG9sZGVyXT1cInNlYXJjaENvbGxlY3Rpb25QbGFjZWhvbGRlciB8IGxvY2FsaXplXCJcclxuICAgICAgICBbbm9SZXN1bHRzTGFiZWxdPVwibm9SZXN1bHRzTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW3Nob3dNb3JlTGFiZWxdPVwic2hvd01vcmVMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICBbc2hvd0xlc3NMYWJlbF09XCJzaG93TGVzc0xhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIChjb2xsZWN0aW9uQ2hhbmdlKT1cImZpbHRlclJlcXVlc3RTZXJ2aWNlLmhhbmRsZUNvbGxlY3Rpb25DaGFuZ2VGb3JSYW5nZSgkZXZlbnQsICdyYW5nZVN1cHBsaWVyJylcIlxyXG4gICAgICA+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJmaWx0ZXItYnV0dG9uLWNvbnRhaW5lclwiPlxyXG4gICAgICAgIDxjby1idXR0b24gY2xhc3M9XCJjbGlja2FibGVcIiBbbGFiZWxdPVwiJ0ZpbHRlcidcIiAoY2xpY2spPVwib25GaWx0ZXJCdXR0b25DbGljaygpXCI+PC9jby1idXR0b24+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+XHJcbiAgYFxyXG59KVxyXG5leHBvcnQgY2xhc3MgVHJhbnNhY3Rpb25TYWxlc09yZGVyRmlsdGVyQ29udGVudEFydGljbGVDb21wb25lbnQgZXh0ZW5kcyBUcmFuc2FjdGlvbkZpbHRlckNvbnRlbnRCYXNlQ29tcG9uZW50IHtcclxuXHJcbiAgQEhvc3RCaW5kaW5nKFwiY2xhc3MuY28tdHJhbnNhY3Rpb24tc2VhcmNoLWZpbHRlci1jb250ZW50XCIpXHJcbiAgcHVibGljIHNob3dDbGFzcygpOiBib29sZWFuIHtcclxuICAgIHJldHVybiB0cnVlO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGV4Y2VlZGFuY2VDb2RlczogRmlsdGVySXRlbVZpZXdtb2RlbFtdO1xyXG4gIHB1YmxpYyBleGNlZWRhbmNlQ29kZUZpZWxkczogeyB0ZXh0LCB2YWx1ZSB9ID0ge3RleHQ6IFwiZGVzY3JpcHRpb25cIiwgdmFsdWU6IFwiY29kZVwifTtcclxuXHJcbiAgcHVibGljIHR1cm5vdmVyR3JvdXBzOiBGaWx0ZXJJdGVtVmlld21vZGVsW107XHJcbiAgcHVibGljIHR1cm5vdmVyR3JvdXBGaWVsZHM6IHsgdGV4dCwgdmFsdWUgfSA9IHt0ZXh0OiBcImRlc2NyaXB0aW9uXCIsIHZhbHVlOiBcInR1cm5vdmVyZ3JvdXBOclwifTtcclxuXHJcbiAgcHVibGljIG1haW5BcnRpY2xlczogRmlsdGVySXRlbVZpZXdtb2RlbFtdO1xyXG4gIHB1YmxpYyBtYWluQXJ0aWNsZUZpZWxkczogeyB0ZXh0LCB2YWx1ZSB9ID0ge3RleHQ6IFwiZGVzY3JpcHRpb25cIiwgdmFsdWU6IFwiYXJ0aWNsZW51bWJlclwifTtcclxuXHJcbiAgcHVibGljIHN1cHBsaWVyczogRmlsdGVySXRlbVZpZXdtb2RlbFtdO1xyXG4gIHB1YmxpYyBzdXBwbGllckZpZWxkczogeyB0ZXh0LCB2YWx1ZSB9ID0ge3RleHQ6IFwiZGlzcGxheU5hbWVcIiwgdmFsdWU6IFwicmVsYXRpb25JZFwifTtcclxuXHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBwdWJsaWMgc2VhcmNoU2VydmljZTogVHJhbnNhY3Rpb25TZWFyY2hTZXJ2aWNlLFxyXG4gICAgcHVibGljIGZpbHRlclJlcXVlc3RTZXJ2aWNlOiBGaWx0ZXJSZXF1ZXN0U2VydmljZSxcclxuICAgIHB1YmxpYyB0cmFuc2FjdGlvblNlcnZpY2U6IFRyYW5zYWN0aW9uU2VydmljZSxcclxuICApIHtcclxuICAgIHN1cGVyKHNlYXJjaFNlcnZpY2UsIGZpbHRlclJlcXVlc3RTZXJ2aWNlLCB0cmFuc2FjdGlvblNlcnZpY2UpXHJcbiAgfVxyXG5cclxuICBwdWJsaWMgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgICB0aGlzLl9zZXRFeGNlZWRhbmNlQ29kZXMoKTtcclxuICAgIHRoaXMuX3NldFN1cHBsaWVycygpO1xyXG4gICAgdGhpcy5fc2V0VHVybm92ZXJHcm91cHMoKTtcclxuICAgIHRoaXMuX3NldE1haW5BcnRpY2xlcygpO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGdldEFydGljbGVzID0gKHRleHQ6IHN0cmluZykgPT4ge1xyXG4gICAgY29uc3QgcmVxdWVzdDogQXJ0aWNsZUV4dGVuZGVkUmVxdWVzdCA9IG5ldyBBcnRpY2xlRXh0ZW5kZWRSZXF1ZXN0KCk7XHJcbiAgICByZXF1ZXN0LmFydGljbGVOdW1iZXIgPSB0ZXh0O1xyXG4gICAgcmV0dXJuIHRoaXMudHJhbnNhY3Rpb25TZXJ2aWNlLmdldEFydGljbGVzKHJlcXVlc3QpLnRoZW4oKGFydGljbGVzOiBBcnRpY2xlTGlnaHRbXSkgPT4ge1xyXG4gICAgICByZXR1cm4gbmV3IEZpbHRlclZpZXdtb2RlbChhcnRpY2xlcywge3RleHQ6ICdhcnRpY2xlTnVtYmVyJywgdmFsdWU6ICdhcnRpY2xlTnVtYmVyJ30pLmZpbHRlckl0ZW1zO1xyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICBwcml2YXRlIF9zZXRFeGNlZWRhbmNlQ29kZXMoKTogdm9pZCB7XHJcbiAgICB0aGlzLnRyYW5zYWN0aW9uU2VydmljZS5nZXRJbk91dENvbGxlY3Rpb24oXCJOTFwiKS50aGVuKChleGNlZWRhbmNlQ29kZXM6IENvRG9tYWluVmFsdWVbXSkgPT4ge1xyXG4gICAgICB0aGlzLmV4Y2VlZGFuY2VDb2RlcyA9IG5ldyBGaWx0ZXJWaWV3bW9kZWwoZXhjZWVkYW5jZUNvZGVzLCB0aGlzLmV4Y2VlZGFuY2VDb2RlRmllbGRzKS5maWx0ZXJJdGVtcztcclxuICAgIH0pO1xyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBfc2V0VHVybm92ZXJHcm91cHMoKTogdm9pZCB7XHJcbiAgICB0aGlzLnRyYW5zYWN0aW9uU2VydmljZS5nZXRUdXJub3Zlckdyb3VwcygpLnRoZW4oKHR1cm5vdmVyR3JvdXBzOiBUdXJub3Zlckdyb3VwSW1hZ2VbXSkgPT4ge1xyXG4gICAgICB0aGlzLnR1cm5vdmVyR3JvdXBzID0gbmV3IEZpbHRlclZpZXdtb2RlbCh0dXJub3Zlckdyb3VwcywgdGhpcy50dXJub3Zlckdyb3VwRmllbGRzKS5maWx0ZXJJdGVtcztcclxuICAgIH0pO1xyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBfc2V0TWFpbkFydGljbGVzKCk6IHZvaWQge1xyXG4gICAgdGhpcy50cmFuc2FjdGlvblNlcnZpY2UuZ2V0TWFpbkFydGljbGVzKCkudGhlbigoYXJ0aWNsZXM6IE1haW5BcnRpY2xlW10pID0+IHtcclxuICAgICAgdGhpcy5tYWluQXJ0aWNsZXMgPSBuZXcgRmlsdGVyVmlld21vZGVsKGFydGljbGVzLCB0aGlzLm1haW5BcnRpY2xlRmllbGRzKS5maWx0ZXJJdGVtcztcclxuICAgIH0pO1xyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBfc2V0U3VwcGxpZXJzKCk6IHZvaWQge1xyXG4gICAgY29uc3QgcmVxdWVzdDogUmVsYXRpb25SZXF1ZXN0ID0gbmV3IFJlbGF0aW9uUmVxdWVzdCgpO1xyXG4gICAgcmVxdWVzdC5yZWxhdGlvblR5cGUgPSBSZWxhdGlvbktpbmQuU3VwcGxpZXI7XHJcbiAgICB0aGlzLnRyYW5zYWN0aW9uU2VydmljZS5nZXRSZWxhdGlvbkxpc3RPYmplY3RzKHJlcXVlc3QpLnRoZW4oKHJlbGF0aW9uTGlzdE9iamVjdHMpID0+IHtcclxuICAgICAgdGhpcy5zdXBwbGllcnMgPSBuZXcgRmlsdGVyVmlld21vZGVsKHJlbGF0aW9uTGlzdE9iamVjdHMsIHRoaXMuc3VwcGxpZXJGaWVsZHMpLmZpbHRlckl0ZW1zO1xyXG4gICAgfSlcclxuICB9XHJcbn1cclxuIl19
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { NgModule } from "@angular/core";
|
|
2
|
+
import { CommonModule } from "@angular/common";
|
|
3
|
+
import { ButtonModule, FilterItemModule, InputTextModule } from "@colijnit/corecomponents_v12";
|
|
4
|
+
import { PipeModule } from "../../../../../pipe/pipe.module";
|
|
5
|
+
import { TransactionSalesOrderFilterContentArticleComponent } from "./transaction-sales-order-filter-content-article.component";
|
|
6
|
+
export class TransactionSalesOrderFilterContentArticleModule {
|
|
7
|
+
}
|
|
8
|
+
TransactionSalesOrderFilterContentArticleModule.decorators = [
|
|
9
|
+
{ type: NgModule, args: [{
|
|
10
|
+
imports: [
|
|
11
|
+
CommonModule,
|
|
12
|
+
FilterItemModule,
|
|
13
|
+
PipeModule,
|
|
14
|
+
InputTextModule,
|
|
15
|
+
ButtonModule
|
|
16
|
+
],
|
|
17
|
+
declarations: [
|
|
18
|
+
TransactionSalesOrderFilterContentArticleComponent
|
|
19
|
+
],
|
|
20
|
+
exports: [
|
|
21
|
+
TransactionSalesOrderFilterContentArticleComponent
|
|
22
|
+
]
|
|
23
|
+
},] }
|
|
24
|
+
];
|
|
25
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2FsZXMtb3JkZXItZmlsdGVyLWNvbnRlbnQtYXJ0aWNsZS5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2NvbXBvbmVudC90cmFuc2FjdGlvbi1zZWFyY2gvdHJhbnNhY3Rpb24tZmlsdGVyLWNvbnRlbnQvc2FsZXMtb3JkZXItZmlsdGVyLWNvbnRlbnQvdHJhbnNhY3Rpb24tc2FsZXMtb3JkZXItZmlsdGVyLWNvbnRlbnQtYXJ0aWNsZS90cmFuc2FjdGlvbi1zYWxlcy1vcmRlci1maWx0ZXItY29udGVudC1hcnRpY2xlLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQUUsWUFBWSxFQUFFLGdCQUFnQixFQUFFLGVBQWUsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQy9GLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUM3RCxPQUFPLEVBQUMsa0RBQWtELEVBQUMsTUFBTSw0REFBNEQsQ0FBQztBQWlCOUgsTUFBTSxPQUFPLCtDQUErQzs7O1lBZjNELFFBQVEsU0FBQztnQkFDUixPQUFPLEVBQUU7b0JBQ1AsWUFBWTtvQkFDWixnQkFBZ0I7b0JBQ2hCLFVBQVU7b0JBQ1YsZUFBZTtvQkFDZixZQUFZO2lCQUNiO2dCQUNELFlBQVksRUFBRTtvQkFDWixrREFBa0Q7aUJBQ25EO2dCQUNELE9BQU8sRUFBRTtvQkFDUCxrREFBa0Q7aUJBQ25EO2FBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge05nTW9kdWxlfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSBcIkBhbmd1bGFyL2NvbW1vblwiO1xyXG5pbXBvcnQgeyBCdXR0b25Nb2R1bGUsIEZpbHRlckl0ZW1Nb2R1bGUsIElucHV0VGV4dE1vZHVsZSB9IGZyb20gXCJAY29saWpuaXQvY29yZWNvbXBvbmVudHNfdjEyXCI7XHJcbmltcG9ydCB7IFBpcGVNb2R1bGUgfSBmcm9tIFwiLi4vLi4vLi4vLi4vLi4vcGlwZS9waXBlLm1vZHVsZVwiO1xyXG5pbXBvcnQge1RyYW5zYWN0aW9uU2FsZXNPcmRlckZpbHRlckNvbnRlbnRBcnRpY2xlQ29tcG9uZW50fSBmcm9tIFwiLi90cmFuc2FjdGlvbi1zYWxlcy1vcmRlci1maWx0ZXItY29udGVudC1hcnRpY2xlLmNvbXBvbmVudFwiO1xyXG5cclxuQE5nTW9kdWxlKHtcclxuICBpbXBvcnRzOiBbXHJcbiAgICBDb21tb25Nb2R1bGUsXHJcbiAgICBGaWx0ZXJJdGVtTW9kdWxlLFxyXG4gICAgUGlwZU1vZHVsZSxcclxuICAgIElucHV0VGV4dE1vZHVsZSxcclxuICAgIEJ1dHRvbk1vZHVsZVxyXG4gIF0sXHJcbiAgZGVjbGFyYXRpb25zOiBbXHJcbiAgICBUcmFuc2FjdGlvblNhbGVzT3JkZXJGaWx0ZXJDb250ZW50QXJ0aWNsZUNvbXBvbmVudFxyXG4gIF0sXHJcbiAgZXhwb3J0czogW1xyXG4gICAgVHJhbnNhY3Rpb25TYWxlc09yZGVyRmlsdGVyQ29udGVudEFydGljbGVDb21wb25lbnRcclxuICBdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBUcmFuc2FjdGlvblNhbGVzT3JkZXJGaWx0ZXJDb250ZW50QXJ0aWNsZU1vZHVsZSB7XHJcbn1cclxuIl19
|