@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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './models';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './models';
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import type { BusinessRegion } from '../../business-region.enum';
|
|
2
|
+
import type { PriceParameterStatus } from '../price-parameter-status.enum';
|
|
3
|
+
import type { Currency } from '../../currencies/currency.enum';
|
|
4
|
+
import type { CostParameterItemDto, CostParameterItemInputDto } from '../../cost-parameters/dtos/models';
|
|
5
|
+
export interface PriceParameterCreateDto {
|
|
6
|
+
typeCode: string;
|
|
7
|
+
region: BusinessRegion;
|
|
8
|
+
groupCode: string;
|
|
9
|
+
exchangeRateUsd: number;
|
|
10
|
+
exchangeRateEur: number;
|
|
11
|
+
fromDate?: string;
|
|
12
|
+
toDate?: string;
|
|
13
|
+
status: PriceParameterStatus;
|
|
14
|
+
description?: string;
|
|
15
|
+
customerCode?: string;
|
|
16
|
+
gekap: number;
|
|
17
|
+
gekapCurrency: Currency;
|
|
18
|
+
generalQuota: number;
|
|
19
|
+
promotionalQuota: number;
|
|
20
|
+
rawOilPrice: number;
|
|
21
|
+
rawOilCurrency: Currency;
|
|
22
|
+
items: CostParameterItemInputDto[];
|
|
23
|
+
discounts: PriceParameterDiscountInputDto[];
|
|
24
|
+
}
|
|
25
|
+
export interface PriceParameterDiscountDto {
|
|
26
|
+
salesEmployeeCode?: number;
|
|
27
|
+
salesEmployeeName?: string;
|
|
28
|
+
rate?: number;
|
|
29
|
+
}
|
|
30
|
+
export interface PriceParameterDiscountInputDto {
|
|
31
|
+
salesEmployeeCode?: number;
|
|
32
|
+
rate?: number;
|
|
33
|
+
}
|
|
34
|
+
export interface PriceParameterDto {
|
|
35
|
+
docEntry: number;
|
|
36
|
+
docNum?: number;
|
|
37
|
+
typeCode?: string;
|
|
38
|
+
region: BusinessRegion;
|
|
39
|
+
groupCode?: string;
|
|
40
|
+
exchangeRateUsd: number;
|
|
41
|
+
exchangeRateEur: number;
|
|
42
|
+
fromDate?: string;
|
|
43
|
+
toDate?: string;
|
|
44
|
+
docDate?: string;
|
|
45
|
+
status: PriceParameterStatus;
|
|
46
|
+
description?: string;
|
|
47
|
+
customerCode?: string;
|
|
48
|
+
gekap: number;
|
|
49
|
+
gekapCurrency: Currency;
|
|
50
|
+
generalQuota: number;
|
|
51
|
+
promotionalQuota: number;
|
|
52
|
+
rawOilPrice: number;
|
|
53
|
+
rawOilCurrency: Currency;
|
|
54
|
+
items: CostParameterItemDto[];
|
|
55
|
+
discounts: PriceParameterDiscountDto[];
|
|
56
|
+
}
|
|
57
|
+
export interface PriceParameterUpdateDto {
|
|
58
|
+
typeCode: string;
|
|
59
|
+
region: BusinessRegion;
|
|
60
|
+
groupCode: string;
|
|
61
|
+
exchangeRateUsd: number;
|
|
62
|
+
exchangeRateEur: number;
|
|
63
|
+
fromDate?: string;
|
|
64
|
+
toDate?: string;
|
|
65
|
+
status: PriceParameterStatus;
|
|
66
|
+
description?: string;
|
|
67
|
+
customerCode?: string;
|
|
68
|
+
gekap: number;
|
|
69
|
+
gekapCurrency: Currency;
|
|
70
|
+
generalQuota: number;
|
|
71
|
+
promotionalQuota: number;
|
|
72
|
+
rawOilPrice: number;
|
|
73
|
+
rawOilCurrency: Currency;
|
|
74
|
+
items: CostParameterItemInputDto[];
|
|
75
|
+
discounts: PriceParameterDiscountInputDto[];
|
|
76
|
+
}
|
|
77
|
+
export interface PriceUpdatePreviewDto {
|
|
78
|
+
priceListNo: number;
|
|
79
|
+
items: PriceUpdatePreviewItemDto[];
|
|
80
|
+
}
|
|
81
|
+
export interface PriceUpdatePreviewInputDto {
|
|
82
|
+
businessRegion: BusinessRegion;
|
|
83
|
+
cpGroupCode?: string;
|
|
84
|
+
priceListNo: number;
|
|
85
|
+
salesPriceExcludingPackagingTry: number;
|
|
86
|
+
rateUsd: number;
|
|
87
|
+
rateEur: number;
|
|
88
|
+
}
|
|
89
|
+
export interface PriceUpdatePreviewItemDto {
|
|
90
|
+
itemCode?: string;
|
|
91
|
+
itemName?: string;
|
|
92
|
+
inventoryWeight?: number;
|
|
93
|
+
packagingPriceTry: number;
|
|
94
|
+
packagingPriceUsd: number;
|
|
95
|
+
packagingPriceEur: number;
|
|
96
|
+
currentPriceTry?: number;
|
|
97
|
+
currentPriceUsd?: number;
|
|
98
|
+
currentPriceEur?: number;
|
|
99
|
+
newPriceTry: number;
|
|
100
|
+
newPriceUsd: number;
|
|
101
|
+
newPriceEur: number;
|
|
102
|
+
skipped: boolean;
|
|
103
|
+
skipReason?: string;
|
|
104
|
+
}
|
package/proxy/public-api.d.ts
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
export * from './business-region.enum';
|
|
2
|
+
export * from './bl-tracking/dtos';
|
|
3
|
+
export * from './business-partners/dtos';
|
|
4
|
+
export * from './carriers/dtos';
|
|
1
5
|
export * from './container-definitions/dtos';
|
|
2
6
|
export * from './container-loading-counts/dtos';
|
|
3
7
|
export * from './container-loading-counts/loading-target-kind.enum';
|
|
@@ -12,17 +16,29 @@ export * from './cost-items/dtos';
|
|
|
12
16
|
export * from './cost-items/cost-item-calculation-type.enum';
|
|
13
17
|
export * from './cost-items/cost-item-system-code.enum';
|
|
14
18
|
export * from './cost-parameter-categories/dtos';
|
|
15
|
-
export * from './cost-parameter-categories/cost-parameter-category-parent-code.enum';
|
|
16
19
|
export * from './cost-parameters/dtos';
|
|
17
20
|
export * from './cost-parameters/cost-parameter-status.enum';
|
|
18
21
|
export * from './currencies';
|
|
22
|
+
export * from './destination-ports/dtos';
|
|
19
23
|
export * from './exchange-rates/dtos';
|
|
20
24
|
export * from './exchange-rates/exchange-rate-source.enum';
|
|
25
|
+
export * from './fob-inland-definitions/dtos';
|
|
26
|
+
export * from './freight-offers/dtos';
|
|
27
|
+
export * from './incoterms/dtos';
|
|
28
|
+
export * from './item-classifications/dtos';
|
|
29
|
+
export * from './item-package-groups/dtos';
|
|
30
|
+
export * from './item-package-types/dtos';
|
|
31
|
+
export * from './item-product-types/dtos';
|
|
21
32
|
export * from './items/dtos';
|
|
33
|
+
export * from './lines/dtos';
|
|
22
34
|
export * from './packaging-materials/dtos';
|
|
23
35
|
export * from './packaging-prices/dtos';
|
|
24
36
|
export * from './packaging-types/dtos';
|
|
25
37
|
export * from './pallet-definitions/dtos';
|
|
38
|
+
export * from './pos/dtos';
|
|
39
|
+
export * from './price-lists/dtos';
|
|
26
40
|
export * from './price-parameter-types/dtos';
|
|
41
|
+
export * from './price-parameters/dtos';
|
|
42
|
+
export * from './price-parameters/price-parameter-status.enum';
|
|
27
43
|
export * from './sales-persons/dtos';
|
|
28
44
|
export * from './settings';
|
package/esm2020/lib/features/cost-parameter-categories/cost-parameter-category-l10n-helper.mjs
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { CostParameterCategoryParentCode } from '@hitsoft/kadooglu-keops/proxy';
|
|
2
|
-
export const parentCodeLabels = {
|
|
3
|
-
[CostParameterCategoryParentCode.Code1]: 'Keops::CostParameterCategories:ParentCode:Code1',
|
|
4
|
-
[CostParameterCategoryParentCode.Code2]: 'Keops::CostParameterCategories:ParentCode:Code2',
|
|
5
|
-
[CostParameterCategoryParentCode.Code3]: 'Keops::CostParameterCategories:ParentCode:Code3',
|
|
6
|
-
[CostParameterCategoryParentCode.Code4]: 'Keops::CostParameterCategories:ParentCode:Code4',
|
|
7
|
-
[CostParameterCategoryParentCode.Code5]: 'Keops::CostParameterCategories:ParentCode:Code5',
|
|
8
|
-
};
|
|
9
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29zdC1wYXJhbWV0ZXItY2F0ZWdvcnktbDEwbi1oZWxwZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9rYWRvb2dsdS1rZW9wcy9zcmMvbGliL2ZlYXR1cmVzL2Nvc3QtcGFyYW1ldGVyLWNhdGVnb3JpZXMvY29zdC1wYXJhbWV0ZXItY2F0ZWdvcnktbDEwbi1oZWxwZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLCtCQUErQixFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFFaEYsTUFBTSxDQUFDLE1BQU0sZ0JBQWdCLEdBQW9EO0lBQy9FLENBQUMsK0JBQStCLENBQUMsS0FBSyxDQUFDLEVBQUUsaURBQWlEO0lBQzFGLENBQUMsK0JBQStCLENBQUMsS0FBSyxDQUFDLEVBQUUsaURBQWlEO0lBQzFGLENBQUMsK0JBQStCLENBQUMsS0FBSyxDQUFDLEVBQUUsaURBQWlEO0lBQzFGLENBQUMsK0JBQStCLENBQUMsS0FBSyxDQUFDLEVBQUUsaURBQWlEO0lBQzFGLENBQUMsK0JBQStCLENBQUMsS0FBSyxDQUFDLEVBQUUsaURBQWlEO0NBQzNGLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb3N0UGFyYW1ldGVyQ2F0ZWdvcnlQYXJlbnRDb2RlIH0gZnJvbSAnQGhpdHNvZnQva2Fkb29nbHUta2VvcHMvcHJveHknO1xyXG5cclxuZXhwb3J0IGNvbnN0IHBhcmVudENvZGVMYWJlbHM6IFJlY29yZDxDb3N0UGFyYW1ldGVyQ2F0ZWdvcnlQYXJlbnRDb2RlLCBzdHJpbmc+ID0ge1xyXG4gIFtDb3N0UGFyYW1ldGVyQ2F0ZWdvcnlQYXJlbnRDb2RlLkNvZGUxXTogJ0tlb3BzOjpDb3N0UGFyYW1ldGVyQ2F0ZWdvcmllczpQYXJlbnRDb2RlOkNvZGUxJyxcclxuICBbQ29zdFBhcmFtZXRlckNhdGVnb3J5UGFyZW50Q29kZS5Db2RlMl06ICdLZW9wczo6Q29zdFBhcmFtZXRlckNhdGVnb3JpZXM6UGFyZW50Q29kZTpDb2RlMicsXHJcbiAgW0Nvc3RQYXJhbWV0ZXJDYXRlZ29yeVBhcmVudENvZGUuQ29kZTNdOiAnS2VvcHM6OkNvc3RQYXJhbWV0ZXJDYXRlZ29yaWVzOlBhcmVudENvZGU6Q29kZTMnLFxyXG4gIFtDb3N0UGFyYW1ldGVyQ2F0ZWdvcnlQYXJlbnRDb2RlLkNvZGU0XTogJ0tlb3BzOjpDb3N0UGFyYW1ldGVyQ2F0ZWdvcmllczpQYXJlbnRDb2RlOkNvZGU0JyxcclxuICBbQ29zdFBhcmFtZXRlckNhdGVnb3J5UGFyZW50Q29kZS5Db2RlNV06ICdLZW9wczo6Q29zdFBhcmFtZXRlckNhdGVnb3JpZXM6UGFyZW50Q29kZTpDb2RlNScsXHJcbn07XHJcbiJdfQ==
|
package/esm2020/proxy/cost-parameter-categories/cost-parameter-category-parent-code.enum.mjs
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { mapEnumToOptions } from '@abp/ng.core';
|
|
2
|
-
export var CostParameterCategoryParentCode;
|
|
3
|
-
(function (CostParameterCategoryParentCode) {
|
|
4
|
-
CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code1"] = 1] = "Code1";
|
|
5
|
-
CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code2"] = 2] = "Code2";
|
|
6
|
-
CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code3"] = 3] = "Code3";
|
|
7
|
-
CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code4"] = 4] = "Code4";
|
|
8
|
-
CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code5"] = 5] = "Code5";
|
|
9
|
-
})(CostParameterCategoryParentCode || (CostParameterCategoryParentCode = {}));
|
|
10
|
-
export const costParameterCategoryParentCodeOptions = mapEnumToOptions(CostParameterCategoryParentCode);
|
|
11
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29zdC1wYXJhbWV0ZXItY2F0ZWdvcnktcGFyZW50LWNvZGUuZW51bS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2thZG9vZ2x1LWtlb3BzL3Byb3h5L3NyYy9jb3N0LXBhcmFtZXRlci1jYXRlZ29yaWVzL2Nvc3QtcGFyYW1ldGVyLWNhdGVnb3J5LXBhcmVudC1jb2RlLmVudW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sY0FBYyxDQUFDO0FBRWhELE1BQU0sQ0FBTixJQUFZLCtCQU1YO0FBTkQsV0FBWSwrQkFBK0I7SUFDekMsdUZBQVMsQ0FBQTtJQUNULHVGQUFTLENBQUE7SUFDVCx1RkFBUyxDQUFBO0lBQ1QsdUZBQVMsQ0FBQTtJQUNULHVGQUFTLENBQUE7QUFDWCxDQUFDLEVBTlcsK0JBQStCLEtBQS9CLCtCQUErQixRQU0xQztBQUVELE1BQU0sQ0FBQyxNQUFNLHNDQUFzQyxHQUFHLGdCQUFnQixDQUFDLCtCQUErQixDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBtYXBFbnVtVG9PcHRpb25zIH0gZnJvbSAnQGFicC9uZy5jb3JlJztcclxuXHJcbmV4cG9ydCBlbnVtIENvc3RQYXJhbWV0ZXJDYXRlZ29yeVBhcmVudENvZGUge1xyXG4gIENvZGUxID0gMSxcclxuICBDb2RlMiA9IDIsXHJcbiAgQ29kZTMgPSAzLFxyXG4gIENvZGU0ID0gNCxcclxuICBDb2RlNSA9IDUsXHJcbn1cclxuXHJcbmV4cG9ydCBjb25zdCBjb3N0UGFyYW1ldGVyQ2F0ZWdvcnlQYXJlbnRDb2RlT3B0aW9ucyA9IG1hcEVudW1Ub09wdGlvbnMoQ29zdFBhcmFtZXRlckNhdGVnb3J5UGFyZW50Q29kZSk7XHJcbiJdfQ==
|