@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,22 @@
|
|
|
1
|
+
import type { PalletStatus } from '../pallet-status.enum';
|
|
2
|
+
export interface ContainerLoadingScenarioDto {
|
|
3
|
+
code?: string;
|
|
4
|
+
palletStatus: PalletStatus;
|
|
5
|
+
mixedTypeCode?: string;
|
|
6
|
+
containerCode?: string;
|
|
7
|
+
palletCode?: string;
|
|
8
|
+
maxPalletCount: number;
|
|
9
|
+
netWeightKg: number;
|
|
10
|
+
grossWeightKg: number;
|
|
11
|
+
toleranceKg: number;
|
|
12
|
+
}
|
|
13
|
+
export interface ContainerLoadingScenarioSaveDto {
|
|
14
|
+
palletStatus: PalletStatus;
|
|
15
|
+
mixedTypeCode?: string;
|
|
16
|
+
containerCode: string;
|
|
17
|
+
palletCode?: string;
|
|
18
|
+
maxPalletCount: number;
|
|
19
|
+
netWeightKg: number;
|
|
20
|
+
grossWeightKg: number;
|
|
21
|
+
toleranceKg: number;
|
|
22
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './models';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export interface ContainerMixTypeCreateDto {
|
|
2
|
+
name: string;
|
|
3
|
+
displayOrder: number;
|
|
4
|
+
}
|
|
5
|
+
export interface ContainerMixTypeDto {
|
|
6
|
+
code?: string;
|
|
7
|
+
name?: string;
|
|
8
|
+
displayOrder: number;
|
|
9
|
+
}
|
|
10
|
+
export interface ContainerMixTypeUpdateDto {
|
|
11
|
+
name: string;
|
|
12
|
+
displayOrder: number;
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './models';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export interface ContainerPalletCapacityCreateDto {
|
|
2
|
+
containerCode: string;
|
|
3
|
+
palletCode: string;
|
|
4
|
+
palletCount: number;
|
|
5
|
+
maxPalletCountMixed: number;
|
|
6
|
+
isActive: boolean;
|
|
7
|
+
}
|
|
8
|
+
export interface ContainerPalletCapacityDto {
|
|
9
|
+
code?: string;
|
|
10
|
+
containerCode?: string;
|
|
11
|
+
palletCode?: string;
|
|
12
|
+
palletCount: number;
|
|
13
|
+
maxPalletCountMixed: number;
|
|
14
|
+
isActive: boolean;
|
|
15
|
+
}
|
|
16
|
+
export interface ContainerPalletCapacityUpdateDto {
|
|
17
|
+
containerCode: string;
|
|
18
|
+
palletCode: string;
|
|
19
|
+
palletCount: number;
|
|
20
|
+
maxPalletCountMixed: number;
|
|
21
|
+
isActive: boolean;
|
|
22
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { ContainerDefinitionCreateDto, ContainerDefinitionDto, ContainerDefinitionUpdateDto } from '../container-definitions/dtos/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ContainerDefinitionService {
|
|
5
|
+
private restService;
|
|
6
|
+
apiName: string;
|
|
7
|
+
create: (input: ContainerDefinitionCreateDto) => import("rxjs").Observable<void>;
|
|
8
|
+
delete: (code: string) => import("rxjs").Observable<void>;
|
|
9
|
+
get: (code: string) => import("rxjs").Observable<ContainerDefinitionDto>;
|
|
10
|
+
getList: () => import("rxjs").Observable<ContainerDefinitionDto[]>;
|
|
11
|
+
update: (code: string, input: ContainerDefinitionUpdateDto) => import("rxjs").Observable<void>;
|
|
12
|
+
constructor(restService: RestService);
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContainerDefinitionService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ContainerDefinitionService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { ContainerLoadingCountDto, ContainerLoadingCountSaveDto, ProductTypeLookupDto } from '../container-loading-counts/dtos/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ContainerLoadingCountService {
|
|
5
|
+
private restService;
|
|
6
|
+
apiName: string;
|
|
7
|
+
getList: () => import("rxjs").Observable<ContainerLoadingCountDto[]>;
|
|
8
|
+
getProductTypes: () => import("rxjs").Observable<ProductTypeLookupDto[]>;
|
|
9
|
+
save: (input: ContainerLoadingCountSaveDto[]) => import("rxjs").Observable<void>;
|
|
10
|
+
constructor(restService: RestService);
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContainerLoadingCountService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ContainerLoadingCountService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { ContainerLoadingScenarioDto, ContainerLoadingScenarioSaveDto } from '../container-loading-scenarios/dtos/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ContainerLoadingScenarioService {
|
|
5
|
+
private restService;
|
|
6
|
+
apiName: string;
|
|
7
|
+
getList: () => import("rxjs").Observable<ContainerLoadingScenarioDto[]>;
|
|
8
|
+
save: (input: ContainerLoadingScenarioSaveDto[]) => import("rxjs").Observable<void>;
|
|
9
|
+
constructor(restService: RestService);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContainerLoadingScenarioService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ContainerLoadingScenarioService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { ContainerMixTypeCreateDto, ContainerMixTypeDto, ContainerMixTypeUpdateDto } from '../container-mix-types/dtos/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ContainerMixTypeService {
|
|
5
|
+
private restService;
|
|
6
|
+
apiName: string;
|
|
7
|
+
create: (input: ContainerMixTypeCreateDto) => import("rxjs").Observable<void>;
|
|
8
|
+
delete: (code: string) => import("rxjs").Observable<void>;
|
|
9
|
+
get: (code: string) => import("rxjs").Observable<ContainerMixTypeDto>;
|
|
10
|
+
getList: () => import("rxjs").Observable<ContainerMixTypeDto[]>;
|
|
11
|
+
update: (code: string, input: ContainerMixTypeUpdateDto) => import("rxjs").Observable<void>;
|
|
12
|
+
constructor(restService: RestService);
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContainerMixTypeService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ContainerMixTypeService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { ContainerPalletCapacityCreateDto, ContainerPalletCapacityDto, ContainerPalletCapacityUpdateDto } from '../container-pallet-capacities/dtos/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ContainerPalletCapacityService {
|
|
5
|
+
private restService;
|
|
6
|
+
apiName: string;
|
|
7
|
+
create: (input: ContainerPalletCapacityCreateDto) => import("rxjs").Observable<void>;
|
|
8
|
+
delete: (code: string) => import("rxjs").Observable<void>;
|
|
9
|
+
get: (code: string) => import("rxjs").Observable<ContainerPalletCapacityDto>;
|
|
10
|
+
getList: () => import("rxjs").Observable<ContainerPalletCapacityDto[]>;
|
|
11
|
+
update: (code: string, input: ContainerPalletCapacityUpdateDto) => import("rxjs").Observable<void>;
|
|
12
|
+
constructor(restService: RestService);
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContainerPalletCapacityService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ContainerPalletCapacityService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { CostGroupCreateDto, CostGroupDto, CostGroupUpdateDto } from '../cost-groups/dtos/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CostGroupService {
|
|
5
|
+
private restService;
|
|
6
|
+
apiName: string;
|
|
7
|
+
create: (input: CostGroupCreateDto) => import("rxjs").Observable<void>;
|
|
8
|
+
delete: (code: string) => import("rxjs").Observable<void>;
|
|
9
|
+
get: (code: string) => import("rxjs").Observable<CostGroupDto>;
|
|
10
|
+
getList: () => import("rxjs").Observable<CostGroupDto[]>;
|
|
11
|
+
update: (code: string, input: CostGroupUpdateDto) => import("rxjs").Observable<void>;
|
|
12
|
+
constructor(restService: RestService);
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CostGroupService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CostGroupService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { CostItemCreateDto, CostItemDto, CostItemUpdateDto } from '../cost-items/dtos/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CostItemService {
|
|
5
|
+
private restService;
|
|
6
|
+
apiName: string;
|
|
7
|
+
create: (input: CostItemCreateDto) => import("rxjs").Observable<void>;
|
|
8
|
+
delete: (code: string) => import("rxjs").Observable<void>;
|
|
9
|
+
get: (code: string) => import("rxjs").Observable<CostItemDto>;
|
|
10
|
+
getList: () => import("rxjs").Observable<CostItemDto[]>;
|
|
11
|
+
update: (code: string, input: CostItemUpdateDto) => import("rxjs").Observable<void>;
|
|
12
|
+
constructor(restService: RestService);
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CostItemService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CostItemService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { CostParameterCategoryCreateDto, CostParameterCategoryDto, CostParameterCategoryUpdateDto } from '../cost-parameter-categories/dtos/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CostParameterCategoryService {
|
|
5
|
+
private restService;
|
|
6
|
+
apiName: string;
|
|
7
|
+
create: (input: CostParameterCategoryCreateDto) => import("rxjs").Observable<void>;
|
|
8
|
+
delete: (code: string) => import("rxjs").Observable<void>;
|
|
9
|
+
get: (code: string) => import("rxjs").Observable<CostParameterCategoryDto>;
|
|
10
|
+
getList: () => import("rxjs").Observable<CostParameterCategoryDto[]>;
|
|
11
|
+
update: (code: string, input: CostParameterCategoryUpdateDto) => import("rxjs").Observable<void>;
|
|
12
|
+
constructor(restService: RestService);
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CostParameterCategoryService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CostParameterCategoryService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { CostParameterCodeLookupDto, CostParameterCreateDto, CostParameterDto, CostParameterUpdateDto } from '../cost-parameters/dtos/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CostParameterService {
|
|
5
|
+
private restService;
|
|
6
|
+
apiName: string;
|
|
7
|
+
create: (input: CostParameterCreateDto) => import("rxjs").Observable<void>;
|
|
8
|
+
delete: (code: string) => import("rxjs").Observable<void>;
|
|
9
|
+
getCodeLookups: () => import("rxjs").Observable<CostParameterCodeLookupDto>;
|
|
10
|
+
getList: () => import("rxjs").Observable<CostParameterDto[]>;
|
|
11
|
+
update: (code: string, input: CostParameterUpdateDto) => import("rxjs").Observable<void>;
|
|
12
|
+
constructor(restService: RestService);
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CostParameterService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CostParameterService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { CostSettingsDto } from '../settings/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CostSettingsService {
|
|
5
|
+
private restService;
|
|
6
|
+
apiName: string;
|
|
7
|
+
get: () => import("rxjs").Observable<CostSettingsDto>;
|
|
8
|
+
update: (input: CostSettingsDto) => import("rxjs").Observable<void>;
|
|
9
|
+
constructor(restService: RestService);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CostSettingsService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CostSettingsService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { ExchangeRateDto, ExchangeRateUpdateDto } from '../exchange-rates/dtos/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ExchangeRateService {
|
|
5
|
+
private restService;
|
|
6
|
+
apiName: string;
|
|
7
|
+
get: () => import("rxjs").Observable<ExchangeRateDto>;
|
|
8
|
+
update: (input: ExchangeRateUpdateDto) => import("rxjs").Observable<void>;
|
|
9
|
+
constructor(restService: RestService);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExchangeRateService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ExchangeRateService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export * from './container-definition.service';
|
|
2
|
+
export * from './container-loading-count.service';
|
|
3
|
+
export * from './container-loading-scenario.service';
|
|
4
|
+
export * from './container-mix-type.service';
|
|
5
|
+
export * from './container-pallet-capacity.service';
|
|
6
|
+
export * from './cost-group.service';
|
|
7
|
+
export * from './cost-item.service';
|
|
8
|
+
export * from './cost-parameter-category.service';
|
|
9
|
+
export * from './cost-parameter.service';
|
|
10
|
+
export * from './cost-settings.service';
|
|
11
|
+
export * from './exchange-rate.service';
|
|
12
|
+
export * from './item.service';
|
|
13
|
+
export * from './packaging-material.service';
|
|
14
|
+
export * from './packaging-price.service';
|
|
15
|
+
export * from './packaging-type.service';
|
|
16
|
+
export * from './pallet-definition.service';
|
|
17
|
+
export * from './price-parameter-type.service';
|
|
18
|
+
export * from './sap-sales-person.service';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { ItemDto } from '../items/dtos/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ItemService {
|
|
5
|
+
private restService;
|
|
6
|
+
apiName: string;
|
|
7
|
+
getList: (codePrefix: string) => import("rxjs").Observable<ItemDto[]>;
|
|
8
|
+
constructor(restService: RestService);
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ItemService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ItemService>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { PackagingMaterialCreateDto, PackagingMaterialDto, PackagingMaterialUpdateDto } from '../packaging-materials/dtos/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PackagingMaterialService {
|
|
5
|
+
private restService;
|
|
6
|
+
apiName: string;
|
|
7
|
+
create: (input: PackagingMaterialCreateDto) => import("rxjs").Observable<void>;
|
|
8
|
+
delete: (code: string) => import("rxjs").Observable<void>;
|
|
9
|
+
get: (code: string) => import("rxjs").Observable<PackagingMaterialDto>;
|
|
10
|
+
getList: () => import("rxjs").Observable<PackagingMaterialDto[]>;
|
|
11
|
+
update: (code: string, input: PackagingMaterialUpdateDto) => import("rxjs").Observable<void>;
|
|
12
|
+
constructor(restService: RestService);
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PackagingMaterialService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PackagingMaterialService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { PackagingPriceCreateDto, PackagingPriceDto, PackagingPriceExcelDownloadDto, PackagingPriceLineDto, PackagingPriceUpdateDto } from '../packaging-prices/dtos/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PackagingPriceService {
|
|
5
|
+
private restService;
|
|
6
|
+
apiName: string;
|
|
7
|
+
create: (input: PackagingPriceCreateDto) => import("rxjs").Observable<void>;
|
|
8
|
+
delete: (docEntry: number) => import("rxjs").Observable<void>;
|
|
9
|
+
get: (docEntry: number) => import("rxjs").Observable<PackagingPriceDto>;
|
|
10
|
+
getLinesAsExcelFile: (input: PackagingPriceExcelDownloadDto) => import("rxjs").Observable<Blob>;
|
|
11
|
+
getList: () => import("rxjs").Observable<PackagingPriceDto[]>;
|
|
12
|
+
getMergedLines: (docEntry: number, materialTypeCode: string) => import("rxjs").Observable<PackagingPriceLineDto[]>;
|
|
13
|
+
update: (docEntry: number, input: PackagingPriceUpdateDto) => import("rxjs").Observable<void>;
|
|
14
|
+
updateSapItemPrices: (docEntry: number) => import("rxjs").Observable<void>;
|
|
15
|
+
constructor(restService: RestService);
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PackagingPriceService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PackagingPriceService>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { PackagingTypeCreateDto, PackagingTypeDto, PackagingTypeUpdateDto } from '../packaging-types/dtos/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PackagingTypeService {
|
|
5
|
+
private restService;
|
|
6
|
+
apiName: string;
|
|
7
|
+
create: (input: PackagingTypeCreateDto) => import("rxjs").Observable<void>;
|
|
8
|
+
delete: (code: string) => import("rxjs").Observable<void>;
|
|
9
|
+
get: (code: string) => import("rxjs").Observable<PackagingTypeDto>;
|
|
10
|
+
getList: () => import("rxjs").Observable<PackagingTypeDto[]>;
|
|
11
|
+
update: (code: string, input: PackagingTypeUpdateDto) => import("rxjs").Observable<void>;
|
|
12
|
+
constructor(restService: RestService);
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PackagingTypeService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PackagingTypeService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { PalletDefinitionCreateDto, PalletDefinitionDto, PalletDefinitionUpdateDto } from '../pallet-definitions/dtos/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PalletDefinitionService {
|
|
5
|
+
private restService;
|
|
6
|
+
apiName: string;
|
|
7
|
+
create: (input: PalletDefinitionCreateDto) => import("rxjs").Observable<void>;
|
|
8
|
+
delete: (code: string) => import("rxjs").Observable<void>;
|
|
9
|
+
get: (code: string) => import("rxjs").Observable<PalletDefinitionDto>;
|
|
10
|
+
getList: () => import("rxjs").Observable<PalletDefinitionDto[]>;
|
|
11
|
+
update: (code: string, input: PalletDefinitionUpdateDto) => import("rxjs").Observable<void>;
|
|
12
|
+
constructor(restService: RestService);
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PalletDefinitionService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PalletDefinitionService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { CreatePriceParameterTypeDto, PriceParameterTypeDto, PriceParameterTypeLookupDto, UpdatePriceParameterTypeDto } from '../price-parameter-types/dtos/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PriceParameterTypeService {
|
|
5
|
+
private restService;
|
|
6
|
+
apiName: string;
|
|
7
|
+
create: (input: CreatePriceParameterTypeDto) => import("rxjs").Observable<PriceParameterTypeDto>;
|
|
8
|
+
delete: (code: string) => import("rxjs").Observable<void>;
|
|
9
|
+
getList: () => import("rxjs").Observable<PriceParameterTypeDto[]>;
|
|
10
|
+
getLookup: () => import("rxjs").Observable<PriceParameterTypeLookupDto[]>;
|
|
11
|
+
update: (code: string, input: UpdatePriceParameterTypeDto) => import("rxjs").Observable<PriceParameterTypeDto>;
|
|
12
|
+
constructor(restService: RestService);
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PriceParameterTypeService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PriceParameterTypeService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { SapSalesPersonDto, UpdateSapSalesPersonDto } from '../sales-persons/dtos/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SapSalesPersonService {
|
|
5
|
+
private restService;
|
|
6
|
+
apiName: string;
|
|
7
|
+
getList: () => import("rxjs").Observable<SapSalesPersonDto[]>;
|
|
8
|
+
update: (salesEmployeeCode: number, input: UpdateSapSalesPersonDto) => import("rxjs").Observable<void>;
|
|
9
|
+
constructor(restService: RestService);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SapSalesPersonService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SapSalesPersonService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './models';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { CostGroupRole } from '../cost-group-role.enum';
|
|
2
|
+
export interface CostGroupCreateDto {
|
|
3
|
+
code: string;
|
|
4
|
+
name: string;
|
|
5
|
+
displayOrder: number;
|
|
6
|
+
groupRole: CostGroupRole;
|
|
7
|
+
itemCodes: string[];
|
|
8
|
+
}
|
|
9
|
+
export interface CostGroupDto {
|
|
10
|
+
code?: string;
|
|
11
|
+
name?: string;
|
|
12
|
+
displayOrder: number;
|
|
13
|
+
groupRole: CostGroupRole;
|
|
14
|
+
itemCodes: string[];
|
|
15
|
+
}
|
|
16
|
+
export interface CostGroupUpdateDto {
|
|
17
|
+
name: string;
|
|
18
|
+
displayOrder: number;
|
|
19
|
+
groupRole: CostGroupRole;
|
|
20
|
+
itemCodes: string[];
|
|
21
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare enum CostItemSystemCode {
|
|
2
|
+
Port = 1,
|
|
3
|
+
InspectionCustoms = 2,
|
|
4
|
+
Freight = 3,
|
|
5
|
+
Loss = 4,
|
|
6
|
+
RefineryOverhead = 5,
|
|
7
|
+
RefineryAuxMaterials = 6,
|
|
8
|
+
FillingPackagingOverhead = 7,
|
|
9
|
+
Packaging = 8,
|
|
10
|
+
SalesMarketing = 9,
|
|
11
|
+
GeneralAdmin = 10,
|
|
12
|
+
Finance = 11,
|
|
13
|
+
Contingency = 12,
|
|
14
|
+
VariableDepreciation = 13,
|
|
15
|
+
ProfitRate = 14
|
|
16
|
+
}
|
|
17
|
+
export declare const costItemSystemCodeOptions: import("@abp/ng.core").ABP.Option<typeof CostItemSystemCode>[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './models';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { CostItemCalculationType } from '../cost-item-calculation-type.enum';
|
|
2
|
+
import type { CostItemSystemCode } from '../cost-item-system-code.enum';
|
|
3
|
+
export interface CostItemCreateDto {
|
|
4
|
+
name: string;
|
|
5
|
+
calculationType: CostItemCalculationType;
|
|
6
|
+
displayOrder: number;
|
|
7
|
+
}
|
|
8
|
+
export interface CostItemDto {
|
|
9
|
+
code?: string;
|
|
10
|
+
name?: string;
|
|
11
|
+
calculationType: CostItemCalculationType;
|
|
12
|
+
displayOrder: number;
|
|
13
|
+
isSystem: boolean;
|
|
14
|
+
systemCode?: CostItemSystemCode;
|
|
15
|
+
}
|
|
16
|
+
export interface CostItemUpdateDto {
|
|
17
|
+
name: string;
|
|
18
|
+
calculationType: CostItemCalculationType;
|
|
19
|
+
displayOrder: number;
|
|
20
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './models';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { CostParameterCategoryParentCode } from '../cost-parameter-category-parent-code.enum';
|
|
2
|
+
export interface CostParameterCategoryCreateDto {
|
|
3
|
+
name: string;
|
|
4
|
+
parentCode: CostParameterCategoryParentCode;
|
|
5
|
+
}
|
|
6
|
+
export interface CostParameterCategoryDto {
|
|
7
|
+
code?: string;
|
|
8
|
+
name?: string;
|
|
9
|
+
parentCode: CostParameterCategoryParentCode;
|
|
10
|
+
}
|
|
11
|
+
export interface CostParameterCategoryUpdateDto {
|
|
12
|
+
name: string;
|
|
13
|
+
parentCode: CostParameterCategoryParentCode;
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './models';
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import type { CostParameterStatus } from '../cost-parameter-status.enum';
|
|
2
|
+
import type { Currency } from '../../currencies/currency.enum';
|
|
3
|
+
export interface CostParameterCategoryLookupDto {
|
|
4
|
+
code?: string;
|
|
5
|
+
name?: string;
|
|
6
|
+
}
|
|
7
|
+
export interface CostParameterCodeLookupDto {
|
|
8
|
+
productGroups: CostParameterCategoryLookupDto[];
|
|
9
|
+
regions: CostParameterCategoryLookupDto[];
|
|
10
|
+
}
|
|
11
|
+
export interface CostParameterCreateDto {
|
|
12
|
+
productGroup: string;
|
|
13
|
+
region: string;
|
|
14
|
+
status: CostParameterStatus;
|
|
15
|
+
description?: string;
|
|
16
|
+
items: CostParameterItemInputDto[];
|
|
17
|
+
}
|
|
18
|
+
export interface CostParameterDto {
|
|
19
|
+
code?: string;
|
|
20
|
+
productGroup?: string;
|
|
21
|
+
region?: string;
|
|
22
|
+
status: CostParameterStatus;
|
|
23
|
+
description?: string;
|
|
24
|
+
updateDate?: string;
|
|
25
|
+
updateTime?: string;
|
|
26
|
+
items: CostParameterItemDto[];
|
|
27
|
+
}
|
|
28
|
+
export interface CostParameterItemDto {
|
|
29
|
+
costItemCode?: string;
|
|
30
|
+
value?: string;
|
|
31
|
+
currency?: Currency;
|
|
32
|
+
}
|
|
33
|
+
export interface CostParameterItemInputDto {
|
|
34
|
+
costItemCode: string;
|
|
35
|
+
value?: string;
|
|
36
|
+
currency?: Currency;
|
|
37
|
+
}
|
|
38
|
+
export interface CostParameterUpdateDto {
|
|
39
|
+
productGroup: string;
|
|
40
|
+
region: string;
|
|
41
|
+
status: CostParameterStatus;
|
|
42
|
+
description?: string;
|
|
43
|
+
items: CostParameterItemInputDto[];
|
|
44
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './currency.enum';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './models';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { ExchangeRateSource } from '../exchange-rate-source.enum';
|
|
2
|
+
export interface CentralBankExchangeRateDto {
|
|
3
|
+
usdBuyingRate: number;
|
|
4
|
+
eurBuyingRate: number;
|
|
5
|
+
}
|
|
6
|
+
export interface ExchangeRateDto {
|
|
7
|
+
source: ExchangeRateSource;
|
|
8
|
+
fixedUsdRate: number;
|
|
9
|
+
fixedEurRate: number;
|
|
10
|
+
cbExchangeRate: CentralBankExchangeRateDto;
|
|
11
|
+
lastModificationTime?: string;
|
|
12
|
+
}
|
|
13
|
+
export interface ExchangeRateUpdateDto {
|
|
14
|
+
source: ExchangeRateSource;
|
|
15
|
+
fixedUsdRate: number;
|
|
16
|
+
fixedEurRate: number;
|
|
17
|
+
}
|