@hitsoft/kadooglu-keops 0.0.3 → 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 +2 -1
- package/esm2020/config/enums/route-names.mjs +1 -1
- package/esm2020/config/providers/route.provider.mjs +10 -1
- package/esm2020/lib/features/cost-calculation/components/cost-calculation-inputs.component.mjs +12 -10
- 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 +86 -31
- 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 +8 -8
- 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 +5 -6
- package/esm2020/lib/features/cost-parameters/components/cost-parameters.component.mjs +7 -10
- 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/price-parameters/components/price-parameter-form-items.component.mjs +6 -6
- package/esm2020/lib/features/price-parameters/components/price-parameter-form-price-lists.component.mjs +6 -6
- package/esm2020/lib/features/price-parameters/components/price-parameter-form.component.mjs +114 -46
- 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 +24 -17
- package/esm2020/lib/features/price-parameters/hit-price-parameters.module.mjs +5 -2
- package/esm2020/lib/features/price-parameters/price-parameter-cost-match.service.mjs +3 -3
- package/esm2020/lib/features/price-parameters/price-parameter-form-data.service.mjs +1 -2
- package/esm2020/lib/features/price-parameters/price-parameter-lookups.service.mjs +5 -10
- 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 +3 -1
- package/esm2020/lib/shared/amount-currency-input/amount-currency-input.component.mjs +5 -3
- package/esm2020/lib/shared/cost-item-classification.utils.mjs +5 -2
- package/esm2020/lib/utils/business-region.utils.mjs +12 -0
- package/esm2020/lib/utils/currency.utils.mjs +3 -1
- package/esm2020/proxy/business-region.enum.mjs +9 -0
- package/esm2020/proxy/controllers/index.mjs +2 -1
- package/esm2020/proxy/controllers/item-classification.service.mjs +42 -0
- package/esm2020/proxy/controllers/item.service.mjs +7 -3
- package/esm2020/proxy/controllers/price-list.service.mjs +5 -5
- package/esm2020/proxy/controllers/price-parameter.service.mjs +6 -1
- package/esm2020/proxy/cost-parameter-categories/dtos/models.mjs +1 -1
- package/esm2020/proxy/cost-parameters/dtos/models.mjs +1 -1
- package/esm2020/proxy/item-classifications/dtos/index.mjs +2 -0
- package/esm2020/proxy/item-classifications/dtos/models.mjs +2 -0
- package/esm2020/proxy/price-parameters/dtos/models.mjs +1 -1
- package/esm2020/proxy/public-api.mjs +3 -2
- package/esm2020/proxy/settings/models.mjs +1 -1
- package/fesm2015/hitsoft-kadooglu-keops-config.mjs +9 -0
- package/fesm2015/hitsoft-kadooglu-keops-config.mjs.map +1 -1
- package/fesm2015/hitsoft-kadooglu-keops-proxy.mjs +63 -14
- package/fesm2015/hitsoft-kadooglu-keops-proxy.mjs.map +1 -1
- package/fesm2015/hitsoft-kadooglu-keops.mjs +795 -287
- package/fesm2015/hitsoft-kadooglu-keops.mjs.map +1 -1
- package/fesm2020/hitsoft-kadooglu-keops-config.mjs +9 -0
- package/fesm2020/hitsoft-kadooglu-keops-config.mjs.map +1 -1
- package/fesm2020/hitsoft-kadooglu-keops-proxy.mjs +63 -14
- package/fesm2020/hitsoft-kadooglu-keops-proxy.mjs.map +1 -1
- package/fesm2020/hitsoft-kadooglu-keops.mjs +776 -272
- package/fesm2020/hitsoft-kadooglu-keops.mjs.map +1 -1
- package/lib/features/cost-calculation/components/cost-calculation-inputs.component.d.ts +9 -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-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 +2 -2
- package/lib/features/cost-parameters/components/cost-parameters.component.d.ts +1 -2
- 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/price-parameters/components/price-parameter-form-items.component.d.ts +3 -3
- package/lib/features/price-parameters/components/price-parameter-form-price-lists.component.d.ts +3 -3
- package/lib/features/price-parameters/components/price-parameter-form.component.d.ts +16 -9
- 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 +5 -2
- package/lib/features/price-parameters/hit-price-parameters.module.d.ts +12 -11
- package/lib/features/price-parameters/price-parameter-cost-match.service.d.ts +2 -2
- package/lib/features/price-parameters/price-parameter-form-data.service.d.ts +0 -1
- package/lib/features/price-parameters/price-parameter-lookups.service.d.ts +0 -1
- 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 +2 -2
- package/lib/shared/cost-item-classification.utils.d.ts +5 -1
- package/lib/utils/business-region.utils.d.ts +7 -0
- package/lib/utils/currency.utils.d.ts +1 -0
- package/package.json +1 -1
- package/proxy/business-region.enum.d.ts +6 -0
- package/proxy/controllers/index.d.ts +1 -0
- package/proxy/controllers/item-classification.service.d.ts +17 -0
- package/proxy/controllers/item.service.d.ts +3 -1
- package/proxy/controllers/price-list.service.d.ts +3 -2
- package/proxy/controllers/price-parameter.service.d.ts +2 -1
- package/proxy/cost-parameter-categories/dtos/models.d.ts +0 -4
- package/proxy/cost-parameters/dtos/models.d.ts +4 -3
- package/proxy/item-classifications/dtos/index.d.ts +1 -0
- package/proxy/item-classifications/dtos/models.d.ts +34 -0
- package/proxy/price-parameters/dtos/models.d.ts +38 -12
- package/proxy/public-api.d.ts +2 -1
- package/proxy/settings/models.d.ts +1 -0
- package/esm2020/lib/features/cost-parameter-categories/cost-parameter-category-l10n-helper.mjs +0 -6
- package/esm2020/proxy/cost-parameter-categories/cost-parameter-category-parent-code.enum.mjs +0 -8
- 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 -5
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { CostParameterCategoryDto } from '../cost-parameter-categories/dtos/models';
|
|
3
|
+
import type { ItemClassificationDto, ItemClassificationSaveDto, ItemClassificationSaveStatusDto } from '../item-classifications/dtos/models';
|
|
4
|
+
import type { PackagingMaterialDto } from '../packaging-materials/dtos/models';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ItemClassificationService {
|
|
7
|
+
private restService;
|
|
8
|
+
apiName: string;
|
|
9
|
+
getCostCategories: () => import("rxjs").Observable<CostParameterCategoryDto[]>;
|
|
10
|
+
getList: (codePrefix: string) => import("rxjs").Observable<ItemClassificationDto[]>;
|
|
11
|
+
getPackagingMaterials: () => import("rxjs").Observable<PackagingMaterialDto[]>;
|
|
12
|
+
getSaveStatus: (jobId: string) => import("rxjs").Observable<ItemClassificationSaveStatusDto>;
|
|
13
|
+
startSave: (input: ItemClassificationSaveDto[]) => import("rxjs").Observable<string>;
|
|
14
|
+
constructor(restService: RestService);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ItemClassificationService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ItemClassificationService>;
|
|
17
|
+
}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { BusinessRegion } from '../business-region.enum';
|
|
2
3
|
import type { ItemDto } from '../items/dtos/models';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class ItemService {
|
|
5
6
|
private restService;
|
|
6
7
|
apiName: string;
|
|
7
|
-
getList: (codePrefix: string) => import("rxjs").Observable<ItemDto[]>;
|
|
8
|
+
getList: (codePrefix: string, businessRegion?: BusinessRegion, cpGroupCode?: string) => import("rxjs").Observable<ItemDto[]>;
|
|
9
|
+
getPackagingCost: (itemCode: string) => import("rxjs").Observable<number>;
|
|
8
10
|
constructor(restService: RestService);
|
|
9
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<ItemService, never>;
|
|
10
12
|
static ɵprov: i0.ɵɵInjectableDeclaration<ItemService>;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import type { BusinessRegion } from '../business-region.enum';
|
|
2
3
|
import type { PriceListDto, PriceListItemDto } from '../price-lists/dtos/models';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class PriceListService {
|
|
5
6
|
private restService;
|
|
6
7
|
apiName: string;
|
|
7
|
-
getItems: (
|
|
8
|
-
getList: (
|
|
8
|
+
getItems: (businessRegion: BusinessRegion, cpGroupCode: string) => import("rxjs").Observable<PriceListItemDto[]>;
|
|
9
|
+
getList: (businessRegion: BusinessRegion, ppTypeCode: string) => import("rxjs").Observable<PriceListDto[]>;
|
|
9
10
|
constructor(restService: RestService);
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<PriceListService, never>;
|
|
11
12
|
static ɵprov: i0.ɵɵInjectableDeclaration<PriceListService>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { RestService } from '@abp/ng.core';
|
|
2
|
-
import type { PriceParameterCreateDto, PriceParameterDto, PriceParameterUpdateDto } from '../price-parameters/dtos/models';
|
|
2
|
+
import type { PriceParameterCreateDto, PriceParameterDto, PriceParameterUpdateDto, PriceUpdatePreviewDto, PriceUpdatePreviewInputDto } from '../price-parameters/dtos/models';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PriceParameterService {
|
|
5
5
|
private restService;
|
|
@@ -8,6 +8,7 @@ export declare class PriceParameterService {
|
|
|
8
8
|
delete: (docEntry: number) => import("rxjs").Observable<void>;
|
|
9
9
|
get: (docEntry: number) => import("rxjs").Observable<PriceParameterDto>;
|
|
10
10
|
getList: () => import("rxjs").Observable<PriceParameterDto[]>;
|
|
11
|
+
previewPriceUpdate: (input: PriceUpdatePreviewInputDto) => import("rxjs").Observable<PriceUpdatePreviewDto>;
|
|
11
12
|
update: (docEntry: number, input: PriceParameterUpdateDto) => import("rxjs").Observable<void>;
|
|
12
13
|
constructor(restService: RestService);
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<PriceParameterService, never>;
|
|
@@ -1,14 +1,10 @@
|
|
|
1
|
-
import type { CostParameterCategoryParentCode } from '../cost-parameter-category-parent-code.enum';
|
|
2
1
|
export interface CostParameterCategoryCreateDto {
|
|
3
2
|
name: string;
|
|
4
|
-
parentCode: CostParameterCategoryParentCode;
|
|
5
3
|
}
|
|
6
4
|
export interface CostParameterCategoryDto {
|
|
7
5
|
code?: string;
|
|
8
6
|
name?: string;
|
|
9
|
-
parentCode: CostParameterCategoryParentCode;
|
|
10
7
|
}
|
|
11
8
|
export interface CostParameterCategoryUpdateDto {
|
|
12
9
|
name: string;
|
|
13
|
-
parentCode: CostParameterCategoryParentCode;
|
|
14
10
|
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import type { BusinessRegion } from '../../business-region.enum';
|
|
1
2
|
import type { CostParameterStatus } from '../cost-parameter-status.enum';
|
|
2
3
|
import type { Currency } from '../../currencies/currency.enum';
|
|
3
4
|
export interface CostParameterCreateDto {
|
|
4
5
|
productGroup: string;
|
|
5
|
-
region:
|
|
6
|
+
region: BusinessRegion;
|
|
6
7
|
status: CostParameterStatus;
|
|
7
8
|
description?: string;
|
|
8
9
|
items: CostParameterItemInputDto[];
|
|
@@ -10,7 +11,7 @@ export interface CostParameterCreateDto {
|
|
|
10
11
|
export interface CostParameterDto {
|
|
11
12
|
code?: string;
|
|
12
13
|
productGroup?: string;
|
|
13
|
-
region
|
|
14
|
+
region: BusinessRegion;
|
|
14
15
|
status: CostParameterStatus;
|
|
15
16
|
description?: string;
|
|
16
17
|
updateDate?: string;
|
|
@@ -29,7 +30,7 @@ export interface CostParameterItemInputDto {
|
|
|
29
30
|
}
|
|
30
31
|
export interface CostParameterUpdateDto {
|
|
31
32
|
productGroup: string;
|
|
32
|
-
region:
|
|
33
|
+
region: BusinessRegion;
|
|
33
34
|
status: CostParameterStatus;
|
|
34
35
|
description?: string;
|
|
35
36
|
items: CostParameterItemInputDto[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './models';
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { BusinessRegion } from '../../business-region.enum';
|
|
2
|
+
export interface ItemClassificationDto {
|
|
3
|
+
itemCode?: string;
|
|
4
|
+
itemName?: string;
|
|
5
|
+
groupCode: number;
|
|
6
|
+
groupName?: string;
|
|
7
|
+
paketTuruCode?: string;
|
|
8
|
+
paketGrubuCode?: string;
|
|
9
|
+
urunTipiCode?: string;
|
|
10
|
+
region: BusinessRegion;
|
|
11
|
+
costGroupCode?: string;
|
|
12
|
+
pckMatCode?: string;
|
|
13
|
+
}
|
|
14
|
+
export interface ItemClassificationSaveDto {
|
|
15
|
+
itemCode: string;
|
|
16
|
+
paketTuruCode?: string;
|
|
17
|
+
paketGrubuCode?: string;
|
|
18
|
+
urunTipiCode?: string;
|
|
19
|
+
region: BusinessRegion;
|
|
20
|
+
costGroupCode?: string;
|
|
21
|
+
pckMatCode?: string;
|
|
22
|
+
}
|
|
23
|
+
export interface ItemClassificationSaveErrorDto {
|
|
24
|
+
itemCode?: string;
|
|
25
|
+
error?: string;
|
|
26
|
+
}
|
|
27
|
+
export interface ItemClassificationSaveStatusDto {
|
|
28
|
+
jobId?: string;
|
|
29
|
+
completed: boolean;
|
|
30
|
+
total: number;
|
|
31
|
+
processed: number;
|
|
32
|
+
succeeded: number;
|
|
33
|
+
failed: ItemClassificationSaveErrorDto[];
|
|
34
|
+
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
import type { BusinessRegion } from '../../business-region.enum';
|
|
1
2
|
import type { PriceParameterStatus } from '../price-parameter-status.enum';
|
|
2
3
|
import type { Currency } from '../../currencies/currency.enum';
|
|
3
4
|
import type { CostParameterItemDto, CostParameterItemInputDto } from '../../cost-parameters/dtos/models';
|
|
4
5
|
export interface PriceParameterCreateDto {
|
|
5
6
|
typeCode: string;
|
|
6
|
-
|
|
7
|
+
region: BusinessRegion;
|
|
7
8
|
groupCode: string;
|
|
8
|
-
|
|
9
|
+
exchangeRateUsd: number;
|
|
10
|
+
exchangeRateEur: number;
|
|
9
11
|
fromDate?: string;
|
|
10
12
|
toDate?: string;
|
|
11
13
|
status: PriceParameterStatus;
|
|
@@ -17,8 +19,6 @@ export interface PriceParameterCreateDto {
|
|
|
17
19
|
promotionalQuota: number;
|
|
18
20
|
rawOilPrice: number;
|
|
19
21
|
rawOilCurrency: Currency;
|
|
20
|
-
salesPriceExcludingPackaging: number;
|
|
21
|
-
salesPriceExcludingPackagingCurrency: Currency;
|
|
22
22
|
items: CostParameterItemInputDto[];
|
|
23
23
|
discounts: PriceParameterDiscountInputDto[];
|
|
24
24
|
}
|
|
@@ -35,9 +35,10 @@ export interface PriceParameterDto {
|
|
|
35
35
|
docEntry: number;
|
|
36
36
|
docNum?: number;
|
|
37
37
|
typeCode?: string;
|
|
38
|
-
|
|
38
|
+
region: BusinessRegion;
|
|
39
39
|
groupCode?: string;
|
|
40
|
-
|
|
40
|
+
exchangeRateUsd: number;
|
|
41
|
+
exchangeRateEur: number;
|
|
41
42
|
fromDate?: string;
|
|
42
43
|
toDate?: string;
|
|
43
44
|
docDate?: string;
|
|
@@ -50,16 +51,15 @@ export interface PriceParameterDto {
|
|
|
50
51
|
promotionalQuota: number;
|
|
51
52
|
rawOilPrice: number;
|
|
52
53
|
rawOilCurrency: Currency;
|
|
53
|
-
salesPriceExcludingPackaging: number;
|
|
54
|
-
salesPriceExcludingPackagingCurrency: Currency;
|
|
55
54
|
items: CostParameterItemDto[];
|
|
56
55
|
discounts: PriceParameterDiscountDto[];
|
|
57
56
|
}
|
|
58
57
|
export interface PriceParameterUpdateDto {
|
|
59
58
|
typeCode: string;
|
|
60
|
-
|
|
59
|
+
region: BusinessRegion;
|
|
61
60
|
groupCode: string;
|
|
62
|
-
|
|
61
|
+
exchangeRateUsd: number;
|
|
62
|
+
exchangeRateEur: number;
|
|
63
63
|
fromDate?: string;
|
|
64
64
|
toDate?: string;
|
|
65
65
|
status: PriceParameterStatus;
|
|
@@ -71,8 +71,34 @@ export interface PriceParameterUpdateDto {
|
|
|
71
71
|
promotionalQuota: number;
|
|
72
72
|
rawOilPrice: number;
|
|
73
73
|
rawOilCurrency: Currency;
|
|
74
|
-
salesPriceExcludingPackaging: number;
|
|
75
|
-
salesPriceExcludingPackagingCurrency: Currency;
|
|
76
74
|
items: CostParameterItemInputDto[];
|
|
77
75
|
discounts: PriceParameterDiscountInputDto[];
|
|
78
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,4 @@
|
|
|
1
|
+
export * from './business-region.enum';
|
|
1
2
|
export * from './bl-tracking/dtos';
|
|
2
3
|
export * from './business-partners/dtos';
|
|
3
4
|
export * from './carriers/dtos';
|
|
@@ -15,7 +16,6 @@ export * from './cost-items/dtos';
|
|
|
15
16
|
export * from './cost-items/cost-item-calculation-type.enum';
|
|
16
17
|
export * from './cost-items/cost-item-system-code.enum';
|
|
17
18
|
export * from './cost-parameter-categories/dtos';
|
|
18
|
-
export * from './cost-parameter-categories/cost-parameter-category-parent-code.enum';
|
|
19
19
|
export * from './cost-parameters/dtos';
|
|
20
20
|
export * from './cost-parameters/cost-parameter-status.enum';
|
|
21
21
|
export * from './currencies';
|
|
@@ -25,6 +25,7 @@ export * from './exchange-rates/exchange-rate-source.enum';
|
|
|
25
25
|
export * from './fob-inland-definitions/dtos';
|
|
26
26
|
export * from './freight-offers/dtos';
|
|
27
27
|
export * from './incoterms/dtos';
|
|
28
|
+
export * from './item-classifications/dtos';
|
|
28
29
|
export * from './item-package-groups/dtos';
|
|
29
30
|
export * from './item-package-types/dtos';
|
|
30
31
|
export * from './item-product-types/dtos';
|
package/esm2020/lib/features/cost-parameter-categories/cost-parameter-category-l10n-helper.mjs
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { CostParameterCategoryParentCode } from '@hitsoft/kadooglu-keops/proxy';
|
|
2
|
-
export const parentCodeLabels = {
|
|
3
|
-
[CostParameterCategoryParentCode.Code1]: 'Keops::CostParameterCategories:ParentCode:Code1',
|
|
4
|
-
[CostParameterCategoryParentCode.Code4]: 'Keops::CostParameterCategories:ParentCode:Code4',
|
|
5
|
-
};
|
|
6
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29zdC1wYXJhbWV0ZXItY2F0ZWdvcnktbDEwbi1oZWxwZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9rYWRvb2dsdS1rZW9wcy9zcmMvbGliL2ZlYXR1cmVzL2Nvc3QtcGFyYW1ldGVyLWNhdGVnb3JpZXMvY29zdC1wYXJhbWV0ZXItY2F0ZWdvcnktbDEwbi1oZWxwZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLCtCQUErQixFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFFaEYsTUFBTSxDQUFDLE1BQU0sZ0JBQWdCLEdBQW9EO0lBQy9FLENBQUMsK0JBQStCLENBQUMsS0FBSyxDQUFDLEVBQUUsaURBQWlEO0lBQzFGLENBQUMsK0JBQStCLENBQUMsS0FBSyxDQUFDLEVBQUUsaURBQWlEO0NBQzNGLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb3N0UGFyYW1ldGVyQ2F0ZWdvcnlQYXJlbnRDb2RlIH0gZnJvbSAnQGhpdHNvZnQva2Fkb29nbHUta2VvcHMvcHJveHknO1xyXG5cclxuZXhwb3J0IGNvbnN0IHBhcmVudENvZGVMYWJlbHM6IFJlY29yZDxDb3N0UGFyYW1ldGVyQ2F0ZWdvcnlQYXJlbnRDb2RlLCBzdHJpbmc+ID0ge1xyXG4gIFtDb3N0UGFyYW1ldGVyQ2F0ZWdvcnlQYXJlbnRDb2RlLkNvZGUxXTogJ0tlb3BzOjpDb3N0UGFyYW1ldGVyQ2F0ZWdvcmllczpQYXJlbnRDb2RlOkNvZGUxJyxcclxuICBbQ29zdFBhcmFtZXRlckNhdGVnb3J5UGFyZW50Q29kZS5Db2RlNF06ICdLZW9wczo6Q29zdFBhcmFtZXRlckNhdGVnb3JpZXM6UGFyZW50Q29kZTpDb2RlNCcsXHJcbn07XHJcbiJdfQ==
|
package/esm2020/proxy/cost-parameter-categories/cost-parameter-category-parent-code.enum.mjs
DELETED
|
@@ -1,8 +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["Code4"] = 4] = "Code4";
|
|
6
|
-
})(CostParameterCategoryParentCode || (CostParameterCategoryParentCode = {}));
|
|
7
|
-
export const costParameterCategoryParentCodeOptions = mapEnumToOptions(CostParameterCategoryParentCode);
|
|
8
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29zdC1wYXJhbWV0ZXItY2F0ZWdvcnktcGFyZW50LWNvZGUuZW51bS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2thZG9vZ2x1LWtlb3BzL3Byb3h5L3NyYy9jb3N0LXBhcmFtZXRlci1jYXRlZ29yaWVzL2Nvc3QtcGFyYW1ldGVyLWNhdGVnb3J5LXBhcmVudC1jb2RlLmVudW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sY0FBYyxDQUFDO0FBRWhELE1BQU0sQ0FBTixJQUFZLCtCQUdYO0FBSEQsV0FBWSwrQkFBK0I7SUFDekMsdUZBQVMsQ0FBQTtJQUNULHVGQUFTLENBQUE7QUFDWCxDQUFDLEVBSFcsK0JBQStCLEtBQS9CLCtCQUErQixRQUcxQztBQUVELE1BQU0sQ0FBQyxNQUFNLHNDQUFzQyxHQUFHLGdCQUFnQixDQUFDLCtCQUErQixDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBtYXBFbnVtVG9PcHRpb25zIH0gZnJvbSAnQGFicC9uZy5jb3JlJztcclxuXHJcbmV4cG9ydCBlbnVtIENvc3RQYXJhbWV0ZXJDYXRlZ29yeVBhcmVudENvZGUge1xyXG4gIENvZGUxID0gMSxcclxuICBDb2RlNCA9IDQsXHJcbn1cclxuXHJcbmV4cG9ydCBjb25zdCBjb3N0UGFyYW1ldGVyQ2F0ZWdvcnlQYXJlbnRDb2RlT3B0aW9ucyA9IG1hcEVudW1Ub09wdGlvbnMoQ29zdFBhcmFtZXRlckNhdGVnb3J5UGFyZW50Q29kZSk7XHJcbiJdfQ==
|