@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,44 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { ExchangeRateService, PackagingPriceService } from '@proxy/controllers';
|
|
4
|
+
import { PackagingPriceDto } from '@proxy/packaging-prices/dtos';
|
|
5
|
+
import { PackagingTypeDto } from '@proxy/packaging-types/dtos';
|
|
6
|
+
import { PackagingPriceExcelService } from '../packaging-price-excel.service';
|
|
7
|
+
import { LineRow, PackagingPriceLinesBuilder } from '../packaging-price-lines.builder';
|
|
8
|
+
import { LocalizationService } from '@abp/ng.core';
|
|
9
|
+
import { ToasterService } from '@abp/ng.theme.shared';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class PackagingPriceFormComponent implements OnInit {
|
|
12
|
+
private readonly fb;
|
|
13
|
+
private readonly service;
|
|
14
|
+
private readonly exchangeRateService;
|
|
15
|
+
private readonly excelService;
|
|
16
|
+
private readonly linesBuilder;
|
|
17
|
+
private readonly localization;
|
|
18
|
+
private readonly toaster;
|
|
19
|
+
visible: boolean;
|
|
20
|
+
mode: 'create' | 'edit';
|
|
21
|
+
current: PackagingPriceDto | null;
|
|
22
|
+
typeOptions: PackagingTypeDto[];
|
|
23
|
+
visibleChange: EventEmitter<boolean>;
|
|
24
|
+
saved: EventEmitter<void>;
|
|
25
|
+
form: FormGroup;
|
|
26
|
+
saving: boolean;
|
|
27
|
+
exporting: boolean;
|
|
28
|
+
importing: boolean;
|
|
29
|
+
lineRows: LineRow[];
|
|
30
|
+
readonly currencyOptions: import("../../../utils/currency.utils").CurrencyOption[];
|
|
31
|
+
constructor(fb: FormBuilder, service: PackagingPriceService, exchangeRateService: ExchangeRateService, excelService: PackagingPriceExcelService, linesBuilder: PackagingPriceLinesBuilder, localization: LocalizationService, toaster: ToasterService);
|
|
32
|
+
ngOnInit(): void;
|
|
33
|
+
get title(): string;
|
|
34
|
+
private buildForm;
|
|
35
|
+
private rates;
|
|
36
|
+
private prefillRates;
|
|
37
|
+
private loadLines;
|
|
38
|
+
onVisibleChange(value: boolean): void;
|
|
39
|
+
save(): void;
|
|
40
|
+
exportToExcel(): void;
|
|
41
|
+
importFromExcel(file: File): void;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PackagingPriceFormComponent, never>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PackagingPriceFormComponent, "lib-packaging-price-form", never, { "visible": "visible"; "mode": "mode"; "current": "current"; "typeOptions": "typeOptions"; }, { "visibleChange": "visibleChange"; "saved": "saved"; }, never, never, false>;
|
|
44
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
3
|
+
import { LocalizationService } from '@abp/ng.core';
|
|
4
|
+
import { LineRow } from '../packaging-price-lines.builder';
|
|
5
|
+
import { CurrencyOption } from '../../../utils/currency.utils';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class PackagingPriceLinesComponent implements OnChanges {
|
|
8
|
+
private readonly localization;
|
|
9
|
+
rows: LineRow[];
|
|
10
|
+
currencyOptions: CurrencyOption[];
|
|
11
|
+
exporting: boolean;
|
|
12
|
+
importing: boolean;
|
|
13
|
+
selectedTypeCode: string | null;
|
|
14
|
+
exportClick: EventEmitter<void>;
|
|
15
|
+
importFile: EventEmitter<File>;
|
|
16
|
+
private fileInput?;
|
|
17
|
+
private grid?;
|
|
18
|
+
constructor(localization: LocalizationService);
|
|
19
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
20
|
+
get canUseExcel(): boolean;
|
|
21
|
+
onToolbarPreparing(e: any): void;
|
|
22
|
+
onFileSelected(event: Event): void;
|
|
23
|
+
control(group: FormGroup, name: string): FormControl;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PackagingPriceLinesComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PackagingPriceLinesComponent, "lib-packaging-price-lines", never, { "rows": "rows"; "currencyOptions": "currencyOptions"; "exporting": "exporting"; "importing": "importing"; "selectedTypeCode": "selectedTypeCode"; }, { "exportClick": "exportClick"; "importFile": "importFile"; }, never, never, false>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ConfirmationService, ToasterService } from '@abp/ng.theme.shared';
|
|
3
|
+
import { PackagingPriceService, PackagingTypeService } from '@proxy/controllers';
|
|
4
|
+
import { PackagingPriceDto } from '@proxy/packaging-prices/dtos';
|
|
5
|
+
import { PackagingTypeDto } from '@proxy/packaging-types/dtos';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class PackagingPricesComponent implements OnInit {
|
|
8
|
+
private readonly service;
|
|
9
|
+
private readonly packagingTypeService;
|
|
10
|
+
private readonly toaster;
|
|
11
|
+
private readonly confirmation;
|
|
12
|
+
items: PackagingPriceDto[];
|
|
13
|
+
typeOptions: PackagingTypeDto[];
|
|
14
|
+
selected: PackagingPriceDto | null;
|
|
15
|
+
formVisible: boolean;
|
|
16
|
+
formMode: 'create' | 'edit';
|
|
17
|
+
constructor(service: PackagingPriceService, packagingTypeService: PackagingTypeService, toaster: ToasterService, confirmation: ConfirmationService);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
loadList(): void;
|
|
20
|
+
openCreate(): void;
|
|
21
|
+
openEdit(row: PackagingPriceDto): void;
|
|
22
|
+
onSaved(): void;
|
|
23
|
+
updateSapItemPrices(row: PackagingPriceDto): void;
|
|
24
|
+
remove(row: PackagingPriceDto): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PackagingPricesComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PackagingPricesComponent, "lib-packaging-prices", never, {}, {}, never, never, false>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class HitPackagingPricesRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitPackagingPricesRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitPackagingPricesRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitPackagingPricesRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/packaging-prices.component";
|
|
3
|
+
import * as i2 from "./components/packaging-price-form.component";
|
|
4
|
+
import * as i3 from "./components/packaging-price-lines.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 "./hit-packaging-prices-routing.module";
|
|
13
|
+
import * as i12 from "devextreme-angular";
|
|
14
|
+
export declare class HitPackagingPricesModule {
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitPackagingPricesModule, never>;
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitPackagingPricesModule, [typeof i1.PackagingPricesComponent, typeof i2.PackagingPriceFormComponent, typeof i3.PackagingPriceLinesComponent], [typeof i4.CommonModule, typeof i5.FormsModule, typeof i5.ReactiveFormsModule, typeof i6.CoreModule, typeof i7.ThemeSharedModule, typeof i8.PageModule, typeof i9.CommercialUiModule, typeof i10.NgbDropdownModule, typeof i10.NgbNavModule, typeof i11.HitPackagingPricesRoutingModule, typeof i12.DxDataGridModule, typeof i12.DxDateBoxModule], never>;
|
|
17
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitPackagingPricesModule>;
|
|
18
|
+
}
|
|
19
|
+
export declare function loadHitPackagingPricesModuleAsChild(): Promise<typeof HitPackagingPricesModule>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Currency } from '@proxy/currencies/currency.enum';
|
|
2
|
+
export interface PackagingPriceConversion {
|
|
3
|
+
tryPrice: number;
|
|
4
|
+
usdPrice: number;
|
|
5
|
+
eurPrice: number;
|
|
6
|
+
}
|
|
7
|
+
/** Pure currency conversion for a packaging price line; no Angular-forms dependency. */
|
|
8
|
+
export declare function computePackagingPriceConversion(price: number, currency: Currency, usdRate: number, eurRate: number): PackagingPriceConversion;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { Rest, RestService } from '@abp/ng.core';
|
|
3
|
+
import { PackagingPriceService } from '@proxy/controllers';
|
|
4
|
+
import { PackagingPriceLineInputDto } from '@proxy/packaging-prices/dtos';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class PackagingPriceExcelService {
|
|
7
|
+
private readonly service;
|
|
8
|
+
private readonly restService;
|
|
9
|
+
private readonly apiName;
|
|
10
|
+
constructor(service: PackagingPriceService, restService: RestService);
|
|
11
|
+
exportLines(docEntry: number | undefined, materialTypeCode: string | undefined): Observable<Blob>;
|
|
12
|
+
importLines(file: File, config?: Partial<Rest.Config>): Observable<PackagingPriceLineInputDto[]>;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PackagingPriceExcelService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PackagingPriceExcelService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
2
|
+
import { PackagingPriceCreateDto, PackagingPriceDto } from '@proxy/packaging-prices/dtos';
|
|
3
|
+
import { LineRow } from './packaging-price-lines.builder';
|
|
4
|
+
export declare function createPackagingPriceForm(fb: FormBuilder, current: PackagingPriceDto | null, mode: 'create' | 'edit'): FormGroup;
|
|
5
|
+
export declare function toPackagingPriceInput(form: FormGroup, lineRows: LineRow[]): PackagingPriceCreateDto;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
2
|
+
import { PackagingPriceLineDto } from '@proxy/packaging-prices/dtos';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export interface LineRow {
|
|
5
|
+
group: FormGroup;
|
|
6
|
+
materialCode: string;
|
|
7
|
+
materialName: string;
|
|
8
|
+
}
|
|
9
|
+
export interface RateSnapshot {
|
|
10
|
+
usdRate: number;
|
|
11
|
+
eurRate: number;
|
|
12
|
+
}
|
|
13
|
+
export declare class PackagingPriceLinesBuilder {
|
|
14
|
+
private readonly fb;
|
|
15
|
+
constructor(fb: FormBuilder);
|
|
16
|
+
build(line: PackagingPriceLineDto, getRates: () => RateSnapshot): LineRow;
|
|
17
|
+
recompute(rows: LineRow[], rates: RateSnapshot): void;
|
|
18
|
+
private compute;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PackagingPriceLinesBuilder, never>;
|
|
20
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PackagingPriceLinesBuilder>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { PackagingTypeService } from '@proxy/controllers';
|
|
4
|
+
import { PackagingTypeDto } from '@proxy/packaging-types/dtos';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class PackagingTypeFormComponent implements OnInit, OnChanges {
|
|
7
|
+
private readonly fb;
|
|
8
|
+
private readonly service;
|
|
9
|
+
visible: boolean;
|
|
10
|
+
mode: 'create' | 'edit';
|
|
11
|
+
current: PackagingTypeDto | null;
|
|
12
|
+
visibleChange: EventEmitter<boolean>;
|
|
13
|
+
saved: EventEmitter<void>;
|
|
14
|
+
form: FormGroup;
|
|
15
|
+
saving: boolean;
|
|
16
|
+
constructor(fb: FormBuilder, service: PackagingTypeService);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
19
|
+
private buildForm;
|
|
20
|
+
get title(): string;
|
|
21
|
+
onVisibleChange(value: boolean): void;
|
|
22
|
+
save(): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PackagingTypeFormComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PackagingTypeFormComponent, "lib-packaging-type-form", never, { "visible": "visible"; "mode": "mode"; "current": "current"; }, { "visibleChange": "visibleChange"; "saved": "saved"; }, never, never, false>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ConfirmationService, ToasterService } from '@abp/ng.theme.shared';
|
|
3
|
+
import { PackagingTypeService } from '@proxy/controllers';
|
|
4
|
+
import { PackagingTypeDto } from '@proxy/packaging-types/dtos';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class PackagingTypesComponent implements OnInit {
|
|
7
|
+
private readonly service;
|
|
8
|
+
private readonly toaster;
|
|
9
|
+
private readonly confirmation;
|
|
10
|
+
items: PackagingTypeDto[];
|
|
11
|
+
selected: PackagingTypeDto | null;
|
|
12
|
+
formVisible: boolean;
|
|
13
|
+
formMode: 'create' | 'edit';
|
|
14
|
+
constructor(service: PackagingTypeService, toaster: ToasterService, confirmation: ConfirmationService);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
loadList(): void;
|
|
17
|
+
openCreate(): void;
|
|
18
|
+
openEdit(row: PackagingTypeDto): void;
|
|
19
|
+
onSaved(): void;
|
|
20
|
+
remove(row: PackagingTypeDto): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PackagingTypesComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PackagingTypesComponent, "lib-packaging-types", 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 HitPackagingTypesRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitPackagingTypesRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitPackagingTypesRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitPackagingTypesRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/packaging-types.component";
|
|
3
|
+
import * as i2 from "./components/packaging-type-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-types-routing.module";
|
|
12
|
+
import * as i11 from "devextreme-angular";
|
|
13
|
+
export declare class HitPackagingTypesModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitPackagingTypesModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitPackagingTypesModule, [typeof i1.PackagingTypesComponent, typeof i2.PackagingTypeFormComponent], [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.HitPackagingTypesRoutingModule, typeof i11.DxDataGridModule], never>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitPackagingTypesModule>;
|
|
17
|
+
}
|
|
18
|
+
export declare function loadHitPackagingTypesModuleAsChild(): Promise<typeof HitPackagingTypesModule>;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { PalletDefinitionService } from '@proxy/controllers';
|
|
4
|
+
import { PalletDefinitionDto } from '@proxy/pallet-definitions/dtos';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class PalletDefinitionFormComponent implements OnInit, OnChanges {
|
|
7
|
+
private readonly fb;
|
|
8
|
+
private readonly service;
|
|
9
|
+
visible: boolean;
|
|
10
|
+
mode: 'create' | 'edit';
|
|
11
|
+
current: PalletDefinitionDto | null;
|
|
12
|
+
visibleChange: EventEmitter<boolean>;
|
|
13
|
+
saved: EventEmitter<void>;
|
|
14
|
+
form: FormGroup;
|
|
15
|
+
saving: boolean;
|
|
16
|
+
constructor(fb: FormBuilder, service: PalletDefinitionService);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
19
|
+
private buildForm;
|
|
20
|
+
get title(): string;
|
|
21
|
+
onVisibleChange(value: boolean): void;
|
|
22
|
+
save(): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PalletDefinitionFormComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PalletDefinitionFormComponent, "lib-pallet-definition-form", never, { "visible": "visible"; "mode": "mode"; "current": "current"; }, { "visibleChange": "visibleChange"; "saved": "saved"; }, never, never, false>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ConfirmationService, ToasterService } from '@abp/ng.theme.shared';
|
|
3
|
+
import { PalletDefinitionService } from '@proxy/controllers';
|
|
4
|
+
import { PalletDefinitionDto } from '@proxy/pallet-definitions/dtos';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class PalletDefinitionsComponent implements OnInit {
|
|
7
|
+
private readonly service;
|
|
8
|
+
private readonly toaster;
|
|
9
|
+
private readonly confirmation;
|
|
10
|
+
items: PalletDefinitionDto[];
|
|
11
|
+
selected: PalletDefinitionDto | null;
|
|
12
|
+
formVisible: boolean;
|
|
13
|
+
formMode: 'create' | 'edit';
|
|
14
|
+
constructor(service: PalletDefinitionService, toaster: ToasterService, confirmation: ConfirmationService);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
loadList(): void;
|
|
17
|
+
openCreate(): void;
|
|
18
|
+
openEdit(row: PalletDefinitionDto): void;
|
|
19
|
+
onSaved(): void;
|
|
20
|
+
remove(row: PalletDefinitionDto): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PalletDefinitionsComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PalletDefinitionsComponent, "lib-pallet-definitions", 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 HitPalletDefinitionsRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitPalletDefinitionsRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitPalletDefinitionsRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitPalletDefinitionsRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/pallet-definitions.component";
|
|
3
|
+
import * as i2 from "./components/pallet-definition-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-pallet-definitions-routing.module";
|
|
12
|
+
import * as i11 from "devextreme-angular";
|
|
13
|
+
export declare class HitPalletDefinitionsModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitPalletDefinitionsModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitPalletDefinitionsModule, [typeof i1.PalletDefinitionsComponent, typeof i2.PalletDefinitionFormComponent], [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.HitPalletDefinitionsRoutingModule, typeof i11.DxDataGridModule], never>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitPalletDefinitionsModule>;
|
|
17
|
+
}
|
|
18
|
+
export declare function loadHitPalletDefinitionsModuleAsChild(): Promise<typeof HitPalletDefinitionsModule>;
|
package/lib/features/price-parameter-types/components/price-parameter-type-form.component.d.ts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { PriceParameterTypeService } from '@proxy/controllers';
|
|
4
|
+
import { PriceParameterTypeDto } from '@proxy/price-parameter-types/dtos';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class PriceParameterTypeFormComponent implements OnInit, OnChanges {
|
|
7
|
+
private readonly fb;
|
|
8
|
+
private readonly service;
|
|
9
|
+
visible: boolean;
|
|
10
|
+
mode: 'create' | 'edit';
|
|
11
|
+
current: PriceParameterTypeDto | null;
|
|
12
|
+
visibleChange: EventEmitter<boolean>;
|
|
13
|
+
saved: EventEmitter<void>;
|
|
14
|
+
form: FormGroup;
|
|
15
|
+
saving: boolean;
|
|
16
|
+
constructor(fb: FormBuilder, service: PriceParameterTypeService);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
19
|
+
private buildForm;
|
|
20
|
+
get title(): string;
|
|
21
|
+
onVisibleChange(value: boolean): void;
|
|
22
|
+
save(): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PriceParameterTypeFormComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PriceParameterTypeFormComponent, "lib-price-parameter-type-form", never, { "visible": "visible"; "mode": "mode"; "current": "current"; }, { "visibleChange": "visibleChange"; "saved": "saved"; }, never, never, false>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ConfirmationService, ToasterService } from '@abp/ng.theme.shared';
|
|
3
|
+
import { PriceParameterTypeService } from '@proxy/controllers';
|
|
4
|
+
import { PriceParameterTypeDto } from '@proxy/price-parameter-types/dtos';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class PriceParameterTypesComponent implements OnInit {
|
|
7
|
+
private readonly service;
|
|
8
|
+
private readonly toaster;
|
|
9
|
+
private readonly confirmation;
|
|
10
|
+
items: PriceParameterTypeDto[];
|
|
11
|
+
selected: PriceParameterTypeDto | null;
|
|
12
|
+
formVisible: boolean;
|
|
13
|
+
formMode: 'create' | 'edit';
|
|
14
|
+
constructor(service: PriceParameterTypeService, toaster: ToasterService, confirmation: ConfirmationService);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
loadList(): void;
|
|
17
|
+
openCreate(): void;
|
|
18
|
+
openEdit(row: PriceParameterTypeDto): void;
|
|
19
|
+
onSaved(): void;
|
|
20
|
+
remove(row: PriceParameterTypeDto): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PriceParameterTypesComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PriceParameterTypesComponent, "lib-price-parameter-types", 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 HitPriceParameterTypesRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitPriceParameterTypesRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitPriceParameterTypesRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitPriceParameterTypesRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/price-parameter-types.component";
|
|
3
|
+
import * as i2 from "./components/price-parameter-type-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-price-parameter-types-routing.module";
|
|
12
|
+
import * as i11 from "devextreme-angular";
|
|
13
|
+
export declare class HitPriceParameterTypesModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitPriceParameterTypesModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitPriceParameterTypesModule, [typeof i1.PriceParameterTypesComponent, typeof i2.PriceParameterTypeFormComponent], [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.HitPriceParameterTypesRoutingModule, typeof i11.DxDataGridModule], never>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitPriceParameterTypesModule>;
|
|
17
|
+
}
|
|
18
|
+
export declare function loadHitPriceParameterTypesModuleAsChild(): Promise<typeof HitPriceParameterTypesModule>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { SapSalesPersonService } from '@proxy/controllers';
|
|
4
|
+
import { SapSalesPersonDto } from '@proxy/sales-persons/dtos';
|
|
5
|
+
import { IdentityUserDto } from '@volo/abp.ng.identity/proxy';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class SapSalesPersonFormComponent implements OnInit, OnChanges {
|
|
8
|
+
private readonly fb;
|
|
9
|
+
private readonly service;
|
|
10
|
+
visible: boolean;
|
|
11
|
+
current: SapSalesPersonDto | null;
|
|
12
|
+
abpUsers: IdentityUserDto[];
|
|
13
|
+
visibleChange: EventEmitter<boolean>;
|
|
14
|
+
saved: EventEmitter<void>;
|
|
15
|
+
form: FormGroup;
|
|
16
|
+
saving: boolean;
|
|
17
|
+
constructor(fb: FormBuilder, service: SapSalesPersonService);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
20
|
+
private buildForm;
|
|
21
|
+
onVisibleChange(value: boolean): void;
|
|
22
|
+
userDisplayExpr: (user: IdentityUserDto) => string;
|
|
23
|
+
save(): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SapSalesPersonFormComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SapSalesPersonFormComponent, "lib-sap-sales-person-form", never, { "visible": "visible"; "current": "current"; "abpUsers": "abpUsers"; }, { "visibleChange": "visibleChange"; "saved": "saved"; }, never, never, false>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ToasterService } from '@abp/ng.theme.shared';
|
|
3
|
+
import { SapSalesPersonService } from '@proxy/controllers';
|
|
4
|
+
import { SapSalesPersonDto } from '@proxy/sales-persons/dtos';
|
|
5
|
+
import { IdentityUserService } from '@volo/abp.ng.identity/proxy';
|
|
6
|
+
import { IdentityUserDto } from '@volo/abp.ng.identity/proxy';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class SapSalesPersonsComponent implements OnInit {
|
|
9
|
+
private readonly service;
|
|
10
|
+
private readonly identityUserService;
|
|
11
|
+
private readonly toaster;
|
|
12
|
+
items: SapSalesPersonDto[];
|
|
13
|
+
abpUsers: IdentityUserDto[];
|
|
14
|
+
selected: SapSalesPersonDto | null;
|
|
15
|
+
formVisible: boolean;
|
|
16
|
+
constructor(service: SapSalesPersonService, identityUserService: IdentityUserService, toaster: ToasterService);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
loadList(): void;
|
|
19
|
+
openEdit(row: SapSalesPersonDto): void;
|
|
20
|
+
onSaved(): void;
|
|
21
|
+
getUserName: (user: IdentityUserDto) => string;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SapSalesPersonsComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SapSalesPersonsComponent, "lib-sap-sales-persons", 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 HitSapSalesPersonsRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitSapSalesPersonsRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitSapSalesPersonsRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitSapSalesPersonsRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/sap-sales-persons.component";
|
|
3
|
+
import * as i2 from "./components/sap-sales-person-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-sap-sales-persons-routing.module";
|
|
12
|
+
import * as i11 from "devextreme-angular";
|
|
13
|
+
export declare class HitSapSalesPersonsModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitSapSalesPersonsModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitSapSalesPersonsModule, [typeof i1.SapSalesPersonsComponent, typeof i2.SapSalesPersonFormComponent], [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.HitSapSalesPersonsRoutingModule, typeof i11.DxDataGridModule, typeof i11.DxSelectBoxModule], never>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitSapSalesPersonsModule>;
|
|
17
|
+
}
|
|
18
|
+
export declare function loadHitSapSalesPersonsModuleAsChild(): Promise<typeof HitSapSalesPersonsModule>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { ToasterService } from '@abp/ng.theme.shared';
|
|
4
|
+
import { CostSettingsService } from '@proxy/controllers';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CostSettingsComponent implements OnInit {
|
|
7
|
+
private readonly fb;
|
|
8
|
+
private readonly service;
|
|
9
|
+
private readonly toaster;
|
|
10
|
+
form: FormGroup;
|
|
11
|
+
saving: boolean;
|
|
12
|
+
constructor(fb: FormBuilder, service: CostSettingsService, toaster: ToasterService);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
save(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CostSettingsComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CostSettingsComponent, "lib-cost-settings", never, {}, {}, never, never, true>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class KadoogluKeopsRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KadoogluKeopsRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KadoogluKeopsRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KadoogluKeopsRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ModuleWithProviders, NgModuleFactory } from '@angular/core';
|
|
2
|
+
import { LocalizationService } from '@abp/ng.core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/common";
|
|
5
|
+
import * as i2 from "@angular/forms";
|
|
6
|
+
import * as i3 from "@abp/ng.core";
|
|
7
|
+
import * as i4 from "@abp/ng.theme.shared";
|
|
8
|
+
import * as i5 from "@abp/ng.components/page";
|
|
9
|
+
import * as i6 from "./kadooglu-keops-routing.module";
|
|
10
|
+
export declare class KadoogluKeopsModule {
|
|
11
|
+
private readonly localizationService;
|
|
12
|
+
static forChild(): ModuleWithProviders<KadoogluKeopsModule>;
|
|
13
|
+
static forLazy(): NgModuleFactory<KadoogluKeopsModule>;
|
|
14
|
+
constructor(localizationService: LocalizationService);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KadoogluKeopsModule, never>;
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KadoogluKeopsModule, never, [typeof i1.CommonModule, typeof i2.ReactiveFormsModule, typeof i3.CoreModule, typeof i4.ThemeSharedModule, typeof i5.PageModule, typeof i6.KadoogluKeopsRoutingModule], never>;
|
|
17
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KadoogluKeopsModule>;
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './models';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export interface ContainerDefinitionCreateDto {
|
|
2
|
+
name: string;
|
|
3
|
+
innerVolumeM3: number;
|
|
4
|
+
netLoadKg: number;
|
|
5
|
+
grossLoadKg: number;
|
|
6
|
+
isActive: boolean;
|
|
7
|
+
}
|
|
8
|
+
export interface ContainerDefinitionDto {
|
|
9
|
+
code?: string;
|
|
10
|
+
name?: string;
|
|
11
|
+
innerVolumeM3: number;
|
|
12
|
+
netLoadKg: number;
|
|
13
|
+
grossLoadKg: number;
|
|
14
|
+
isActive: boolean;
|
|
15
|
+
}
|
|
16
|
+
export interface ContainerDefinitionUpdateDto {
|
|
17
|
+
name: string;
|
|
18
|
+
innerVolumeM3: number;
|
|
19
|
+
netLoadKg: number;
|
|
20
|
+
grossLoadKg: number;
|
|
21
|
+
isActive: boolean;
|
|
22
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './models';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { LoadingTargetKind } from '../loading-target-kind.enum';
|
|
2
|
+
export interface ContainerLoadingCountDto {
|
|
3
|
+
productTypeCode?: string;
|
|
4
|
+
lines: ContainerLoadingLineDto[];
|
|
5
|
+
}
|
|
6
|
+
export interface ContainerLoadingCountSaveDto {
|
|
7
|
+
productTypeCode: string;
|
|
8
|
+
lines: ContainerLoadingLineInputDto[];
|
|
9
|
+
}
|
|
10
|
+
export interface ContainerLoadingLineDto {
|
|
11
|
+
kind: LoadingTargetKind;
|
|
12
|
+
targetCode?: string;
|
|
13
|
+
boxCount: number;
|
|
14
|
+
}
|
|
15
|
+
export interface ContainerLoadingLineInputDto {
|
|
16
|
+
kind: LoadingTargetKind;
|
|
17
|
+
targetCode: string;
|
|
18
|
+
boxCount: number;
|
|
19
|
+
}
|
|
20
|
+
export interface ProductTypeLookupDto {
|
|
21
|
+
code?: string;
|
|
22
|
+
name?: string;
|
|
23
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './models';
|