@hitsoft/kadooglu-keops 0.0.2 → 0.0.3
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 +15 -1
- package/esm2020/config/enums/route-names.mjs +1 -1
- package/esm2020/config/providers/route.provider.mjs +132 -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 +8 -6
- package/esm2020/lib/features/cost-calculation/components/cost-calculation.component.mjs +14 -18
- package/esm2020/lib/features/cost-calculation/engine/stage-builder.mjs +4 -3
- package/esm2020/lib/features/cost-calculation/hit-cost-calculation.module.mjs +7 -3
- package/esm2020/lib/features/cost-parameter-categories/cost-parameter-category-l10n-helper.mjs +1 -4
- package/esm2020/lib/features/cost-parameters/components/cost-parameter-form.component.mjs +19 -35
- package/esm2020/lib/features/cost-parameters/components/cost-parameters.component.mjs +17 -10
- 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-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 +252 -0
- package/esm2020/lib/features/price-parameters/components/price-parameters.component.mjs +78 -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 +93 -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 +50 -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 +32 -0
- package/esm2020/lib/kadooglu-keops-routing.module.mjs +25 -1
- package/esm2020/lib/shared/amount-currency-input/amount-currency-input.component.mjs +66 -0
- package/esm2020/lib/shared/cost-item-classification.utils.mjs +12 -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/currency.utils.mjs +3 -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/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 +15 -1
- 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/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 +40 -0
- package/esm2020/proxy/cost-parameter-categories/cost-parameter-category-parent-code.enum.mjs +1 -4
- 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-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 +16 -1
- package/fesm2015/hitsoft-kadooglu-keops-config.mjs +131 -3
- package/fesm2015/hitsoft-kadooglu-keops-config.mjs.map +1 -1
- package/fesm2015/hitsoft-kadooglu-keops-proxy.mjs +498 -12
- package/fesm2015/hitsoft-kadooglu-keops-proxy.mjs.map +1 -1
- package/fesm2015/hitsoft-kadooglu-keops.mjs +3958 -719
- package/fesm2015/hitsoft-kadooglu-keops.mjs.map +1 -1
- package/fesm2020/hitsoft-kadooglu-keops-config.mjs +131 -3
- package/fesm2020/hitsoft-kadooglu-keops-config.mjs.map +1 -1
- package/fesm2020/hitsoft-kadooglu-keops-proxy.mjs +498 -12
- package/fesm2020/hitsoft-kadooglu-keops-proxy.mjs.map +1 -1
- package/fesm2020/hitsoft-kadooglu-keops.mjs +3934 -708
- 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 +3 -2
- package/lib/features/cost-calculation/components/cost-calculation.component.d.ts +3 -3
- package/lib/features/cost-calculation/hit-cost-calculation.module.d.ts +2 -1
- package/lib/features/cost-parameters/components/cost-parameter-form.component.d.ts +9 -6
- package/lib/features/cost-parameters/components/cost-parameters.component.d.ts +6 -5
- 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-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 +70 -0
- package/lib/features/price-parameters/components/price-parameters.component.d.ts +27 -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 +24 -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 +26 -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 +16 -0
- package/lib/shared/amount-currency-input/amount-currency-input.component.d.ts +23 -0
- package/lib/shared/cost-item-classification.utils.d.ts +7 -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/currency.utils.d.ts +1 -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/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 +14 -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/line.service.d.ts +14 -0
- package/proxy/controllers/pos.service.d.ts +14 -0
- package/proxy/controllers/price-list.service.d.ts +12 -0
- package/proxy/controllers/price-parameter.service.d.ts +15 -0
- package/proxy/cost-parameter-categories/cost-parameter-category-parent-code.enum.d.ts +1 -4
- package/proxy/cost-parameters/dtos/models.d.ts +0 -8
- 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-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 +78 -0
- package/proxy/price-parameters/price-parameter-status.enum.d.ts +6 -0
- package/proxy/public-api.d.ts +15 -0
|
@@ -17,6 +17,91 @@ var PalletStatus;
|
|
|
17
17
|
})(PalletStatus || (PalletStatus = {}));
|
|
18
18
|
const palletStatusOptions = mapEnumToOptions(PalletStatus);
|
|
19
19
|
|
|
20
|
+
class BlTrackingService {
|
|
21
|
+
constructor(restService) {
|
|
22
|
+
this.restService = restService;
|
|
23
|
+
this.apiName = 'KadoogluKeops';
|
|
24
|
+
this.create = (input) => this.restService.request({
|
|
25
|
+
method: 'POST',
|
|
26
|
+
url: '/api/kadoogluKeops/freight/bl-tracking',
|
|
27
|
+
body: input,
|
|
28
|
+
}, { apiName: this.apiName });
|
|
29
|
+
this.delete = (code) => this.restService.request({
|
|
30
|
+
method: 'DELETE',
|
|
31
|
+
url: `/api/kadoogluKeops/freight/bl-tracking/${code}`,
|
|
32
|
+
}, { apiName: this.apiName });
|
|
33
|
+
this.getList = () => this.restService.request({
|
|
34
|
+
method: 'GET',
|
|
35
|
+
url: '/api/kadoogluKeops/freight/bl-tracking',
|
|
36
|
+
}, { apiName: this.apiName });
|
|
37
|
+
this.update = (code, input) => this.restService.request({
|
|
38
|
+
method: 'PUT',
|
|
39
|
+
url: `/api/kadoogluKeops/freight/bl-tracking/${code}`,
|
|
40
|
+
body: input,
|
|
41
|
+
}, { apiName: this.apiName });
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
BlTrackingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BlTrackingService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
45
|
+
BlTrackingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BlTrackingService, providedIn: 'root' });
|
|
46
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BlTrackingService, decorators: [{
|
|
47
|
+
type: Injectable,
|
|
48
|
+
args: [{
|
|
49
|
+
providedIn: 'root',
|
|
50
|
+
}]
|
|
51
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
52
|
+
|
|
53
|
+
class BusinessPartnerService {
|
|
54
|
+
constructor(restService) {
|
|
55
|
+
this.restService = restService;
|
|
56
|
+
this.apiName = 'KadoogluKeops';
|
|
57
|
+
this.getList = () => this.restService.request({
|
|
58
|
+
method: 'GET',
|
|
59
|
+
url: '/api/kadoogluKeops/business-partners',
|
|
60
|
+
}, { apiName: this.apiName });
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
BusinessPartnerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BusinessPartnerService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
64
|
+
BusinessPartnerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BusinessPartnerService, providedIn: 'root' });
|
|
65
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BusinessPartnerService, decorators: [{
|
|
66
|
+
type: Injectable,
|
|
67
|
+
args: [{
|
|
68
|
+
providedIn: 'root',
|
|
69
|
+
}]
|
|
70
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
71
|
+
|
|
72
|
+
class CarrierService {
|
|
73
|
+
constructor(restService) {
|
|
74
|
+
this.restService = restService;
|
|
75
|
+
this.apiName = 'KadoogluKeops';
|
|
76
|
+
this.create = (input) => this.restService.request({
|
|
77
|
+
method: 'POST',
|
|
78
|
+
url: '/api/kadoogluKeops/freight/carriers',
|
|
79
|
+
body: input,
|
|
80
|
+
}, { apiName: this.apiName });
|
|
81
|
+
this.delete = (code) => this.restService.request({
|
|
82
|
+
method: 'DELETE',
|
|
83
|
+
url: `/api/kadoogluKeops/freight/carriers/${code}`,
|
|
84
|
+
}, { apiName: this.apiName });
|
|
85
|
+
this.getList = () => this.restService.request({
|
|
86
|
+
method: 'GET',
|
|
87
|
+
url: '/api/kadoogluKeops/freight/carriers',
|
|
88
|
+
}, { apiName: this.apiName });
|
|
89
|
+
this.update = (code, input) => this.restService.request({
|
|
90
|
+
method: 'PUT',
|
|
91
|
+
url: `/api/kadoogluKeops/freight/carriers/${code}`,
|
|
92
|
+
body: input,
|
|
93
|
+
}, { apiName: this.apiName });
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
CarrierService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CarrierService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
97
|
+
CarrierService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CarrierService, providedIn: 'root' });
|
|
98
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CarrierService, decorators: [{
|
|
99
|
+
type: Injectable,
|
|
100
|
+
args: [{
|
|
101
|
+
providedIn: 'root',
|
|
102
|
+
}]
|
|
103
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
104
|
+
|
|
20
105
|
class ContainerDefinitionService {
|
|
21
106
|
constructor(restService) {
|
|
22
107
|
this.restService = restService;
|
|
@@ -58,13 +143,13 @@ class ContainerLoadingCountService {
|
|
|
58
143
|
constructor(restService) {
|
|
59
144
|
this.restService = restService;
|
|
60
145
|
this.apiName = 'KadoogluKeops';
|
|
61
|
-
this.
|
|
146
|
+
this.getItemProductTypes = () => this.restService.request({
|
|
62
147
|
method: 'GET',
|
|
63
|
-
url: '/api/kadoogluKeops/container-loading-counts',
|
|
148
|
+
url: '/api/kadoogluKeops/container-loading-counts/item-product-types',
|
|
64
149
|
}, { apiName: this.apiName });
|
|
65
|
-
this.
|
|
150
|
+
this.getList = () => this.restService.request({
|
|
66
151
|
method: 'GET',
|
|
67
|
-
url: '/api/kadoogluKeops/container-loading-counts
|
|
152
|
+
url: '/api/kadoogluKeops/container-loading-counts',
|
|
68
153
|
}, { apiName: this.apiName });
|
|
69
154
|
this.save = (input) => this.restService.request({
|
|
70
155
|
method: 'POST',
|
|
@@ -304,10 +389,6 @@ class CostParameterService {
|
|
|
304
389
|
method: 'DELETE',
|
|
305
390
|
url: `/api/kadoogluKeops/cost-parameters/${code}`,
|
|
306
391
|
}, { 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
392
|
this.getList = () => this.restService.request({
|
|
312
393
|
method: 'GET',
|
|
313
394
|
url: '/api/kadoogluKeops/cost-parameters',
|
|
@@ -352,6 +433,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
352
433
|
}]
|
|
353
434
|
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
354
435
|
|
|
436
|
+
class DestinationPortService {
|
|
437
|
+
constructor(restService) {
|
|
438
|
+
this.restService = restService;
|
|
439
|
+
this.apiName = 'KadoogluKeops';
|
|
440
|
+
this.create = (input) => this.restService.request({
|
|
441
|
+
method: 'POST',
|
|
442
|
+
url: '/api/kadoogluKeops/freight/destination-ports',
|
|
443
|
+
body: input,
|
|
444
|
+
}, { apiName: this.apiName });
|
|
445
|
+
this.delete = (code) => this.restService.request({
|
|
446
|
+
method: 'DELETE',
|
|
447
|
+
url: `/api/kadoogluKeops/freight/destination-ports/${code}`,
|
|
448
|
+
}, { apiName: this.apiName });
|
|
449
|
+
this.getCountriesLookup = () => this.restService.request({
|
|
450
|
+
method: 'GET',
|
|
451
|
+
url: '/api/kadoogluKeops/freight/destination-ports/countries-lookup',
|
|
452
|
+
}, { apiName: this.apiName });
|
|
453
|
+
this.getList = () => this.restService.request({
|
|
454
|
+
method: 'GET',
|
|
455
|
+
url: '/api/kadoogluKeops/freight/destination-ports',
|
|
456
|
+
}, { apiName: this.apiName });
|
|
457
|
+
this.getLookupByCountry = (countryCode) => this.restService.request({
|
|
458
|
+
method: 'GET',
|
|
459
|
+
url: `/api/kadoogluKeops/freight/destination-ports/lookup/${countryCode}`,
|
|
460
|
+
}, { apiName: this.apiName });
|
|
461
|
+
this.update = (code, input) => this.restService.request({
|
|
462
|
+
method: 'PUT',
|
|
463
|
+
url: `/api/kadoogluKeops/freight/destination-ports/${code}`,
|
|
464
|
+
body: input,
|
|
465
|
+
}, { apiName: this.apiName });
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
DestinationPortService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: DestinationPortService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
469
|
+
DestinationPortService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: DestinationPortService, providedIn: 'root' });
|
|
470
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: DestinationPortService, decorators: [{
|
|
471
|
+
type: Injectable,
|
|
472
|
+
args: [{
|
|
473
|
+
providedIn: 'root',
|
|
474
|
+
}]
|
|
475
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
476
|
+
|
|
355
477
|
class ExchangeRateService {
|
|
356
478
|
constructor(restService) {
|
|
357
479
|
this.restService = restService;
|
|
@@ -376,6 +498,237 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
376
498
|
}]
|
|
377
499
|
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
378
500
|
|
|
501
|
+
class FobInlandDefinitionService {
|
|
502
|
+
constructor(restService) {
|
|
503
|
+
this.restService = restService;
|
|
504
|
+
this.apiName = 'KadoogluKeops';
|
|
505
|
+
this.create = (input) => this.restService.request({
|
|
506
|
+
method: 'POST',
|
|
507
|
+
url: '/api/kadoogluKeops/freight/fob-inland',
|
|
508
|
+
body: input,
|
|
509
|
+
}, { apiName: this.apiName });
|
|
510
|
+
this.delete = (code) => this.restService.request({
|
|
511
|
+
method: 'DELETE',
|
|
512
|
+
url: `/api/kadoogluKeops/freight/fob-inland/${code}`,
|
|
513
|
+
}, { apiName: this.apiName });
|
|
514
|
+
this.getList = () => this.restService.request({
|
|
515
|
+
method: 'GET',
|
|
516
|
+
url: '/api/kadoogluKeops/freight/fob-inland',
|
|
517
|
+
}, { apiName: this.apiName });
|
|
518
|
+
this.update = (code, input) => this.restService.request({
|
|
519
|
+
method: 'PUT',
|
|
520
|
+
url: `/api/kadoogluKeops/freight/fob-inland/${code}`,
|
|
521
|
+
body: input,
|
|
522
|
+
}, { apiName: this.apiName });
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
FobInlandDefinitionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FobInlandDefinitionService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
526
|
+
FobInlandDefinitionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FobInlandDefinitionService, providedIn: 'root' });
|
|
527
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FobInlandDefinitionService, decorators: [{
|
|
528
|
+
type: Injectable,
|
|
529
|
+
args: [{
|
|
530
|
+
providedIn: 'root',
|
|
531
|
+
}]
|
|
532
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
533
|
+
|
|
534
|
+
class FreightOfferService {
|
|
535
|
+
constructor(restService) {
|
|
536
|
+
this.restService = restService;
|
|
537
|
+
this.apiName = 'KadoogluKeops';
|
|
538
|
+
this.copy = (code, input) => this.restService.request({
|
|
539
|
+
method: 'POST',
|
|
540
|
+
url: `/api/kadoogluKeops/freight-offers/${code}/copy`,
|
|
541
|
+
body: input,
|
|
542
|
+
}, { apiName: this.apiName });
|
|
543
|
+
this.create = (input) => this.restService.request({
|
|
544
|
+
method: 'POST',
|
|
545
|
+
url: '/api/kadoogluKeops/freight-offers',
|
|
546
|
+
body: input,
|
|
547
|
+
}, { apiName: this.apiName });
|
|
548
|
+
this.delete = (code) => this.restService.request({
|
|
549
|
+
method: 'DELETE',
|
|
550
|
+
url: `/api/kadoogluKeops/freight-offers/${code}`,
|
|
551
|
+
}, { apiName: this.apiName });
|
|
552
|
+
this.get = (code) => this.restService.request({
|
|
553
|
+
method: 'GET',
|
|
554
|
+
url: `/api/kadoogluKeops/freight-offers/${code}`,
|
|
555
|
+
}, { apiName: this.apiName });
|
|
556
|
+
this.getContainerDefinitionsLookup = () => this.restService.request({
|
|
557
|
+
method: 'GET',
|
|
558
|
+
url: '/api/kadoogluKeops/freight-offers/container-definitions-lookup',
|
|
559
|
+
}, { apiName: this.apiName });
|
|
560
|
+
this.getCountriesLookup = () => this.restService.request({
|
|
561
|
+
method: 'GET',
|
|
562
|
+
url: '/api/kadoogluKeops/freight-offers/countries-lookup',
|
|
563
|
+
}, { apiName: this.apiName });
|
|
564
|
+
this.getList = () => this.restService.request({
|
|
565
|
+
method: 'GET',
|
|
566
|
+
url: '/api/kadoogluKeops/freight-offers',
|
|
567
|
+
}, { apiName: this.apiName });
|
|
568
|
+
this.getUsdRate = () => this.restService.request({
|
|
569
|
+
method: 'GET',
|
|
570
|
+
url: '/api/kadoogluKeops/freight-offers/usd-rate',
|
|
571
|
+
}, { apiName: this.apiName });
|
|
572
|
+
this.update = (code, input) => this.restService.request({
|
|
573
|
+
method: 'PUT',
|
|
574
|
+
url: `/api/kadoogluKeops/freight-offers/${code}`,
|
|
575
|
+
body: input,
|
|
576
|
+
}, { apiName: this.apiName });
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
FreightOfferService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FreightOfferService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
580
|
+
FreightOfferService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FreightOfferService, providedIn: 'root' });
|
|
581
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FreightOfferService, decorators: [{
|
|
582
|
+
type: Injectable,
|
|
583
|
+
args: [{
|
|
584
|
+
providedIn: 'root',
|
|
585
|
+
}]
|
|
586
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
587
|
+
|
|
588
|
+
class IncotermService {
|
|
589
|
+
constructor(restService) {
|
|
590
|
+
this.restService = restService;
|
|
591
|
+
this.apiName = 'KadoogluKeops';
|
|
592
|
+
this.create = (input) => this.restService.request({
|
|
593
|
+
method: 'POST',
|
|
594
|
+
url: '/api/kadoogluKeops/freight/incoterms',
|
|
595
|
+
body: input,
|
|
596
|
+
}, { apiName: this.apiName });
|
|
597
|
+
this.delete = (code) => this.restService.request({
|
|
598
|
+
method: 'DELETE',
|
|
599
|
+
url: `/api/kadoogluKeops/freight/incoterms/${code}`,
|
|
600
|
+
}, { apiName: this.apiName });
|
|
601
|
+
this.getList = () => this.restService.request({
|
|
602
|
+
method: 'GET',
|
|
603
|
+
url: '/api/kadoogluKeops/freight/incoterms',
|
|
604
|
+
}, { apiName: this.apiName });
|
|
605
|
+
this.update = (code, input) => this.restService.request({
|
|
606
|
+
method: 'PUT',
|
|
607
|
+
url: `/api/kadoogluKeops/freight/incoterms/${code}`,
|
|
608
|
+
body: input,
|
|
609
|
+
}, { apiName: this.apiName });
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
IncotermService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: IncotermService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
613
|
+
IncotermService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: IncotermService, providedIn: 'root' });
|
|
614
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: IncotermService, decorators: [{
|
|
615
|
+
type: Injectable,
|
|
616
|
+
args: [{
|
|
617
|
+
providedIn: 'root',
|
|
618
|
+
}]
|
|
619
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
620
|
+
|
|
621
|
+
class ItemPackageGroupService {
|
|
622
|
+
constructor(restService) {
|
|
623
|
+
this.restService = restService;
|
|
624
|
+
this.apiName = 'KadoogluKeops';
|
|
625
|
+
this.create = (input) => this.restService.request({
|
|
626
|
+
method: 'POST',
|
|
627
|
+
url: '/api/kadoogluKeops/item-package-groups',
|
|
628
|
+
body: input,
|
|
629
|
+
}, { apiName: this.apiName });
|
|
630
|
+
this.delete = (code) => this.restService.request({
|
|
631
|
+
method: 'DELETE',
|
|
632
|
+
url: `/api/kadoogluKeops/item-package-groups/${code}`,
|
|
633
|
+
}, { apiName: this.apiName });
|
|
634
|
+
this.get = (code) => this.restService.request({
|
|
635
|
+
method: 'GET',
|
|
636
|
+
url: `/api/kadoogluKeops/item-package-groups/${code}`,
|
|
637
|
+
}, { apiName: this.apiName });
|
|
638
|
+
this.getList = () => this.restService.request({
|
|
639
|
+
method: 'GET',
|
|
640
|
+
url: '/api/kadoogluKeops/item-package-groups',
|
|
641
|
+
}, { apiName: this.apiName });
|
|
642
|
+
this.update = (code, input) => this.restService.request({
|
|
643
|
+
method: 'PUT',
|
|
644
|
+
url: `/api/kadoogluKeops/item-package-groups/${code}`,
|
|
645
|
+
body: input,
|
|
646
|
+
}, { apiName: this.apiName });
|
|
647
|
+
}
|
|
648
|
+
}
|
|
649
|
+
ItemPackageGroupService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageGroupService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
650
|
+
ItemPackageGroupService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageGroupService, providedIn: 'root' });
|
|
651
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageGroupService, decorators: [{
|
|
652
|
+
type: Injectable,
|
|
653
|
+
args: [{
|
|
654
|
+
providedIn: 'root',
|
|
655
|
+
}]
|
|
656
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
657
|
+
|
|
658
|
+
class ItemPackageTypeService {
|
|
659
|
+
constructor(restService) {
|
|
660
|
+
this.restService = restService;
|
|
661
|
+
this.apiName = 'KadoogluKeops';
|
|
662
|
+
this.create = (input) => this.restService.request({
|
|
663
|
+
method: 'POST',
|
|
664
|
+
url: '/api/kadoogluKeops/item-package-types',
|
|
665
|
+
body: input,
|
|
666
|
+
}, { apiName: this.apiName });
|
|
667
|
+
this.delete = (code) => this.restService.request({
|
|
668
|
+
method: 'DELETE',
|
|
669
|
+
url: `/api/kadoogluKeops/item-package-types/${code}`,
|
|
670
|
+
}, { apiName: this.apiName });
|
|
671
|
+
this.get = (code) => this.restService.request({
|
|
672
|
+
method: 'GET',
|
|
673
|
+
url: `/api/kadoogluKeops/item-package-types/${code}`,
|
|
674
|
+
}, { apiName: this.apiName });
|
|
675
|
+
this.getList = () => this.restService.request({
|
|
676
|
+
method: 'GET',
|
|
677
|
+
url: '/api/kadoogluKeops/item-package-types',
|
|
678
|
+
}, { apiName: this.apiName });
|
|
679
|
+
this.update = (code, input) => this.restService.request({
|
|
680
|
+
method: 'PUT',
|
|
681
|
+
url: `/api/kadoogluKeops/item-package-types/${code}`,
|
|
682
|
+
body: input,
|
|
683
|
+
}, { apiName: this.apiName });
|
|
684
|
+
}
|
|
685
|
+
}
|
|
686
|
+
ItemPackageTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageTypeService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
687
|
+
ItemPackageTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageTypeService, providedIn: 'root' });
|
|
688
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageTypeService, decorators: [{
|
|
689
|
+
type: Injectable,
|
|
690
|
+
args: [{
|
|
691
|
+
providedIn: 'root',
|
|
692
|
+
}]
|
|
693
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
694
|
+
|
|
695
|
+
class ItemProductTypeService {
|
|
696
|
+
constructor(restService) {
|
|
697
|
+
this.restService = restService;
|
|
698
|
+
this.apiName = 'KadoogluKeops';
|
|
699
|
+
this.create = (input) => this.restService.request({
|
|
700
|
+
method: 'POST',
|
|
701
|
+
url: '/api/kadoogluKeops/item-product-types',
|
|
702
|
+
body: input,
|
|
703
|
+
}, { apiName: this.apiName });
|
|
704
|
+
this.delete = (code) => this.restService.request({
|
|
705
|
+
method: 'DELETE',
|
|
706
|
+
url: `/api/kadoogluKeops/item-product-types/${code}`,
|
|
707
|
+
}, { apiName: this.apiName });
|
|
708
|
+
this.get = (code) => this.restService.request({
|
|
709
|
+
method: 'GET',
|
|
710
|
+
url: `/api/kadoogluKeops/item-product-types/${code}`,
|
|
711
|
+
}, { apiName: this.apiName });
|
|
712
|
+
this.getList = () => this.restService.request({
|
|
713
|
+
method: 'GET',
|
|
714
|
+
url: '/api/kadoogluKeops/item-product-types',
|
|
715
|
+
}, { apiName: this.apiName });
|
|
716
|
+
this.update = (code, input) => this.restService.request({
|
|
717
|
+
method: 'PUT',
|
|
718
|
+
url: `/api/kadoogluKeops/item-product-types/${code}`,
|
|
719
|
+
body: input,
|
|
720
|
+
}, { apiName: this.apiName });
|
|
721
|
+
}
|
|
722
|
+
}
|
|
723
|
+
ItemProductTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemProductTypeService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
724
|
+
ItemProductTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemProductTypeService, providedIn: 'root' });
|
|
725
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemProductTypeService, decorators: [{
|
|
726
|
+
type: Injectable,
|
|
727
|
+
args: [{
|
|
728
|
+
providedIn: 'root',
|
|
729
|
+
}]
|
|
730
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
731
|
+
|
|
379
732
|
class ItemService {
|
|
380
733
|
constructor(restService) {
|
|
381
734
|
this.restService = restService;
|
|
@@ -396,6 +749,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
396
749
|
}]
|
|
397
750
|
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
398
751
|
|
|
752
|
+
class LineService {
|
|
753
|
+
constructor(restService) {
|
|
754
|
+
this.restService = restService;
|
|
755
|
+
this.apiName = 'KadoogluKeops';
|
|
756
|
+
this.create = (input) => this.restService.request({
|
|
757
|
+
method: 'POST',
|
|
758
|
+
url: '/api/kadoogluKeops/freight/lines',
|
|
759
|
+
body: input,
|
|
760
|
+
}, { apiName: this.apiName });
|
|
761
|
+
this.delete = (code) => this.restService.request({
|
|
762
|
+
method: 'DELETE',
|
|
763
|
+
url: `/api/kadoogluKeops/freight/lines/${code}`,
|
|
764
|
+
}, { apiName: this.apiName });
|
|
765
|
+
this.getList = () => this.restService.request({
|
|
766
|
+
method: 'GET',
|
|
767
|
+
url: '/api/kadoogluKeops/freight/lines',
|
|
768
|
+
}, { apiName: this.apiName });
|
|
769
|
+
this.update = (code, input) => this.restService.request({
|
|
770
|
+
method: 'PUT',
|
|
771
|
+
url: `/api/kadoogluKeops/freight/lines/${code}`,
|
|
772
|
+
body: input,
|
|
773
|
+
}, { apiName: this.apiName });
|
|
774
|
+
}
|
|
775
|
+
}
|
|
776
|
+
LineService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: LineService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
777
|
+
LineService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: LineService, providedIn: 'root' });
|
|
778
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: LineService, decorators: [{
|
|
779
|
+
type: Injectable,
|
|
780
|
+
args: [{
|
|
781
|
+
providedIn: 'root',
|
|
782
|
+
}]
|
|
783
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
784
|
+
|
|
399
785
|
class PackagingMaterialService {
|
|
400
786
|
constructor(restService) {
|
|
401
787
|
this.restService = restService;
|
|
@@ -559,6 +945,64 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
559
945
|
}]
|
|
560
946
|
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
561
947
|
|
|
948
|
+
class PosService {
|
|
949
|
+
constructor(restService) {
|
|
950
|
+
this.restService = restService;
|
|
951
|
+
this.apiName = 'KadoogluKeops';
|
|
952
|
+
this.create = (input) => this.restService.request({
|
|
953
|
+
method: 'POST',
|
|
954
|
+
url: '/api/kadoogluKeops/freight/pos',
|
|
955
|
+
body: input,
|
|
956
|
+
}, { apiName: this.apiName });
|
|
957
|
+
this.delete = (code) => this.restService.request({
|
|
958
|
+
method: 'DELETE',
|
|
959
|
+
url: `/api/kadoogluKeops/freight/pos/${code}`,
|
|
960
|
+
}, { apiName: this.apiName });
|
|
961
|
+
this.getList = () => this.restService.request({
|
|
962
|
+
method: 'GET',
|
|
963
|
+
url: '/api/kadoogluKeops/freight/pos',
|
|
964
|
+
}, { apiName: this.apiName });
|
|
965
|
+
this.update = (code, input) => this.restService.request({
|
|
966
|
+
method: 'PUT',
|
|
967
|
+
url: `/api/kadoogluKeops/freight/pos/${code}`,
|
|
968
|
+
body: input,
|
|
969
|
+
}, { apiName: this.apiName });
|
|
970
|
+
}
|
|
971
|
+
}
|
|
972
|
+
PosService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PosService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
973
|
+
PosService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PosService, providedIn: 'root' });
|
|
974
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PosService, decorators: [{
|
|
975
|
+
type: Injectable,
|
|
976
|
+
args: [{
|
|
977
|
+
providedIn: 'root',
|
|
978
|
+
}]
|
|
979
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
980
|
+
|
|
981
|
+
class PriceListService {
|
|
982
|
+
constructor(restService) {
|
|
983
|
+
this.restService = restService;
|
|
984
|
+
this.apiName = 'KadoogluKeops';
|
|
985
|
+
this.getItems = (cpRegionCode, cpGroupCode) => this.restService.request({
|
|
986
|
+
method: 'GET',
|
|
987
|
+
url: '/api/kadoogluKeops/price-lists/items',
|
|
988
|
+
params: { cpRegionCode, cpGroupCode },
|
|
989
|
+
}, { apiName: this.apiName });
|
|
990
|
+
this.getList = (cpRegionCode, ppTypeCode) => this.restService.request({
|
|
991
|
+
method: 'GET',
|
|
992
|
+
url: '/api/kadoogluKeops/price-lists',
|
|
993
|
+
params: { cpRegionCode, ppTypeCode },
|
|
994
|
+
}, { apiName: this.apiName });
|
|
995
|
+
}
|
|
996
|
+
}
|
|
997
|
+
PriceListService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceListService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
998
|
+
PriceListService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceListService, providedIn: 'root' });
|
|
999
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceListService, decorators: [{
|
|
1000
|
+
type: Injectable,
|
|
1001
|
+
args: [{
|
|
1002
|
+
providedIn: 'root',
|
|
1003
|
+
}]
|
|
1004
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
1005
|
+
|
|
562
1006
|
class PriceParameterTypeService {
|
|
563
1007
|
constructor(restService) {
|
|
564
1008
|
this.restService = restService;
|
|
@@ -596,6 +1040,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
596
1040
|
}]
|
|
597
1041
|
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
598
1042
|
|
|
1043
|
+
class PriceParameterService {
|
|
1044
|
+
constructor(restService) {
|
|
1045
|
+
this.restService = restService;
|
|
1046
|
+
this.apiName = 'KadoogluKeops';
|
|
1047
|
+
this.create = (input) => this.restService.request({
|
|
1048
|
+
method: 'POST',
|
|
1049
|
+
url: '/api/kadoogluKeops/price-parameters',
|
|
1050
|
+
body: input,
|
|
1051
|
+
}, { apiName: this.apiName });
|
|
1052
|
+
this.delete = (docEntry) => this.restService.request({
|
|
1053
|
+
method: 'DELETE',
|
|
1054
|
+
url: `/api/kadoogluKeops/price-parameters/${docEntry}`,
|
|
1055
|
+
}, { apiName: this.apiName });
|
|
1056
|
+
this.get = (docEntry) => this.restService.request({
|
|
1057
|
+
method: 'GET',
|
|
1058
|
+
url: `/api/kadoogluKeops/price-parameters/${docEntry}`,
|
|
1059
|
+
}, { apiName: this.apiName });
|
|
1060
|
+
this.getList = () => this.restService.request({
|
|
1061
|
+
method: 'GET',
|
|
1062
|
+
url: '/api/kadoogluKeops/price-parameters',
|
|
1063
|
+
}, { apiName: this.apiName });
|
|
1064
|
+
this.update = (docEntry, input) => this.restService.request({
|
|
1065
|
+
method: 'PUT',
|
|
1066
|
+
url: `/api/kadoogluKeops/price-parameters/${docEntry}`,
|
|
1067
|
+
body: input,
|
|
1068
|
+
}, { apiName: this.apiName });
|
|
1069
|
+
}
|
|
1070
|
+
}
|
|
1071
|
+
PriceParameterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceParameterService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1072
|
+
PriceParameterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceParameterService, providedIn: 'root' });
|
|
1073
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceParameterService, decorators: [{
|
|
1074
|
+
type: Injectable,
|
|
1075
|
+
args: [{
|
|
1076
|
+
providedIn: 'root',
|
|
1077
|
+
}]
|
|
1078
|
+
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
1079
|
+
|
|
599
1080
|
class SapSalesPersonService {
|
|
600
1081
|
constructor(restService) {
|
|
601
1082
|
this.restService = restService;
|
|
@@ -659,10 +1140,7 @@ const costItemSystemCodeOptions = mapEnumToOptions(CostItemSystemCode);
|
|
|
659
1140
|
var CostParameterCategoryParentCode;
|
|
660
1141
|
(function (CostParameterCategoryParentCode) {
|
|
661
1142
|
CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code1"] = 1] = "Code1";
|
|
662
|
-
CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code2"] = 2] = "Code2";
|
|
663
|
-
CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code3"] = 3] = "Code3";
|
|
664
1143
|
CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code4"] = 4] = "Code4";
|
|
665
|
-
CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code5"] = 5] = "Code5";
|
|
666
1144
|
})(CostParameterCategoryParentCode || (CostParameterCategoryParentCode = {}));
|
|
667
1145
|
const costParameterCategoryParentCodeOptions = mapEnumToOptions(CostParameterCategoryParentCode);
|
|
668
1146
|
|
|
@@ -689,11 +1167,19 @@ var ExchangeRateSource;
|
|
|
689
1167
|
})(ExchangeRateSource || (ExchangeRateSource = {}));
|
|
690
1168
|
const exchangeRateSourceOptions = mapEnumToOptions(ExchangeRateSource);
|
|
691
1169
|
|
|
1170
|
+
var PriceParameterStatus;
|
|
1171
|
+
(function (PriceParameterStatus) {
|
|
1172
|
+
PriceParameterStatus[PriceParameterStatus["Active"] = 1] = "Active";
|
|
1173
|
+
PriceParameterStatus[PriceParameterStatus["Passive"] = 2] = "Passive";
|
|
1174
|
+
PriceParameterStatus[PriceParameterStatus["InProgress"] = 3] = "InProgress";
|
|
1175
|
+
})(PriceParameterStatus || (PriceParameterStatus = {}));
|
|
1176
|
+
const priceParameterStatusOptions = mapEnumToOptions(PriceParameterStatus);
|
|
1177
|
+
|
|
692
1178
|
// Auto-generated by proxy-sync.js — do not edit manually.
|
|
693
1179
|
|
|
694
1180
|
/**
|
|
695
1181
|
* Generated bundle index. Do not edit.
|
|
696
1182
|
*/
|
|
697
1183
|
|
|
698
|
-
export { ContainerDefinitionService, ContainerLoadingCountService, ContainerLoadingScenarioService, ContainerMixTypeService, ContainerPalletCapacityService, CostGroupRole, CostGroupService, CostItemCalculationType, CostItemService, CostItemSystemCode, CostParameterCategoryParentCode, CostParameterCategoryService, CostParameterService, CostParameterStatus, CostSettingsService, Currency, ExchangeRateService, ExchangeRateSource, ItemService, LoadingTargetKind, PackagingMaterialService, PackagingPriceService, PackagingTypeService, PalletDefinitionService, PalletStatus, PriceParameterTypeService, SapSalesPersonService, costGroupRoleOptions, costItemCalculationTypeOptions, costItemSystemCodeOptions, costParameterCategoryParentCodeOptions, costParameterStatusOptions, currencyOptions, exchangeRateSourceOptions, loadingTargetKindOptions, palletStatusOptions };
|
|
1184
|
+
export { BlTrackingService, BusinessPartnerService, CarrierService, ContainerDefinitionService, ContainerLoadingCountService, ContainerLoadingScenarioService, ContainerMixTypeService, ContainerPalletCapacityService, CostGroupRole, CostGroupService, CostItemCalculationType, CostItemService, CostItemSystemCode, CostParameterCategoryParentCode, CostParameterCategoryService, CostParameterService, CostParameterStatus, CostSettingsService, Currency, DestinationPortService, ExchangeRateService, ExchangeRateSource, FobInlandDefinitionService, FreightOfferService, IncotermService, ItemPackageGroupService, ItemPackageTypeService, ItemProductTypeService, ItemService, LineService, LoadingTargetKind, PackagingMaterialService, PackagingPriceService, PackagingTypeService, PalletDefinitionService, PalletStatus, PosService, PriceListService, PriceParameterService, PriceParameterStatus, PriceParameterTypeService, SapSalesPersonService, costGroupRoleOptions, costItemCalculationTypeOptions, costItemSystemCodeOptions, costParameterCategoryParentCodeOptions, costParameterStatusOptions, currencyOptions, exchangeRateSourceOptions, loadingTargetKindOptions, palletStatusOptions, priceParameterStatusOptions };
|
|
699
1185
|
//# sourceMappingURL=hitsoft-kadooglu-keops-proxy.mjs.map
|