@hitsoft/kadooglu-keops 0.0.1
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/README.md +24 -0
- package/config/enums/index.d.ts +1 -0
- package/config/enums/route-names.d.ts +23 -0
- package/config/index.d.ts +5 -0
- package/config/kadooglu-keops-config.module.d.ts +8 -0
- package/config/providers/index.d.ts +1 -0
- package/config/providers/route.provider.d.ts +8 -0
- package/config/public-api.d.ts +3 -0
- package/esm2020/config/enums/index.mjs +2 -0
- package/esm2020/config/enums/route-names.mjs +2 -0
- package/esm2020/config/hitsoft-kadooglu-keops-config.mjs +5 -0
- package/esm2020/config/kadooglu-keops-config.module.mjs +18 -0
- package/esm2020/config/providers/index.mjs +2 -0
- package/esm2020/config/providers/route.provider.mjs +212 -0
- package/esm2020/config/public-api.mjs +4 -0
- package/esm2020/hitsoft-kadooglu-keops.mjs +5 -0
- package/esm2020/lib/features/container-definitions/components/container-definition-form.component.mjs +81 -0
- package/esm2020/lib/features/container-definitions/components/container-definitions.component.mjs +69 -0
- package/esm2020/lib/features/container-definitions/hit-container-definitions-routing.module.mjs +29 -0
- package/esm2020/lib/features/container-definitions/hit-container-definitions.module.mjs +58 -0
- package/esm2020/lib/features/container-loading-counts/components/container-loading-counts.component.mjs +104 -0
- package/esm2020/lib/features/container-loading-counts/hit-container-loading-counts-routing.module.mjs +29 -0
- package/esm2020/lib/features/container-loading-counts/hit-container-loading-counts.module.mjs +49 -0
- package/esm2020/lib/features/container-loading-scenarios/components/container-loading-scenarios.component.mjs +106 -0
- package/esm2020/lib/features/container-loading-scenarios/container-loading-scenario-l10n-helper.mjs +10 -0
- package/esm2020/lib/features/container-loading-scenarios/hit-container-loading-scenarios-routing.module.mjs +29 -0
- package/esm2020/lib/features/container-loading-scenarios/hit-container-loading-scenarios.module.mjs +49 -0
- package/esm2020/lib/features/container-mix-types/components/container-mix-type-form.component.mjs +78 -0
- package/esm2020/lib/features/container-mix-types/components/container-mix-types.component.mjs +69 -0
- package/esm2020/lib/features/container-mix-types/hit-container-mix-types-routing.module.mjs +29 -0
- package/esm2020/lib/features/container-mix-types/hit-container-mix-types.module.mjs +58 -0
- package/esm2020/lib/features/container-pallet-capacities/components/container-pallet-capacities.component.mjs +95 -0
- package/esm2020/lib/features/container-pallet-capacities/components/container-pallet-capacity-form.component.mjs +91 -0
- package/esm2020/lib/features/container-pallet-capacities/hit-container-pallet-capacities-routing.module.mjs +29 -0
- package/esm2020/lib/features/container-pallet-capacities/hit-container-pallet-capacities.module.mjs +58 -0
- package/esm2020/lib/features/cost-calculation/components/cost-calculation-inputs.component.mjs +103 -0
- package/esm2020/lib/features/cost-calculation/components/cost-calculation-result-sum.component.mjs +36 -0
- package/esm2020/lib/features/cost-calculation/components/cost-calculation-results.component.mjs +32 -0
- package/esm2020/lib/features/cost-calculation/components/cost-calculation.component.mjs +167 -0
- package/esm2020/lib/features/cost-calculation/cost-calculation.models.mjs +2 -0
- package/esm2020/lib/features/cost-calculation/engine/currency.utils.mjs +21 -0
- package/esm2020/lib/features/cost-calculation/engine/formulas.mjs +55 -0
- package/esm2020/lib/features/cost-calculation/engine/index.mjs +4 -0
- package/esm2020/lib/features/cost-calculation/engine/item-resolver.mjs +38 -0
- package/esm2020/lib/features/cost-calculation/engine/models.mjs +20 -0
- package/esm2020/lib/features/cost-calculation/engine/stage-builder.mjs +56 -0
- package/esm2020/lib/features/cost-calculation/hit-cost-calculation-routing.module.mjs +29 -0
- package/esm2020/lib/features/cost-calculation/hit-cost-calculation.module.mjs +64 -0
- package/esm2020/lib/features/cost-groups/components/cost-group-form.component.mjs +121 -0
- package/esm2020/lib/features/cost-groups/components/cost-groups.component.mjs +92 -0
- package/esm2020/lib/features/cost-groups/cost-group-role-l10n-helper.mjs +20 -0
- package/esm2020/lib/features/cost-groups/hit-cost-groups-routing.module.mjs +29 -0
- package/esm2020/lib/features/cost-groups/hit-cost-groups.module.mjs +58 -0
- package/esm2020/lib/features/cost-items/components/cost-item-form.component.mjs +88 -0
- package/esm2020/lib/features/cost-items/components/cost-items.component.mjs +73 -0
- package/esm2020/lib/features/cost-items/cost-item-l10n-helper.mjs +7 -0
- package/esm2020/lib/features/cost-items/hit-cost-items-routing.module.mjs +29 -0
- package/esm2020/lib/features/cost-items/hit-cost-items.module.mjs +58 -0
- package/esm2020/lib/features/cost-parameter-categories/components/cost-parameter-categories.component.mjs +73 -0
- package/esm2020/lib/features/cost-parameter-categories/components/cost-parameter-category-form.component.mjs +93 -0
- package/esm2020/lib/features/cost-parameter-categories/cost-parameter-category-l10n-helper.mjs +9 -0
- package/esm2020/lib/features/cost-parameter-categories/hit-cost-parameter-categories-routing.module.mjs +29 -0
- package/esm2020/lib/features/cost-parameter-categories/hit-cost-parameter-categories.module.mjs +58 -0
- package/esm2020/lib/features/cost-parameters/components/cost-parameter-form.component.mjs +131 -0
- package/esm2020/lib/features/cost-parameters/components/cost-parameters.component.mjs +93 -0
- package/esm2020/lib/features/cost-parameters/cost-parameter-l10n-helper.mjs +7 -0
- package/esm2020/lib/features/cost-parameters/hit-cost-parameters-routing.module.mjs +29 -0
- package/esm2020/lib/features/cost-parameters/hit-cost-parameters.module.mjs +61 -0
- package/esm2020/lib/features/exchange-rates/components/central-bank-rates.component.mjs +17 -0
- package/esm2020/lib/features/exchange-rates/components/exchange-rates.component.mjs +30 -0
- package/esm2020/lib/features/exchange-rates/components/fixed-rates-form.component.mjs +84 -0
- package/esm2020/lib/features/exchange-rates/hit-exchange-rates-routing.module.mjs +29 -0
- package/esm2020/lib/features/exchange-rates/hit-exchange-rates.module.mjs +65 -0
- package/esm2020/lib/features/index.mjs +15 -0
- package/esm2020/lib/features/packaging-materials/components/packaging-material-form.component.mjs +87 -0
- package/esm2020/lib/features/packaging-materials/components/packaging-materials.component.mjs +69 -0
- package/esm2020/lib/features/packaging-materials/hit-packaging-materials-routing.module.mjs +29 -0
- package/esm2020/lib/features/packaging-materials/hit-packaging-materials.module.mjs +58 -0
- package/esm2020/lib/features/packaging-prices/components/packaging-price-form.component.mjs +154 -0
- package/esm2020/lib/features/packaging-prices/components/packaging-price-lines.component.mjs +89 -0
- package/esm2020/lib/features/packaging-prices/components/packaging-prices.component.mjs +86 -0
- package/esm2020/lib/features/packaging-prices/hit-packaging-prices-routing.module.mjs +29 -0
- package/esm2020/lib/features/packaging-prices/hit-packaging-prices.module.mjs +71 -0
- package/esm2020/lib/features/packaging-prices/packaging-price-calculator.mjs +36 -0
- package/esm2020/lib/features/packaging-prices/packaging-price-excel.service.mjs +32 -0
- package/esm2020/lib/features/packaging-prices/packaging-price-form.factory.mjs +31 -0
- package/esm2020/lib/features/packaging-prices/packaging-price-lines.builder.mjs +49 -0
- package/esm2020/lib/features/packaging-types/components/packaging-type-form.component.mjs +78 -0
- package/esm2020/lib/features/packaging-types/components/packaging-types.component.mjs +69 -0
- package/esm2020/lib/features/packaging-types/hit-packaging-types-routing.module.mjs +29 -0
- package/esm2020/lib/features/packaging-types/hit-packaging-types.module.mjs +58 -0
- package/esm2020/lib/features/pallet-definitions/components/pallet-definition-form.component.mjs +80 -0
- package/esm2020/lib/features/pallet-definitions/components/pallet-definitions.component.mjs +69 -0
- package/esm2020/lib/features/pallet-definitions/hit-pallet-definitions-routing.module.mjs +29 -0
- package/esm2020/lib/features/pallet-definitions/hit-pallet-definitions.module.mjs +58 -0
- package/esm2020/lib/features/price-parameter-types/components/price-parameter-type-form.component.mjs +79 -0
- package/esm2020/lib/features/price-parameter-types/components/price-parameter-types.component.mjs +69 -0
- package/esm2020/lib/features/price-parameter-types/hit-price-parameter-types-routing.module.mjs +29 -0
- package/esm2020/lib/features/price-parameter-types/hit-price-parameter-types.module.mjs +58 -0
- package/esm2020/lib/features/sap-sales-persons/components/sap-sales-person-form.component.mjs +69 -0
- package/esm2020/lib/features/sap-sales-persons/components/sap-sales-persons.component.mjs +53 -0
- package/esm2020/lib/features/sap-sales-persons/hit-sap-sales-persons-routing.module.mjs +29 -0
- package/esm2020/lib/features/sap-sales-persons/hit-sap-sales-persons.module.mjs +61 -0
- package/esm2020/lib/features/settings/components/cost-settings.component.mjs +48 -0
- package/esm2020/lib/kadooglu-keops-routing.module.mjs +53 -0
- package/esm2020/lib/kadooglu-keops.module.mjs +53 -0
- package/esm2020/lib/proxy/container-definitions/dtos/index.mjs +2 -0
- package/esm2020/lib/proxy/container-definitions/dtos/models.mjs +2 -0
- package/esm2020/lib/proxy/container-definitions/index.mjs +3 -0
- package/esm2020/lib/proxy/container-loading-counts/dtos/index.mjs +2 -0
- package/esm2020/lib/proxy/container-loading-counts/dtos/models.mjs +2 -0
- package/esm2020/lib/proxy/container-loading-counts/index.mjs +4 -0
- package/esm2020/lib/proxy/container-loading-counts/loading-target-kind.enum.mjs +8 -0
- package/esm2020/lib/proxy/container-loading-scenarios/dtos/index.mjs +2 -0
- package/esm2020/lib/proxy/container-loading-scenarios/dtos/models.mjs +2 -0
- package/esm2020/lib/proxy/container-loading-scenarios/index.mjs +4 -0
- package/esm2020/lib/proxy/container-loading-scenarios/pallet-status.enum.mjs +8 -0
- package/esm2020/lib/proxy/container-mix-types/dtos/index.mjs +2 -0
- package/esm2020/lib/proxy/container-mix-types/dtos/models.mjs +2 -0
- package/esm2020/lib/proxy/container-mix-types/index.mjs +3 -0
- package/esm2020/lib/proxy/container-pallet-capacities/dtos/index.mjs +2 -0
- package/esm2020/lib/proxy/container-pallet-capacities/dtos/models.mjs +2 -0
- package/esm2020/lib/proxy/container-pallet-capacities/index.mjs +3 -0
- package/esm2020/lib/proxy/controllers/container-definition.service.mjs +40 -0
- package/esm2020/lib/proxy/controllers/container-loading-count.service.mjs +31 -0
- package/esm2020/lib/proxy/controllers/container-loading-scenario.service.mjs +27 -0
- package/esm2020/lib/proxy/controllers/container-mix-type.service.mjs +40 -0
- package/esm2020/lib/proxy/controllers/container-pallet-capacity.service.mjs +40 -0
- package/esm2020/lib/proxy/controllers/cost-group.service.mjs +40 -0
- package/esm2020/lib/proxy/controllers/cost-item.service.mjs +40 -0
- package/esm2020/lib/proxy/controllers/cost-parameter-category.service.mjs +40 -0
- package/esm2020/lib/proxy/controllers/cost-parameter.service.mjs +40 -0
- package/esm2020/lib/proxy/controllers/cost-settings.service.mjs +27 -0
- package/esm2020/lib/proxy/controllers/exchange-rate.service.mjs +27 -0
- package/esm2020/lib/proxy/controllers/index.mjs +19 -0
- package/esm2020/lib/proxy/controllers/item.service.mjs +23 -0
- package/esm2020/lib/proxy/controllers/packaging-material.service.mjs +40 -0
- package/esm2020/lib/proxy/controllers/packaging-price.service.mjs +55 -0
- package/esm2020/lib/proxy/controllers/packaging-type.service.mjs +40 -0
- package/esm2020/lib/proxy/controllers/pallet-definition.service.mjs +40 -0
- package/esm2020/lib/proxy/controllers/price-parameter-type.service.mjs +40 -0
- package/esm2020/lib/proxy/controllers/sap-sales-person.service.mjs +27 -0
- package/esm2020/lib/proxy/cost-groups/cost-group-role.enum.mjs +10 -0
- package/esm2020/lib/proxy/cost-groups/dtos/index.mjs +2 -0
- package/esm2020/lib/proxy/cost-groups/dtos/models.mjs +2 -0
- package/esm2020/lib/proxy/cost-groups/index.mjs +4 -0
- package/esm2020/lib/proxy/cost-items/cost-item-calculation-type.enum.mjs +9 -0
- package/esm2020/lib/proxy/cost-items/cost-item-system-code.enum.mjs +20 -0
- package/esm2020/lib/proxy/cost-items/dtos/index.mjs +2 -0
- package/esm2020/lib/proxy/cost-items/dtos/models.mjs +2 -0
- package/esm2020/lib/proxy/cost-items/index.mjs +5 -0
- package/esm2020/lib/proxy/cost-parameter-categories/cost-parameter-category-parent-code.enum.mjs +11 -0
- package/esm2020/lib/proxy/cost-parameter-categories/dtos/index.mjs +2 -0
- package/esm2020/lib/proxy/cost-parameter-categories/dtos/models.mjs +2 -0
- package/esm2020/lib/proxy/cost-parameter-categories/index.mjs +4 -0
- package/esm2020/lib/proxy/cost-parameters/cost-parameter-status.enum.mjs +9 -0
- package/esm2020/lib/proxy/cost-parameters/dtos/index.mjs +2 -0
- package/esm2020/lib/proxy/cost-parameters/dtos/models.mjs +2 -0
- package/esm2020/lib/proxy/cost-parameters/index.mjs +4 -0
- package/esm2020/lib/proxy/currencies/currency.enum.mjs +9 -0
- package/esm2020/lib/proxy/currencies/index.mjs +2 -0
- package/esm2020/lib/proxy/exchange-rates/dtos/index.mjs +2 -0
- package/esm2020/lib/proxy/exchange-rates/dtos/models.mjs +2 -0
- package/esm2020/lib/proxy/exchange-rates/exchange-rate-source.enum.mjs +8 -0
- package/esm2020/lib/proxy/exchange-rates/index.mjs +4 -0
- package/esm2020/lib/proxy/index.mjs +22 -0
- package/esm2020/lib/proxy/items/dtos/index.mjs +2 -0
- package/esm2020/lib/proxy/items/dtos/models.mjs +2 -0
- package/esm2020/lib/proxy/items/index.mjs +3 -0
- package/esm2020/lib/proxy/packaging-materials/dtos/index.mjs +2 -0
- package/esm2020/lib/proxy/packaging-materials/dtos/models.mjs +2 -0
- package/esm2020/lib/proxy/packaging-materials/index.mjs +3 -0
- package/esm2020/lib/proxy/packaging-prices/dtos/index.mjs +2 -0
- package/esm2020/lib/proxy/packaging-prices/dtos/models.mjs +2 -0
- package/esm2020/lib/proxy/packaging-prices/index.mjs +3 -0
- package/esm2020/lib/proxy/packaging-types/dtos/index.mjs +2 -0
- package/esm2020/lib/proxy/packaging-types/dtos/models.mjs +2 -0
- package/esm2020/lib/proxy/packaging-types/index.mjs +3 -0
- package/esm2020/lib/proxy/pallet-definitions/dtos/index.mjs +2 -0
- package/esm2020/lib/proxy/pallet-definitions/dtos/models.mjs +2 -0
- package/esm2020/lib/proxy/pallet-definitions/index.mjs +3 -0
- package/esm2020/lib/proxy/price-parameter-types/dtos/index.mjs +2 -0
- package/esm2020/lib/proxy/price-parameter-types/dtos/models.mjs +2 -0
- package/esm2020/lib/proxy/price-parameter-types/index.mjs +3 -0
- package/esm2020/lib/proxy/sales-persons/dtos/index.mjs +2 -0
- package/esm2020/lib/proxy/sales-persons/dtos/models.mjs +2 -0
- package/esm2020/lib/proxy/sales-persons/index.mjs +3 -0
- package/esm2020/lib/proxy/settings/index.mjs +2 -0
- package/esm2020/lib/proxy/settings/models.mjs +2 -0
- package/esm2020/lib/utils/currency.utils.mjs +8 -0
- package/esm2020/lib/utils/date.utils.mjs +12 -0
- package/esm2020/lib/utils/number.utils.mjs +9 -0
- package/esm2020/public-api.mjs +7 -0
- package/fesm2015/hitsoft-kadooglu-keops-config.mjs +235 -0
- package/fesm2015/hitsoft-kadooglu-keops-config.mjs.map +1 -0
- package/fesm2015/hitsoft-kadooglu-keops.mjs +5243 -0
- package/fesm2015/hitsoft-kadooglu-keops.mjs.map +1 -0
- package/fesm2020/hitsoft-kadooglu-keops-config.mjs +235 -0
- package/fesm2020/hitsoft-kadooglu-keops-config.mjs.map +1 -0
- package/fesm2020/hitsoft-kadooglu-keops.mjs +5196 -0
- package/fesm2020/hitsoft-kadooglu-keops.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/features/container-definitions/components/container-definition-form.component.d.ts +25 -0
- package/lib/features/container-definitions/components/container-definitions.component.d.ts +23 -0
- package/lib/features/container-definitions/hit-container-definitions-routing.module.d.ts +7 -0
- package/lib/features/container-definitions/hit-container-definitions.module.d.ts +18 -0
- package/lib/features/container-loading-counts/components/container-loading-counts.component.d.ts +29 -0
- package/lib/features/container-loading-counts/hit-container-loading-counts-routing.module.d.ts +7 -0
- package/lib/features/container-loading-counts/hit-container-loading-counts.module.d.ts +15 -0
- package/lib/features/container-loading-scenarios/components/container-loading-scenarios.component.d.ts +40 -0
- package/lib/features/container-loading-scenarios/container-loading-scenario-l10n-helper.d.ts +3 -0
- package/lib/features/container-loading-scenarios/hit-container-loading-scenarios-routing.module.d.ts +7 -0
- package/lib/features/container-loading-scenarios/hit-container-loading-scenarios.module.d.ts +15 -0
- package/lib/features/container-mix-types/components/container-mix-type-form.component.d.ts +25 -0
- package/lib/features/container-mix-types/components/container-mix-types.component.d.ts +23 -0
- package/lib/features/container-mix-types/hit-container-mix-types-routing.module.d.ts +7 -0
- package/lib/features/container-mix-types/hit-container-mix-types.module.d.ts +18 -0
- package/lib/features/container-pallet-capacities/components/container-pallet-capacities.component.d.ts +33 -0
- package/lib/features/container-pallet-capacities/components/container-pallet-capacity-form.component.d.ts +29 -0
- package/lib/features/container-pallet-capacities/hit-container-pallet-capacities-routing.module.d.ts +7 -0
- package/lib/features/container-pallet-capacities/hit-container-pallet-capacities.module.d.ts +18 -0
- package/lib/features/cost-calculation/components/cost-calculation-inputs.component.d.ts +43 -0
- package/lib/features/cost-calculation/components/cost-calculation-result-sum.component.d.ts +16 -0
- package/lib/features/cost-calculation/components/cost-calculation-results.component.d.ts +12 -0
- package/lib/features/cost-calculation/components/cost-calculation.component.d.ts +51 -0
- package/lib/features/cost-calculation/cost-calculation.models.d.ts +18 -0
- package/lib/features/cost-calculation/engine/currency.utils.d.ts +4 -0
- package/lib/features/cost-calculation/engine/formulas.d.ts +7 -0
- package/lib/features/cost-calculation/engine/index.d.ts +3 -0
- package/lib/features/cost-calculation/engine/item-resolver.d.ts +4 -0
- package/lib/features/cost-calculation/engine/models.d.ts +64 -0
- package/lib/features/cost-calculation/engine/stage-builder.d.ts +4 -0
- package/lib/features/cost-calculation/hit-cost-calculation-routing.module.d.ts +7 -0
- package/lib/features/cost-calculation/hit-cost-calculation.module.d.ts +19 -0
- package/lib/features/cost-groups/components/cost-group-form.component.d.ts +33 -0
- package/lib/features/cost-groups/components/cost-groups.component.d.ts +31 -0
- package/lib/features/cost-groups/cost-group-role-l10n-helper.d.ts +7 -0
- package/lib/features/cost-groups/hit-cost-groups-routing.module.d.ts +7 -0
- package/lib/features/cost-groups/hit-cost-groups.module.d.ts +18 -0
- package/lib/features/cost-items/components/cost-item-form.component.d.ts +30 -0
- package/lib/features/cost-items/components/cost-items.component.d.ts +24 -0
- package/lib/features/cost-items/cost-item-l10n-helper.d.ts +2 -0
- package/lib/features/cost-items/hit-cost-items-routing.module.d.ts +7 -0
- package/lib/features/cost-items/hit-cost-items.module.d.ts +18 -0
- package/lib/features/cost-parameter-categories/components/cost-parameter-categories.component.d.ts +24 -0
- package/lib/features/cost-parameter-categories/components/cost-parameter-category-form.component.d.ts +29 -0
- package/lib/features/cost-parameter-categories/cost-parameter-category-l10n-helper.d.ts +2 -0
- package/lib/features/cost-parameter-categories/hit-cost-parameter-categories-routing.module.d.ts +7 -0
- package/lib/features/cost-parameter-categories/hit-cost-parameter-categories.module.d.ts +18 -0
- package/lib/features/cost-parameters/components/cost-parameter-form.component.d.ts +39 -0
- package/lib/features/cost-parameters/components/cost-parameters.component.d.ts +30 -0
- package/lib/features/cost-parameters/cost-parameter-l10n-helper.d.ts +2 -0
- package/lib/features/cost-parameters/hit-cost-parameters-routing.module.d.ts +7 -0
- package/lib/features/cost-parameters/hit-cost-parameters.module.d.ts +18 -0
- package/lib/features/exchange-rates/components/central-bank-rates.component.d.ts +7 -0
- package/lib/features/exchange-rates/components/exchange-rates.component.d.ts +13 -0
- package/lib/features/exchange-rates/components/fixed-rates-form.component.d.ts +26 -0
- package/lib/features/exchange-rates/hit-exchange-rates-routing.module.d.ts +7 -0
- package/lib/features/exchange-rates/hit-exchange-rates.module.d.ts +19 -0
- package/lib/features/index.d.ts +10 -0
- package/lib/features/packaging-materials/components/packaging-material-form.component.d.ts +29 -0
- package/lib/features/packaging-materials/components/packaging-materials.component.d.ts +23 -0
- package/lib/features/packaging-materials/hit-packaging-materials-routing.module.d.ts +7 -0
- package/lib/features/packaging-materials/hit-packaging-materials.module.d.ts +18 -0
- package/lib/features/packaging-prices/components/packaging-price-form.component.d.ts +44 -0
- package/lib/features/packaging-prices/components/packaging-price-lines.component.d.ts +26 -0
- package/lib/features/packaging-prices/components/packaging-prices.component.d.ts +27 -0
- package/lib/features/packaging-prices/hit-packaging-prices-routing.module.d.ts +7 -0
- package/lib/features/packaging-prices/hit-packaging-prices.module.d.ts +19 -0
- package/lib/features/packaging-prices/packaging-price-calculator.d.ts +8 -0
- package/lib/features/packaging-prices/packaging-price-excel.service.d.ts +15 -0
- package/lib/features/packaging-prices/packaging-price-form.factory.d.ts +5 -0
- package/lib/features/packaging-prices/packaging-price-lines.builder.d.ts +21 -0
- package/lib/features/packaging-types/components/packaging-type-form.component.d.ts +25 -0
- package/lib/features/packaging-types/components/packaging-types.component.d.ts +23 -0
- package/lib/features/packaging-types/hit-packaging-types-routing.module.d.ts +7 -0
- package/lib/features/packaging-types/hit-packaging-types.module.d.ts +18 -0
- package/lib/features/pallet-definitions/components/pallet-definition-form.component.d.ts +25 -0
- package/lib/features/pallet-definitions/components/pallet-definitions.component.d.ts +23 -0
- package/lib/features/pallet-definitions/hit-pallet-definitions-routing.module.d.ts +7 -0
- package/lib/features/pallet-definitions/hit-pallet-definitions.module.d.ts +18 -0
- package/lib/features/price-parameter-types/components/price-parameter-type-form.component.d.ts +25 -0
- package/lib/features/price-parameter-types/components/price-parameter-types.component.d.ts +23 -0
- package/lib/features/price-parameter-types/hit-price-parameter-types-routing.module.d.ts +7 -0
- package/lib/features/price-parameter-types/hit-price-parameter-types.module.d.ts +18 -0
- package/lib/features/sap-sales-persons/components/sap-sales-person-form.component.d.ts +26 -0
- package/lib/features/sap-sales-persons/components/sap-sales-persons.component.d.ts +24 -0
- package/lib/features/sap-sales-persons/hit-sap-sales-persons-routing.module.d.ts +7 -0
- package/lib/features/sap-sales-persons/hit-sap-sales-persons.module.d.ts +18 -0
- package/lib/features/settings/components/cost-settings.component.d.ts +17 -0
- package/lib/kadooglu-keops-routing.module.d.ts +7 -0
- package/lib/kadooglu-keops.module.d.ts +18 -0
- package/lib/proxy/container-definitions/dtos/index.d.ts +1 -0
- package/lib/proxy/container-definitions/dtos/models.d.ts +22 -0
- package/lib/proxy/container-definitions/index.d.ts +2 -0
- package/lib/proxy/container-loading-counts/dtos/index.d.ts +1 -0
- package/lib/proxy/container-loading-counts/dtos/models.d.ts +23 -0
- package/lib/proxy/container-loading-counts/index.d.ts +3 -0
- package/lib/proxy/container-loading-counts/loading-target-kind.enum.d.ts +5 -0
- package/lib/proxy/container-loading-scenarios/dtos/index.d.ts +1 -0
- package/lib/proxy/container-loading-scenarios/dtos/models.d.ts +22 -0
- package/lib/proxy/container-loading-scenarios/index.d.ts +3 -0
- package/lib/proxy/container-loading-scenarios/pallet-status.enum.d.ts +5 -0
- package/lib/proxy/container-mix-types/dtos/index.d.ts +1 -0
- package/lib/proxy/container-mix-types/dtos/models.d.ts +13 -0
- package/lib/proxy/container-mix-types/index.d.ts +2 -0
- package/lib/proxy/container-pallet-capacities/dtos/index.d.ts +1 -0
- package/lib/proxy/container-pallet-capacities/dtos/models.d.ts +22 -0
- package/lib/proxy/container-pallet-capacities/index.d.ts +2 -0
- package/lib/proxy/controllers/container-definition.service.d.ts +15 -0
- package/lib/proxy/controllers/container-loading-count.service.d.ts +13 -0
- package/lib/proxy/controllers/container-loading-scenario.service.d.ts +12 -0
- package/lib/proxy/controllers/container-mix-type.service.d.ts +15 -0
- package/lib/proxy/controllers/container-pallet-capacity.service.d.ts +15 -0
- package/lib/proxy/controllers/cost-group.service.d.ts +15 -0
- package/lib/proxy/controllers/cost-item.service.d.ts +15 -0
- package/lib/proxy/controllers/cost-parameter-category.service.d.ts +15 -0
- package/lib/proxy/controllers/cost-parameter.service.d.ts +15 -0
- package/lib/proxy/controllers/cost-settings.service.d.ts +12 -0
- package/lib/proxy/controllers/exchange-rate.service.d.ts +12 -0
- package/lib/proxy/controllers/index.d.ts +18 -0
- package/lib/proxy/controllers/item.service.d.ts +11 -0
- package/lib/proxy/controllers/packaging-material.service.d.ts +15 -0
- package/lib/proxy/controllers/packaging-price.service.d.ts +18 -0
- package/lib/proxy/controllers/packaging-type.service.d.ts +15 -0
- package/lib/proxy/controllers/pallet-definition.service.d.ts +15 -0
- package/lib/proxy/controllers/price-parameter-type.service.d.ts +15 -0
- package/lib/proxy/controllers/sap-sales-person.service.d.ts +12 -0
- package/lib/proxy/cost-groups/cost-group-role.enum.d.ts +7 -0
- package/lib/proxy/cost-groups/dtos/index.d.ts +1 -0
- package/lib/proxy/cost-groups/dtos/models.d.ts +21 -0
- package/lib/proxy/cost-groups/index.d.ts +3 -0
- package/lib/proxy/cost-items/cost-item-calculation-type.enum.d.ts +6 -0
- package/lib/proxy/cost-items/cost-item-system-code.enum.d.ts +17 -0
- package/lib/proxy/cost-items/dtos/index.d.ts +1 -0
- package/lib/proxy/cost-items/dtos/models.d.ts +20 -0
- package/lib/proxy/cost-items/index.d.ts +4 -0
- package/lib/proxy/cost-parameter-categories/cost-parameter-category-parent-code.enum.d.ts +8 -0
- package/lib/proxy/cost-parameter-categories/dtos/index.d.ts +1 -0
- package/lib/proxy/cost-parameter-categories/dtos/models.d.ts +14 -0
- package/lib/proxy/cost-parameter-categories/index.d.ts +3 -0
- package/lib/proxy/cost-parameters/cost-parameter-status.enum.d.ts +6 -0
- package/lib/proxy/cost-parameters/dtos/index.d.ts +1 -0
- package/lib/proxy/cost-parameters/dtos/models.d.ts +44 -0
- package/lib/proxy/cost-parameters/index.d.ts +3 -0
- package/lib/proxy/currencies/currency.enum.d.ts +6 -0
- package/lib/proxy/currencies/index.d.ts +1 -0
- package/lib/proxy/exchange-rates/dtos/index.d.ts +1 -0
- package/lib/proxy/exchange-rates/dtos/models.d.ts +17 -0
- package/lib/proxy/exchange-rates/exchange-rate-source.enum.d.ts +5 -0
- package/lib/proxy/exchange-rates/index.d.ts +3 -0
- package/lib/proxy/index.d.ts +21 -0
- package/lib/proxy/items/dtos/index.d.ts +1 -0
- package/lib/proxy/items/dtos/models.d.ts +4 -0
- package/lib/proxy/items/index.d.ts +2 -0
- package/lib/proxy/packaging-materials/dtos/index.d.ts +1 -0
- package/lib/proxy/packaging-materials/dtos/models.d.ts +14 -0
- package/lib/proxy/packaging-materials/index.d.ts +2 -0
- package/lib/proxy/packaging-prices/dtos/index.d.ts +1 -0
- package/lib/proxy/packaging-prices/dtos/models.d.ts +54 -0
- package/lib/proxy/packaging-prices/index.d.ts +2 -0
- package/lib/proxy/packaging-types/dtos/index.d.ts +1 -0
- package/lib/proxy/packaging-types/dtos/models.d.ts +13 -0
- package/lib/proxy/packaging-types/index.d.ts +2 -0
- package/lib/proxy/pallet-definitions/dtos/index.d.ts +1 -0
- package/lib/proxy/pallet-definitions/dtos/models.d.ts +19 -0
- package/lib/proxy/pallet-definitions/index.d.ts +2 -0
- package/lib/proxy/price-parameter-types/dtos/index.d.ts +1 -0
- package/lib/proxy/price-parameter-types/dtos/models.d.ts +19 -0
- package/lib/proxy/price-parameter-types/index.d.ts +2 -0
- package/lib/proxy/sales-persons/dtos/index.d.ts +1 -0
- package/lib/proxy/sales-persons/dtos/models.d.ts +10 -0
- package/lib/proxy/sales-persons/index.d.ts +2 -0
- package/lib/proxy/settings/index.d.ts +1 -0
- package/lib/proxy/settings/models.d.ts +3 -0
- package/lib/utils/currency.utils.d.ts +6 -0
- package/lib/utils/date.utils.d.ts +9 -0
- package/lib/utils/number.utils.d.ts +1 -0
- package/package.json +41 -0
- package/public-api.d.ts +3 -0
- package/src/lib/proxy/README.md +17 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class HitCostCalculationRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitCostCalculationRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitCostCalculationRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitCostCalculationRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/cost-calculation.component";
|
|
3
|
+
import * as i2 from "./components/cost-calculation-inputs.component";
|
|
4
|
+
import * as i3 from "./components/cost-calculation-results.component";
|
|
5
|
+
import * as i4 from "./components/cost-calculation-result-sum.component";
|
|
6
|
+
import * as i5 from "@angular/common";
|
|
7
|
+
import * as i6 from "@angular/forms";
|
|
8
|
+
import * as i7 from "@abp/ng.core";
|
|
9
|
+
import * as i8 from "@abp/ng.theme.shared";
|
|
10
|
+
import * as i9 from "@abp/ng.components/page";
|
|
11
|
+
import * as i10 from "@volo/abp.commercial.ng.ui";
|
|
12
|
+
import * as i11 from "./hit-cost-calculation-routing.module";
|
|
13
|
+
import * as i12 from "devextreme-angular";
|
|
14
|
+
export declare class HitCostCalculationModule {
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitCostCalculationModule, never>;
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitCostCalculationModule, [typeof i1.CostCalculationComponent, typeof i2.CostCalculationInputsComponent, typeof i3.CostCalculationResultsComponent, typeof i4.CostCalculationResultSumComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i6.ReactiveFormsModule, typeof i7.CoreModule, typeof i8.ThemeSharedModule, typeof i9.PageModule, typeof i10.CommercialUiModule, typeof i11.HitCostCalculationRoutingModule, typeof i12.DxSelectBoxModule], never>;
|
|
17
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitCostCalculationModule>;
|
|
18
|
+
}
|
|
19
|
+
export declare function loadHitCostCalculationModuleAsChild(): Promise<typeof HitCostCalculationModule>;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { CostGroupService } from '@proxy/controllers';
|
|
4
|
+
import { CostGroupDto } from '@proxy/cost-groups/dtos';
|
|
5
|
+
import { CostItemDto } from '@proxy/cost-items/dtos';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class CostGroupFormComponent implements OnInit, OnChanges {
|
|
8
|
+
private readonly fb;
|
|
9
|
+
private readonly service;
|
|
10
|
+
visible: boolean;
|
|
11
|
+
mode: 'create' | 'edit';
|
|
12
|
+
current: CostGroupDto | null;
|
|
13
|
+
allCostItems: CostItemDto[];
|
|
14
|
+
visibleChange: EventEmitter<boolean>;
|
|
15
|
+
saved: EventEmitter<void>;
|
|
16
|
+
readonly groupRoleOptions: {
|
|
17
|
+
value: import("../../../proxy/cost-groups").CostGroupRole;
|
|
18
|
+
label: string;
|
|
19
|
+
}[];
|
|
20
|
+
form: FormGroup;
|
|
21
|
+
saving: boolean;
|
|
22
|
+
constructor(fb: FormBuilder, service: CostGroupService);
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
25
|
+
private buildForm;
|
|
26
|
+
private resetForm;
|
|
27
|
+
isItemSelected(code: string): boolean;
|
|
28
|
+
toggleItem(code: string): void;
|
|
29
|
+
close(): void;
|
|
30
|
+
save(): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CostGroupFormComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CostGroupFormComponent, "lib-cost-group-form", never, { "visible": "visible"; "mode": "mode"; "current": "current"; "allCostItems": "allCostItems"; }, { "visibleChange": "visibleChange"; "saved": "saved"; }, never, never, false>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ConfirmationService, ToasterService } from '@abp/ng.theme.shared';
|
|
3
|
+
import { CostGroupService } from '@proxy/controllers';
|
|
4
|
+
import { CostGroupDto } from '@proxy/cost-groups/dtos';
|
|
5
|
+
import { CostGroupRole } from '@proxy/cost-groups/cost-group-role.enum';
|
|
6
|
+
import { CostItemService } from '@proxy/controllers';
|
|
7
|
+
import { CostItemDto } from '@proxy/cost-items/dtos';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class CostGroupsComponent implements OnInit {
|
|
10
|
+
private readonly service;
|
|
11
|
+
private readonly costItemService;
|
|
12
|
+
private readonly toaster;
|
|
13
|
+
private readonly confirmation;
|
|
14
|
+
items: CostGroupDto[];
|
|
15
|
+
costItems: CostItemDto[];
|
|
16
|
+
selected: CostGroupDto | null;
|
|
17
|
+
formVisible: boolean;
|
|
18
|
+
formMode: 'create' | 'edit';
|
|
19
|
+
constructor(service: CostGroupService, costItemService: CostItemService, toaster: ToasterService, confirmation: ConfirmationService);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
loadList(): void;
|
|
22
|
+
getItemLabel(code: string): string;
|
|
23
|
+
getItemsLabels(codes: string[] | undefined): string[];
|
|
24
|
+
roleLabel(role: CostGroupRole | undefined): string;
|
|
25
|
+
openCreate(): void;
|
|
26
|
+
openEdit(row: CostGroupDto): void;
|
|
27
|
+
onSaved(): void;
|
|
28
|
+
remove(row: CostGroupDto): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CostGroupsComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CostGroupsComponent, "lib-cost-groups", never, {}, {}, never, never, false>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { CostGroupRole } from '@proxy/cost-groups/cost-group-role.enum';
|
|
2
|
+
export declare const costGroupRoleLabels: Record<CostGroupRole, string>;
|
|
3
|
+
export declare const costGroupRoleTotalLabels: Record<CostGroupRole, string>;
|
|
4
|
+
export declare const costGroupRoleOptions: {
|
|
5
|
+
value: CostGroupRole;
|
|
6
|
+
label: string;
|
|
7
|
+
}[];
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class HitCostGroupsRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitCostGroupsRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitCostGroupsRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitCostGroupsRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/cost-groups.component";
|
|
3
|
+
import * as i2 from "./components/cost-group-form.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
import * as i5 from "@abp/ng.core";
|
|
7
|
+
import * as i6 from "@abp/ng.theme.shared";
|
|
8
|
+
import * as i7 from "@abp/ng.components/page";
|
|
9
|
+
import * as i8 from "@volo/abp.commercial.ng.ui";
|
|
10
|
+
import * as i9 from "@ng-bootstrap/ng-bootstrap";
|
|
11
|
+
import * as i10 from "./hit-cost-groups-routing.module";
|
|
12
|
+
import * as i11 from "devextreme-angular";
|
|
13
|
+
export declare class HitCostGroupsModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitCostGroupsModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitCostGroupsModule, [typeof i1.CostGroupsComponent, typeof i2.CostGroupFormComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.CoreModule, typeof i6.ThemeSharedModule, typeof i7.PageModule, typeof i8.CommercialUiModule, typeof i9.NgbDropdownModule, typeof i10.HitCostGroupsRoutingModule, typeof i11.DxDataGridModule], never>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitCostGroupsModule>;
|
|
17
|
+
}
|
|
18
|
+
export declare function loadHitCostGroupsModuleAsChild(): Promise<typeof HitCostGroupsModule>;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { CostItemService } from '@proxy/controllers';
|
|
4
|
+
import { CostItemDto } from '@proxy/cost-items/dtos';
|
|
5
|
+
import { CostItemCalculationType } from '@proxy/cost-items/cost-item-calculation-type.enum';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class CostItemFormComponent implements OnInit, OnChanges {
|
|
8
|
+
private readonly fb;
|
|
9
|
+
private readonly service;
|
|
10
|
+
visible: boolean;
|
|
11
|
+
mode: 'create' | 'edit';
|
|
12
|
+
current: CostItemDto | null;
|
|
13
|
+
visibleChange: EventEmitter<boolean>;
|
|
14
|
+
saved: EventEmitter<void>;
|
|
15
|
+
form: FormGroup;
|
|
16
|
+
saving: boolean;
|
|
17
|
+
readonly calculationTypeOptions: {
|
|
18
|
+
value: CostItemCalculationType;
|
|
19
|
+
label: string;
|
|
20
|
+
}[];
|
|
21
|
+
constructor(fb: FormBuilder, service: CostItemService);
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
24
|
+
private buildForm;
|
|
25
|
+
get title(): string;
|
|
26
|
+
onVisibleChange(value: boolean): void;
|
|
27
|
+
save(): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CostItemFormComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CostItemFormComponent, "lib-cost-item-form", never, { "visible": "visible"; "mode": "mode"; "current": "current"; }, { "visibleChange": "visibleChange"; "saved": "saved"; }, never, never, false>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ConfirmationService, ToasterService } from '@abp/ng.theme.shared';
|
|
3
|
+
import { CostItemService } from '@proxy/controllers';
|
|
4
|
+
import { CostItemDto } from '@proxy/cost-items/dtos';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CostItemsComponent implements OnInit {
|
|
7
|
+
private readonly service;
|
|
8
|
+
private readonly toaster;
|
|
9
|
+
private readonly confirmation;
|
|
10
|
+
items: CostItemDto[];
|
|
11
|
+
selected: CostItemDto | null;
|
|
12
|
+
formVisible: boolean;
|
|
13
|
+
formMode: 'create' | 'edit';
|
|
14
|
+
getCalculationTypeLabel(value: any): string;
|
|
15
|
+
constructor(service: CostItemService, toaster: ToasterService, confirmation: ConfirmationService);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
loadList(): void;
|
|
18
|
+
openCreate(): void;
|
|
19
|
+
openEdit(row: CostItemDto): void;
|
|
20
|
+
onSaved(): void;
|
|
21
|
+
remove(row: CostItemDto): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CostItemsComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CostItemsComponent, "lib-cost-items", never, {}, {}, never, never, false>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class HitCostItemsRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitCostItemsRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitCostItemsRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitCostItemsRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/cost-items.component";
|
|
3
|
+
import * as i2 from "./components/cost-item-form.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
import * as i5 from "@abp/ng.core";
|
|
7
|
+
import * as i6 from "@abp/ng.theme.shared";
|
|
8
|
+
import * as i7 from "@abp/ng.components/page";
|
|
9
|
+
import * as i8 from "@volo/abp.commercial.ng.ui";
|
|
10
|
+
import * as i9 from "@ng-bootstrap/ng-bootstrap";
|
|
11
|
+
import * as i10 from "./hit-cost-items-routing.module";
|
|
12
|
+
import * as i11 from "devextreme-angular";
|
|
13
|
+
export declare class HitCostItemsModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitCostItemsModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitCostItemsModule, [typeof i1.CostItemsComponent, typeof i2.CostItemFormComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.CoreModule, typeof i6.ThemeSharedModule, typeof i7.PageModule, typeof i8.CommercialUiModule, typeof i9.NgbDropdownModule, typeof i10.HitCostItemsRoutingModule, typeof i11.DxDataGridModule], never>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitCostItemsModule>;
|
|
17
|
+
}
|
|
18
|
+
export declare function loadHitCostItemsModuleAsChild(): Promise<typeof HitCostItemsModule>;
|
package/lib/features/cost-parameter-categories/components/cost-parameter-categories.component.d.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ConfirmationService, ToasterService } from '@abp/ng.theme.shared';
|
|
3
|
+
import { CostParameterCategoryService } from '@proxy/controllers';
|
|
4
|
+
import { CostParameterCategoryDto } from '@proxy/cost-parameter-categories/dtos';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CostParameterCategoriesComponent implements OnInit {
|
|
7
|
+
private readonly service;
|
|
8
|
+
private readonly toaster;
|
|
9
|
+
private readonly confirmation;
|
|
10
|
+
items: CostParameterCategoryDto[];
|
|
11
|
+
selected: CostParameterCategoryDto | null;
|
|
12
|
+
formVisible: boolean;
|
|
13
|
+
formMode: 'create' | 'edit';
|
|
14
|
+
constructor(service: CostParameterCategoryService, toaster: ToasterService, confirmation: ConfirmationService);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
getParentCodeLabel(value: any): string;
|
|
17
|
+
loadList(): void;
|
|
18
|
+
openCreate(): void;
|
|
19
|
+
openEdit(row: CostParameterCategoryDto): void;
|
|
20
|
+
onSaved(): void;
|
|
21
|
+
remove(row: CostParameterCategoryDto): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CostParameterCategoriesComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CostParameterCategoriesComponent, "lib-cost-parameter-categories", never, {}, {}, never, never, false>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { CostParameterCategoryService } from '@proxy/controllers';
|
|
4
|
+
import { CostParameterCategoryDto } from '@proxy/cost-parameter-categories/dtos';
|
|
5
|
+
import { CostParameterCategoryParentCode } from '@proxy/cost-parameter-categories';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class CostParameterCategoryFormComponent implements OnInit, OnChanges {
|
|
8
|
+
private readonly fb;
|
|
9
|
+
private readonly service;
|
|
10
|
+
visible: boolean;
|
|
11
|
+
mode: 'create' | 'edit';
|
|
12
|
+
current: CostParameterCategoryDto | null;
|
|
13
|
+
visibleChange: EventEmitter<boolean>;
|
|
14
|
+
saved: EventEmitter<void>;
|
|
15
|
+
form: FormGroup;
|
|
16
|
+
readonly parentCodeOptions: {
|
|
17
|
+
value: CostParameterCategoryParentCode;
|
|
18
|
+
label: string;
|
|
19
|
+
}[];
|
|
20
|
+
constructor(fb: FormBuilder, service: CostParameterCategoryService);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
23
|
+
private buildForm;
|
|
24
|
+
private resetForm;
|
|
25
|
+
close(): void;
|
|
26
|
+
save(): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CostParameterCategoryFormComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CostParameterCategoryFormComponent, "lib-cost-parameter-category-form", never, { "visible": "visible"; "mode": "mode"; "current": "current"; }, { "visibleChange": "visibleChange"; "saved": "saved"; }, never, never, false>;
|
|
29
|
+
}
|
package/lib/features/cost-parameter-categories/hit-cost-parameter-categories-routing.module.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class HitCostParameterCategoriesRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitCostParameterCategoriesRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitCostParameterCategoriesRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitCostParameterCategoriesRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/cost-parameter-categories.component";
|
|
3
|
+
import * as i2 from "./components/cost-parameter-category-form.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
import * as i5 from "@abp/ng.core";
|
|
7
|
+
import * as i6 from "@abp/ng.theme.shared";
|
|
8
|
+
import * as i7 from "@abp/ng.components/page";
|
|
9
|
+
import * as i8 from "@volo/abp.commercial.ng.ui";
|
|
10
|
+
import * as i9 from "@ng-bootstrap/ng-bootstrap";
|
|
11
|
+
import * as i10 from "./hit-cost-parameter-categories-routing.module";
|
|
12
|
+
import * as i11 from "devextreme-angular";
|
|
13
|
+
export declare class HitCostParameterCategoriesModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitCostParameterCategoriesModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitCostParameterCategoriesModule, [typeof i1.CostParameterCategoriesComponent, typeof i2.CostParameterCategoryFormComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.CoreModule, typeof i6.ThemeSharedModule, typeof i7.PageModule, typeof i8.CommercialUiModule, typeof i9.NgbDropdownModule, typeof i10.HitCostParameterCategoriesRoutingModule, typeof i11.DxDataGridModule], never>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitCostParameterCategoriesModule>;
|
|
17
|
+
}
|
|
18
|
+
export declare function loadHitCostParameterCategoriesModuleAsChild(): Promise<typeof HitCostParameterCategoriesModule>;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { FormArray, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { CostItemService, CostParameterService } from '@proxy/controllers';
|
|
4
|
+
import { CostItemDto } from '@proxy/cost-items/dtos';
|
|
5
|
+
import { CostParameterCategoryLookupDto, CostParameterDto } from '@proxy/cost-parameters/dtos';
|
|
6
|
+
import { CostParameterStatus } from '@proxy/cost-parameters/cost-parameter-status.enum';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class CostParameterFormComponent implements OnInit {
|
|
9
|
+
private readonly fb;
|
|
10
|
+
private readonly service;
|
|
11
|
+
private readonly costItemService;
|
|
12
|
+
visible: boolean;
|
|
13
|
+
mode: 'create' | 'edit';
|
|
14
|
+
current: CostParameterDto | null;
|
|
15
|
+
productGroupOptions: CostParameterCategoryLookupDto[];
|
|
16
|
+
regionOptions: CostParameterCategoryLookupDto[];
|
|
17
|
+
visibleChange: EventEmitter<boolean>;
|
|
18
|
+
saved: EventEmitter<void>;
|
|
19
|
+
form: FormGroup;
|
|
20
|
+
saving: boolean;
|
|
21
|
+
costItems: CostItemDto[];
|
|
22
|
+
readonly statusOptions: {
|
|
23
|
+
value: CostParameterStatus;
|
|
24
|
+
label: string;
|
|
25
|
+
}[];
|
|
26
|
+
readonly currencyOptions: import("../../../utils/currency.utils").CurrencyOption[];
|
|
27
|
+
readonly customLabel: string;
|
|
28
|
+
constructor(fb: FormBuilder, service: CostParameterService, costItemService: CostItemService);
|
|
29
|
+
ngOnInit(): void;
|
|
30
|
+
get itemsArray(): FormArray;
|
|
31
|
+
get title(): string;
|
|
32
|
+
isRate(costItem: CostItemDto): boolean;
|
|
33
|
+
isCustom(costItem: CostItemDto): boolean;
|
|
34
|
+
onVisibleChange(value: boolean): void;
|
|
35
|
+
save(): void;
|
|
36
|
+
private loadCostItems;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CostParameterFormComponent, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CostParameterFormComponent, "lib-cost-parameter-form", never, { "visible": "visible"; "mode": "mode"; "current": "current"; "productGroupOptions": "productGroupOptions"; "regionOptions": "regionOptions"; }, { "visibleChange": "visibleChange"; "saved": "saved"; }, never, never, false>;
|
|
39
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ConfirmationService, ToasterService } from '@abp/ng.theme.shared';
|
|
3
|
+
import { CostParameterService } from '@proxy/controllers';
|
|
4
|
+
import { CostParameterCategoryLookupDto, CostParameterDto } from '@proxy/cost-parameters/dtos';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CostParametersComponent implements OnInit {
|
|
7
|
+
private readonly service;
|
|
8
|
+
private readonly toaster;
|
|
9
|
+
private readonly confirmation;
|
|
10
|
+
items: CostParameterDto[];
|
|
11
|
+
productGroupOptions: CostParameterCategoryLookupDto[];
|
|
12
|
+
regionOptions: CostParameterCategoryLookupDto[];
|
|
13
|
+
selected: CostParameterDto | null;
|
|
14
|
+
formVisible: boolean;
|
|
15
|
+
formMode: 'create' | 'edit';
|
|
16
|
+
constructor(service: CostParameterService, toaster: ToasterService, confirmation: ConfirmationService);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
getStatusLabel(value: any): string;
|
|
19
|
+
getProductGroupName(code: string | undefined | null): string;
|
|
20
|
+
getRegionName(code: string | undefined | null): string;
|
|
21
|
+
private resolveName;
|
|
22
|
+
loadCodeLookups(): void;
|
|
23
|
+
loadList(): void;
|
|
24
|
+
openCreate(): void;
|
|
25
|
+
openEdit(row: CostParameterDto): void;
|
|
26
|
+
onSaved(): void;
|
|
27
|
+
remove(row: CostParameterDto): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CostParametersComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CostParametersComponent, "lib-cost-parameters", never, {}, {}, never, never, false>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class HitCostParametersRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitCostParametersRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitCostParametersRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitCostParametersRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/cost-parameters.component";
|
|
3
|
+
import * as i2 from "./components/cost-parameter-form.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
import * as i5 from "@abp/ng.core";
|
|
7
|
+
import * as i6 from "@abp/ng.theme.shared";
|
|
8
|
+
import * as i7 from "@abp/ng.components/page";
|
|
9
|
+
import * as i8 from "@volo/abp.commercial.ng.ui";
|
|
10
|
+
import * as i9 from "@ng-bootstrap/ng-bootstrap";
|
|
11
|
+
import * as i10 from "./hit-cost-parameters-routing.module";
|
|
12
|
+
import * as i11 from "devextreme-angular";
|
|
13
|
+
export declare class HitCostParametersModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitCostParametersModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitCostParametersModule, [typeof i1.CostParametersComponent, typeof i2.CostParameterFormComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.CoreModule, typeof i6.ThemeSharedModule, typeof i7.PageModule, typeof i8.CommercialUiModule, typeof i9.NgbDropdownModule, typeof i9.NgbNavModule, typeof i10.HitCostParametersRoutingModule, typeof i11.DxDataGridModule], never>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitCostParametersModule>;
|
|
17
|
+
}
|
|
18
|
+
export declare function loadHitCostParametersModuleAsChild(): Promise<typeof HitCostParametersModule>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { CentralBankExchangeRateDto } from '@proxy/exchange-rates/dtos';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CentralBankRatesComponent {
|
|
4
|
+
cbExchangeRate: CentralBankExchangeRateDto | undefined;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CentralBankRatesComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CentralBankRatesComponent, "lib-central-bank-rates", never, { "cbExchangeRate": "cbExchangeRate"; }, {}, never, never, false>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ExchangeRateService } from '@proxy/controllers';
|
|
3
|
+
import { ExchangeRateDto } from '@proxy/exchange-rates/dtos';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ExchangeRatesComponent implements OnInit {
|
|
6
|
+
private readonly service;
|
|
7
|
+
exchangeRate: ExchangeRateDto | null;
|
|
8
|
+
constructor(service: ExchangeRateService);
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
loadExchangeRate(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExchangeRatesComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExchangeRatesComponent, "lib-exchange-rates", never, {}, {}, never, never, false>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { ToasterService } from '@abp/ng.theme.shared';
|
|
4
|
+
import { ExchangeRateSource } from '@proxy/exchange-rates';
|
|
5
|
+
import { ExchangeRateDto } from '@proxy/exchange-rates/dtos';
|
|
6
|
+
import { ExchangeRateService } from '@proxy/controllers';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class FixedRatesFormComponent implements OnInit {
|
|
9
|
+
private readonly fb;
|
|
10
|
+
private readonly service;
|
|
11
|
+
private readonly toaster;
|
|
12
|
+
readonly ExchangeRateSource: typeof ExchangeRateSource;
|
|
13
|
+
_exchangeRate: ExchangeRateDto | null;
|
|
14
|
+
set exchangeRate(val: any);
|
|
15
|
+
get exchangeRate(): any;
|
|
16
|
+
saved: EventEmitter<void>;
|
|
17
|
+
form: FormGroup;
|
|
18
|
+
saving: boolean;
|
|
19
|
+
constructor(fb: FormBuilder, service: ExchangeRateService, toaster: ToasterService);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
get isFixed(): boolean;
|
|
22
|
+
private applySourceRates;
|
|
23
|
+
save(): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FixedRatesFormComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FixedRatesFormComponent, "lib-fixed-rates-form", never, { "exchangeRate": "exchangeRate"; }, { "saved": "saved"; }, never, never, false>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class HitExchangeRatesRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitExchangeRatesRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitExchangeRatesRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitExchangeRatesRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/exchange-rates.component";
|
|
3
|
+
import * as i2 from "./components/central-bank-rates.component";
|
|
4
|
+
import * as i3 from "./components/fixed-rates-form.component";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@angular/forms";
|
|
7
|
+
import * as i6 from "@abp/ng.core";
|
|
8
|
+
import * as i7 from "@abp/ng.theme.shared";
|
|
9
|
+
import * as i8 from "@abp/ng.components/page";
|
|
10
|
+
import * as i9 from "@volo/abp.commercial.ng.ui";
|
|
11
|
+
import * as i10 from "@ng-bootstrap/ng-bootstrap";
|
|
12
|
+
import * as i11 from "devextreme-angular";
|
|
13
|
+
import * as i12 from "./hit-exchange-rates-routing.module";
|
|
14
|
+
export declare class HitExchangeRatesModule {
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitExchangeRatesModule, never>;
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitExchangeRatesModule, [typeof i1.ExchangeRatesComponent, typeof i2.CentralBankRatesComponent, typeof i3.FixedRatesFormComponent], [typeof i4.CommonModule, typeof i5.FormsModule, typeof i6.CoreModule, typeof i7.ThemeSharedModule, typeof i8.PageModule, typeof i9.CommercialUiModule, typeof i10.NgbDropdownModule, typeof i11.DxDataGridModule, typeof i11.DxTextBoxModule, typeof i11.DxButtonModule, typeof i11.DxCheckBoxModule, typeof i12.HitExchangeRatesRoutingModule], never>;
|
|
17
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitExchangeRatesModule>;
|
|
18
|
+
}
|
|
19
|
+
export declare function loadHitExchangeRatesModuleAsChild(): Promise<typeof HitExchangeRatesModule>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from './exchange-rates/hit-exchange-rates.module';
|
|
2
|
+
export * from './exchange-rates/components/exchange-rates.component';
|
|
3
|
+
export * from './exchange-rates/components/central-bank-rates.component';
|
|
4
|
+
export * from './cost-items/hit-cost-items.module';
|
|
5
|
+
export * from './cost-items/components/cost-items.component';
|
|
6
|
+
export * from './cost-items/components/cost-item-form.component';
|
|
7
|
+
export * from './cost-parameters/hit-cost-parameters.module';
|
|
8
|
+
export * from './cost-parameters/components/cost-parameters.component';
|
|
9
|
+
export * from './cost-parameters/components/cost-parameter-form.component';
|
|
10
|
+
export * from './settings/components/cost-settings.component';
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { PackagingMaterialService, PackagingTypeService } from '@proxy/controllers';
|
|
4
|
+
import { PackagingMaterialDto } from '@proxy/packaging-materials/dtos';
|
|
5
|
+
import { PackagingTypeDto } from '@proxy/packaging-types/dtos';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class PackagingMaterialFormComponent implements OnInit, OnChanges {
|
|
8
|
+
private readonly fb;
|
|
9
|
+
private readonly service;
|
|
10
|
+
private readonly packagingTypeService;
|
|
11
|
+
visible: boolean;
|
|
12
|
+
mode: 'create' | 'edit';
|
|
13
|
+
current: PackagingMaterialDto | null;
|
|
14
|
+
visibleChange: EventEmitter<boolean>;
|
|
15
|
+
saved: EventEmitter<void>;
|
|
16
|
+
form: FormGroup;
|
|
17
|
+
saving: boolean;
|
|
18
|
+
packagingTypes: PackagingTypeDto[];
|
|
19
|
+
constructor(fb: FormBuilder, service: PackagingMaterialService, packagingTypeService: PackagingTypeService);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
22
|
+
private buildForm;
|
|
23
|
+
get title(): string;
|
|
24
|
+
onVisibleChange(value: boolean): void;
|
|
25
|
+
private loadPackagingTypes;
|
|
26
|
+
save(): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PackagingMaterialFormComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PackagingMaterialFormComponent, "lib-packaging-material-form", never, { "visible": "visible"; "mode": "mode"; "current": "current"; }, { "visibleChange": "visibleChange"; "saved": "saved"; }, never, never, false>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ConfirmationService, ToasterService } from '@abp/ng.theme.shared';
|
|
3
|
+
import { PackagingMaterialService } from '@proxy/controllers';
|
|
4
|
+
import { PackagingMaterialDto } from '@proxy/packaging-materials/dtos';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class PackagingMaterialsComponent implements OnInit {
|
|
7
|
+
private readonly service;
|
|
8
|
+
private readonly toaster;
|
|
9
|
+
private readonly confirmation;
|
|
10
|
+
items: PackagingMaterialDto[];
|
|
11
|
+
selected: PackagingMaterialDto | null;
|
|
12
|
+
formVisible: boolean;
|
|
13
|
+
formMode: 'create' | 'edit';
|
|
14
|
+
constructor(service: PackagingMaterialService, toaster: ToasterService, confirmation: ConfirmationService);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
loadList(): void;
|
|
17
|
+
openCreate(): void;
|
|
18
|
+
openEdit(row: PackagingMaterialDto): void;
|
|
19
|
+
onSaved(): void;
|
|
20
|
+
remove(row: PackagingMaterialDto): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PackagingMaterialsComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PackagingMaterialsComponent, "lib-packaging-materials", never, {}, {}, never, never, false>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class HitPackagingMaterialsRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitPackagingMaterialsRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitPackagingMaterialsRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitPackagingMaterialsRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/packaging-materials.component";
|
|
3
|
+
import * as i2 from "./components/packaging-material-form.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
import * as i5 from "@abp/ng.core";
|
|
7
|
+
import * as i6 from "@abp/ng.theme.shared";
|
|
8
|
+
import * as i7 from "@abp/ng.components/page";
|
|
9
|
+
import * as i8 from "@volo/abp.commercial.ng.ui";
|
|
10
|
+
import * as i9 from "@ng-bootstrap/ng-bootstrap";
|
|
11
|
+
import * as i10 from "./hit-packaging-materials-routing.module";
|
|
12
|
+
import * as i11 from "devextreme-angular";
|
|
13
|
+
export declare class HitPackagingMaterialsModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitPackagingMaterialsModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitPackagingMaterialsModule, [typeof i1.PackagingMaterialsComponent, typeof i2.PackagingMaterialFormComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.CoreModule, typeof i6.ThemeSharedModule, typeof i7.PageModule, typeof i8.CommercialUiModule, typeof i9.NgbDropdownModule, typeof i10.HitPackagingMaterialsRoutingModule, typeof i11.DxDataGridModule], never>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitPackagingMaterialsModule>;
|
|
17
|
+
}
|
|
18
|
+
export declare function loadHitPackagingMaterialsModuleAsChild(): Promise<typeof HitPackagingMaterialsModule>;
|