@hitsoft/ovolt 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/providers/fuel-integration-log-route.provider.d.ts +9 -0
- package/esm2020/config/ovolt-config.module.mjs +4 -2
- package/esm2020/config/providers/fuel-integration-log-route.provider.mjs +19 -0
- package/esm2020/config/providers/process-log-route.provider.mjs +1 -1
- package/esm2020/config/providers/system-parameter-route.provider.mjs +1 -1
- package/esm2020/lib/components/hit-fuel-integration-logs/components/hit-fuel-integration-log.component.mjs +157 -0
- package/esm2020/lib/components/hit-fuel-integration-logs/hit-fuel-integration-log-routing.module.mjs +26 -0
- package/esm2020/lib/components/hit-fuel-integration-logs/hit-fuel-integration-log.module.mjs +71 -0
- package/esm2020/lib/components/hit-process-logs/components/hit-process-log.component.mjs +58 -30
- package/esm2020/lib/components/hit-process-logs/hit-process-log.module.mjs +8 -5
- package/esm2020/lib/components/hit-proxy/hit-fuel-integration-logs/hit-fuel-integration-log.service.mjs +40 -0
- package/esm2020/lib/components/hit-proxy/hit-fuel-integration-logs/models.mjs +2 -0
- package/esm2020/lib/components/hit-proxy/hit-process-logs/hit-process-log.service.mjs +5 -1
- package/esm2020/lib/components/hit-system-parameters/components/hit-system-parameter.component.mjs +10 -10
- package/esm2020/lib/fuel-integration-logs/fuel-integration-log/components/fuel-integration-log.component.mjs +103 -0
- package/esm2020/lib/fuel-integration-logs/fuel-integration-log/fuel-integration-log-routing.module.mjs +26 -0
- package/esm2020/lib/fuel-integration-logs/fuel-integration-log/fuel-integration-log.module.mjs +52 -0
- package/esm2020/lib/ovolt-routing.module.mjs +4 -2
- package/esm2020/lib/process-logs/process-log/components/process-log.component.mjs +3 -3
- package/esm2020/lib/process-logs/process-log/process-log-routing.module.mjs +1 -1
- package/esm2020/lib/process-logs/process-log/process-log.module.mjs +1 -1
- package/esm2020/lib/proxy/fuel-integration-logs/fuel-integration-log.service.mjs +41 -0
- package/esm2020/lib/proxy/fuel-integration-logs/models.mjs +2 -0
- package/esm2020/lib/proxy/general-transactions/rest-company-type.enum.mjs +1 -1
- package/esm2020/lib/proxy/rest-company-type.enum.mjs +8 -0
- package/esm2020/lib/proxy/system-parameters/models.mjs +1 -1
- package/esm2020/lib/proxy/system-parameters/system-parameter.service.mjs +2 -2
- package/fesm2015/hitsoft-ovolt-config.mjs +26 -8
- package/fesm2015/hitsoft-ovolt-config.mjs.map +1 -1
- package/fesm2015/hitsoft-ovolt.mjs +393 -59
- package/fesm2015/hitsoft-ovolt.mjs.map +1 -1
- package/fesm2020/hitsoft-ovolt-config.mjs +26 -8
- package/fesm2020/hitsoft-ovolt-config.mjs.map +1 -1
- package/fesm2020/hitsoft-ovolt.mjs +391 -59
- package/fesm2020/hitsoft-ovolt.mjs.map +1 -1
- package/lib/components/hit-fuel-integration-logs/components/hit-fuel-integration-log.component.d.ts +41 -0
- package/lib/components/hit-fuel-integration-logs/hit-fuel-integration-log-routing.module.d.ts +7 -0
- package/lib/components/hit-fuel-integration-logs/hit-fuel-integration-log.module.d.ts +16 -0
- package/lib/components/hit-process-logs/components/hit-process-log.component.d.ts +13 -8
- package/lib/components/hit-process-logs/hit-process-log.module.d.ts +1 -1
- package/lib/components/hit-proxy/hit-fuel-integration-logs/hit-fuel-integration-log.service.d.ts +16 -0
- package/lib/components/hit-proxy/hit-fuel-integration-logs/models.d.ts +3 -0
- package/lib/components/hit-proxy/hit-process-logs/hit-process-log.service.d.ts +1 -0
- package/lib/fuel-integration-logs/fuel-integration-log/components/fuel-integration-log.component.d.ts +33 -0
- package/lib/fuel-integration-logs/fuel-integration-log/fuel-integration-log-routing.module.d.ts +7 -0
- package/lib/fuel-integration-logs/fuel-integration-log/fuel-integration-log.module.d.ts +15 -0
- package/lib/proxy/fuel-integration-logs/fuel-integration-log.service.d.ts +16 -0
- package/lib/proxy/fuel-integration-logs/models.d.ts +42 -0
- package/lib/proxy/rest-company-type.enum.d.ts +5 -0
- package/lib/proxy/system-parameters/models.d.ts +17 -17
- package/package.json +1 -1
|
@@ -9,6 +9,7 @@ export declare class HitProcessLogService {
|
|
|
9
9
|
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
10
10
|
get LoadProcessLogs(): import("devextreme/data/custom_store").default<any, any>;
|
|
11
11
|
getRequestModel: (input: GetRequestModelDto) => import("rxjs").Observable<string>;
|
|
12
|
+
deleteAll: () => import("rxjs").Observable<boolean>;
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitProcessLogService, never>;
|
|
13
14
|
static ɵprov: i0.ɵɵInjectableDeclaration<HitProcessLogService>;
|
|
14
15
|
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { ListService, PagedResultDto, TrackByService } from '@abp/ng.core';
|
|
2
|
+
import { ConfirmationService } from '@abp/ng.theme.shared';
|
|
3
|
+
import { OnInit } from '@angular/core';
|
|
4
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
5
|
+
import type { GetFuelIntegrationLogsInput, FuelIntegrationLogDto } from '../../../proxy/fuel-integration-logs/models';
|
|
6
|
+
import { FuelIntegrationLogService } from '../../../proxy/fuel-integration-logs/fuel-integration-log.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class FuelIntegrationLogComponent implements OnInit {
|
|
9
|
+
readonly list: ListService;
|
|
10
|
+
readonly track: TrackByService;
|
|
11
|
+
readonly service: FuelIntegrationLogService;
|
|
12
|
+
private confirmation;
|
|
13
|
+
private fb;
|
|
14
|
+
data: PagedResultDto<FuelIntegrationLogDto>;
|
|
15
|
+
filters: GetFuelIntegrationLogsInput;
|
|
16
|
+
form: FormGroup;
|
|
17
|
+
isFiltersHidden: boolean;
|
|
18
|
+
isModalBusy: boolean;
|
|
19
|
+
isModalOpen: boolean;
|
|
20
|
+
selected?: FuelIntegrationLogDto;
|
|
21
|
+
constructor(list: ListService, track: TrackByService, service: FuelIntegrationLogService, confirmation: ConfirmationService, fb: FormBuilder);
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
clearFilters(): void;
|
|
24
|
+
buildForm(): void;
|
|
25
|
+
hideForm(): void;
|
|
26
|
+
showForm(): void;
|
|
27
|
+
submitForm(): void;
|
|
28
|
+
create(): void;
|
|
29
|
+
update(record: FuelIntegrationLogDto): void;
|
|
30
|
+
delete(record: FuelIntegrationLogDto): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FuelIntegrationLogComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FuelIntegrationLogComponent, "lib-fuel-integration-log", never, {}, {}, never, never, false>;
|
|
33
|
+
}
|
package/lib/fuel-integration-logs/fuel-integration-log/fuel-integration-log-routing.module.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class FuelIntegrationLogRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FuelIntegrationLogRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FuelIntegrationLogRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FuelIntegrationLogRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/fuel-integration-log.component";
|
|
3
|
+
import * as i2 from "./fuel-integration-log-routing.module";
|
|
4
|
+
import * as i3 from "@abp/ng.core";
|
|
5
|
+
import * as i4 from "@abp/ng.theme.shared";
|
|
6
|
+
import * as i5 from "@volo/abp.commercial.ng.ui";
|
|
7
|
+
import * as i6 from "@ngx-validate/core";
|
|
8
|
+
import * as i7 from "@ng-bootstrap/ng-bootstrap";
|
|
9
|
+
import * as i8 from "@abp/ng.components/page";
|
|
10
|
+
export declare class FuelIntegrationLogModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FuelIntegrationLogModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FuelIntegrationLogModule, [typeof i1.FuelIntegrationLogComponent], [typeof i2.FuelIntegrationLogRoutingModule, typeof i3.CoreModule, typeof i4.ThemeSharedModule, typeof i5.CommercialUiModule, typeof i6.NgxValidateCoreModule, typeof i7.NgbCollapseModule, typeof i7.NgbDatepickerModule, typeof i7.NgbDropdownModule, typeof i8.PageModule], never>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FuelIntegrationLogModule>;
|
|
14
|
+
}
|
|
15
|
+
export declare function loadFuelIntegrationLogModuleAsChild(): Promise<typeof FuelIntegrationLogModule>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { FuelIntegrationLogCreateDto, FuelIntegrationLogDto, FuelIntegrationLogUpdateDto, GetFuelIntegrationLogsInput } from './models';
|
|
2
|
+
import { RestService } from '@abp/ng.core';
|
|
3
|
+
import type { PagedResultDto } from '@abp/ng.core';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class FuelIntegrationLogService {
|
|
6
|
+
private restService;
|
|
7
|
+
apiName: string;
|
|
8
|
+
create: (input: FuelIntegrationLogCreateDto) => import("rxjs").Observable<FuelIntegrationLogDto>;
|
|
9
|
+
delete: (id: string) => import("rxjs").Observable<void>;
|
|
10
|
+
get: (id: string) => import("rxjs").Observable<FuelIntegrationLogDto>;
|
|
11
|
+
getList: (input: GetFuelIntegrationLogsInput) => import("rxjs").Observable<PagedResultDto<FuelIntegrationLogDto>>;
|
|
12
|
+
update: (id: string, input: FuelIntegrationLogUpdateDto) => import("rxjs").Observable<FuelIntegrationLogDto>;
|
|
13
|
+
constructor(restService: RestService);
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FuelIntegrationLogService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FuelIntegrationLogService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import type { FullAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
|
|
2
|
+
export interface FuelIntegrationLogCreateDto {
|
|
3
|
+
path?: string;
|
|
4
|
+
method?: string;
|
|
5
|
+
requestBody?: string;
|
|
6
|
+
responseBody?: string;
|
|
7
|
+
statusCode?: string;
|
|
8
|
+
requestTime?: string;
|
|
9
|
+
responseTime?: string;
|
|
10
|
+
}
|
|
11
|
+
export interface FuelIntegrationLogDto extends FullAuditedEntityDto<string> {
|
|
12
|
+
path?: string;
|
|
13
|
+
method?: string;
|
|
14
|
+
requestBody?: string;
|
|
15
|
+
responseBody?: string;
|
|
16
|
+
statusCode?: string;
|
|
17
|
+
requestTime?: string;
|
|
18
|
+
responseTime?: string;
|
|
19
|
+
concurrencyStamp?: string;
|
|
20
|
+
}
|
|
21
|
+
export interface FuelIntegrationLogUpdateDto {
|
|
22
|
+
path?: string;
|
|
23
|
+
method?: string;
|
|
24
|
+
requestBody?: string;
|
|
25
|
+
responseBody?: string;
|
|
26
|
+
statusCode?: string;
|
|
27
|
+
requestTime?: string;
|
|
28
|
+
responseTime?: string;
|
|
29
|
+
concurrencyStamp?: string;
|
|
30
|
+
}
|
|
31
|
+
export interface GetFuelIntegrationLogsInput extends PagedAndSortedResultRequestDto {
|
|
32
|
+
filterText?: string;
|
|
33
|
+
path?: string;
|
|
34
|
+
method?: string;
|
|
35
|
+
requestBody?: string;
|
|
36
|
+
responseBody?: string;
|
|
37
|
+
statusCode?: string;
|
|
38
|
+
requestTimeMin?: string;
|
|
39
|
+
requestTimeMax?: string;
|
|
40
|
+
responseTimeMin?: string;
|
|
41
|
+
responseTimeMax?: string;
|
|
42
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { FullAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
|
|
2
|
-
import type { RestCompanyType } from '../
|
|
2
|
+
import type { RestCompanyType } from '../rest-company-type.enum';
|
|
3
3
|
export interface GetSystemParametersInput extends PagedAndSortedResultRequestDto {
|
|
4
4
|
filterText?: string;
|
|
5
5
|
sharzNetCustomerSeries?: string;
|
|
@@ -13,14 +13,14 @@ export interface GetSystemParametersInput extends PagedAndSortedResultRequestDto
|
|
|
13
13
|
vendorSeries?: string;
|
|
14
14
|
vendorGroupCodeMin?: number;
|
|
15
15
|
vendorGroupCodeMax?: number;
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
warehouseCode?: string;
|
|
19
|
-
cogsCostingCode1?: string;
|
|
16
|
+
transactionItemCode?: string;
|
|
17
|
+
cogsCostingCode?: string;
|
|
20
18
|
cogsCostingCode2?: string;
|
|
21
19
|
cogsCostingCode3?: string;
|
|
22
20
|
poKey?: string;
|
|
23
21
|
selectedRestCompany?: RestCompanyType;
|
|
22
|
+
bplId?: string;
|
|
23
|
+
purchaseOrderItemCode?: string;
|
|
24
24
|
}
|
|
25
25
|
export interface SystemParameterCreateDto {
|
|
26
26
|
sharzNetCustomerSeries?: string;
|
|
@@ -31,14 +31,14 @@ export interface SystemParameterCreateDto {
|
|
|
31
31
|
upEnerjiCustomerDebitorAccount?: string;
|
|
32
32
|
vendorSeries?: string;
|
|
33
33
|
vendorGroupCode?: number;
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
warehouseCode?: string;
|
|
37
|
-
cogsCostingCode1?: string;
|
|
34
|
+
transactionItemCode?: string;
|
|
35
|
+
cogsCostingCode?: string;
|
|
38
36
|
cogsCostingCode2?: string;
|
|
39
37
|
cogsCostingCode3?: string;
|
|
40
38
|
poKey?: string;
|
|
41
39
|
selectedRestCompany?: RestCompanyType;
|
|
40
|
+
bplId?: string;
|
|
41
|
+
purchaseOrderItemCode?: string;
|
|
42
42
|
}
|
|
43
43
|
export interface SystemParameterDto extends FullAuditedEntityDto<string> {
|
|
44
44
|
sharzNetCustomerSeries?: string;
|
|
@@ -49,14 +49,14 @@ export interface SystemParameterDto extends FullAuditedEntityDto<string> {
|
|
|
49
49
|
upEnerjiCustomerDebitorAccount?: string;
|
|
50
50
|
vendorSeries?: string;
|
|
51
51
|
vendorGroupCode?: number;
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
warehouseCode?: string;
|
|
55
|
-
cogsCostingCode1?: string;
|
|
52
|
+
transactionItemCode?: string;
|
|
53
|
+
cogsCostingCode?: string;
|
|
56
54
|
cogsCostingCode2?: string;
|
|
57
55
|
cogsCostingCode3?: string;
|
|
58
56
|
poKey?: string;
|
|
59
57
|
selectedRestCompany?: RestCompanyType;
|
|
58
|
+
bplId?: string;
|
|
59
|
+
purchaseOrderItemCode?: string;
|
|
60
60
|
concurrencyStamp?: string;
|
|
61
61
|
}
|
|
62
62
|
export interface SystemParameterUpdateDto {
|
|
@@ -68,13 +68,13 @@ export interface SystemParameterUpdateDto {
|
|
|
68
68
|
upEnerjiCustomerDebitorAccount?: string;
|
|
69
69
|
vendorSeries?: string;
|
|
70
70
|
vendorGroupCode?: number;
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
warehouseCode?: string;
|
|
74
|
-
cogsCostingCode1?: string;
|
|
71
|
+
transactionItemCode?: string;
|
|
72
|
+
cogsCostingCode?: string;
|
|
75
73
|
cogsCostingCode2?: string;
|
|
76
74
|
cogsCostingCode3?: string;
|
|
77
75
|
poKey?: string;
|
|
78
76
|
selectedRestCompany?: RestCompanyType;
|
|
77
|
+
bplId?: string;
|
|
78
|
+
purchaseOrderItemCode?: string;
|
|
79
79
|
concurrencyStamp?: string;
|
|
80
80
|
}
|