@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,34 @@
|
|
|
1
|
+
import { NgModule } from "@angular/core";
|
|
2
|
+
import { CommonModule } from "@angular/common";
|
|
3
|
+
import { TransactionSalesOrderFilterContentArticleModule } from "../../transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/transaction-sales-order-filter-content-article.module";
|
|
4
|
+
import { TransactionSalesOrderFilterContentLogisticsModule } from "../../transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/transaction-sales-order-filter-content-logistics.module";
|
|
5
|
+
import { TransactionSalesOrderFilterContentOrderModule } from "../../transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.module";
|
|
6
|
+
import { TransactionSalesOrderFilterComponent } from "./transaction-sales-order-filter.component";
|
|
7
|
+
import { ButtonModule, IconModule, InputDatePickerModule, InputTextModule } from "@colijnit/corecomponents_v12";
|
|
8
|
+
import { TransactionFilterCategoriesModule } from "../../transaction-filter-categories/transaction-filter-categories.module";
|
|
9
|
+
import { PipeModule } from "../../../../pipe/pipe.module";
|
|
10
|
+
export class TransactionSalesOrderFilterModule {
|
|
11
|
+
}
|
|
12
|
+
TransactionSalesOrderFilterModule.decorators = [
|
|
13
|
+
{ type: NgModule, args: [{
|
|
14
|
+
imports: [
|
|
15
|
+
CommonModule,
|
|
16
|
+
ButtonModule,
|
|
17
|
+
IconModule,
|
|
18
|
+
TransactionFilterCategoriesModule,
|
|
19
|
+
InputTextModule,
|
|
20
|
+
PipeModule,
|
|
21
|
+
InputDatePickerModule,
|
|
22
|
+
TransactionSalesOrderFilterContentOrderModule,
|
|
23
|
+
TransactionSalesOrderFilterContentLogisticsModule,
|
|
24
|
+
TransactionSalesOrderFilterContentArticleModule
|
|
25
|
+
],
|
|
26
|
+
declarations: [
|
|
27
|
+
TransactionSalesOrderFilterComponent
|
|
28
|
+
],
|
|
29
|
+
exports: [
|
|
30
|
+
TransactionSalesOrderFilterComponent
|
|
31
|
+
]
|
|
32
|
+
},] }
|
|
33
|
+
];
|
|
34
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2FsZXMtb3JkZXItZmlsdGVyLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RyYW5zYWN0aW9uL3NyYy9saWIvY29tcG9uZW50L3RyYW5zYWN0aW9uLXNlYXJjaC90cmFuc2FjdGlvbi1maWx0ZXIvdHJhbnNhY3Rpb24tc2FsZXMtb3JkZXItZmlsdGVyL3RyYW5zYWN0aW9uLXNhbGVzLW9yZGVyLWZpbHRlci5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFFBQVEsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN2QyxPQUFPLEVBQUMsWUFBWSxFQUFDLE1BQU0saUJBQWlCLENBQUM7QUFDN0MsT0FBTyxFQUNMLCtDQUErQyxFQUNoRCxNQUFNLGtLQUFrSyxDQUFDO0FBQzFLLE9BQU8sRUFDTCxpREFBaUQsRUFDbEQsTUFBTSxzS0FBc0ssQ0FBQztBQUM5SyxPQUFPLEVBQ0wsNkNBQTZDLEVBQzlDLE1BQU0sOEpBQThKLENBQUM7QUFDdEssT0FBTyxFQUFDLG9DQUFvQyxFQUFDLE1BQU0sNENBQTRDLENBQUM7QUFDaEcsT0FBTyxFQUFDLFlBQVksRUFBRSxVQUFVLEVBQUUscUJBQXFCLEVBQUUsZUFBZSxFQUFDLE1BQU0sOEJBQThCLENBQUM7QUFDOUcsT0FBTyxFQUFDLGlDQUFpQyxFQUFDLE1BQU0sMEVBQTBFLENBQUM7QUFDM0gsT0FBTyxFQUFDLFVBQVUsRUFBQyxNQUFNLDhCQUE4QixDQUFDO0FBc0J4RCxNQUFNLE9BQU8saUNBQWlDOzs7WUFwQjdDLFFBQVEsU0FBQztnQkFDUixPQUFPLEVBQUU7b0JBQ1AsWUFBWTtvQkFDWixZQUFZO29CQUNaLFVBQVU7b0JBQ1YsaUNBQWlDO29CQUNqQyxlQUFlO29CQUNmLFVBQVU7b0JBQ1YscUJBQXFCO29CQUNyQiw2Q0FBNkM7b0JBQzdDLGlEQUFpRDtvQkFDakQsK0NBQStDO2lCQUNoRDtnQkFDRCxZQUFZLEVBQUU7b0JBQ1osb0NBQW9DO2lCQUNyQztnQkFDRCxPQUFPLEVBQUU7b0JBQ1Asb0NBQW9DO2lCQUNyQzthQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHtDb21tb25Nb2R1bGV9IGZyb20gXCJAYW5ndWxhci9jb21tb25cIjtcclxuaW1wb3J0IHtcclxuICBUcmFuc2FjdGlvblNhbGVzT3JkZXJGaWx0ZXJDb250ZW50QXJ0aWNsZU1vZHVsZVxyXG59IGZyb20gXCIuLi8uLi90cmFuc2FjdGlvbi1maWx0ZXItY29udGVudC9zYWxlcy1vcmRlci1maWx0ZXItY29udGVudC90cmFuc2FjdGlvbi1zYWxlcy1vcmRlci1maWx0ZXItY29udGVudC1hcnRpY2xlL3RyYW5zYWN0aW9uLXNhbGVzLW9yZGVyLWZpbHRlci1jb250ZW50LWFydGljbGUubW9kdWxlXCI7XHJcbmltcG9ydCB7XHJcbiAgVHJhbnNhY3Rpb25TYWxlc09yZGVyRmlsdGVyQ29udGVudExvZ2lzdGljc01vZHVsZVxyXG59IGZyb20gXCIuLi8uLi90cmFuc2FjdGlvbi1maWx0ZXItY29udGVudC9zYWxlcy1vcmRlci1maWx0ZXItY29udGVudC90cmFuc2FjdGlvbi1zYWxlcy1vcmRlci1maWx0ZXItY29udGVudC1sb2dpc3RpY3MvdHJhbnNhY3Rpb24tc2FsZXMtb3JkZXItZmlsdGVyLWNvbnRlbnQtbG9naXN0aWNzLm1vZHVsZVwiO1xyXG5pbXBvcnQge1xyXG4gIFRyYW5zYWN0aW9uU2FsZXNPcmRlckZpbHRlckNvbnRlbnRPcmRlck1vZHVsZVxyXG59IGZyb20gXCIuLi8uLi90cmFuc2FjdGlvbi1maWx0ZXItY29udGVudC9zYWxlcy1vcmRlci1maWx0ZXItY29udGVudC90cmFuc2FjdGlvbi1zYWxlcy1vcmRlci1maWx0ZXItY29udGVudC1vcmRlci90cmFuc2FjdGlvbi1zYWxlcy1vcmRlci1maWx0ZXItY29udGVudC1vcmRlci5tb2R1bGVcIjtcclxuaW1wb3J0IHtUcmFuc2FjdGlvblNhbGVzT3JkZXJGaWx0ZXJDb21wb25lbnR9IGZyb20gXCIuL3RyYW5zYWN0aW9uLXNhbGVzLW9yZGVyLWZpbHRlci5jb21wb25lbnRcIjtcclxuaW1wb3J0IHtCdXR0b25Nb2R1bGUsIEljb25Nb2R1bGUsIElucHV0RGF0ZVBpY2tlck1vZHVsZSwgSW5wdXRUZXh0TW9kdWxlfSBmcm9tIFwiQGNvbGlqbml0L2NvcmVjb21wb25lbnRzX3YxMlwiO1xyXG5pbXBvcnQge1RyYW5zYWN0aW9uRmlsdGVyQ2F0ZWdvcmllc01vZHVsZX0gZnJvbSBcIi4uLy4uL3RyYW5zYWN0aW9uLWZpbHRlci1jYXRlZ29yaWVzL3RyYW5zYWN0aW9uLWZpbHRlci1jYXRlZ29yaWVzLm1vZHVsZVwiO1xyXG5pbXBvcnQge1BpcGVNb2R1bGV9IGZyb20gXCIuLi8uLi8uLi8uLi9waXBlL3BpcGUubW9kdWxlXCI7XHJcblxyXG5ATmdNb2R1bGUoe1xyXG4gIGltcG9ydHM6IFtcclxuICAgIENvbW1vbk1vZHVsZSxcclxuICAgIEJ1dHRvbk1vZHVsZSxcclxuICAgIEljb25Nb2R1bGUsXHJcbiAgICBUcmFuc2FjdGlvbkZpbHRlckNhdGVnb3JpZXNNb2R1bGUsXHJcbiAgICBJbnB1dFRleHRNb2R1bGUsXHJcbiAgICBQaXBlTW9kdWxlLFxyXG4gICAgSW5wdXREYXRlUGlja2VyTW9kdWxlLFxyXG4gICAgVHJhbnNhY3Rpb25TYWxlc09yZGVyRmlsdGVyQ29udGVudE9yZGVyTW9kdWxlLFxyXG4gICAgVHJhbnNhY3Rpb25TYWxlc09yZGVyRmlsdGVyQ29udGVudExvZ2lzdGljc01vZHVsZSxcclxuICAgIFRyYW5zYWN0aW9uU2FsZXNPcmRlckZpbHRlckNvbnRlbnRBcnRpY2xlTW9kdWxlXHJcbiAgXSxcclxuICBkZWNsYXJhdGlvbnM6IFtcclxuICAgIFRyYW5zYWN0aW9uU2FsZXNPcmRlckZpbHRlckNvbXBvbmVudFxyXG4gIF0sXHJcbiAgZXhwb3J0czogW1xyXG4gICAgVHJhbnNhY3Rpb25TYWxlc09yZGVyRmlsdGVyQ29tcG9uZW50XHJcbiAgXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgVHJhbnNhY3Rpb25TYWxlc09yZGVyRmlsdGVyTW9kdWxlIHtcclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,137 @@
|
|
|
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 TransactionPurchaseOrderFilterContentArticleComponent 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
|
+
TransactionPurchaseOrderFilterContentArticleComponent.decorators = [
|
|
61
|
+
{ type: Component, args: [{
|
|
62
|
+
selector: 'co-transaction-purchase-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
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
72
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
73
|
+
[minSearchCharsToLoadCollection]="3"
|
|
74
|
+
[collectionLoadFn]="getArticles"
|
|
75
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForSingleSelect($event, 'articleNr')"
|
|
76
|
+
>
|
|
77
|
+
</co-filter-item>
|
|
78
|
+
|
|
79
|
+
<!--Omzetgroep-->
|
|
80
|
+
<co-filter-item
|
|
81
|
+
[placeholder]="'TURNOVER_GROUP' | localize"
|
|
82
|
+
[expanded]="true"
|
|
83
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
84
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
85
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
86
|
+
[showLessLabel]="showLessLabel | localize"
|
|
87
|
+
[collection]="turnoverGroups"
|
|
88
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForRange($event, 'rangeTurnoverGroup')"
|
|
89
|
+
>
|
|
90
|
+
</co-filter-item>
|
|
91
|
+
|
|
92
|
+
<!--Uitloopcode -->
|
|
93
|
+
<co-filter-item
|
|
94
|
+
[placeholder]="'EXCEEDENCE_CODE' | localize"
|
|
95
|
+
[expanded]="true"
|
|
96
|
+
[collection]="exceedanceCodes"
|
|
97
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
98
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
99
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
100
|
+
[showLessLabel]="showLessLabel | localize"
|
|
101
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForArray($event, 'exceedanceCodes')"
|
|
102
|
+
>
|
|
103
|
+
</co-filter-item>
|
|
104
|
+
|
|
105
|
+
<!--Serienummer -->
|
|
106
|
+
<co-filter-item
|
|
107
|
+
[placeholder]="'SERIAL_NUMBER' | localize"
|
|
108
|
+
[customContent]="true"
|
|
109
|
+
[expanded]="true">
|
|
110
|
+
<co-input-text [(model)]="searchRequest.serialNumber"
|
|
111
|
+
[placeholder]="searchPlaceholder | localize"></co-input-text>
|
|
112
|
+
</co-filter-item>
|
|
113
|
+
|
|
114
|
+
<!--Batchnummer -->
|
|
115
|
+
<co-filter-item
|
|
116
|
+
[placeholder]="'BATCH_NUMBER' | localize"
|
|
117
|
+
[customContent]="true"
|
|
118
|
+
[expanded]="true">
|
|
119
|
+
<co-input-text [(model)]="searchRequest.batchNumber" [placeholder]="searchPlaceholder | localize"></co-input-text>
|
|
120
|
+
</co-filter-item>
|
|
121
|
+
|
|
122
|
+
<div class="filter-button-container">
|
|
123
|
+
<co-button class="clickable" [label]="'Filter'" (click)="onFilterButtonClick()"></co-button>
|
|
124
|
+
</div>
|
|
125
|
+
</div>
|
|
126
|
+
`
|
|
127
|
+
},] }
|
|
128
|
+
];
|
|
129
|
+
TransactionPurchaseOrderFilterContentArticleComponent.ctorParameters = () => [
|
|
130
|
+
{ type: TransactionSearchService },
|
|
131
|
+
{ type: FilterRequestService },
|
|
132
|
+
{ type: TransactionService }
|
|
133
|
+
];
|
|
134
|
+
TransactionPurchaseOrderFilterContentArticleComponent.propDecorators = {
|
|
135
|
+
showClass: [{ type: HostBinding, args: ["class.co-transaction-search-filter-content",] }]
|
|
136
|
+
};
|
|
137
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tcHVyY2hhc2Utb3JkZXItZmlsdGVyLWNvbnRlbnQtYXJ0aWNsZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2NvbXBvbmVudC90cmFuc2FjdGlvbi1zZWFyY2gvdHJhbnNhY3Rpb24tZmlsdGVyLWNvbnRlbnQvcHVyY2hhc2Utb3JkZXItZmlsdGVyLWNvbnRlbnQvdHJhbnNhY3Rpb24tcHVyY2hhc2Utb3JkZXItZmlsdGVyLWNvbnRlbnQtYXJ0aWNsZS90cmFuc2FjdGlvbi1wdXJjaGFzZS1vcmRlci1maWx0ZXItY29udGVudC1hcnRpY2xlLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFdBQVcsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN2RCxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSwyREFBMkQsQ0FBQztBQUluRyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sd0RBQXdELENBQUM7QUFFdEYsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHVEQUF1RCxDQUFDO0FBRXhGLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSx1Q0FBdUMsQ0FBQztBQUN4RSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSw0Q0FBNEMsQ0FBQztBQUNoRixPQUFPLEVBQUUscUNBQXFDLEVBQUUsTUFBTSxpRUFBaUUsQ0FBQztBQUN4SCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSx5Q0FBeUMsQ0FBQztBQUMvRSxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSw2Q0FBNkMsQ0FBQztBQXFFdkYsTUFBTSxPQUFPLHFEQUFzRCxTQUFRLHFDQUFxQztJQWtCOUcsWUFDUyxhQUF1QyxFQUN2QyxvQkFBMEMsRUFDMUMsa0JBQXNDO1FBRTdDLEtBQUssQ0FBQyxhQUFhLEVB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QUMsbUJBQW1CLEVBQUUsSUFBSSxDQUFDLGNBQWMsQ0FBQyxDQUFDLFdBQVcsQ0FBQztRQUM3RixDQUFDLENBQUMsQ0FBQTtJQUNKLENBQUM7OztZQXBJRixTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLHNEQUFzRDtnQkFDaEUsUUFBUSxFQUFFOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7R0ErRFQ7YUFDRjs7O1lBcEVRLHdCQUF3QjtZQUR4QixvQkFBb0I7WUFGcEIsa0JBQWtCOzs7d0JBMEV4QixXQUFXLFNBQUMsNENBQTRDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBIb3N0QmluZGluZyB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IEFydGljbGVFeHRlbmRlZFJlcXVlc3QgfSBmcm9tIFwiQGNvbGlqbml0L2FydGljbGVhcGkvYnVpbGQvbW9kZWwvYXJ0aWNsZS1leHRlbmRlZC1yZXF1ZXN0XCI7XHJcbmltcG9ydCB7IEFydGljbGVMaWdodCB9IGZyb20gXCJAY29saWpuaXQvYXJ0aWNsZWFwaS9idWlsZC9tb2RlbC9hcnRpY2xlLWxpZ2h0LmJvXCI7XHJcbmltcG9ydCB7IE1haW5BcnRpY2xlIH0gZnJvbSBcIkBjb2xpam5pdC9hcnRpY2xlYXBpL2J1aWxkL21vZGVsL21haW4tYXJ0aWNsZS5ib1wiO1xyXG5pbXBvcnQgeyBUdXJub3Zlckdyb3VwSW1hZ2UgfSBmcm9tIFwiQGNvbGlqbml0L2FydGljbGVhcGkvYnVpbGQvbW9kZWwvdHVybm92ZXItZ3JvdXAtaW1hZ2UuYm9cIjtcclxuaW1wb3J0IHsgUmVsYXRpb25LaW5kIH0gZnJvbSBcIkBjb2xpam5pdC90cmFuc2FjdGlvbmFwaS9idWlsZC9lbnVtL3JlbGF0aW9uLWtpbmQuZW51bVwiO1xyXG5pbXBvcnQgeyBDb0RvbWFpblZhbHVlIH0gZnJvbSBcIkBjb2xpam5pdC90cmFuc2FjdGlvbmFwaS9idWlsZC9tb2RlbC9jby1kb21haW4tdmFsdWUuYm9cIjtcclxuaW1wb3J0IHsgUmVsYXRpb25SZXF1ZXN0IH0gZnJvbSBcIkBjb2xpam5pdC90cmFuc2FjdGlvbmFwaS9idWlsZC9tb2RlbC9yZWxhdGlvbi1yZXF1ZXN0XCI7XHJcbmltcG9ydCB7IEZpbHRlckl0ZW1WaWV3bW9kZWwgfSBmcm9tIFwiLi4vLi4vLi4vLi4vLi4vbW9kZWwvZmlsdGVyLWl0ZW0udmlld21vZGVsXCI7XHJcbmltcG9ydCB7IEZpbHRlclZpZXdtb2RlbCB9IGZyb20gXCIuLi8uLi8uLi8uLi8uLi9tb2RlbC9maWx0ZXItdmlld21vZGVsXCI7XHJcbmltcG9ydCB7IFRyYW5zYWN0aW9uU2VydmljZSB9IGZyb20gXCIuLi8uLi8uLi8uLi8uLi9zZXJ2aWNlL3RyYW5zYWN0aW9uLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgVHJhbnNhY3Rpb25GaWx0ZXJDb250ZW50QmFzZUNvbXBvbmVudCB9IGZyb20gXCIuLi8uLi8uLi8uLi9jb3JlL2Jhc2UvdHJhbnNhY3Rpb24tZmlsdGVyLWNvbnRlbnQtYmFzZS5jb21wb25lbnRcIjtcclxuaW1wb3J0IHsgRmlsdGVyUmVxdWVzdFNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vLi4vc2VydmljZS9maWx0ZXItcmVxdWVzdC5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IFRyYW5zYWN0aW9uU2VhcmNoU2VydmljZSB9IGZyb20gXCIuLi8uLi8uLi9zZXJ2aWNlL3RyYW5zYWN0aW9uLXNlYXJjaC5zZXJ2aWNlXCI7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2NvLXRyYW5zYWN0aW9uLXB1cmNoYXNlLW9yZGVyLWZpbHRlci1jb250ZW50LWFydGljbGUnLFxyXG4gIHRlbXBsYXRlOiBgXHJcbiAgICA8ZGl2IGNsYXNzPVwidHJhbnNhY3Rpb24tZmlsdGVyLWNvbnRlbnQtYXJ0aWNsZS13cmFwcGVyXCI+XHJcblxyXG4gICAgICA8IS0tQXJ0aWtlbG51bW1lci0tPlxyXG4gICAgICA8Y28tZmlsdGVyLWl0ZW1cclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ0FSVElDTEVfTlInIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtleHBhbmRlZF09XCJ0cnVlXCJcclxuICAgICAgICBbc2luZ2xlU2VsZWN0XT1cInRydWVcIlxyXG4gICAgICAgIFtzZWFyY2hQbGFjZWhvbGRlcl09XCJzZWFyY2hDb2xsZWN0aW9uUGxhY2Vob2xkZXIgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW25vUmVzdWx0c0xhYmVsXT1cIm5vUmVzdWx0c0xhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFttaW5TZWFyY2hDaGFyc1RvTG9hZENvbGxlY3Rpb25dPVwiM1wiXHJcbiAgICAgICAgW2NvbGxlY3Rpb25Mb2FkRm5dPVwiZ2V0QXJ0aWNsZXNcIlxyXG4gICAgICAgIChjb2xsZWN0aW9uQ2hhbmdlKT1cImZpbHRlclJlcXVlc3RTZXJ2aWNlLmhhbmRsZUNvbGxlY3Rpb25DaGFuZ2VGb3JTaW5nbGVTZWxlY3QoJGV2ZW50LCAnYXJ0aWNsZU5yJylcIlxyXG4gICAgICA+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcblxyXG4gICAgICA8IS0tT216ZXRncm9lcC0tPlxyXG4gICAgICA8Y28tZmlsdGVyLWl0ZW1cclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ1RVUk5PVkVSX0dST1VQJyB8IGxvY2FsaXplXCJcclxuICAgICAgICBbZXhwYW5kZWRdPVwidHJ1ZVwiXHJcbiAgICAgICAgW3NlYXJjaFBsYWNlaG9sZGVyXT1cInNlYXJjaENvbGxlY3Rpb25QbGFjZWhvbGRlciB8IGxvY2FsaXplXCJcclxuICAgICAgICBbbm9SZXN1bHRzTGFiZWxdPVwibm9SZXN1bHRzTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW3Nob3dNb3JlTGFiZWxdPVwic2hvd01vcmVMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICBbc2hvd0xlc3NMYWJlbF09XCJzaG93TGVzc0xhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtjb2xsZWN0aW9uXT1cInR1cm5vdmVyR3JvdXBzXCJcclxuICAgICAgICAoY29sbGVjdGlvbkNoYW5nZSk9XCJmaWx0ZXJSZXF1ZXN0U2VydmljZS5oYW5kbGVDb2xsZWN0aW9uQ2hhbmdlRm9yUmFuZ2UoJGV2ZW50LCAncmFuZ2VUdXJub3Zlckdyb3VwJylcIlxyXG4gICAgICA+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcblxyXG4gICAgICA8IS0tVWl0bG9vcGNvZGUgLS0+XHJcbiAgICAgIDxjby1maWx0ZXItaXRlbVxyXG4gICAgICAgIFtwbGFjZWhvbGRlcl09XCInRVhDRUVERU5DRV9DT0RFJyB8IGxvY2FsaXplXCJcclxuICAgICAgICBbZXhwYW5kZWRdPVwidHJ1ZVwiXHJcbiAgICAgICAgW2NvbGxlY3Rpb25dPVwiZXhjZWVkYW5jZUNvZGVzXCJcclxuICAgICAgICBbc2VhcmNoUGxhY2Vob2xkZXJdPVwic2VhcmNoQ29sbGVjdGlvblBsYWNlaG9sZGVyIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtub1Jlc3VsdHNMYWJlbF09XCJub1Jlc3VsdHNMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICBbc2hvd01vcmVMYWJlbF09XCJzaG93TW9yZUxhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtzaG93TGVzc0xhYmVsXT1cInNob3dMZXNzTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgKGNvbGxlY3Rpb25DaGFuZ2UpPVwiZmlsdGVyUmVxdWVzdFNlcnZpY2UuaGFuZGxlQ29sbGVjdGlvbkNoYW5nZUZvckFycmF5KCRldmVudCwgJ2V4Y2VlZGFuY2VDb2RlcycpXCJcclxuICAgICAgPlxyXG4gICAgICA8L2NvLWZpbHRlci1pdGVtPlxyXG5cclxuICAgICAgPCEtLVNlcmllbnVtbWVyIC0tPlxyXG4gICAgICA8Y28tZmlsdGVyLWl0ZW1cclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ1NFUklBTF9OVU1CRVInIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtjdXN0b21Db250ZW50XT1cInRydWVcIlxyXG4gICAgICAgIFtleHBhbmRlZF09XCJ0cnVlXCI+XHJcbiAgICAgICAgPGNvLWlucHV0LXRleHQgWyhtb2RlbCldPVwic2VhcmNoUmVxdWVzdC5zZXJpYWxOdW1iZXJcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgIFtwbGFjZWhvbGRlcl09XCJzZWFyY2hQbGFjZWhvbGRlciB8IGxvY2FsaXplXCI+PC9jby1pbnB1dC10ZXh0PlxyXG4gICAgICA8L2NvLWZpbHRlci1pdGVtPlxyXG5cclxuICAgICAgPCEtLUJhdGNobnVtbWVyIC0tPlxyXG4gICAgICA8Y28tZmlsdGVyLWl0ZW1cclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ0JBVENIX05VTUJFUicgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW2N1c3RvbUNvbnRlbnRdPVwidHJ1ZVwiXHJcbiAgICAgICAgW2V4cGFuZGVkXT1cInRydWVcIj5cclxuICAgICAgICA8Y28taW5wdXQtdGV4dCBbKG1vZGVsKV09XCJzZWFyY2hSZXF1ZXN0LmJhdGNoTnVtYmVyXCIgW3BsYWNlaG9sZGVyXT1cInNlYXJjaFBsYWNlaG9sZGVyIHwgbG9jYWxpemVcIj48L2NvLWlucHV0LXRleHQ+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcblxyXG4gICAgICA8ZGl2IGNsYXNzPVwiZmlsdGVyLWJ1dHRvbi1jb250YWluZXJcIj5cclxuICAgICAgICA8Y28tYnV0dG9uIGNsYXNzPVwiY2xpY2thYmxlXCIgW2xhYmVsXT1cIidGaWx0ZXInXCIgKGNsaWNrKT1cIm9uRmlsdGVyQnV0dG9uQ2xpY2soKVwiPjwvY28tYnV0dG9uPlxyXG4gICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG4gIGBcclxufSlcclxuZXhwb3J0IGNsYXNzIFRyYW5zYWN0aW9uUHVyY2hhc2VPcmRlckZpbHRlckNvbnRlbnRBcnRpY2xlQ29tcG9uZW50IGV4dGVuZHMgVHJhbnNhY3Rpb25GaWx0ZXJDb250ZW50QmFzZUNvbXBvbmVudHtcclxuXHJcbiAgQEhvc3RCaW5kaW5nKFwiY2xhc3MuY28tdHJhbnNhY3Rpb24tc2VhcmNoLWZpbHRlci1jb250ZW50XCIpXHJcbiAgcHVibGljIHNob3dDbGFzcygpOiBib29sZWFuIHtcclxuICAgIHJldHVybiB0cnVlO1xyXG4gIH1cclxuICBwdWJsaWMgZXhjZWVkYW5jZUNvZGVzOiBGaWx0ZXJJdGVtVmlld21vZGVsW107XHJcbiAgcHVibGljIGV4Y2VlZGFuY2VDb2RlRmllbGRzOiB7IHRleHQsIHZhbHVlIH0gPSB7dGV4dDogXCJkZXNjcmlwdGlvblwiLCB2YWx1ZTogXCJjb2RlXCJ9O1xyXG5cclxuICBwdWJsaWMgdHVybm92ZXJHcm91cHM6IEZpbHRlckl0ZW1WaWV3bW9kZWxbXTtcclxuICBwdWJsaWMgdHVybm92ZXJHcm91cEZpZWxkczogeyB0ZXh0LCB2YWx1ZSB9ID0ge3RleHQ6IFwiZGVzY3JpcHRpb25cIiwgdmFsdWU6IFwidHVybm92ZXJncm91cE5yXCJ9O1xyXG5cclxuICBwdWJsaWMgbWFpbkFydGljbGVzOiBGaWx0ZXJJdGVtVmlld21vZGVsW107XHJcbiAgcHVibGljIG1haW5BcnRpY2xlRmllbGRzOiB7IHRleHQsIHZhbHVlIH0gPSB7dGV4dDogXCJkZXNjcmlwdGlvblwiLCB2YWx1ZTogXCJhcnRpY2xlbnVtYmVyXCJ9O1xyXG5cclxuICBwdWJsaWMgc3VwcGxpZXJzOiBGaWx0ZXJJdGVtVmlld21vZGVsW107XHJcbiAgcHVibGljIHN1cHBsaWVyRmllbGRzOiB7IHRleHQsIHZhbHVlIH0gPSB7dGV4dDogXCJkaXNwbGF5TmFtZVwiLCB2YWx1ZTogXCJyZWxhdGlvbklkXCJ9O1xyXG5cclxuICBjb25zdHJ1Y3RvcihcclxuICAgIHB1YmxpYyBzZWFyY2hTZXJ2aWNlOiBUcmFuc2FjdGlvblNlYXJjaFNlcnZpY2UsXHJcbiAgICBwdWJsaWMgZmlsdGVyUmVxdWVzdFNlcnZpY2U6IEZpbHRlclJlcXVlc3RTZXJ2aWNlLFxyXG4gICAgcHVibGljIHRyYW5zYWN0aW9uU2VydmljZTogVHJhbnNhY3Rpb25TZXJ2aWNlLFxyXG4gICkge1xyXG4gICAgc3VwZXIoc2VhcmNoU2VydmljZSwgZmlsdGVyUmVxdWVzdFNlcnZpY2UsIHRyYW5zYWN0aW9uU2VydmljZSlcclxuICB9XHJcblxyXG4gIHB1YmxpYyBuZ09uSW5pdCgpOiB2b2lkIHtcclxuICAgIHRoaXMuX3NldEV4Y2VlZGFuY2VDb2RlcygpO1xyXG4gICAgdGhpcy5fc2V0U3VwcGxpZXJzKCk7XHJcbiAgICB0aGlzLl9zZXRUdXJub3Zlckdyb3VwcygpO1xyXG4gICAgdGhpcy5fc2V0TWFpbkFydGljbGVzKCk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgZ2V0QXJ0aWNsZXMgPSAodGV4dDogc3RyaW5nKSA9PiB7XHJcbiAgICBjb25zdCByZXF1ZXN0OiBBcnRpY2xlRXh0ZW5kZWRSZXF1ZXN0ID0gbmV3IEFydGljbGVFeHRlbmRlZFJlcXVlc3QoKTtcclxuICAgIHJlcXVlc3QuYXJ0aWNsZU51bWJlciA9IHRleHQ7XHJcbiAgICByZXR1cm4gdGhpcy50cmFuc2FjdGlvblNlcnZpY2UuZ2V0QXJ0aWNsZXMocmVxdWVzdCkudGhlbigoYXJ0aWNsZXM6IEFydGljbGVMaWdodFtdKSA9PiB7XHJcbiAgICAgIHJldHVybiBuZXcgRmlsdGVyVmlld21vZGVsKGFydGljbGVzLCB7dGV4dDogJ2FydGljbGVOdW1iZXInLCB2YWx1ZTogJ2FydGljbGVOdW1iZXInfSkuZmlsdGVySXRlbXM7XHJcbiAgICB9KTtcclxuICB9XHJcblxyXG4gIHByaXZhdGUgX3NldEV4Y2VlZGFuY2VDb2RlcygpOiB2b2lkIHtcclxuICAgIHRoaXMudHJhbnNhY3Rpb25TZXJ2aWNlLmdldEluT3V0Q29sbGVjdGlvbihcIk5MXCIpLnRoZW4oKGV4Y2VlZGFuY2VDb2RlczogQ29Eb21haW5WYWx1ZVtdKSA9PiB7XHJcbiAgICAgIHRoaXMuZXhjZWVkYW5jZUNvZGVzID0gbmV3IEZpbHRlclZpZXdtb2RlbChleGNlZWRhbmNlQ29kZXMsIHRoaXMuZXhjZWVkYW5jZUNvZGVGaWVsZHMpLmZpbHRlckl0ZW1zO1xyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICBwcml2YXRlIF9zZXRUdXJub3Zlckdyb3VwcygpOiB2b2lkIHtcclxuICAgIHRoaXMudHJhbnNhY3Rpb25TZXJ2aWNlLmdldFR1cm5vdmVyR3JvdXBzKCkudGhlbigodHVybm92ZXJHcm91cHM6IFR1cm5vdmVyR3JvdXBJbWFnZVtdKSA9PiB7XHJcbiAgICAgIHRoaXMudHVybm92ZXJHcm91cHMgPSBuZXcgRmlsdGVyVmlld21vZGVsKHR1cm5vdmVyR3JvdXBzLCB0aGlzLnR1cm5vdmVyR3JvdXBGaWVsZHMpLmZpbHRlckl0ZW1zO1xyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICBwcml2YXRlIF9zZXRNYWluQXJ0aWNsZXMoKTogdm9pZCB7XHJcbiAgICB0aGlzLnRyYW5zYWN0aW9uU2VydmljZS5nZXRNYWluQXJ0aWNsZXMoKS50aGVuKChhcnRpY2xlczogTWFpbkFydGljbGVbXSkgPT4ge1xyXG4gICAgICB0aGlzLm1haW5BcnRpY2xlcyA9IG5ldyBGaWx0ZXJWaWV3bW9kZWwoYXJ0aWNsZXMsIHRoaXMubWFpbkFydGljbGVGaWVsZHMpLmZpbHRlckl0ZW1zO1xyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICBwcml2YXRlIF9zZXRTdXBwbGllcnMoKTogdm9pZCB7XHJcbiAgICBjb25zdCByZXF1ZXN0OiBSZWxhdGlvblJlcXVlc3QgPSBuZXcgUmVsYXRpb25SZXF1ZXN0KCk7XHJcbiAgICByZXF1ZXN0LnJlbGF0aW9uVHlwZSA9IFJlbGF0aW9uS2luZC5TdXBwbGllcjtcclxuICAgIHRoaXMudHJhbnNhY3Rpb25TZXJ2aWNlLmdldFJlbGF0aW9uTGlzdE9iamVjdHMocmVxdWVzdCkudGhlbigocmVsYXRpb25MaXN0T2JqZWN0cykgPT4ge1xyXG4gICAgICB0aGlzLnN1cHBsaWVycyA9IG5ldyBGaWx0ZXJWaWV3bW9kZWwocmVsYXRpb25MaXN0T2JqZWN0cywgdGhpcy5zdXBwbGllckZpZWxkcykuZmlsdGVySXRlbXM7XHJcbiAgICB9KVxyXG4gIH1cclxufVxyXG4iXX0=
|
|
@@ -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 { TransactionPurchaseOrderFilterContentArticleComponent } from "./transaction-purchase-order-filter-content-article.component";
|
|
6
|
+
export class TransactionPurchaseOrderFilterContentArticleModule {
|
|
7
|
+
}
|
|
8
|
+
TransactionPurchaseOrderFilterContentArticleModule.decorators = [
|
|
9
|
+
{ type: NgModule, args: [{
|
|
10
|
+
imports: [
|
|
11
|
+
CommonModule,
|
|
12
|
+
FilterItemModule,
|
|
13
|
+
PipeModule,
|
|
14
|
+
InputTextModule,
|
|
15
|
+
ButtonModule
|
|
16
|
+
],
|
|
17
|
+
declarations: [
|
|
18
|
+
TransactionPurchaseOrderFilterContentArticleComponent
|
|
19
|
+
],
|
|
20
|
+
exports: [
|
|
21
|
+
TransactionPurchaseOrderFilterContentArticleComponent
|
|
22
|
+
]
|
|
23
|
+
},] }
|
|
24
|
+
];
|
|
25
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tcHVyY2hhc2Utb3JkZXItZmlsdGVyLWNvbnRlbnQtYXJ0aWNsZS5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2NvbXBvbmVudC90cmFuc2FjdGlvbi1zZWFyY2gvdHJhbnNhY3Rpb24tZmlsdGVyLWNvbnRlbnQvcHVyY2hhc2Utb3JkZXItZmlsdGVyLWNvbnRlbnQvdHJhbnNhY3Rpb24tcHVyY2hhc2Utb3JkZXItZmlsdGVyLWNvbnRlbnQtYXJ0aWNsZS90cmFuc2FjdGlvbi1wdXJjaGFzZS1vcmRlci1maWx0ZXItY29udGVudC1hcnRpY2xlLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQUUsWUFBWSxFQUFFLGdCQUFnQixFQUFFLGVBQWUsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQy9GLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUM3RCxPQUFPLEVBQUMscURBQXFELEVBQUMsTUFBTSwrREFBK0QsQ0FBQztBQWlCcEksTUFBTSxPQUFPLGtEQUFrRDs7O1lBZjlELFFBQVEsU0FBQztnQkFDUixPQUFPLEVBQUU7b0JBQ1AsWUFBWTtvQkFDWixnQkFBZ0I7b0JBQ2hCLFVBQVU7b0JBQ1YsZUFBZTtvQkFDZixZQUFZO2lCQUNiO2dCQUNELFlBQVksRUFBRTtvQkFDWixxREFBcUQ7aUJBQ3REO2dCQUNELE9BQU8sRUFBRTtvQkFDUCxxREFBcUQ7aUJBQ3REO2FBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge05nTW9kdWxlfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSBcIkBhbmd1bGFyL2NvbW1vblwiO1xyXG5pbXBvcnQgeyBCdXR0b25Nb2R1bGUsIEZpbHRlckl0ZW1Nb2R1bGUsIElucHV0VGV4dE1vZHVsZSB9IGZyb20gXCJAY29saWpuaXQvY29yZWNvbXBvbmVudHNfdjEyXCI7XHJcbmltcG9ydCB7IFBpcGVNb2R1bGUgfSBmcm9tIFwiLi4vLi4vLi4vLi4vLi4vcGlwZS9waXBlLm1vZHVsZVwiO1xyXG5pbXBvcnQge1RyYW5zYWN0aW9uUHVyY2hhc2VPcmRlckZpbHRlckNvbnRlbnRBcnRpY2xlQ29tcG9uZW50fSBmcm9tIFwiLi90cmFuc2FjdGlvbi1wdXJjaGFzZS1vcmRlci1maWx0ZXItY29udGVudC1hcnRpY2xlLmNvbXBvbmVudFwiO1xyXG5cclxuQE5nTW9kdWxlKHtcclxuICBpbXBvcnRzOiBbXHJcbiAgICBDb21tb25Nb2R1bGUsXHJcbiAgICBGaWx0ZXJJdGVtTW9kdWxlLFxyXG4gICAgUGlwZU1vZHVsZSxcclxuICAgIElucHV0VGV4dE1vZHVsZSxcclxuICAgIEJ1dHRvbk1vZHVsZVxyXG4gIF0sXHJcbiAgZGVjbGFyYXRpb25zOiBbXHJcbiAgICBUcmFuc2FjdGlvblB1cmNoYXNlT3JkZXJGaWx0ZXJDb250ZW50QXJ0aWNsZUNvbXBvbmVudFxyXG4gIF0sXHJcbiAgZXhwb3J0czogW1xyXG4gICAgVHJhbnNhY3Rpb25QdXJjaGFzZU9yZGVyRmlsdGVyQ29udGVudEFydGljbGVDb21wb25lbnRcclxuICBdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBUcmFuc2FjdGlvblB1cmNoYXNlT3JkZXJGaWx0ZXJDb250ZW50QXJ0aWNsZU1vZHVsZSB7XHJcbn1cclxuIl19
|
|
@@ -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 TransactionPurchaseOrderFilterContentLogisticsComponent 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
|
+
TransactionPurchaseOrderFilterContentLogisticsComponent.decorators = [
|
|
53
|
+
{ type: Component, args: [{
|
|
54
|
+
selector: 'co-transaction-purchase-order-filter-content-logistics',
|
|
55
|
+
template: `
|
|
56
|
+
<div class="transaction-filter-content-logistics-wrapper">
|
|
57
|
+
|
|
58
|
+
<!--Bevestigde leverdatum-->
|
|
59
|
+
<co-filter-item
|
|
60
|
+
[placeholder]="'CONFIRMED_DELIVERY_DATE' | localize"
|
|
61
|
+
[customContent]="true"
|
|
62
|
+
[expanded]="true">
|
|
63
|
+
<co-input-date-range
|
|
64
|
+
[startDate]="confirmedDeliveryStartDate"
|
|
65
|
+
[endDate]="confirmedDeliveryEndDate"
|
|
66
|
+
(dateRangeChange)="onDateRangeChange($event, 'confirmedDeliveryDateRange')"
|
|
67
|
+
(cleared)="onClearedDateRangeChange('confirmedDeliveryDateRange')"
|
|
68
|
+
[placeholder]="'SELECT_DATE' | localize">
|
|
69
|
+
</co-input-date-range>
|
|
70
|
+
</co-filter-item>
|
|
71
|
+
|
|
72
|
+
<!--Serienummer-->
|
|
73
|
+
<co-filter-item
|
|
74
|
+
[placeholder]="'SERIAL_NUMBER' | localize"
|
|
75
|
+
[customContent]="true"
|
|
76
|
+
[expanded]="true">
|
|
77
|
+
<co-input-text [(model)]="searchRequest.serialNumber"
|
|
78
|
+
[placeholder]="searchPlaceholder | localize"></co-input-text>
|
|
79
|
+
</co-filter-item>
|
|
80
|
+
|
|
81
|
+
<!--Batchnummer-->
|
|
82
|
+
<co-filter-item
|
|
83
|
+
[placeholder]="'BATCH_NUMBER' | localize"
|
|
84
|
+
[customContent]="true"
|
|
85
|
+
[expanded]="true">
|
|
86
|
+
<co-input-text [(model)]="searchRequest.batchNumber" [placeholder]="searchPlaceholder | localize"></co-input-text>
|
|
87
|
+
</co-filter-item>
|
|
88
|
+
|
|
89
|
+
<!--Geleverd-->
|
|
90
|
+
<co-transaction-filter-historic-state
|
|
91
|
+
[label]="'DELIVERED'"
|
|
92
|
+
(filterClicked)="filterRequestService.handleCollectionChangeForSingleNumber($event, 'quantityDelivered')"
|
|
93
|
+
></co-transaction-filter-historic-state>
|
|
94
|
+
|
|
95
|
+
<!--Gefactureerd-->
|
|
96
|
+
<co-transaction-filter-historic-state
|
|
97
|
+
[label]="'INVOICED'"
|
|
98
|
+
(filterClicked)="filterRequestService.handleCollectionChangeForSingleNumber($event, 'quantityInvoiced')"
|
|
99
|
+
></co-transaction-filter-historic-state>
|
|
100
|
+
|
|
101
|
+
<!--Binnengemeld / Geleverd -->
|
|
102
|
+
<co-transaction-filter-historic-state
|
|
103
|
+
[label]="'RECEIVED_DELIVERED'"
|
|
104
|
+
(filterClicked)="filterRequestService.handleCollectionChangeForSingleNumber($event, 'quantityReceived')"
|
|
105
|
+
></co-transaction-filter-historic-state>
|
|
106
|
+
|
|
107
|
+
<!--Bevestigd-->
|
|
108
|
+
<co-transaction-filter-historic-state
|
|
109
|
+
[label]="'CONFIRMED'"
|
|
110
|
+
(filterClicked)="filterRequestService.handleCollectionChangeForSingleNumber($event, 'quantityConfirmed')"
|
|
111
|
+
></co-transaction-filter-historic-state>
|
|
112
|
+
|
|
113
|
+
<!--Aankomstdatum-->
|
|
114
|
+
<co-filter-item
|
|
115
|
+
[placeholder]="'ARRIVAL_DATE' | localize"
|
|
116
|
+
[customContent]="true"
|
|
117
|
+
[expanded]="true">
|
|
118
|
+
<co-input-date-range
|
|
119
|
+
[startDate]="arrivalStartDate"
|
|
120
|
+
[endDate]="arrivalEndDate"
|
|
121
|
+
(dateRangeChange)="onDateRangeChange($event, 'arrivalDateRange')"
|
|
122
|
+
(cleared)="onClearedDateRangeChange('arrivalDateRange')"
|
|
123
|
+
[placeholder]="'SELECT_DATE' | localize">
|
|
124
|
+
</co-input-date-range>
|
|
125
|
+
</co-filter-item>
|
|
126
|
+
|
|
127
|
+
<!--Toegewezen-->
|
|
128
|
+
<co-transaction-filter-historic-state
|
|
129
|
+
[label]="'ALLOCATED'"
|
|
130
|
+
(filterClicked)="filterRequestService.handleCollectionChangeForSingleNumber($event, 'quantityAllocated')"
|
|
131
|
+
></co-transaction-filter-historic-state>
|
|
132
|
+
|
|
133
|
+
<!--Te picken-->
|
|
134
|
+
<co-transaction-filter-historic-state
|
|
135
|
+
[label]="'TO_BE_PICKED'"
|
|
136
|
+
(filterClicked)="filterRequestService.handleCollectionChangeForSingleNumber($event, 'quantityToBePicked')"
|
|
137
|
+
></co-transaction-filter-historic-state>
|
|
138
|
+
|
|
139
|
+
<!--Gepicked-->
|
|
140
|
+
<co-transaction-filter-historic-state
|
|
141
|
+
[label]="'PICKED'"
|
|
142
|
+
(filterClicked)="filterRequestService.handleCollectionChangeForSingleNumber($event, 'quantityPicked')"
|
|
143
|
+
></co-transaction-filter-historic-state>
|
|
144
|
+
|
|
145
|
+
<!--Deellevering-->
|
|
146
|
+
<co-filter-item
|
|
147
|
+
[placeholder]="'PART_DELIVERY' | localize"
|
|
148
|
+
[customContent]="true"
|
|
149
|
+
[expanded]="true">
|
|
150
|
+
<co-input-checkbox
|
|
151
|
+
[model]="searchRequest.partialDelivery === 'J'"
|
|
152
|
+
(modelChange)="filterRequestService.handleCheckboxValueChangeForString($event, 'partialDelivery')"
|
|
153
|
+
[label]="'PART_DELIVERY' | localize">
|
|
154
|
+
</co-input-checkbox>
|
|
155
|
+
</co-filter-item>
|
|
156
|
+
|
|
157
|
+
<!--Magazijn-->
|
|
158
|
+
<co-filter-item
|
|
159
|
+
[placeholder]="'WAREHOUSE' | localize"
|
|
160
|
+
[expanded]="true"
|
|
161
|
+
[singleSelect]="true"
|
|
162
|
+
[collection]="warehouses"
|
|
163
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
164
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
165
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
166
|
+
[showLessLabel]="showLessLabel | localize"
|
|
167
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForSingleSelect($event, 'warehouse')">
|
|
168
|
+
</co-filter-item>
|
|
169
|
+
|
|
170
|
+
<!--Bron magazijn-->
|
|
171
|
+
<co-filter-item
|
|
172
|
+
[placeholder]="'SOURCE_WAREHOUSE' | localize"
|
|
173
|
+
[expanded]="true"
|
|
174
|
+
[singleSelect]="true"
|
|
175
|
+
[collection]="sourceWarehouses"
|
|
176
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
177
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
178
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
179
|
+
[showLessLabel]="showLessLabel | localize"
|
|
180
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForSingleSelect($event, 'sourceWarehouse')">
|
|
181
|
+
</co-filter-item>
|
|
182
|
+
|
|
183
|
+
<!--Levermethode-->
|
|
184
|
+
<co-filter-item
|
|
185
|
+
[placeholder]="'DELIVERY_METHOD' | localize"
|
|
186
|
+
[expanded]="true"
|
|
187
|
+
[collection]="deliveryMethods"
|
|
188
|
+
[searchPlaceholder]="searchCollectionPlaceholder | localize"
|
|
189
|
+
[noResultsLabel]="noResultsLabel | localize"
|
|
190
|
+
[showMoreLabel]="showMoreLabel | localize"
|
|
191
|
+
[showLessLabel]="showLessLabel | localize"
|
|
192
|
+
(collectionChange)="filterRequestService.handleCollectionChangeForRange($event, 'rangeDeliveryMethod')">
|
|
193
|
+
</co-filter-item>
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
<!--Leverdatum definitief-->
|
|
197
|
+
<co-filter-item
|
|
198
|
+
[placeholder]="'DELIVERY_DATE_FINAL' | localize"
|
|
199
|
+
[customContent]="true"
|
|
200
|
+
[expanded]="true">
|
|
201
|
+
<co-input-checkbox
|
|
202
|
+
[model]="searchRequest.deliveryDateDefinitive === 'J'"
|
|
203
|
+
(modelChange)="filterRequestService.handleCheckboxValueChangeForString($event, 'deliveryDateDefinitive')"
|
|
204
|
+
[label]="'DELIVERY_DATE_FINAL' | localize"></co-input-checkbox>
|
|
205
|
+
</co-filter-item>
|
|
206
|
+
|
|
207
|
+
<!--Uitvoerbaar: todo: vraag staat uit wat hiermee bedoeld wordt. Daarna hier aanvullen -->
|
|
208
|
+
|
|
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
|
+
TransactionPurchaseOrderFilterContentLogisticsComponent.ctorParameters = () => [
|
|
217
|
+
{ type: TransactionSearchService },
|
|
218
|
+
{ type: FilterRequestService },
|
|
219
|
+
{ type: TransactionService }
|
|
220
|
+
];
|
|
221
|
+
TransactionPurchaseOrderFilterContentLogisticsComponent.propDecorators = {
|
|
222
|
+
showClass: [{ type: HostBinding, args: ["class.co-transaction-search-filter-content",] }]
|
|
223
|
+
};
|
|
224
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tcHVyY2hhc2Utb3JkZXItZmlsdGVyLWNvbnRlbnQtbG9naXN0aWNzLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RyYW5zYWN0aW9uL3NyYy9saWIvY29tcG9uZW50L3RyYW5zYWN0aW9uLXNlYXJjaC90cmFuc2FjdGlvbi1maWx0ZXItY29udGVudC9wdXJjaGFzZS1vcmRlci1maWx0ZXItY29udGVudC90cmFuc2FjdGlvbi1wdXJjaGFzZS1vcmRlci1maWx0ZXItY29udGVudC1sb2dpc3RpY3MvdHJhbnNhY3Rpb24tcHVyY2hhc2Utb3JkZXItZmlsdGVyLWNvbnRlbnQtbG9naXN0aWNzLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFdBQVcsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUl2RCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sdUNBQXVDLENBQUM7QUFDeEUsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sNENBQTRDLENBQUM7QUFDaEYsT0FBTyxFQUFFLHFDQUFxQyxFQUFFLE1BQU0saUVBQWlFLENBQUM7QUFDeEgsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0seUNBQXlDLENBQUM7QUFDL0UsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sNkNBQTZDLENBQUM7QUFvS3ZGLE1BQU0sT0FBTyx1REFBd0QsU0FBUSxxQ0FBcUM7SUFzQmhILFlBQ1MsYUFBdUMsRUFDdkMsb0JBQTBDLEVBQzFDLGtCQUFzQztRQUU3QyxLQUFLLENBQUMsYUFBYSxFQUFFLG9CQUFvQixFQUFFLGtCQUFrQixDQUFDLENBQUE7UUFKdkQsa0JBQWEsR0FBYixhQUFhLENBQTBCO1FBQ3ZDLHlCQUFvQixHQUFwQixvQkFBb0IsQ0FBc0I7UUFDMUMsdUJBQWtCLEdBQWxCLGtCQUFrQixDQUFvQjtR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QUFrQjs7O3dCQXlLeEIsV0FBVyxTQUFDLDRDQUE0QyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSG9zdEJpbmRpbmcgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBEZWxpdmVyeU1ldGhvZCB9IGZyb20gXCJAY29saWpuaXQvdHJhbnNhY3Rpb25hcGkvYnVpbGQvbW9kZWwvZGVsaXZlcnktbWV0aG9kLmJvXCI7XHJcbmltcG9ydCB7IFdhcmVob3VzZSB9IGZyb20gXCJAY29saWpuaXQvdHJhbnNhY3Rpb25hcGkvYnVpbGQvbW9kZWwvd2FyZWhvdXNlLmJvXCI7XHJcbmltcG9ydCB7IEZpbHRlckl0ZW1WaWV3bW9kZWwgfSBmcm9tIFwiLi4vLi4vLi4vLi4vLi4vbW9kZWwvZmlsdGVyLWl0ZW0udmlld21vZGVsXCI7XHJcbmltcG9ydCB7IEZpbHRlclZpZXdtb2RlbCB9IGZyb20gXCIuLi8uLi8uLi8uLi8uLi9tb2RlbC9maWx0ZXItdmlld21vZGVsXCI7XHJcbmltcG9ydCB7IFRyYW5zYWN0aW9uU2VydmljZSB9IGZyb20gXCIuLi8uLi8uLi8uLi8uLi9zZXJ2aWNlL3RyYW5zYWN0aW9uLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgVHJhbnNhY3Rpb25GaWx0ZXJDb250ZW50QmFzZUNvbXBvbmVudCB9IGZyb20gXCIuLi8uLi8uLi8uLi9jb3JlL2Jhc2UvdHJhbnNhY3Rpb24tZmlsdGVyLWNvbnRlbnQtYmFzZS5jb21wb25lbnRcIjtcclxuaW1wb3J0IHsgRmlsdGVyUmVxdWVzdFNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vLi4vc2VydmljZS9maWx0ZXItcmVxdWVzdC5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IFRyYW5zYWN0aW9uU2VhcmNoU2VydmljZSB9IGZyb20gXCIuLi8uLi8uLi9zZXJ2aWNlL3RyYW5zYWN0aW9uLXNlYXJjaC5zZXJ2aWNlXCI7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2NvLXRyYW5zYWN0aW9uLXB1cmNoYXNlLW9yZGVyLWZpbHRlci1jb250ZW50LWxvZ2lzdGljcycsXHJcbiAgdGVtcGxhdGU6IGBcclxuICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi1maWx0ZXItY29udGVudC1sb2dpc3RpY3Mtd3JhcHBlclwiPlxyXG5cclxuICAgICAgPCEtLUJldmVzdGlnZGUgbGV2ZXJkYXR1bS0tPlxyXG4gICAgICA8Y28tZmlsdGVyLWl0ZW1cclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ0NPTkZJUk1FRF9ERUxJVkVSWV9EQVRFJyB8IGxvY2FsaXplXCJcclxuICAgICAgICBbY3VzdG9tQ29udGVudF09XCJ0cnVlXCJcclxuICAgICAgICBbZXhwYW5kZWRdPVwidHJ1ZVwiPlxyXG4gICAgICAgIDxjby1pbnB1dC1kYXRlLXJhbmdlXHJcbiAgICAgICAgICBbc3RhcnREYXRlXT1cImNvbmZpcm1lZERlbGl2ZXJ5U3RhcnREYXRlXCJcclxuICAgICAgICAgIFtlbmREYXRlXT1cImNvbmZpcm1lZERlbGl2ZXJ5RW5kRGF0ZVwiXHJcbiAgICAgICAgICAoZGF0ZVJhbmdlQ2hhbmdlKT1cIm9uRGF0ZVJhbmdlQ2hhbmdlKCRldmVudCwgJ2NvbmZpcm1lZERlbGl2ZXJ5RGF0ZVJhbmdlJylcIlxyXG4gICAgICAgICAgKGNsZWFyZWQpPVwib25DbGVhcmVkRGF0ZVJhbmdlQ2hhbmdlKCdjb25maXJtZWREZWxpdmVyeURhdGVSYW5nZScpXCJcclxuICAgICAgICAgIFtwbGFjZWhvbGRlcl09XCInU0VMRUNUX0RBVEUnIHwgbG9jYWxpemVcIj5cclxuICAgICAgICA8L2NvLWlucHV0LWRhdGUtcmFuZ2U+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcblxyXG4gICAgICA8IS0tU2VyaWVudW1tZXItLT5cclxuICAgICAgPGNvLWZpbHRlci1pdGVtXHJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidTRVJJQUxfTlVNQkVSJyB8IGxvY2FsaXplXCJcclxuICAgICAgICBbY3VzdG9tQ29udGVudF09XCJ0cnVlXCJcclxuICAgICAgICBbZXhwYW5kZWRdPVwidHJ1ZVwiPlxyXG4gICAgICAgIDxjby1pbnB1dC10ZXh0IFsobW9kZWwpXT1cInNlYXJjaFJlcXVlc3Quc2VyaWFsTnVtYmVyXCJcclxuICAgICAgICAgICAgICAgICAgICAgICBbcGxhY2Vob2xkZXJdPVwic2VhcmNoUGxhY2Vob2xkZXIgfCBsb2NhbGl6ZVwiPjwvY28taW5wdXQtdGV4dD5cclxuICAgICAgPC9jby1maWx0ZXItaXRlbT5cclxuXHJcbiAgICAgIDwhLS1CYXRjaG51bW1lci0tPlxyXG4gICAgICA8Y28tZmlsdGVyLWl0ZW1cclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ0JBVENIX05VTUJFUicgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW2N1c3RvbUNvbnRlbnRdPVwidHJ1ZVwiXHJcbiAgICAgICAgW2V4cGFuZGVkXT1cInRydWVcIj5cclxuICAgICAgICA8Y28taW5wdXQtdGV4dCBbKG1vZGVsKV09XCJzZWFyY2hSZXF1ZXN0LmJhdGNoTnVtYmVyXCIgW3BsYWNlaG9sZGVyXT1cInNlYXJjaFBsYWNlaG9sZGVyIHwgbG9jYWxpemVcIj48L2NvLWlucHV0LXRleHQ+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcblxyXG4gICAgICA8IS0tR2VsZXZlcmQtLT5cclxuICAgICAgPGNvLXRyYW5zYWN0aW9uLWZpbHRlci1oaXN0b3JpYy1zdGF0ZVxyXG4gICAgICAgIFtsYWJlbF09XCInREVMSVZFUkVEJ1wiXHJcbiAgICAgICAgKGZpbHRlckNsaWNrZWQpPVwiZmlsdGVyUmVxdWVzdFNlcnZpY2UuaGFuZGxlQ29sbGVjdGlvbkNoYW5nZUZvclNpbmdsZU51bWJlcigkZXZlbnQsICdxdWFudGl0eURlbGl2ZXJlZCcpXCJcclxuICAgICAgPjwvY28tdHJhbnNhY3Rpb24tZmlsdGVyLWhpc3RvcmljLXN0YXRlPlxyXG5cclxuICAgICAgPCEtLUdlZmFjdHVyZWVyZC0tPlxyXG4gICAgICA8Y28tdHJhbnNhY3Rpb24tZmlsdGVyLWhpc3RvcmljLXN0YXRlXHJcbiAgICAgICAgW2xhYmVsXT1cIidJTlZPSUNFRCdcIlxyXG4gICAgICAgIChmaWx0ZXJDbGlja2VkKT1cImZpbHRlclJlcXVlc3RTZXJ2aWNlLmhhbmRsZUNvbGxlY3Rpb25DaGFuZ2VGb3JTaW5nbGVOdW1iZXIoJGV2ZW50LCAncXVhbnRpdHlJbnZvaWNlZCcpXCJcclxuICAgICAgPjwvY28tdHJhbnNhY3Rpb24tZmlsdGVyLWhpc3RvcmljLXN0YXRlPlxyXG5cclxuICAgICAgPCEtLUJpbm5lbmdlbWVsZCAvIEdlbGV2ZXJkIC0tPlxyXG4gICAgICA8Y28tdHJhbnNhY3Rpb24tZmlsdGVyLWhpc3RvcmljLXN0YXRlXHJcbiAgICAgICAgW2xhYmVsXT1cIidSRUNFSVZFRF9ERUxJVkVSRUQnXCJcclxuICAgICAgICAoZmlsdGVyQ2xpY2tlZCk9XCJmaWx0ZXJSZXF1ZXN0U2VydmljZS5oYW5kbGVDb2xsZWN0aW9uQ2hhbmdlRm9yU2luZ2xlTnVtYmVyKCRldmVudCwgJ3F1YW50aXR5UmVjZWl2ZWQnKVwiXHJcbiAgICAgID48L2NvLXRyYW5zYWN0aW9uLWZpbHRlci1oaXN0b3JpYy1zdGF0ZT5cclxuXHJcbiAgICAgIDwhLS1CZXZlc3RpZ2QtLT5cclxuICAgICAgPGNvLXRyYW5zYWN0aW9uLWZpbHRlci1oaXN0b3JpYy1zdGF0ZVxyXG4gICAgICAgIFtsYWJlbF09XCInQ09ORklSTUVEJ1wiXHJcbiAgICAgICAgKGZpbHRlckNsaWNrZWQpPVwiZmlsdGVyUmVxdWVzdFNlcnZpY2UuaGFuZGxlQ29sbGVjdGlvbkNoYW5nZUZvclNpbmdsZU51bWJlcigkZXZlbnQsICdxdWFudGl0eUNvbmZpcm1lZCcpXCJcclxuICAgICAgPjwvY28tdHJhbnNhY3Rpb24tZmlsdGVyLWhpc3RvcmljLXN0YXRlPlxyXG5cclxuICAgICAgPCEtLUFhbmtvbXN0ZGF0dW0tLT5cclxuICAgICAgPGNvLWZpbHRlci1pdGVtXHJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidBUlJJVkFMX0RBVEUnIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtjdXN0b21Db250ZW50XT1cInRydWVcIlxyXG4gICAgICAgIFtleHBhbmRlZF09XCJ0cnVlXCI+XHJcbiAgICAgICAgPGNvLWlucHV0LWRhdGUtcmFuZ2VcclxuICAgICAgICAgIFtzdGFydERhdGVdPVwiYXJyaXZhbFN0YXJ0RGF0ZVwiXHJcbiAgICAgICAgICBbZW5kRGF0ZV09XCJhcnJpdmFsRW5kRGF0ZVwiXHJcbiAgICAgICAgICAoZGF0ZVJhbmdlQ2hhbmdlKT1cIm9uRGF0ZVJhbmdlQ2hhbmdlKCRldmVudCwgJ2Fycml2YWxEYXRlUmFuZ2UnKVwiXHJcbiAgICAgICAgICAoY2xlYXJlZCk9XCJvbkNsZWFyZWREYXRlUmFuZ2VDaGFuZ2UoJ2Fycml2YWxEYXRlUmFuZ2UnKVwiXHJcbiAgICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ1NFTEVDVF9EQVRFJyB8IGxvY2FsaXplXCI+XHJcbiAgICAgICAgPC9jby1pbnB1dC1kYXRlLXJhbmdlPlxyXG4gICAgICA8L2NvLWZpbHRlci1pdGVtPlxyXG5cclxuICAgICAgPCEtLVRvZWdld2V6ZW4tLT5cclxuICAgICAgPGNvLXRyYW5zYWN0aW9uLWZpbHRlci1oaXN0b3JpYy1zdGF0ZVxyXG4gICAgICAgIFtsYWJlbF09XCInQUxMT0NBVEVEJ1wiXHJcbiAgICAgICAgKGZpbHRlckNsaWNrZWQpPVwiZmlsdGVyUmVxdWVzdFNlcnZpY2UuaGFuZGxlQ29sbGVjdGlvbkNoYW5nZUZvclNpbmdsZU51bWJlcigkZXZlbnQsICdxdWFudGl0eUFsbG9jYXRlZCcpXCJcclxuICAgICAgPjwvY28tdHJhbnNhY3Rpb24tZmlsdGVyLWhpc3RvcmljLXN0YXRlPlxyXG5cclxuICAgICAgPCEtLVRlIHBpY2tlbi0tPlxyXG4gICAgICA8Y28tdHJhbnNhY3Rpb24tZmlsdGVyLWhpc3RvcmljLXN0YXRlXHJcbiAgICAgICAgW2xhYmVsXT1cIidUT19CRV9QSUNLRUQnXCJcclxuICAgICAgICAoZmlsdGVyQ2xpY2tlZCk9XCJmaWx0ZXJSZXF1ZXN0U2VydmljZS5oYW5kbGVDb2xsZWN0aW9uQ2hhbmdlRm9yU2luZ2xlTnVtYmVyKCRldmVudCwgJ3F1YW50aXR5VG9CZVBpY2tlZCcpXCJcclxuICAgICAgPjwvY28tdHJhbnNhY3Rpb24tZmlsdGVyLWhpc3RvcmljLXN0YXRlPlxyXG5cclxuICAgICAgPCEtLUdlcGlja2VkLS0+XHJcbiAgICAgIDxjby10cmFuc2FjdGlvbi1maWx0ZXItaGlzdG9yaWMtc3RhdGVcclxuICAgICAgICBbbGFiZWxdPVwiJ1BJQ0tFRCdcIlxyXG4gICAgICAgIChmaWx0ZXJDbGlja2VkKT1cImZpbHRlclJlcXVlc3RTZXJ2aWNlLmhhbmRsZUNvbGxlY3Rpb25DaGFuZ2VGb3JTaW5nbGVOdW1iZXIoJGV2ZW50LCAncXVhbnRpdHlQaWNrZWQnKVwiXHJcbiAgICAgID48L2NvLXRyYW5zYWN0aW9uLWZpbHRlci1oaXN0b3JpYy1zdGF0ZT5cclxuXHJcbiAgICAgIDwhLS1EZWVsbGV2ZXJpbmctLT5cclxuICAgICAgPGNvLWZpbHRlci1pdGVtXHJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidQQVJUX0RFTElWRVJZJyB8IGxvY2FsaXplXCJcclxuICAgICAgICBbY3VzdG9tQ29udGVudF09XCJ0cnVlXCJcclxuICAgICAgICBbZXhwYW5kZWRdPVwidHJ1ZVwiPlxyXG4gICAgICAgIDxjby1pbnB1dC1jaGVja2JveFxyXG4gICAgICAgICAgW21vZGVsXT1cInNlYXJjaFJlcXVlc3QucGFydGlhbERlbGl2ZXJ5ID09PSAnSidcIlxyXG4gICAgICAgICAgKG1vZGVsQ2hhbmdlKT1cImZpbHRlclJlcXVlc3RTZXJ2aWNlLmhhbmRsZUNoZWNrYm94VmFsdWVDaGFuZ2VGb3JTdHJpbmcoJGV2ZW50LCAncGFydGlhbERlbGl2ZXJ5JylcIlxyXG4gICAgICAgICAgW2xhYmVsXT1cIidQQVJUX0RFTElWRVJZJyB8IGxvY2FsaXplXCI+XHJcbiAgICAgICAgPC9jby1pbnB1dC1jaGVja2JveD5cclxuICAgICAgPC9jby1maWx0ZXItaXRlbT5cclxuXHJcbiAgICAgIDwhLS1NYWdhemlqbi0tPlxyXG4gICAgICA8Y28tZmlsdGVyLWl0ZW1cclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ1dBUkVIT1VTRScgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW2V4cGFuZGVkXT1cInRydWVcIlxyXG4gICAgICAgIFtzaW5nbGVTZWxlY3RdPVwidHJ1ZVwiXHJcbiAgICAgICAgW2NvbGxlY3Rpb25dPVwid2FyZWhvdXNlc1wiXHJcbiAgICAgICAgW3NlYXJjaFBsYWNlaG9sZGVyXT1cInNlYXJjaENvbGxlY3Rpb25QbGFjZWhvbGRlciB8IGxvY2FsaXplXCJcclxuICAgICAgICBbbm9SZXN1bHRzTGFiZWxdPVwibm9SZXN1bHRzTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW3Nob3dNb3JlTGFiZWxdPVwic2hvd01vcmVMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICBbc2hvd0xlc3NMYWJlbF09XCJzaG93TGVzc0xhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIChjb2xsZWN0aW9uQ2hhbmdlKT1cImZpbHRlclJlcXVlc3RTZXJ2aWNlLmhhbmRsZUNvbGxlY3Rpb25DaGFuZ2VGb3JTaW5nbGVTZWxlY3QoJGV2ZW50LCAnd2FyZWhvdXNlJylcIj5cclxuICAgICAgPC9jby1maWx0ZXItaXRlbT5cclxuXHJcbiAgICAgIDwhLS1Ccm9uIG1hZ2F6aWpuLS0+XHJcbiAgICAgIDxjby1maWx0ZXItaXRlbVxyXG4gICAgICAgIFtwbGFjZWhvbGRlcl09XCInU09VUkNFX1dBUkVIT1VTRScgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW2V4cGFuZGVkXT1cInRydWVcIlxyXG4gICAgICAgIFtzaW5nbGVTZWxlY3RdPVwidHJ1ZVwiXHJcbiAgICAgICAgW2NvbGxlY3Rpb25dPVwic291cmNlV2FyZWhvdXNlc1wiXHJcbiAgICAgICAgW3NlYXJjaFBsYWNlaG9sZGVyXT1cInNlYXJjaENvbGxlY3Rpb25QbGFjZWhvbGRlciB8IGxvY2FsaXplXCJcclxuICAgICAgICBbbm9SZXN1bHRzTGFiZWxdPVwibm9SZXN1bHRzTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW3Nob3dNb3JlTGFiZWxdPVwic2hvd01vcmVMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICBbc2hvd0xlc3NMYWJlbF09XCJzaG93TGVzc0xhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIChjb2xsZWN0aW9uQ2hhbmdlKT1cImZpbHRlclJlcXVlc3RTZXJ2aWNlLmhhbmRsZUNvbGxlY3Rpb25DaGFuZ2VGb3JTaW5nbGVTZWxlY3QoJGV2ZW50LCAnc291cmNlV2FyZWhvdXNlJylcIj5cclxuICAgICAgPC9jby1maWx0ZXItaXRlbT5cclxuXHJcbiAgICAgIDwhLS1MZXZlcm1ldGhvZGUtLT5cclxuICAgICAgPGNvLWZpbHRlci1pdGVtXHJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidERUxJVkVSWV9NRVRIT0QnIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtleHBhbmRlZF09XCJ0cnVlXCJcclxuICAgICAgICBbY29sbGVjdGlvbl09XCJkZWxpdmVyeU1ldGhvZHNcIlxyXG4gICAgICAgIFtzZWFyY2hQbGFjZWhvbGRlcl09XCJzZWFyY2hDb2xsZWN0aW9uUGxhY2Vob2xkZXIgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW25vUmVzdWx0c0xhYmVsXT1cIm5vUmVzdWx0c0xhYmVsIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtzaG93TW9yZUxhYmVsXT1cInNob3dNb3JlTGFiZWwgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgW3Nob3dMZXNzTGFiZWxdPVwic2hvd0xlc3NMYWJlbCB8IGxvY2FsaXplXCJcclxuICAgICAgICAoY29sbGVjdGlvbkNoYW5nZSk9XCJmaWx0ZXJSZXF1ZXN0U2VydmljZS5oYW5kbGVDb2xsZWN0aW9uQ2hhbmdlRm9yUmFuZ2UoJGV2ZW50LCAncmFuZ2VEZWxpdmVyeU1ldGhvZCcpXCI+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcblxyXG5cclxuICAgICAgPCEtLUxldmVyZGF0dW0gZGVmaW5pdGllZi0tPlxyXG4gICAgICA8Y28tZmlsdGVyLWl0ZW1cclxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwiJ0RFTElWRVJZX0RBVEVfRklOQUwnIHwgbG9jYWxpemVcIlxyXG4gICAgICAgIFtjdXN0b21Db250ZW50XT1cInRydWVcIlxyXG4gICAgICAgIFtleHBhbmRlZF09XCJ0cnVlXCI+XHJcbiAgICAgICAgPGNvLWlucHV0LWNoZWNrYm94XHJcbiAgICAgICAgICBbbW9kZWxdPVwic2VhcmNoUmVxdWVzdC5kZWxpdmVyeURhdGVEZWZpbml0aXZlID09PSAnSidcIlxyXG4gICAgICAgICAgKG1vZGVsQ2hhbmdlKT1cImZpbHRlclJlcXVlc3RTZXJ2aWNlLmhhbmRsZUNoZWNrYm94VmFsdWVDaGFuZ2VGb3JTdHJpbmcoJGV2ZW50LCAnZGVsaXZlcnlEYXRlRGVmaW5pdGl2ZScpXCJcclxuICAgICAgICAgIFtsYWJlbF09XCInREVMSVZFUllfREFURV9GSU5BTCcgfCBsb2NhbGl6ZVwiPjwvY28taW5wdXQtY2hlY2tib3g+XHJcbiAgICAgIDwvY28tZmlsdGVyLWl0ZW0+XHJcblxyXG4gICAgIDwhLS1VaXR2b2VyYmFhcjogdG9kbzogdnJhYWcgc3RhYXQgdWl0IHdhdCBoaWVybWVlIGJlZG9lbGQgd29yZHQuIERhYXJuYSBoaWVyIGFhbnZ1bGxlbiAtLT5cclxuXHJcbiAgICAgIDxkaXYgY2xhc3M9XCJmaWx0ZXItYnV0dG9uLWNvbnRhaW5lclwiPlxyXG4gICAgICAgIDxjby1idXR0b24gY2xhc3M9XCJjbGlja2FibGVcIiBbbGFiZWxdPVwiJ0ZpbHRlcidcIiAoY2xpY2spPVwib25GaWx0ZXJCdXR0b25DbGljaygpXCI+PC9jby1idXR0b24+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+XHJcbiAgYFxyXG59KVxyXG5leHBvcnQgY2xhc3MgVHJhbnNhY3Rpb25QdXJjaGFzZU9yZGVyRmlsdGVyQ29udGVudExvZ2lzdGljc0NvbXBvbmVudCBleHRlbmRzIFRyYW5zYWN0aW9uRmlsdGVyQ29udGVudEJhc2VDb21wb25lbnQge1xyXG5cclxuICBASG9zdEJpbmRpbmcoXCJjbGFzcy5jby10cmFuc2FjdGlvbi1zZWFyY2gtZmlsdGVyLWNvbnRlbnRcIilcclxuICBwdWJsaWMgc2hvd0NsYXNzKCk6IGJvb2xlYW4ge1xyXG4gICAgcmV0dXJuIHRydWU7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgZGVsaXZlcnlNZXRob2RzID0gW107XHJcbiAgcHVibGljIGRlbGl2ZXJ5TWV0aG9kRmllbGRzOiB7IHRleHQsIHZhbHVlIH0gPSB7dGV4dDogXCJkZXNjcmlwdGlvblwiLCB2YWx1ZTogXCJjb2RlXCJ9O1xyXG5cclxuICBwdWJsaWMgd2FyZWhvdXNlczogRmlsdGVySXRlbVZpZXdtb2RlbFtdO1xyXG4gIHB1YmxpYyB3YXJlaG91c2VGaWVsZHM6IHsgdGV4dCwgdmFsdWUgfSA9IHt0ZXh0OiBcImRlc2NyaXB0aW9uXCIsIHZhbHVlOiBcIndhcmVob3VzZU5vXCJ9O1xyXG5cclxuICBwdWJsaWMgc291cmNlV2FyZWhvdXNlczogRmlsdGVySXRlbVZpZXdtb2RlbFtdO1xyXG4gIHB1YmxpYyBzb3VyY2VXYXJlaG91c2VGaWVsZHM6IHsgdGV4dCwgdmFsdWUgfSA9IHt0ZXh0OiBcImRlc2NyaXB0aW9uXCIsIHZhbHVlOiBcIndhcmVob3VzZU5vXCJ9O1xyXG5cclxuICBwdWJsaWMgY29uZmlybWVkRGVsaXZlcnlTdGFydERhdGU6IERhdGU7XHJcbiAgcHVibGljIGNvbmZpcm1lZERlbGl2ZXJ5RW5kRGF0ZTogRGF0ZTtcclxuXHJcbiAgcHVibGljIGFycml2YWxTdGFydERhdGU6IERhdGU7XHJcbiAgcHVibGljIGFycml2YWxFbmREYXRlOiBEYXRlO1xyXG5cclxuICBjb25zdHJ1Y3RvcihcclxuICAgIHB1YmxpYyBzZWFyY2hTZXJ2aWNlOiBUcmFuc2FjdGlvblNlYXJjaFNlcnZpY2UsXHJcbiAgICBwdWJsaWMgZmlsdGVyUmVxdWVzdFNlcnZpY2U6IEZpbHRlclJlcXVlc3RTZXJ2aWNlLFxyXG4gICAgcHVibGljIHRyYW5zYWN0aW9uU2VydmljZTogVHJhbnNhY3Rpb25TZXJ2aWNlLFxyXG4gICkge1xyXG4gICAgc3VwZXIoc2VhcmNoU2VydmljZSwgZmlsdGVyUmVxdWVzdFNlcnZpY2UsIHRyYW5zYWN0aW9uU2VydmljZSlcclxuICB9XHJcblxyXG4gIHB1YmxpYyBuZ09uSW5pdCgpOiB2b2lkIHtcclxuICAgIHRoaXMuX3NldFJhbmdlRGF0ZXMoKTtcclxuICAgIHRoaXMuX3NldERlbGl2ZXJ5TWV0aG9kcygpO1xyXG4gICAgdGhpcy5fc2V0V2FyZWhvdXNlcygpO1xyXG4gICAgdGhpcy5fc2V0U291cmNlV2FyZWhvdXNlcygpO1xyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBfc2V0UmFuZ2VEYXRlcygpOiB2b2lkIHtcclxuICAgIHRoaXMuY29uZmlybWVkRGVsaXZlcnlTdGFydERhdGUgPSB0aGlzLmZpbHRlclJlcXVlc3RTZXJ2aWNlLmdldERhdGVGcm9tRmlsdGVyUmVxdWVzdFJhbmdlKHRoaXMuc2VhcmNoUmVxdWVzdC5jb25maXJtZWREZWxpdmVyeURhdGVSYW5nZSwgMCk7XHJcbiAgICB0aGlzLmNvbmZpcm1lZERlbGl2ZXJ5RW5kRGF0ZSA9IHRoaXMuZmlsdGVyUmVxdWVzdFNlcnZpY2UuZ2V0RGF0ZUZyb21GaWx0ZXJSZXF1ZXN0UmFuZ2UodGhpcy5zZWFyY2hSZXF1ZXN0LmNvbmZpcm1lZERlbGl2ZXJ5RGF0ZVJhbmdlLCAxKTtcclxuICAgIHRoaXMuYXJyaXZhbFN0YXJ0RGF0ZSA9IHRoaXMuZmlsdGVyUmVxdWVzdFNlcnZpY2UuZ2V0RGF0ZUZyb21GaWx0ZXJSZXF1ZXN0UmFuZ2UodGhpcy5zZWFyY2hSZXF1ZXN0LmFycml2YWxEYXRlUmFuZ2UsIDApO1xyXG4gICAgdGhpcy5hcnJpdmFsRW5kRGF0ZSA9IHRoaXMuZmlsdGVyUmVxdWVzdFNlcnZpY2UuZ2V0RGF0ZUZyb21GaWx0ZXJSZXF1ZXN0UmFuZ2UodGhpcy5zZWFyY2hSZXF1ZXN0LmFycml2YWxEYXRlUmFuZ2UsIDEpO1xyXG4gIH1cclxuXHJcbiAgLy9EZWxpdmVyeSBNZXRob2RzXHJcbiAgcHJpdmF0ZSBfc2V0RGVsaXZlcnlNZXRob2RzKCk6IHZvaWQge1xyXG4gICAgdGhpcy50cmFuc2FjdGlvblNlcnZpY2UuZ2V0RGVsaXZlcnlNZXRob2RzKCkudGhlbigoZGVsaXZlcnlNZXRob2RzOiBEZWxpdmVyeU1ldGhvZFtdKSA9PiB7XHJcbiAgICAgIHRoaXMuZGVsaXZlcnlNZXRob2RzID0gbmV3IEZpbHRlclZpZXdtb2RlbChkZWxpdmVyeU1ldGhvZHMsIHRoaXMuZGVsaXZlcnlNZXRob2RGaWVsZHMpLmZpbHRlckl0ZW1zO1xyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICAvL1dhcmVob3VzZXNcclxuICBwcml2YXRlIF9zZXRXYXJlaG91c2VzKCk6IHZvaWQge1xyXG4gICAgdGhpcy50cmFuc2FjdGlvblNlcnZpY2UuZ2V0V2FyZWhvdXNlcygpLnRoZW4oKHdhcmVob3VzZXM6IFdhcmVob3VzZVtdKSA9PiB7XHJcbiAgICAgIHRoaXMud2FyZWhvdXNlcyA9IG5ldyBGaWx0ZXJWaWV3bW9kZWwod2FyZWhvdXNlcywgdGhpcy53YXJlaG91c2VGaWVsZHMpLmZpbHRlckl0ZW1zO1xyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICAvL1NvdXJjZSBXYXJlaG91c2VzXHJcbiAgcHJpdmF0ZSBfc2V0U291cmNlV2FyZWhvdXNlcygpOiB2b2lkIHtcclxuICAgIHRoaXMudHJhbnNhY3Rpb25TZXJ2aWNlLmdldFdhcmVob3VzZXMoKS50aGVuKCh3YXJlaG91c2VzOiBXYXJlaG91c2VbXSkgPT4ge1xyXG4gICAgICB0aGlzLnNvdXJjZVdhcmVob3VzZXMgPSBuZXcgRmlsdGVyVmlld21vZGVsKHdhcmVob3VzZXMsIHRoaXMuc291cmNlV2FyZWhvdXNlRmllbGRzKS5maWx0ZXJJdGVtcztcclxuICAgIH0pO1xyXG4gIH1cclxufVxyXG4iXX0=
|
|
@@ -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 { TransactionPurchaseOrderFilterContentLogisticsComponent } from "./transaction-purchase-order-filter-content-logistics.component";
|
|
6
|
+
import { TransactionFilterHistoricStateModule } from "../../../transaction-filter-historic-state/transaction-filter-historic-state.module";
|
|
7
|
+
export class TransactionPurchaseOrderFilterContentLogisticsModule {
|
|
8
|
+
}
|
|
9
|
+
TransactionPurchaseOrderFilterContentLogisticsModule.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
|
+
TransactionPurchaseOrderFilterContentLogisticsComponent
|
|
25
|
+
],
|
|
26
|
+
exports: [
|
|
27
|
+
TransactionPurchaseOrderFilterContentLogisticsComponent
|
|
28
|
+
]
|
|
29
|
+
},] }
|
|
30
|
+
];
|
|
31
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tcHVyY2hhc2Utb3JkZXItZmlsdGVyLWNvbnRlbnQtbG9naXN0aWNzLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RyYW5zYWN0aW9uL3NyYy9saWIvY29tcG9uZW50L3RyYW5zYWN0aW9uLXNlYXJjaC90cmFuc2FjdGlvbi1maWx0ZXItY29udGVudC9wdXJjaGFzZS1vcmRlci1maWx0ZXItY29udGVudC90cmFuc2FjdGlvbi1wdXJjaGFzZS1vcmRlci1maWx0ZXItY29udGVudC1sb2dpc3RpY3MvdHJhbnNhY3Rpb24tcHVyY2hhc2Utb3JkZXItZmlsdGVyLWNvbnRlbnQtbG9naXN0aWNzLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQUMsWUFBWSxFQUFFLGdCQUFnQixFQUFFLG1CQUFtQixFQUFFLHFCQUFxQixFQUFFLDBCQUEwQixFQUFFLHNCQUFzQixFQUFFLGVBQWUsRUFBQyxNQUFNLDhCQUE4QixDQUFDO0FBQzdMLE9BQU8sRUFBQyxVQUFVLEVBQUMsTUFBTSxpQ0FBaUMsQ0FBQztBQUMzRCxPQUFPLEVBQUMsdURBQXVELEVBQUMsTUFBTSxpRUFBaUUsQ0FBQztBQUN4SSxPQUFPLEVBQUMsb0NBQW9DLEVBQUMsTUFBTSxxRkFBcUYsQ0FBQztBQXNCekksTUFBTSxPQUFPLG9EQUFvRDs7O1lBcEJoRSxRQUFRLFNBQUM7Z0JBQ04sT0FBTyxFQUFFO29CQUNMLFlBQVk7b0JBQ1osZ0JBQWdCO29CQUNoQiwwQkFBMEI7b0JBQzFCLGVBQWU7b0JBQ2YsVUFBVTtvQkFDVixxQkFBcUI7b0JBQ3JCLFlBQVk7b0JBQ1osbUJBQW1CO29CQUNuQixzQkFBc0I7b0JBQ3RCLG9DQUFvQztpQkFDdkM7Z0JBQ0gsWUFBWSxFQUFFO29CQUNaLHVEQUF1RDtpQkFDeEQ7Z0JBQ0QsT0FBTyxFQUFFO29CQUNQLHVEQUF1RDtpQkFDeEQ7YUFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7TmdNb2R1bGV9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7Q29tbW9uTW9kdWxlfSBmcm9tIFwiQGFuZ3VsYXIvY29tbW9uXCI7XHJcbmltcG9ydCB7QnV0dG9uTW9kdWxlLCBGaWx0ZXJJdGVtTW9kdWxlLCBJbnB1dENoZWNrYm94TW9kdWxlLCBJbnB1dERhdGVQaWNrZXJNb2R1bGUsIElucHV0RGF0ZVJhbmdlUGlja2VyTW9kdWxlLCBJbnB1dFJhZGlvQnV0dG9uTW9kdWxlLCBJbnB1dFRleHRNb2R1bGV9IGZyb20gXCJAY29saWpuaXQvY29yZWNvbXBvbmVudHNfdjEyXCI7XHJcbmltcG9ydCB7UGlwZU1vZHVsZX0gZnJvbSBcIi4uLy4uLy4uLy4uLy4uL3BpcGUvcGlwZS5tb2R1bGVcIjtcclxuaW1wb3J0IHtUcmFuc2FjdGlvblB1cmNoYXNlT3JkZXJGaWx0ZXJDb250ZW50TG9naXN0aWNzQ29tcG9uZW50fSBmcm9tIFwiLi90cmFuc2FjdGlvbi1wdXJjaGFzZS1vcmRlci1maWx0ZXItY29udGVudC1sb2dpc3RpY3MuY29tcG9uZW50XCI7XHJcbmltcG9ydCB7VHJhbnNhY3Rpb25GaWx0ZXJIaXN0b3JpY1N0YXRlTW9kdWxlfSBmcm9tIFwiLi4vLi4vLi4vdHJhbnNhY3Rpb24tZmlsdGVyLWhpc3RvcmljLXN0YXRlL3RyYW5zYWN0aW9uLWZpbHRlci1oaXN0b3JpYy1zdGF0ZS5tb2R1bGVcIjtcclxuXHJcbkBOZ01vZHVsZSh7XHJcbiAgICBpbXBvcnRzOiBbXHJcbiAgICAgICAgQ29tbW9uTW9kdWxlLFxyXG4gICAgICAgIEZpbHRlckl0ZW1Nb2R1bGUsXHJcbiAgICAgICAgSW5wdXREYXRlUmFuZ2VQaWNrZXJNb2R1bGUsXHJcbiAgICAgICAgSW5wdXRUZXh0TW9kdWxlLFxyXG4gICAgICAgIFBpcGVNb2R1bGUsXHJcbiAgICAgICAgSW5wdXREYXRlUGlja2VyTW9kdWxlLFxyXG4gICAgICAgIEJ1dHRvbk1vZHVsZSxcclxuICAgICAgICBJbnB1dENoZWNrYm94TW9kdWxlLFxyXG4gICAgICAgIElucHV0UmFkaW9CdXR0b25Nb2R1bGUsXHJcbiAgICAgICAgVHJhbnNhY3Rpb25GaWx0ZXJIaXN0b3JpY1N0YXRlTW9kdWxlXHJcbiAgICBdLFxyXG4gIGRlY2xhcmF0aW9uczogW1xyXG4gICAgVHJhbnNhY3Rpb25QdXJjaGFzZU9yZGVyRmlsdGVyQ29udGVudExvZ2lzdGljc0NvbXBvbmVudFxyXG4gIF0sXHJcbiAgZXhwb3J0czogW1xyXG4gICAgVHJhbnNhY3Rpb25QdXJjaGFzZU9yZGVyRmlsdGVyQ29udGVudExvZ2lzdGljc0NvbXBvbmVudFxyXG4gIF1cclxufSlcclxuZXhwb3J0IGNsYXNzIFRyYW5zYWN0aW9uUHVyY2hhc2VPcmRlckZpbHRlckNvbnRlbnRMb2dpc3RpY3NNb2R1bGUge1xyXG59XHJcbiJdfQ==
|