@hitsoft/kadooglu-keops 0.0.2 → 0.0.4
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/config/enums/route-names.d.ts +16 -1
- package/esm2020/config/enums/route-names.mjs +1 -1
- package/esm2020/config/providers/route.provider.mjs +141 -4
- package/esm2020/lib/features/bl-tracking/components/bl-tracking-form.component.mjs +82 -0
- package/esm2020/lib/features/bl-tracking/components/bl-tracking.component.mjs +65 -0
- package/esm2020/lib/features/bl-tracking/hit-bl-tracking-routing.module.mjs +29 -0
- package/esm2020/lib/features/bl-tracking/hit-bl-tracking.module.mjs +58 -0
- package/esm2020/lib/features/carriers/components/carrier-form.component.mjs +78 -0
- package/esm2020/lib/features/carriers/components/carriers.component.mjs +66 -0
- package/esm2020/lib/features/carriers/hit-carriers-routing.module.mjs +29 -0
- package/esm2020/lib/features/carriers/hit-carriers.module.mjs +58 -0
- package/esm2020/lib/features/container-loading-counts/components/container-loading-counts.component.mjs +2 -2
- package/esm2020/lib/features/container-pallet-capacities/components/container-pallet-capacities.component.mjs +6 -5
- package/esm2020/lib/features/cost-calculation/components/cost-calculation-inputs.component.mjs +16 -12
- package/esm2020/lib/features/cost-calculation/components/cost-calculation-results.component.mjs +3 -3
- package/esm2020/lib/features/cost-calculation/components/cost-calculation.component.mjs +90 -39
- package/esm2020/lib/features/cost-calculation/engine/currency.utils.mjs +10 -10
- package/esm2020/lib/features/cost-calculation/engine/formulas.mjs +10 -10
- package/esm2020/lib/features/cost-calculation/engine/item-resolver.mjs +16 -16
- package/esm2020/lib/features/cost-calculation/engine/stage-builder.mjs +11 -10
- package/esm2020/lib/features/cost-calculation/hit-cost-calculation.module.mjs +7 -3
- package/esm2020/lib/features/cost-parameter-categories/components/cost-parameter-categories.component.mjs +3 -7
- package/esm2020/lib/features/cost-parameter-categories/components/cost-parameter-category-form.component.mjs +4 -14
- package/esm2020/lib/features/cost-parameters/components/cost-parameter-form.component.mjs +22 -39
- package/esm2020/lib/features/cost-parameters/components/cost-parameters.component.mjs +19 -15
- package/esm2020/lib/features/destination-ports/components/destination-port-form.component.mjs +86 -0
- package/esm2020/lib/features/destination-ports/components/destination-ports.component.mjs +74 -0
- package/esm2020/lib/features/destination-ports/hit-destination-ports-routing.module.mjs +29 -0
- package/esm2020/lib/features/destination-ports/hit-destination-ports.module.mjs +58 -0
- package/esm2020/lib/features/fob-inland-definitions/components/fob-inland-definition-form.component.mjs +80 -0
- package/esm2020/lib/features/fob-inland-definitions/components/fob-inland-definitions.component.mjs +65 -0
- package/esm2020/lib/features/fob-inland-definitions/hit-fob-inland-definitions-routing.module.mjs +29 -0
- package/esm2020/lib/features/fob-inland-definitions/hit-fob-inland-definitions.module.mjs +58 -0
- package/esm2020/lib/features/freight-offers/components/freight-offer-copy.component.mjs +67 -0
- package/esm2020/lib/features/freight-offers/components/freight-offer-form.component.mjs +181 -0
- package/esm2020/lib/features/freight-offers/components/freight-offers.component.mjs +159 -0
- package/esm2020/lib/features/freight-offers/hit-freight-offers-routing.module.mjs +29 -0
- package/esm2020/lib/features/freight-offers/hit-freight-offers.module.mjs +62 -0
- package/esm2020/lib/features/incoterms/components/incoterm-form.component.mjs +81 -0
- package/esm2020/lib/features/incoterms/components/incoterms.component.mjs +65 -0
- package/esm2020/lib/features/incoterms/hit-incoterms-routing.module.mjs +29 -0
- package/esm2020/lib/features/incoterms/hit-incoterms.module.mjs +58 -0
- package/esm2020/lib/features/index.mjs +29 -1
- package/esm2020/lib/features/item-classifications/components/item-classifications.component.mjs +199 -0
- package/esm2020/lib/features/item-classifications/hit-item-classifications-routing.module.mjs +29 -0
- package/esm2020/lib/features/item-classifications/hit-item-classifications.module.mjs +60 -0
- package/esm2020/lib/features/item-package-groups/components/item-package-group-form.component.mjs +78 -0
- package/esm2020/lib/features/item-package-groups/components/item-package-groups.component.mjs +69 -0
- package/esm2020/lib/features/item-package-groups/hit-item-package-groups-routing.module.mjs +29 -0
- package/esm2020/lib/features/item-package-groups/hit-item-package-groups.module.mjs +58 -0
- package/esm2020/lib/features/item-package-types/components/item-package-type-form.component.mjs +78 -0
- package/esm2020/lib/features/item-package-types/components/item-package-types.component.mjs +69 -0
- package/esm2020/lib/features/item-package-types/hit-item-package-types-routing.module.mjs +29 -0
- package/esm2020/lib/features/item-package-types/hit-item-package-types.module.mjs +58 -0
- package/esm2020/lib/features/item-product-types/components/item-product-type-form.component.mjs +78 -0
- package/esm2020/lib/features/item-product-types/components/item-product-types.component.mjs +69 -0
- package/esm2020/lib/features/item-product-types/hit-item-product-types-routing.module.mjs +29 -0
- package/esm2020/lib/features/item-product-types/hit-item-product-types.module.mjs +58 -0
- package/esm2020/lib/features/lines/components/line-form.component.mjs +78 -0
- package/esm2020/lib/features/lines/components/lines.component.mjs +66 -0
- package/esm2020/lib/features/lines/hit-lines-routing.module.mjs +29 -0
- package/esm2020/lib/features/lines/hit-lines.module.mjs +58 -0
- package/esm2020/lib/features/packaging-prices/components/packaging-price-form.component.mjs +4 -9
- package/esm2020/lib/features/packaging-prices/packaging-price-calculator.mjs +1 -1
- package/esm2020/lib/features/pos/components/pos-form.component.mjs +77 -0
- package/esm2020/lib/features/pos/components/pos.component.mjs +65 -0
- package/esm2020/lib/features/pos/hit-pos-routing.module.mjs +29 -0
- package/esm2020/lib/features/pos/hit-pos.module.mjs +58 -0
- package/esm2020/lib/features/price-parameter-types/components/price-parameter-types.component.mjs +3 -3
- package/esm2020/lib/features/price-parameters/components/price-parameter-form-cost-items.component.mjs +32 -0
- package/esm2020/lib/features/price-parameters/components/price-parameter-form-discount-rates-modal.component.mjs +52 -0
- package/esm2020/lib/features/price-parameters/components/price-parameter-form-discount-rates.component.mjs +84 -0
- package/esm2020/lib/features/price-parameters/components/price-parameter-form-items.component.mjs +43 -0
- package/esm2020/lib/features/price-parameters/components/price-parameter-form-price-lists.component.mjs +42 -0
- package/esm2020/lib/features/price-parameters/components/price-parameter-form.component.mjs +320 -0
- package/esm2020/lib/features/price-parameters/components/price-parameter-price-update-preview-modal.component.mjs +26 -0
- package/esm2020/lib/features/price-parameters/components/price-parameters.component.mjs +85 -0
- package/esm2020/lib/features/price-parameters/hit-price-parameters-routing.module.mjs +46 -0
- package/esm2020/lib/features/price-parameters/hit-price-parameters.module.mjs +96 -0
- package/esm2020/lib/features/price-parameters/price-parameter-cost-match.service.mjs +21 -0
- package/esm2020/lib/features/price-parameters/price-parameter-form-data.service.mjs +49 -0
- package/esm2020/lib/features/price-parameters/price-parameter-l10n-helper.mjs +7 -0
- package/esm2020/lib/features/price-parameters/price-parameter-lookups.service.mjs +27 -0
- package/esm2020/lib/features/price-parameters/price-parameter-price-update.service.mjs +119 -0
- package/esm2020/lib/features/settings/components/cost-settings.component.mjs +8 -4
- package/esm2020/lib/kadooglu-keops-routing.module.mjs +27 -1
- package/esm2020/lib/shared/amount-currency-input/amount-currency-input.component.mjs +68 -0
- package/esm2020/lib/shared/cost-item-classification.utils.mjs +15 -0
- package/esm2020/lib/shared/cost-item-rows.builder.mjs +40 -0
- package/esm2020/lib/shared/pipes/resolve-code-name.pipe.mjs +16 -0
- package/esm2020/lib/shared/shared-ui.module.mjs +20 -0
- package/esm2020/lib/utils/business-region.utils.mjs +12 -0
- package/esm2020/lib/utils/currency.utils.mjs +5 -1
- package/esm2020/lib/utils/exchange-rate.utils.mjs +12 -0
- package/esm2020/proxy/bl-tracking/dtos/index.mjs +2 -0
- package/esm2020/proxy/bl-tracking/dtos/models.mjs +2 -0
- package/esm2020/proxy/business-partners/dtos/index.mjs +2 -0
- package/esm2020/proxy/business-partners/dtos/models.mjs +2 -0
- package/esm2020/proxy/business-region.enum.mjs +9 -0
- package/esm2020/proxy/carriers/dtos/index.mjs +2 -0
- package/esm2020/proxy/carriers/dtos/models.mjs +2 -0
- package/esm2020/proxy/container-loading-counts/dtos/models.mjs +1 -1
- package/esm2020/proxy/controllers/bl-tracking.service.mjs +36 -0
- package/esm2020/proxy/controllers/business-partner.service.mjs +22 -0
- package/esm2020/proxy/controllers/carrier.service.mjs +36 -0
- package/esm2020/proxy/controllers/container-loading-count.service.mjs +5 -5
- package/esm2020/proxy/controllers/cost-parameter.service.mjs +1 -5
- package/esm2020/proxy/controllers/destination-port.service.mjs +44 -0
- package/esm2020/proxy/controllers/fob-inland-definition.service.mjs +36 -0
- package/esm2020/proxy/controllers/freight-offer.service.mjs +57 -0
- package/esm2020/proxy/controllers/incoterm.service.mjs +36 -0
- package/esm2020/proxy/controllers/index.mjs +16 -1
- package/esm2020/proxy/controllers/item-classification.service.mjs +42 -0
- package/esm2020/proxy/controllers/item-package-group.service.mjs +40 -0
- package/esm2020/proxy/controllers/item-package-type.service.mjs +40 -0
- package/esm2020/proxy/controllers/item-product-type.service.mjs +40 -0
- package/esm2020/proxy/controllers/item.service.mjs +7 -3
- package/esm2020/proxy/controllers/line.service.mjs +36 -0
- package/esm2020/proxy/controllers/pos.service.mjs +36 -0
- package/esm2020/proxy/controllers/price-list.service.mjs +28 -0
- package/esm2020/proxy/controllers/price-parameter.service.mjs +45 -0
- package/esm2020/proxy/cost-parameter-categories/dtos/models.mjs +1 -1
- package/esm2020/proxy/cost-parameters/dtos/models.mjs +1 -1
- package/esm2020/proxy/destination-ports/dtos/index.mjs +2 -0
- package/esm2020/proxy/destination-ports/dtos/models.mjs +2 -0
- package/esm2020/proxy/fob-inland-definitions/dtos/index.mjs +2 -0
- package/esm2020/proxy/fob-inland-definitions/dtos/models.mjs +2 -0
- package/esm2020/proxy/freight-offers/dtos/index.mjs +2 -0
- package/esm2020/proxy/freight-offers/dtos/models.mjs +2 -0
- package/esm2020/proxy/incoterms/dtos/index.mjs +2 -0
- package/esm2020/proxy/incoterms/dtos/models.mjs +2 -0
- package/esm2020/proxy/item-classifications/dtos/index.mjs +2 -0
- package/esm2020/proxy/item-classifications/dtos/models.mjs +2 -0
- package/esm2020/proxy/item-package-groups/dtos/index.mjs +2 -0
- package/esm2020/proxy/item-package-groups/dtos/models.mjs +2 -0
- package/esm2020/proxy/item-package-types/dtos/index.mjs +2 -0
- package/esm2020/proxy/item-package-types/dtos/models.mjs +2 -0
- package/esm2020/proxy/item-product-types/dtos/index.mjs +2 -0
- package/esm2020/proxy/item-product-types/dtos/models.mjs +2 -0
- package/esm2020/proxy/lines/dtos/index.mjs +2 -0
- package/esm2020/proxy/lines/dtos/models.mjs +2 -0
- package/esm2020/proxy/pos/dtos/index.mjs +2 -0
- package/esm2020/proxy/pos/dtos/models.mjs +2 -0
- package/esm2020/proxy/price-lists/dtos/index.mjs +2 -0
- package/esm2020/proxy/price-lists/dtos/models.mjs +2 -0
- package/esm2020/proxy/price-parameters/dtos/index.mjs +2 -0
- package/esm2020/proxy/price-parameters/dtos/models.mjs +2 -0
- package/esm2020/proxy/price-parameters/price-parameter-status.enum.mjs +9 -0
- package/esm2020/proxy/public-api.mjs +18 -2
- package/esm2020/proxy/settings/models.mjs +1 -1
- package/fesm2015/hitsoft-kadooglu-keops-config.mjs +140 -3
- package/fesm2015/hitsoft-kadooglu-keops-config.mjs.map +1 -1
- package/fesm2015/hitsoft-kadooglu-keops-proxy.mjs +556 -21
- package/fesm2015/hitsoft-kadooglu-keops-proxy.mjs.map +1 -1
- package/fesm2015/hitsoft-kadooglu-keops.mjs +4510 -763
- package/fesm2015/hitsoft-kadooglu-keops.mjs.map +1 -1
- package/fesm2020/hitsoft-kadooglu-keops-config.mjs +140 -3
- package/fesm2020/hitsoft-kadooglu-keops-config.mjs.map +1 -1
- package/fesm2020/hitsoft-kadooglu-keops-proxy.mjs +556 -21
- package/fesm2020/hitsoft-kadooglu-keops-proxy.mjs.map +1 -1
- package/fesm2020/hitsoft-kadooglu-keops.mjs +4462 -732
- package/fesm2020/hitsoft-kadooglu-keops.mjs.map +1 -1
- package/lib/features/bl-tracking/components/bl-tracking-form.component.d.ts +24 -0
- package/lib/features/bl-tracking/components/bl-tracking.component.d.ts +22 -0
- package/lib/features/bl-tracking/hit-bl-tracking-routing.module.d.ts +7 -0
- package/lib/features/bl-tracking/hit-bl-tracking.module.d.ts +18 -0
- package/lib/features/carriers/components/carrier-form.component.d.ts +24 -0
- package/lib/features/carriers/components/carriers.component.d.ts +22 -0
- package/lib/features/carriers/hit-carriers-routing.module.d.ts +7 -0
- package/lib/features/carriers/hit-carriers.module.d.ts +18 -0
- package/lib/features/container-loading-counts/components/container-loading-counts.component.d.ts +2 -2
- package/lib/features/container-pallet-capacities/components/container-pallet-capacities.component.d.ts +1 -1
- package/lib/features/cost-calculation/components/cost-calculation-inputs.component.d.ts +10 -7
- package/lib/features/cost-calculation/components/cost-calculation.component.d.ts +16 -8
- package/lib/features/cost-calculation/engine/currency.utils.d.ts +2 -2
- package/lib/features/cost-calculation/engine/formulas.d.ts +2 -2
- package/lib/features/cost-calculation/hit-cost-calculation.module.d.ts +2 -1
- package/lib/features/cost-parameter-categories/components/cost-parameter-categories.component.d.ts +0 -1
- package/lib/features/cost-parameter-categories/components/cost-parameter-category-form.component.d.ts +1 -5
- package/lib/features/cost-parameters/components/cost-parameter-form.component.d.ts +10 -7
- package/lib/features/cost-parameters/components/cost-parameters.component.d.ts +6 -6
- package/lib/features/destination-ports/components/destination-port-form.component.d.ts +25 -0
- package/lib/features/destination-ports/components/destination-ports.component.d.ts +24 -0
- package/lib/features/destination-ports/hit-destination-ports-routing.module.d.ts +7 -0
- package/lib/features/destination-ports/hit-destination-ports.module.d.ts +18 -0
- package/lib/features/fob-inland-definitions/components/fob-inland-definition-form.component.d.ts +24 -0
- package/lib/features/fob-inland-definitions/components/fob-inland-definitions.component.d.ts +22 -0
- package/lib/features/fob-inland-definitions/hit-fob-inland-definitions-routing.module.d.ts +7 -0
- package/lib/features/fob-inland-definitions/hit-fob-inland-definitions.module.d.ts +18 -0
- package/lib/features/freight-offers/components/freight-offer-copy.component.d.ts +22 -0
- package/lib/features/freight-offers/components/freight-offer-form.component.d.ts +49 -0
- package/lib/features/freight-offers/components/freight-offers.component.d.ts +47 -0
- package/lib/features/freight-offers/hit-freight-offers-routing.module.d.ts +7 -0
- package/lib/features/freight-offers/hit-freight-offers.module.d.ts +19 -0
- package/lib/features/incoterms/components/incoterm-form.component.d.ts +24 -0
- package/lib/features/incoterms/components/incoterms.component.d.ts +22 -0
- package/lib/features/incoterms/hit-incoterms-routing.module.d.ts +7 -0
- package/lib/features/incoterms/hit-incoterms.module.d.ts +18 -0
- package/lib/features/index.d.ts +21 -0
- package/lib/features/item-classifications/components/item-classifications.component.d.ts +66 -0
- package/lib/features/item-classifications/hit-item-classifications-routing.module.d.ts +7 -0
- package/lib/features/item-classifications/hit-item-classifications.module.d.ts +17 -0
- package/lib/features/item-package-groups/components/item-package-group-form.component.d.ts +24 -0
- package/lib/features/item-package-groups/components/item-package-groups.component.d.ts +22 -0
- package/lib/features/item-package-groups/hit-item-package-groups-routing.module.d.ts +7 -0
- package/lib/features/item-package-groups/hit-item-package-groups.module.d.ts +18 -0
- package/lib/features/item-package-types/components/item-package-type-form.component.d.ts +24 -0
- package/lib/features/item-package-types/components/item-package-types.component.d.ts +22 -0
- package/lib/features/item-package-types/hit-item-package-types-routing.module.d.ts +7 -0
- package/lib/features/item-package-types/hit-item-package-types.module.d.ts +18 -0
- package/lib/features/item-product-types/components/item-product-type-form.component.d.ts +24 -0
- package/lib/features/item-product-types/components/item-product-types.component.d.ts +22 -0
- package/lib/features/item-product-types/hit-item-product-types-routing.module.d.ts +7 -0
- package/lib/features/item-product-types/hit-item-product-types.module.d.ts +18 -0
- package/lib/features/lines/components/line-form.component.d.ts +24 -0
- package/lib/features/lines/components/lines.component.d.ts +22 -0
- package/lib/features/lines/hit-lines-routing.module.d.ts +7 -0
- package/lib/features/lines/hit-lines.module.d.ts +18 -0
- package/lib/features/pos/components/pos-form.component.d.ts +24 -0
- package/lib/features/pos/components/pos.component.d.ts +22 -0
- package/lib/features/pos/hit-pos-routing.module.d.ts +7 -0
- package/lib/features/pos/hit-pos.module.d.ts +18 -0
- package/lib/features/price-parameters/components/price-parameter-form-cost-items.component.d.ts +15 -0
- package/lib/features/price-parameters/components/price-parameter-form-discount-rates-modal.component.d.ts +24 -0
- package/lib/features/price-parameters/components/price-parameter-form-discount-rates.component.d.ts +22 -0
- package/lib/features/price-parameters/components/price-parameter-form-items.component.d.ts +15 -0
- package/lib/features/price-parameters/components/price-parameter-form-price-lists.component.d.ts +15 -0
- package/lib/features/price-parameters/components/price-parameter-form.component.d.ts +77 -0
- package/lib/features/price-parameters/components/price-parameter-price-update-preview-modal.component.d.ts +11 -0
- package/lib/features/price-parameters/components/price-parameters.component.d.ts +30 -0
- package/lib/features/price-parameters/hit-price-parameters-routing.module.d.ts +7 -0
- package/lib/features/price-parameters/hit-price-parameters.module.d.ts +25 -0
- package/lib/features/price-parameters/price-parameter-cost-match.service.d.ts +10 -0
- package/lib/features/price-parameters/price-parameter-form-data.service.d.ts +25 -0
- package/lib/features/price-parameters/price-parameter-l10n-helper.d.ts +2 -0
- package/lib/features/price-parameters/price-parameter-lookups.service.d.ts +15 -0
- package/lib/features/price-parameters/price-parameter-price-update.service.d.ts +30 -0
- package/lib/shared/amount-currency-input/amount-currency-input.component.d.ts +23 -0
- package/lib/shared/cost-item-classification.utils.d.ts +11 -0
- package/lib/shared/cost-item-rows.builder.d.ts +11 -0
- package/lib/shared/pipes/resolve-code-name.pipe.d.ts +11 -0
- package/lib/shared/shared-ui.module.d.ts +10 -0
- package/lib/utils/business-region.utils.d.ts +7 -0
- package/lib/utils/currency.utils.d.ts +2 -0
- package/lib/utils/exchange-rate.utils.d.ts +2 -0
- package/package.json +1 -1
- package/proxy/bl-tracking/dtos/index.d.ts +1 -0
- package/proxy/bl-tracking/dtos/models.d.ts +25 -0
- package/proxy/business-partners/dtos/index.d.ts +1 -0
- package/proxy/business-partners/dtos/models.d.ts +4 -0
- package/proxy/business-region.enum.d.ts +6 -0
- package/proxy/carriers/dtos/index.d.ts +1 -0
- package/proxy/carriers/dtos/models.d.ts +10 -0
- package/proxy/container-loading-counts/dtos/models.d.ts +1 -1
- package/proxy/controllers/bl-tracking.service.d.ts +14 -0
- package/proxy/controllers/business-partner.service.d.ts +11 -0
- package/proxy/controllers/carrier.service.d.ts +14 -0
- package/proxy/controllers/container-loading-count.service.d.ts +2 -2
- package/proxy/controllers/cost-parameter.service.d.ts +1 -2
- package/proxy/controllers/destination-port.service.d.ts +17 -0
- package/proxy/controllers/fob-inland-definition.service.d.ts +14 -0
- package/proxy/controllers/freight-offer.service.d.ts +19 -0
- package/proxy/controllers/incoterm.service.d.ts +14 -0
- package/proxy/controllers/index.d.ts +15 -0
- package/proxy/controllers/item-classification.service.d.ts +17 -0
- package/proxy/controllers/item-package-group.service.d.ts +15 -0
- package/proxy/controllers/item-package-type.service.d.ts +15 -0
- package/proxy/controllers/item-product-type.service.d.ts +15 -0
- package/proxy/controllers/item.service.d.ts +3 -1
- package/proxy/controllers/line.service.d.ts +14 -0
- package/proxy/controllers/pos.service.d.ts +14 -0
- package/proxy/controllers/price-list.service.d.ts +13 -0
- package/proxy/controllers/price-parameter.service.d.ts +16 -0
- package/proxy/cost-parameter-categories/dtos/models.d.ts +0 -4
- package/proxy/cost-parameters/dtos/models.d.ts +4 -11
- package/proxy/destination-ports/dtos/index.d.ts +1 -0
- package/proxy/destination-ports/dtos/models.d.ts +19 -0
- package/proxy/fob-inland-definitions/dtos/index.d.ts +1 -0
- package/proxy/fob-inland-definitions/dtos/models.d.ts +19 -0
- package/proxy/freight-offers/dtos/index.d.ts +1 -0
- package/proxy/freight-offers/dtos/models.d.ts +66 -0
- package/proxy/incoterms/dtos/index.d.ts +1 -0
- package/proxy/incoterms/dtos/models.d.ts +22 -0
- package/proxy/item-classifications/dtos/index.d.ts +1 -0
- package/proxy/item-classifications/dtos/models.d.ts +34 -0
- package/proxy/item-package-groups/dtos/index.d.ts +1 -0
- package/proxy/item-package-groups/dtos/models.d.ts +13 -0
- package/proxy/item-package-types/dtos/index.d.ts +1 -0
- package/proxy/item-package-types/dtos/models.d.ts +13 -0
- package/proxy/item-product-types/dtos/index.d.ts +1 -0
- package/proxy/item-product-types/dtos/models.d.ts +13 -0
- package/proxy/lines/dtos/index.d.ts +1 -0
- package/proxy/lines/dtos/models.d.ts +10 -0
- package/proxy/pos/dtos/index.d.ts +1 -0
- package/proxy/pos/dtos/models.d.ts +10 -0
- package/proxy/price-lists/dtos/index.d.ts +1 -0
- package/proxy/price-lists/dtos/models.d.ts +10 -0
- package/proxy/price-parameters/dtos/index.d.ts +1 -0
- package/proxy/price-parameters/dtos/models.d.ts +104 -0
- package/proxy/price-parameters/price-parameter-status.enum.d.ts +6 -0
- package/proxy/public-api.d.ts +17 -1
- package/proxy/settings/models.d.ts +1 -0
- package/esm2020/lib/features/cost-parameter-categories/cost-parameter-category-l10n-helper.mjs +0 -9
- package/esm2020/proxy/cost-parameter-categories/cost-parameter-category-parent-code.enum.mjs +0 -11
- package/lib/features/cost-parameter-categories/cost-parameter-category-l10n-helper.d.ts +0 -2
- package/proxy/cost-parameter-categories/cost-parameter-category-parent-code.enum.d.ts +0 -8
|
@@ -3,6 +3,14 @@ import { mapEnumToOptions } from '@abp/ng.core';
|
|
|
3
3
|
import * as i0 from '@angular/core';
|
|
4
4
|
import { Injectable } from '@angular/core';
|
|
5
5
|
|
|
6
|
+
var BusinessRegion;
|
|
7
|
+
(function (BusinessRegion) {
|
|
8
|
+
BusinessRegion[BusinessRegion["Undefined"] = 0] = "Undefined";
|
|
9
|
+
BusinessRegion[BusinessRegion["Domestic"] = 1] = "Domestic";
|
|
10
|
+
BusinessRegion[BusinessRegion["International"] = 2] = "International";
|
|
11
|
+
})(BusinessRegion || (BusinessRegion = {}));
|
|
12
|
+
const businessRegionOptions = mapEnumToOptions(BusinessRegion);
|
|
13
|
+
|
|
6
14
|
var LoadingTargetKind;
|
|
7
15
|
(function (LoadingTargetKind) {
|
|
8
16
|
LoadingTargetKind[LoadingTargetKind["Container"] = 1] = "Container";
|
|
@@ -17,6 +25,91 @@ var PalletStatus;
|
|
|
17
25
|
})(PalletStatus || (PalletStatus = {}));
|
|
18
26
|
const palletStatusOptions = mapEnumToOptions(PalletStatus);
|
|
19
27
|
|
|
28
|
+
class BlTrackingService {
|
|
29
|
+
constructor(restService) {
|
|
30
|
+
this.restService = restService;
|
|
31
|
+
this.apiName = 'KadoogluKeops';
|
|
32
|
+
this.create = (input) => this.restService.request({
|
|
33
|
+
method: 'POST',
|
|
34
|
+
url: '/api/kadoogluKeops/freight/bl-tracking',
|
|
35
|
+
body: input,
|
|
36
|
+
}, { apiName: this.apiName });
|
|
37
|
+
this.delete = (code) => this.restService.request({
|
|
38
|
+
method: 'DELETE',
|
|
39
|
+
url: `/api/kadoogluKeops/freight/bl-tracking/${code}`,
|
|
40
|
+
}, { apiName: this.apiName });
|
|
41
|
+
this.getList = () => this.restService.request({
|
|
42
|
+
method: 'GET',
|
|
43
|
+
url: '/api/kadoogluKeops/freight/bl-tracking',
|
|
44
|
+
}, { apiName: this.apiName });
|
|
45
|
+
this.update = (code, input) => this.restService.request({
|
|
46
|
+
method: 'PUT',
|
|
47
|
+
url: `/api/kadoogluKeops/freight/bl-tracking/${code}`,
|
|
48
|
+
body: input,
|
|
49
|
+
}, { apiName: this.apiName });
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
BlTrackingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BlTrackingService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
53
|
+
BlTrackingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BlTrackingService, providedIn: 'root' });
|
|
54
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BlTrackingService, decorators: [{
|
|
55
|
+
type: Injectable,
|
|
56
|
+
args: [{
|
|
57
|
+
providedIn: 'root',
|
|
58
|
+
}]
|
|
59
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
60
|
+
|
|
61
|
+
class BusinessPartnerService {
|
|
62
|
+
constructor(restService) {
|
|
63
|
+
this.restService = restService;
|
|
64
|
+
this.apiName = 'KadoogluKeops';
|
|
65
|
+
this.getList = () => this.restService.request({
|
|
66
|
+
method: 'GET',
|
|
67
|
+
url: '/api/kadoogluKeops/business-partners',
|
|
68
|
+
}, { apiName: this.apiName });
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
BusinessPartnerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BusinessPartnerService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
72
|
+
BusinessPartnerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BusinessPartnerService, providedIn: 'root' });
|
|
73
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BusinessPartnerService, decorators: [{
|
|
74
|
+
type: Injectable,
|
|
75
|
+
args: [{
|
|
76
|
+
providedIn: 'root',
|
|
77
|
+
}]
|
|
78
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
79
|
+
|
|
80
|
+
class CarrierService {
|
|
81
|
+
constructor(restService) {
|
|
82
|
+
this.restService = restService;
|
|
83
|
+
this.apiName = 'KadoogluKeops';
|
|
84
|
+
this.create = (input) => this.restService.request({
|
|
85
|
+
method: 'POST',
|
|
86
|
+
url: '/api/kadoogluKeops/freight/carriers',
|
|
87
|
+
body: input,
|
|
88
|
+
}, { apiName: this.apiName });
|
|
89
|
+
this.delete = (code) => this.restService.request({
|
|
90
|
+
method: 'DELETE',
|
|
91
|
+
url: `/api/kadoogluKeops/freight/carriers/${code}`,
|
|
92
|
+
}, { apiName: this.apiName });
|
|
93
|
+
this.getList = () => this.restService.request({
|
|
94
|
+
method: 'GET',
|
|
95
|
+
url: '/api/kadoogluKeops/freight/carriers',
|
|
96
|
+
}, { apiName: this.apiName });
|
|
97
|
+
this.update = (code, input) => this.restService.request({
|
|
98
|
+
method: 'PUT',
|
|
99
|
+
url: `/api/kadoogluKeops/freight/carriers/${code}`,
|
|
100
|
+
body: input,
|
|
101
|
+
}, { apiName: this.apiName });
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
CarrierService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CarrierService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
105
|
+
CarrierService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CarrierService, providedIn: 'root' });
|
|
106
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CarrierService, decorators: [{
|
|
107
|
+
type: Injectable,
|
|
108
|
+
args: [{
|
|
109
|
+
providedIn: 'root',
|
|
110
|
+
}]
|
|
111
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
112
|
+
|
|
20
113
|
class ContainerDefinitionService {
|
|
21
114
|
constructor(restService) {
|
|
22
115
|
this.restService = restService;
|
|
@@ -58,13 +151,13 @@ class ContainerLoadingCountService {
|
|
|
58
151
|
constructor(restService) {
|
|
59
152
|
this.restService = restService;
|
|
60
153
|
this.apiName = 'KadoogluKeops';
|
|
61
|
-
this.
|
|
154
|
+
this.getItemProductTypes = () => this.restService.request({
|
|
62
155
|
method: 'GET',
|
|
63
|
-
url: '/api/kadoogluKeops/container-loading-counts',
|
|
156
|
+
url: '/api/kadoogluKeops/container-loading-counts/item-product-types',
|
|
64
157
|
}, { apiName: this.apiName });
|
|
65
|
-
this.
|
|
158
|
+
this.getList = () => this.restService.request({
|
|
66
159
|
method: 'GET',
|
|
67
|
-
url: '/api/kadoogluKeops/container-loading-counts
|
|
160
|
+
url: '/api/kadoogluKeops/container-loading-counts',
|
|
68
161
|
}, { apiName: this.apiName });
|
|
69
162
|
this.save = (input) => this.restService.request({
|
|
70
163
|
method: 'POST',
|
|
@@ -304,10 +397,6 @@ class CostParameterService {
|
|
|
304
397
|
method: 'DELETE',
|
|
305
398
|
url: `/api/kadoogluKeops/cost-parameters/${code}`,
|
|
306
399
|
}, { apiName: this.apiName });
|
|
307
|
-
this.getCodeLookups = () => this.restService.request({
|
|
308
|
-
method: 'GET',
|
|
309
|
-
url: '/api/kadoogluKeops/cost-parameters/code-lookups',
|
|
310
|
-
}, { apiName: this.apiName });
|
|
311
400
|
this.getList = () => this.restService.request({
|
|
312
401
|
method: 'GET',
|
|
313
402
|
url: '/api/kadoogluKeops/cost-parameters',
|
|
@@ -352,6 +441,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
352
441
|
}]
|
|
353
442
|
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
354
443
|
|
|
444
|
+
class DestinationPortService {
|
|
445
|
+
constructor(restService) {
|
|
446
|
+
this.restService = restService;
|
|
447
|
+
this.apiName = 'KadoogluKeops';
|
|
448
|
+
this.create = (input) => this.restService.request({
|
|
449
|
+
method: 'POST',
|
|
450
|
+
url: '/api/kadoogluKeops/freight/destination-ports',
|
|
451
|
+
body: input,
|
|
452
|
+
}, { apiName: this.apiName });
|
|
453
|
+
this.delete = (code) => this.restService.request({
|
|
454
|
+
method: 'DELETE',
|
|
455
|
+
url: `/api/kadoogluKeops/freight/destination-ports/${code}`,
|
|
456
|
+
}, { apiName: this.apiName });
|
|
457
|
+
this.getCountriesLookup = () => this.restService.request({
|
|
458
|
+
method: 'GET',
|
|
459
|
+
url: '/api/kadoogluKeops/freight/destination-ports/countries-lookup',
|
|
460
|
+
}, { apiName: this.apiName });
|
|
461
|
+
this.getList = () => this.restService.request({
|
|
462
|
+
method: 'GET',
|
|
463
|
+
url: '/api/kadoogluKeops/freight/destination-ports',
|
|
464
|
+
}, { apiName: this.apiName });
|
|
465
|
+
this.getLookupByCountry = (countryCode) => this.restService.request({
|
|
466
|
+
method: 'GET',
|
|
467
|
+
url: `/api/kadoogluKeops/freight/destination-ports/lookup/${countryCode}`,
|
|
468
|
+
}, { apiName: this.apiName });
|
|
469
|
+
this.update = (code, input) => this.restService.request({
|
|
470
|
+
method: 'PUT',
|
|
471
|
+
url: `/api/kadoogluKeops/freight/destination-ports/${code}`,
|
|
472
|
+
body: input,
|
|
473
|
+
}, { apiName: this.apiName });
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
DestinationPortService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: DestinationPortService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
477
|
+
DestinationPortService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: DestinationPortService, providedIn: 'root' });
|
|
478
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: DestinationPortService, decorators: [{
|
|
479
|
+
type: Injectable,
|
|
480
|
+
args: [{
|
|
481
|
+
providedIn: 'root',
|
|
482
|
+
}]
|
|
483
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
484
|
+
|
|
355
485
|
class ExchangeRateService {
|
|
356
486
|
constructor(restService) {
|
|
357
487
|
this.restService = restService;
|
|
@@ -376,15 +506,289 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
376
506
|
}]
|
|
377
507
|
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
378
508
|
|
|
379
|
-
class
|
|
509
|
+
class FobInlandDefinitionService {
|
|
510
|
+
constructor(restService) {
|
|
511
|
+
this.restService = restService;
|
|
512
|
+
this.apiName = 'KadoogluKeops';
|
|
513
|
+
this.create = (input) => this.restService.request({
|
|
514
|
+
method: 'POST',
|
|
515
|
+
url: '/api/kadoogluKeops/freight/fob-inland',
|
|
516
|
+
body: input,
|
|
517
|
+
}, { apiName: this.apiName });
|
|
518
|
+
this.delete = (code) => this.restService.request({
|
|
519
|
+
method: 'DELETE',
|
|
520
|
+
url: `/api/kadoogluKeops/freight/fob-inland/${code}`,
|
|
521
|
+
}, { apiName: this.apiName });
|
|
522
|
+
this.getList = () => this.restService.request({
|
|
523
|
+
method: 'GET',
|
|
524
|
+
url: '/api/kadoogluKeops/freight/fob-inland',
|
|
525
|
+
}, { apiName: this.apiName });
|
|
526
|
+
this.update = (code, input) => this.restService.request({
|
|
527
|
+
method: 'PUT',
|
|
528
|
+
url: `/api/kadoogluKeops/freight/fob-inland/${code}`,
|
|
529
|
+
body: input,
|
|
530
|
+
}, { apiName: this.apiName });
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
FobInlandDefinitionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FobInlandDefinitionService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
534
|
+
FobInlandDefinitionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FobInlandDefinitionService, providedIn: 'root' });
|
|
535
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FobInlandDefinitionService, decorators: [{
|
|
536
|
+
type: Injectable,
|
|
537
|
+
args: [{
|
|
538
|
+
providedIn: 'root',
|
|
539
|
+
}]
|
|
540
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
541
|
+
|
|
542
|
+
class FreightOfferService {
|
|
380
543
|
constructor(restService) {
|
|
381
544
|
this.restService = restService;
|
|
382
545
|
this.apiName = 'KadoogluKeops';
|
|
546
|
+
this.copy = (code, input) => this.restService.request({
|
|
547
|
+
method: 'POST',
|
|
548
|
+
url: `/api/kadoogluKeops/freight-offers/${code}/copy`,
|
|
549
|
+
body: input,
|
|
550
|
+
}, { apiName: this.apiName });
|
|
551
|
+
this.create = (input) => this.restService.request({
|
|
552
|
+
method: 'POST',
|
|
553
|
+
url: '/api/kadoogluKeops/freight-offers',
|
|
554
|
+
body: input,
|
|
555
|
+
}, { apiName: this.apiName });
|
|
556
|
+
this.delete = (code) => this.restService.request({
|
|
557
|
+
method: 'DELETE',
|
|
558
|
+
url: `/api/kadoogluKeops/freight-offers/${code}`,
|
|
559
|
+
}, { apiName: this.apiName });
|
|
560
|
+
this.get = (code) => this.restService.request({
|
|
561
|
+
method: 'GET',
|
|
562
|
+
url: `/api/kadoogluKeops/freight-offers/${code}`,
|
|
563
|
+
}, { apiName: this.apiName });
|
|
564
|
+
this.getContainerDefinitionsLookup = () => this.restService.request({
|
|
565
|
+
method: 'GET',
|
|
566
|
+
url: '/api/kadoogluKeops/freight-offers/container-definitions-lookup',
|
|
567
|
+
}, { apiName: this.apiName });
|
|
568
|
+
this.getCountriesLookup = () => this.restService.request({
|
|
569
|
+
method: 'GET',
|
|
570
|
+
url: '/api/kadoogluKeops/freight-offers/countries-lookup',
|
|
571
|
+
}, { apiName: this.apiName });
|
|
572
|
+
this.getList = () => this.restService.request({
|
|
573
|
+
method: 'GET',
|
|
574
|
+
url: '/api/kadoogluKeops/freight-offers',
|
|
575
|
+
}, { apiName: this.apiName });
|
|
576
|
+
this.getUsdRate = () => this.restService.request({
|
|
577
|
+
method: 'GET',
|
|
578
|
+
url: '/api/kadoogluKeops/freight-offers/usd-rate',
|
|
579
|
+
}, { apiName: this.apiName });
|
|
580
|
+
this.update = (code, input) => this.restService.request({
|
|
581
|
+
method: 'PUT',
|
|
582
|
+
url: `/api/kadoogluKeops/freight-offers/${code}`,
|
|
583
|
+
body: input,
|
|
584
|
+
}, { apiName: this.apiName });
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
FreightOfferService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FreightOfferService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
588
|
+
FreightOfferService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FreightOfferService, providedIn: 'root' });
|
|
589
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FreightOfferService, decorators: [{
|
|
590
|
+
type: Injectable,
|
|
591
|
+
args: [{
|
|
592
|
+
providedIn: 'root',
|
|
593
|
+
}]
|
|
594
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
595
|
+
|
|
596
|
+
class IncotermService {
|
|
597
|
+
constructor(restService) {
|
|
598
|
+
this.restService = restService;
|
|
599
|
+
this.apiName = 'KadoogluKeops';
|
|
600
|
+
this.create = (input) => this.restService.request({
|
|
601
|
+
method: 'POST',
|
|
602
|
+
url: '/api/kadoogluKeops/freight/incoterms',
|
|
603
|
+
body: input,
|
|
604
|
+
}, { apiName: this.apiName });
|
|
605
|
+
this.delete = (code) => this.restService.request({
|
|
606
|
+
method: 'DELETE',
|
|
607
|
+
url: `/api/kadoogluKeops/freight/incoterms/${code}`,
|
|
608
|
+
}, { apiName: this.apiName });
|
|
609
|
+
this.getList = () => this.restService.request({
|
|
610
|
+
method: 'GET',
|
|
611
|
+
url: '/api/kadoogluKeops/freight/incoterms',
|
|
612
|
+
}, { apiName: this.apiName });
|
|
613
|
+
this.update = (code, input) => this.restService.request({
|
|
614
|
+
method: 'PUT',
|
|
615
|
+
url: `/api/kadoogluKeops/freight/incoterms/${code}`,
|
|
616
|
+
body: input,
|
|
617
|
+
}, { apiName: this.apiName });
|
|
618
|
+
}
|
|
619
|
+
}
|
|
620
|
+
IncotermService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: IncotermService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
621
|
+
IncotermService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: IncotermService, providedIn: 'root' });
|
|
622
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: IncotermService, decorators: [{
|
|
623
|
+
type: Injectable,
|
|
624
|
+
args: [{
|
|
625
|
+
providedIn: 'root',
|
|
626
|
+
}]
|
|
627
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
628
|
+
|
|
629
|
+
class ItemClassificationService {
|
|
630
|
+
constructor(restService) {
|
|
631
|
+
this.restService = restService;
|
|
632
|
+
this.apiName = 'KadoogluKeops';
|
|
633
|
+
this.getCostCategories = () => this.restService.request({
|
|
634
|
+
method: 'GET',
|
|
635
|
+
url: '/api/kadoogluKeops/item-classifications/cost-categories',
|
|
636
|
+
}, { apiName: this.apiName });
|
|
383
637
|
this.getList = (codePrefix) => this.restService.request({
|
|
384
638
|
method: 'GET',
|
|
385
|
-
url: '/api/kadoogluKeops/
|
|
639
|
+
url: '/api/kadoogluKeops/item-classifications',
|
|
386
640
|
params: { codePrefix },
|
|
387
641
|
}, { apiName: this.apiName });
|
|
642
|
+
this.getPackagingMaterials = () => this.restService.request({
|
|
643
|
+
method: 'GET',
|
|
644
|
+
url: '/api/kadoogluKeops/item-classifications/packaging-materials',
|
|
645
|
+
}, { apiName: this.apiName });
|
|
646
|
+
this.getSaveStatus = (jobId) => this.restService.request({
|
|
647
|
+
method: 'GET',
|
|
648
|
+
url: '/api/kadoogluKeops/item-classifications/save-status',
|
|
649
|
+
params: { jobId },
|
|
650
|
+
}, { apiName: this.apiName });
|
|
651
|
+
this.startSave = (input) => this.restService.request({
|
|
652
|
+
method: 'POST',
|
|
653
|
+
responseType: 'text',
|
|
654
|
+
url: '/api/kadoogluKeops/item-classifications/save',
|
|
655
|
+
body: input,
|
|
656
|
+
}, { apiName: this.apiName });
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
ItemClassificationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemClassificationService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
660
|
+
ItemClassificationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemClassificationService, providedIn: 'root' });
|
|
661
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemClassificationService, decorators: [{
|
|
662
|
+
type: Injectable,
|
|
663
|
+
args: [{
|
|
664
|
+
providedIn: 'root',
|
|
665
|
+
}]
|
|
666
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
667
|
+
|
|
668
|
+
class ItemPackageGroupService {
|
|
669
|
+
constructor(restService) {
|
|
670
|
+
this.restService = restService;
|
|
671
|
+
this.apiName = 'KadoogluKeops';
|
|
672
|
+
this.create = (input) => this.restService.request({
|
|
673
|
+
method: 'POST',
|
|
674
|
+
url: '/api/kadoogluKeops/item-package-groups',
|
|
675
|
+
body: input,
|
|
676
|
+
}, { apiName: this.apiName });
|
|
677
|
+
this.delete = (code) => this.restService.request({
|
|
678
|
+
method: 'DELETE',
|
|
679
|
+
url: `/api/kadoogluKeops/item-package-groups/${code}`,
|
|
680
|
+
}, { apiName: this.apiName });
|
|
681
|
+
this.get = (code) => this.restService.request({
|
|
682
|
+
method: 'GET',
|
|
683
|
+
url: `/api/kadoogluKeops/item-package-groups/${code}`,
|
|
684
|
+
}, { apiName: this.apiName });
|
|
685
|
+
this.getList = () => this.restService.request({
|
|
686
|
+
method: 'GET',
|
|
687
|
+
url: '/api/kadoogluKeops/item-package-groups',
|
|
688
|
+
}, { apiName: this.apiName });
|
|
689
|
+
this.update = (code, input) => this.restService.request({
|
|
690
|
+
method: 'PUT',
|
|
691
|
+
url: `/api/kadoogluKeops/item-package-groups/${code}`,
|
|
692
|
+
body: input,
|
|
693
|
+
}, { apiName: this.apiName });
|
|
694
|
+
}
|
|
695
|
+
}
|
|
696
|
+
ItemPackageGroupService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageGroupService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
697
|
+
ItemPackageGroupService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageGroupService, providedIn: 'root' });
|
|
698
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageGroupService, decorators: [{
|
|
699
|
+
type: Injectable,
|
|
700
|
+
args: [{
|
|
701
|
+
providedIn: 'root',
|
|
702
|
+
}]
|
|
703
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
704
|
+
|
|
705
|
+
class ItemPackageTypeService {
|
|
706
|
+
constructor(restService) {
|
|
707
|
+
this.restService = restService;
|
|
708
|
+
this.apiName = 'KadoogluKeops';
|
|
709
|
+
this.create = (input) => this.restService.request({
|
|
710
|
+
method: 'POST',
|
|
711
|
+
url: '/api/kadoogluKeops/item-package-types',
|
|
712
|
+
body: input,
|
|
713
|
+
}, { apiName: this.apiName });
|
|
714
|
+
this.delete = (code) => this.restService.request({
|
|
715
|
+
method: 'DELETE',
|
|
716
|
+
url: `/api/kadoogluKeops/item-package-types/${code}`,
|
|
717
|
+
}, { apiName: this.apiName });
|
|
718
|
+
this.get = (code) => this.restService.request({
|
|
719
|
+
method: 'GET',
|
|
720
|
+
url: `/api/kadoogluKeops/item-package-types/${code}`,
|
|
721
|
+
}, { apiName: this.apiName });
|
|
722
|
+
this.getList = () => this.restService.request({
|
|
723
|
+
method: 'GET',
|
|
724
|
+
url: '/api/kadoogluKeops/item-package-types',
|
|
725
|
+
}, { apiName: this.apiName });
|
|
726
|
+
this.update = (code, input) => this.restService.request({
|
|
727
|
+
method: 'PUT',
|
|
728
|
+
url: `/api/kadoogluKeops/item-package-types/${code}`,
|
|
729
|
+
body: input,
|
|
730
|
+
}, { apiName: this.apiName });
|
|
731
|
+
}
|
|
732
|
+
}
|
|
733
|
+
ItemPackageTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageTypeService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
734
|
+
ItemPackageTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageTypeService, providedIn: 'root' });
|
|
735
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageTypeService, decorators: [{
|
|
736
|
+
type: Injectable,
|
|
737
|
+
args: [{
|
|
738
|
+
providedIn: 'root',
|
|
739
|
+
}]
|
|
740
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
741
|
+
|
|
742
|
+
class ItemProductTypeService {
|
|
743
|
+
constructor(restService) {
|
|
744
|
+
this.restService = restService;
|
|
745
|
+
this.apiName = 'KadoogluKeops';
|
|
746
|
+
this.create = (input) => this.restService.request({
|
|
747
|
+
method: 'POST',
|
|
748
|
+
url: '/api/kadoogluKeops/item-product-types',
|
|
749
|
+
body: input,
|
|
750
|
+
}, { apiName: this.apiName });
|
|
751
|
+
this.delete = (code) => this.restService.request({
|
|
752
|
+
method: 'DELETE',
|
|
753
|
+
url: `/api/kadoogluKeops/item-product-types/${code}`,
|
|
754
|
+
}, { apiName: this.apiName });
|
|
755
|
+
this.get = (code) => this.restService.request({
|
|
756
|
+
method: 'GET',
|
|
757
|
+
url: `/api/kadoogluKeops/item-product-types/${code}`,
|
|
758
|
+
}, { apiName: this.apiName });
|
|
759
|
+
this.getList = () => this.restService.request({
|
|
760
|
+
method: 'GET',
|
|
761
|
+
url: '/api/kadoogluKeops/item-product-types',
|
|
762
|
+
}, { apiName: this.apiName });
|
|
763
|
+
this.update = (code, input) => this.restService.request({
|
|
764
|
+
method: 'PUT',
|
|
765
|
+
url: `/api/kadoogluKeops/item-product-types/${code}`,
|
|
766
|
+
body: input,
|
|
767
|
+
}, { apiName: this.apiName });
|
|
768
|
+
}
|
|
769
|
+
}
|
|
770
|
+
ItemProductTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemProductTypeService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
771
|
+
ItemProductTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemProductTypeService, providedIn: 'root' });
|
|
772
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemProductTypeService, decorators: [{
|
|
773
|
+
type: Injectable,
|
|
774
|
+
args: [{
|
|
775
|
+
providedIn: 'root',
|
|
776
|
+
}]
|
|
777
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
778
|
+
|
|
779
|
+
class ItemService {
|
|
780
|
+
constructor(restService) {
|
|
781
|
+
this.restService = restService;
|
|
782
|
+
this.apiName = 'KadoogluKeops';
|
|
783
|
+
this.getList = (codePrefix, businessRegion, cpGroupCode) => this.restService.request({
|
|
784
|
+
method: 'GET',
|
|
785
|
+
url: '/api/kadoogluKeops/items',
|
|
786
|
+
params: { codePrefix, businessRegion, cpGroupCode },
|
|
787
|
+
}, { apiName: this.apiName });
|
|
788
|
+
this.getPackagingCost = (itemCode) => this.restService.request({
|
|
789
|
+
method: 'GET',
|
|
790
|
+
url: `/api/kadoogluKeops/items/${itemCode}/packaging-cost`,
|
|
791
|
+
}, { apiName: this.apiName });
|
|
388
792
|
}
|
|
389
793
|
}
|
|
390
794
|
ItemService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
@@ -396,6 +800,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
396
800
|
}]
|
|
397
801
|
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
398
802
|
|
|
803
|
+
class LineService {
|
|
804
|
+
constructor(restService) {
|
|
805
|
+
this.restService = restService;
|
|
806
|
+
this.apiName = 'KadoogluKeops';
|
|
807
|
+
this.create = (input) => this.restService.request({
|
|
808
|
+
method: 'POST',
|
|
809
|
+
url: '/api/kadoogluKeops/freight/lines',
|
|
810
|
+
body: input,
|
|
811
|
+
}, { apiName: this.apiName });
|
|
812
|
+
this.delete = (code) => this.restService.request({
|
|
813
|
+
method: 'DELETE',
|
|
814
|
+
url: `/api/kadoogluKeops/freight/lines/${code}`,
|
|
815
|
+
}, { apiName: this.apiName });
|
|
816
|
+
this.getList = () => this.restService.request({
|
|
817
|
+
method: 'GET',
|
|
818
|
+
url: '/api/kadoogluKeops/freight/lines',
|
|
819
|
+
}, { apiName: this.apiName });
|
|
820
|
+
this.update = (code, input) => this.restService.request({
|
|
821
|
+
method: 'PUT',
|
|
822
|
+
url: `/api/kadoogluKeops/freight/lines/${code}`,
|
|
823
|
+
body: input,
|
|
824
|
+
}, { apiName: this.apiName });
|
|
825
|
+
}
|
|
826
|
+
}
|
|
827
|
+
LineService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: LineService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
828
|
+
LineService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: LineService, providedIn: 'root' });
|
|
829
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: LineService, decorators: [{
|
|
830
|
+
type: Injectable,
|
|
831
|
+
args: [{
|
|
832
|
+
providedIn: 'root',
|
|
833
|
+
}]
|
|
834
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
835
|
+
|
|
399
836
|
class PackagingMaterialService {
|
|
400
837
|
constructor(restService) {
|
|
401
838
|
this.restService = restService;
|
|
@@ -559,6 +996,64 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
559
996
|
}]
|
|
560
997
|
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
561
998
|
|
|
999
|
+
class PosService {
|
|
1000
|
+
constructor(restService) {
|
|
1001
|
+
this.restService = restService;
|
|
1002
|
+
this.apiName = 'KadoogluKeops';
|
|
1003
|
+
this.create = (input) => this.restService.request({
|
|
1004
|
+
method: 'POST',
|
|
1005
|
+
url: '/api/kadoogluKeops/freight/pos',
|
|
1006
|
+
body: input,
|
|
1007
|
+
}, { apiName: this.apiName });
|
|
1008
|
+
this.delete = (code) => this.restService.request({
|
|
1009
|
+
method: 'DELETE',
|
|
1010
|
+
url: `/api/kadoogluKeops/freight/pos/${code}`,
|
|
1011
|
+
}, { apiName: this.apiName });
|
|
1012
|
+
this.getList = () => this.restService.request({
|
|
1013
|
+
method: 'GET',
|
|
1014
|
+
url: '/api/kadoogluKeops/freight/pos',
|
|
1015
|
+
}, { apiName: this.apiName });
|
|
1016
|
+
this.update = (code, input) => this.restService.request({
|
|
1017
|
+
method: 'PUT',
|
|
1018
|
+
url: `/api/kadoogluKeops/freight/pos/${code}`,
|
|
1019
|
+
body: input,
|
|
1020
|
+
}, { apiName: this.apiName });
|
|
1021
|
+
}
|
|
1022
|
+
}
|
|
1023
|
+
PosService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PosService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1024
|
+
PosService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PosService, providedIn: 'root' });
|
|
1025
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PosService, decorators: [{
|
|
1026
|
+
type: Injectable,
|
|
1027
|
+
args: [{
|
|
1028
|
+
providedIn: 'root',
|
|
1029
|
+
}]
|
|
1030
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
1031
|
+
|
|
1032
|
+
class PriceListService {
|
|
1033
|
+
constructor(restService) {
|
|
1034
|
+
this.restService = restService;
|
|
1035
|
+
this.apiName = 'KadoogluKeops';
|
|
1036
|
+
this.getItems = (businessRegion, cpGroupCode) => this.restService.request({
|
|
1037
|
+
method: 'GET',
|
|
1038
|
+
url: '/api/kadoogluKeops/price-lists/items',
|
|
1039
|
+
params: { businessRegion, cpGroupCode },
|
|
1040
|
+
}, { apiName: this.apiName });
|
|
1041
|
+
this.getList = (businessRegion, ppTypeCode) => this.restService.request({
|
|
1042
|
+
method: 'GET',
|
|
1043
|
+
url: '/api/kadoogluKeops/price-lists',
|
|
1044
|
+
params: { businessRegion, ppTypeCode },
|
|
1045
|
+
}, { apiName: this.apiName });
|
|
1046
|
+
}
|
|
1047
|
+
}
|
|
1048
|
+
PriceListService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceListService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1049
|
+
PriceListService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceListService, providedIn: 'root' });
|
|
1050
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceListService, decorators: [{
|
|
1051
|
+
type: Injectable,
|
|
1052
|
+
args: [{
|
|
1053
|
+
providedIn: 'root',
|
|
1054
|
+
}]
|
|
1055
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
1056
|
+
|
|
562
1057
|
class PriceParameterTypeService {
|
|
563
1058
|
constructor(restService) {
|
|
564
1059
|
this.restService = restService;
|
|
@@ -596,6 +1091,48 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
596
1091
|
}]
|
|
597
1092
|
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
598
1093
|
|
|
1094
|
+
class PriceParameterService {
|
|
1095
|
+
constructor(restService) {
|
|
1096
|
+
this.restService = restService;
|
|
1097
|
+
this.apiName = 'KadoogluKeops';
|
|
1098
|
+
this.create = (input) => this.restService.request({
|
|
1099
|
+
method: 'POST',
|
|
1100
|
+
url: '/api/kadoogluKeops/price-parameters',
|
|
1101
|
+
body: input,
|
|
1102
|
+
}, { apiName: this.apiName });
|
|
1103
|
+
this.delete = (docEntry) => this.restService.request({
|
|
1104
|
+
method: 'DELETE',
|
|
1105
|
+
url: `/api/kadoogluKeops/price-parameters/${docEntry}`,
|
|
1106
|
+
}, { apiName: this.apiName });
|
|
1107
|
+
this.get = (docEntry) => this.restService.request({
|
|
1108
|
+
method: 'GET',
|
|
1109
|
+
url: `/api/kadoogluKeops/price-parameters/${docEntry}`,
|
|
1110
|
+
}, { apiName: this.apiName });
|
|
1111
|
+
this.getList = () => this.restService.request({
|
|
1112
|
+
method: 'GET',
|
|
1113
|
+
url: '/api/kadoogluKeops/price-parameters',
|
|
1114
|
+
}, { apiName: this.apiName });
|
|
1115
|
+
this.previewPriceUpdate = (input) => this.restService.request({
|
|
1116
|
+
method: 'POST',
|
|
1117
|
+
url: '/api/kadoogluKeops/price-parameters/preview-price-update',
|
|
1118
|
+
body: input,
|
|
1119
|
+
}, { apiName: this.apiName });
|
|
1120
|
+
this.update = (docEntry, input) => this.restService.request({
|
|
1121
|
+
method: 'PUT',
|
|
1122
|
+
url: `/api/kadoogluKeops/price-parameters/${docEntry}`,
|
|
1123
|
+
body: input,
|
|
1124
|
+
}, { apiName: this.apiName });
|
|
1125
|
+
}
|
|
1126
|
+
}
|
|
1127
|
+
PriceParameterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceParameterService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1128
|
+
PriceParameterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceParameterService, providedIn: 'root' });
|
|
1129
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceParameterService, decorators: [{
|
|
1130
|
+
type: Injectable,
|
|
1131
|
+
args: [{
|
|
1132
|
+
providedIn: 'root',
|
|
1133
|
+
}]
|
|
1134
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
1135
|
+
|
|
599
1136
|
class SapSalesPersonService {
|
|
600
1137
|
constructor(restService) {
|
|
601
1138
|
this.restService = restService;
|
|
@@ -656,16 +1193,6 @@ var CostItemSystemCode;
|
|
|
656
1193
|
})(CostItemSystemCode || (CostItemSystemCode = {}));
|
|
657
1194
|
const costItemSystemCodeOptions = mapEnumToOptions(CostItemSystemCode);
|
|
658
1195
|
|
|
659
|
-
var CostParameterCategoryParentCode;
|
|
660
|
-
(function (CostParameterCategoryParentCode) {
|
|
661
|
-
CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code1"] = 1] = "Code1";
|
|
662
|
-
CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code2"] = 2] = "Code2";
|
|
663
|
-
CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code3"] = 3] = "Code3";
|
|
664
|
-
CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code4"] = 4] = "Code4";
|
|
665
|
-
CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code5"] = 5] = "Code5";
|
|
666
|
-
})(CostParameterCategoryParentCode || (CostParameterCategoryParentCode = {}));
|
|
667
|
-
const costParameterCategoryParentCodeOptions = mapEnumToOptions(CostParameterCategoryParentCode);
|
|
668
|
-
|
|
669
1196
|
var CostParameterStatus;
|
|
670
1197
|
(function (CostParameterStatus) {
|
|
671
1198
|
CostParameterStatus[CostParameterStatus["Active"] = 1] = "Active";
|
|
@@ -689,11 +1216,19 @@ var ExchangeRateSource;
|
|
|
689
1216
|
})(ExchangeRateSource || (ExchangeRateSource = {}));
|
|
690
1217
|
const exchangeRateSourceOptions = mapEnumToOptions(ExchangeRateSource);
|
|
691
1218
|
|
|
1219
|
+
var PriceParameterStatus;
|
|
1220
|
+
(function (PriceParameterStatus) {
|
|
1221
|
+
PriceParameterStatus[PriceParameterStatus["Active"] = 1] = "Active";
|
|
1222
|
+
PriceParameterStatus[PriceParameterStatus["Passive"] = 2] = "Passive";
|
|
1223
|
+
PriceParameterStatus[PriceParameterStatus["InProgress"] = 3] = "InProgress";
|
|
1224
|
+
})(PriceParameterStatus || (PriceParameterStatus = {}));
|
|
1225
|
+
const priceParameterStatusOptions = mapEnumToOptions(PriceParameterStatus);
|
|
1226
|
+
|
|
692
1227
|
// Auto-generated by proxy-sync.js — do not edit manually.
|
|
693
1228
|
|
|
694
1229
|
/**
|
|
695
1230
|
* Generated bundle index. Do not edit.
|
|
696
1231
|
*/
|
|
697
1232
|
|
|
698
|
-
export { ContainerDefinitionService, ContainerLoadingCountService, ContainerLoadingScenarioService, ContainerMixTypeService, ContainerPalletCapacityService, CostGroupRole, CostGroupService, CostItemCalculationType, CostItemService, CostItemSystemCode,
|
|
1233
|
+
export { BlTrackingService, BusinessPartnerService, BusinessRegion, CarrierService, ContainerDefinitionService, ContainerLoadingCountService, ContainerLoadingScenarioService, ContainerMixTypeService, ContainerPalletCapacityService, CostGroupRole, CostGroupService, CostItemCalculationType, CostItemService, CostItemSystemCode, CostParameterCategoryService, CostParameterService, CostParameterStatus, CostSettingsService, Currency, DestinationPortService, ExchangeRateService, ExchangeRateSource, FobInlandDefinitionService, FreightOfferService, IncotermService, ItemClassificationService, ItemPackageGroupService, ItemPackageTypeService, ItemProductTypeService, ItemService, LineService, LoadingTargetKind, PackagingMaterialService, PackagingPriceService, PackagingTypeService, PalletDefinitionService, PalletStatus, PosService, PriceListService, PriceParameterService, PriceParameterStatus, PriceParameterTypeService, SapSalesPersonService, businessRegionOptions, costGroupRoleOptions, costItemCalculationTypeOptions, costItemSystemCodeOptions, costParameterStatusOptions, currencyOptions, exchangeRateSourceOptions, loadingTargetKindOptions, palletStatusOptions, priceParameterStatusOptions };
|
|
699
1234
|
//# sourceMappingURL=hitsoft-kadooglu-keops-proxy.mjs.map
|