@hitsoft/e-donusum 1.0.61 → 1.0.63
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/auto-send-rule-doc-type-route.provider.d.ts +9 -0
- package/config/providers/auto-send-rule-route.provider.d.ts +9 -0
- package/config/providers/auto-send-rule-scenario-route.provider.d.ts +9 -0
- package/esm2020/config/e-donusum-config.module.mjs +8 -2
- package/esm2020/config/providers/auto-send-rule-doc-type-route.provider.mjs +19 -0
- package/esm2020/config/providers/auto-send-rule-route.provider.mjs +19 -0
- package/esm2020/config/providers/auto-send-rule-scenario-route.provider.mjs +19 -0
- package/esm2020/config/providers/hit-providers/route.provider.mjs +2 -1
- package/esm2020/config/providers/hit-providers/wizard-route.provider.mjs +3 -2
- package/esm2020/config/providers/paramse-dispatch-route.provider.mjs +1 -1
- package/esm2020/config/providers/paramse-invoice-route.provider.mjs +1 -1
- package/esm2020/lib/auto-send-rule-doc-types/auto-send-rule-doc-type/auto-send-rule-doc-type-routing.module.mjs +26 -0
- package/esm2020/lib/auto-send-rule-doc-types/auto-send-rule-doc-type/auto-send-rule-doc-type.module.mjs +52 -0
- package/esm2020/lib/auto-send-rule-doc-types/auto-send-rule-doc-type/components/auto-send-rule-doc-type.component.mjs +98 -0
- package/esm2020/lib/auto-send-rule-scenarios/auto-send-rule-scenario/auto-send-rule-scenario-routing.module.mjs +26 -0
- package/esm2020/lib/auto-send-rule-scenarios/auto-send-rule-scenario/auto-send-rule-scenario.module.mjs +52 -0
- package/esm2020/lib/auto-send-rule-scenarios/auto-send-rule-scenario/components/auto-send-rule-scenario.component.mjs +97 -0
- package/esm2020/lib/auto-send-rules/auto-send-rule/auto-send-rule-routing.module.mjs +26 -0
- package/esm2020/lib/auto-send-rules/auto-send-rule/auto-send-rule.module.mjs +52 -0
- package/esm2020/lib/auto-send-rules/auto-send-rule/components/auto-send-rule.component.mjs +106 -0
- package/esm2020/lib/components/hit-document-serial/hit-document-serial.component.mjs +5 -4
- package/esm2020/lib/components/hit-paramas-invoices/hit-params-invoice.component.mjs +6 -4
- package/esm2020/lib/components/hit-params-dispatches/hit-params-dispatch.component.mjs +6 -4
- package/esm2020/lib/document-serials/document-serial/components/document-serial.component.mjs +5 -4
- package/esm2020/lib/e-donusum-routing.module.mjs +11 -2
- package/esm2020/lib/paramse-dispatches/paramse-dispatch/components/paramse-dispatch.component.mjs +6 -4
- package/esm2020/lib/paramse-invoices/paramse-invoice/components/paramse-invoice.component.mjs +6 -4
- package/esm2020/lib/proxy/auto-send-rule-doc-types/auto-send-rule-doc-type.service.mjs +50 -0
- package/esm2020/lib/proxy/auto-send-rule-doc-types/models.mjs +2 -0
- package/esm2020/lib/proxy/auto-send-rule-scenarios/auto-send-rule-scenario.service.mjs +50 -0
- package/esm2020/lib/proxy/auto-send-rule-scenarios/models.mjs +2 -0
- package/esm2020/lib/proxy/auto-send-rules/auto-send-rule.service.mjs +50 -0
- package/esm2020/lib/proxy/auto-send-rules/models.mjs +2 -0
- package/esm2020/lib/proxy/document-serials/document-serial.service.mjs +2 -2
- package/esm2020/lib/proxy/document-serials/models.mjs +1 -1
- package/esm2020/lib/proxy/paramse-dispatches/models.mjs +1 -1
- package/esm2020/lib/proxy/paramse-dispatches/paramse-dispatch.service.mjs +2 -2
- package/esm2020/lib/proxy/paramse-invoices/models.mjs +1 -1
- package/esm2020/lib/proxy/paramse-invoices/paramse-invoice.service.mjs +2 -2
- package/fesm2015/hitsoft-e-donusum-config.mjs +171 -115
- package/fesm2015/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2015/hitsoft-e-donusum.mjs +739 -164
- package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum-config.mjs +171 -115
- package/fesm2020/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum.mjs +757 -164
- package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
- package/lib/auto-send-rule-doc-types/auto-send-rule-doc-type/auto-send-rule-doc-type-routing.module.d.ts +7 -0
- package/lib/auto-send-rule-doc-types/auto-send-rule-doc-type/auto-send-rule-doc-type.module.d.ts +15 -0
- package/lib/auto-send-rule-doc-types/auto-send-rule-doc-type/components/auto-send-rule-doc-type.component.d.ts +33 -0
- package/lib/auto-send-rule-scenarios/auto-send-rule-scenario/auto-send-rule-scenario-routing.module.d.ts +7 -0
- package/lib/auto-send-rule-scenarios/auto-send-rule-scenario/auto-send-rule-scenario.module.d.ts +15 -0
- package/lib/auto-send-rule-scenarios/auto-send-rule-scenario/components/auto-send-rule-scenario.component.d.ts +33 -0
- package/lib/auto-send-rules/auto-send-rule/auto-send-rule-routing.module.d.ts +7 -0
- package/lib/auto-send-rules/auto-send-rule/auto-send-rule.module.d.ts +15 -0
- package/lib/auto-send-rules/auto-send-rule/components/auto-send-rule.component.d.ts +33 -0
- package/lib/proxy/auto-send-rule-doc-types/auto-send-rule-doc-type.service.d.ts +19 -0
- package/lib/proxy/auto-send-rule-doc-types/models.d.ts +26 -0
- package/lib/proxy/auto-send-rule-scenarios/auto-send-rule-scenario.service.d.ts +19 -0
- package/lib/proxy/auto-send-rule-scenarios/models.d.ts +26 -0
- package/lib/proxy/auto-send-rules/auto-send-rule.service.d.ts +19 -0
- package/lib/proxy/auto-send-rules/models.d.ts +56 -0
- package/lib/proxy/document-serials/models.d.ts +4 -0
- package/lib/proxy/paramse-dispatches/models.d.ts +8 -0
- package/lib/proxy/paramse-invoices/models.d.ts +8 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class AutoSendRuleDocTypeRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoSendRuleDocTypeRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AutoSendRuleDocTypeRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AutoSendRuleDocTypeRoutingModule>;
|
|
7
|
+
}
|
package/lib/auto-send-rule-doc-types/auto-send-rule-doc-type/auto-send-rule-doc-type.module.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/auto-send-rule-doc-type.component";
|
|
3
|
+
import * as i2 from "./auto-send-rule-doc-type-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 AutoSendRuleDocTypeModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoSendRuleDocTypeModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AutoSendRuleDocTypeModule, [typeof i1.AutoSendRuleDocTypeComponent], [typeof i2.AutoSendRuleDocTypeRoutingModule, 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<AutoSendRuleDocTypeModule>;
|
|
14
|
+
}
|
|
15
|
+
export declare function loadAutoSendRuleDocTypeModuleAsChild(): Promise<typeof AutoSendRuleDocTypeModule>;
|
|
@@ -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 { GetAutoSendRuleDocTypesInput, AutoSendRuleDocTypeWithNavigationPropertiesDto } from '../../../proxy/auto-send-rule-doc-types/models';
|
|
6
|
+
import { AutoSendRuleDocTypeService } from '../../../proxy/auto-send-rule-doc-types/auto-send-rule-doc-type.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class AutoSendRuleDocTypeComponent implements OnInit {
|
|
9
|
+
readonly list: ListService;
|
|
10
|
+
readonly track: TrackByService;
|
|
11
|
+
readonly service: AutoSendRuleDocTypeService;
|
|
12
|
+
private confirmation;
|
|
13
|
+
private fb;
|
|
14
|
+
data: PagedResultDto<AutoSendRuleDocTypeWithNavigationPropertiesDto>;
|
|
15
|
+
filters: GetAutoSendRuleDocTypesInput;
|
|
16
|
+
form: FormGroup;
|
|
17
|
+
isFiltersHidden: boolean;
|
|
18
|
+
isModalBusy: boolean;
|
|
19
|
+
isModalOpen: boolean;
|
|
20
|
+
selected?: AutoSendRuleDocTypeWithNavigationPropertiesDto;
|
|
21
|
+
constructor(list: ListService, track: TrackByService, service: AutoSendRuleDocTypeService, 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: AutoSendRuleDocTypeWithNavigationPropertiesDto): void;
|
|
30
|
+
delete(record: AutoSendRuleDocTypeWithNavigationPropertiesDto): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoSendRuleDocTypeComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AutoSendRuleDocTypeComponent, "lib-auto-send-rule-doc-type", never, {}, {}, never, never, false>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class AutoSendRuleScenarioRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoSendRuleScenarioRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AutoSendRuleScenarioRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AutoSendRuleScenarioRoutingModule>;
|
|
7
|
+
}
|
package/lib/auto-send-rule-scenarios/auto-send-rule-scenario/auto-send-rule-scenario.module.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/auto-send-rule-scenario.component";
|
|
3
|
+
import * as i2 from "./auto-send-rule-scenario-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 AutoSendRuleScenarioModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoSendRuleScenarioModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AutoSendRuleScenarioModule, [typeof i1.AutoSendRuleScenarioComponent], [typeof i2.AutoSendRuleScenarioRoutingModule, 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<AutoSendRuleScenarioModule>;
|
|
14
|
+
}
|
|
15
|
+
export declare function loadAutoSendRuleScenarioModuleAsChild(): Promise<typeof AutoSendRuleScenarioModule>;
|
|
@@ -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 { GetAutoSendRuleScenariosInput, AutoSendRuleScenarioWithNavigationPropertiesDto } from '../../../proxy/auto-send-rule-scenarios/models';
|
|
6
|
+
import { AutoSendRuleScenarioService } from '../../../proxy/auto-send-rule-scenarios/auto-send-rule-scenario.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class AutoSendRuleScenarioComponent implements OnInit {
|
|
9
|
+
readonly list: ListService;
|
|
10
|
+
readonly track: TrackByService;
|
|
11
|
+
readonly service: AutoSendRuleScenarioService;
|
|
12
|
+
private confirmation;
|
|
13
|
+
private fb;
|
|
14
|
+
data: PagedResultDto<AutoSendRuleScenarioWithNavigationPropertiesDto>;
|
|
15
|
+
filters: GetAutoSendRuleScenariosInput;
|
|
16
|
+
form: FormGroup;
|
|
17
|
+
isFiltersHidden: boolean;
|
|
18
|
+
isModalBusy: boolean;
|
|
19
|
+
isModalOpen: boolean;
|
|
20
|
+
selected?: AutoSendRuleScenarioWithNavigationPropertiesDto;
|
|
21
|
+
constructor(list: ListService, track: TrackByService, service: AutoSendRuleScenarioService, 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: AutoSendRuleScenarioWithNavigationPropertiesDto): void;
|
|
30
|
+
delete(record: AutoSendRuleScenarioWithNavigationPropertiesDto): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoSendRuleScenarioComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AutoSendRuleScenarioComponent, "lib-auto-send-rule-scenario", never, {}, {}, never, never, false>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class AutoSendRuleRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoSendRuleRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AutoSendRuleRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AutoSendRuleRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/auto-send-rule.component";
|
|
3
|
+
import * as i2 from "./auto-send-rule-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 AutoSendRuleModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoSendRuleModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AutoSendRuleModule, [typeof i1.AutoSendRuleComponent], [typeof i2.AutoSendRuleRoutingModule, 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<AutoSendRuleModule>;
|
|
14
|
+
}
|
|
15
|
+
export declare function loadAutoSendRuleModuleAsChild(): Promise<typeof AutoSendRuleModule>;
|
|
@@ -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 { GetAutoSendRulesInput, AutoSendRuleWithNavigationPropertiesDto } from '../../../proxy/auto-send-rules/models';
|
|
6
|
+
import { AutoSendRuleService } from '../../../proxy/auto-send-rules/auto-send-rule.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class AutoSendRuleComponent implements OnInit {
|
|
9
|
+
readonly list: ListService;
|
|
10
|
+
readonly track: TrackByService;
|
|
11
|
+
readonly service: AutoSendRuleService;
|
|
12
|
+
private confirmation;
|
|
13
|
+
private fb;
|
|
14
|
+
data: PagedResultDto<AutoSendRuleWithNavigationPropertiesDto>;
|
|
15
|
+
filters: GetAutoSendRulesInput;
|
|
16
|
+
form: FormGroup;
|
|
17
|
+
isFiltersHidden: boolean;
|
|
18
|
+
isModalBusy: boolean;
|
|
19
|
+
isModalOpen: boolean;
|
|
20
|
+
selected?: AutoSendRuleWithNavigationPropertiesDto;
|
|
21
|
+
constructor(list: ListService, track: TrackByService, service: AutoSendRuleService, 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: AutoSendRuleWithNavigationPropertiesDto): void;
|
|
30
|
+
delete(record: AutoSendRuleWithNavigationPropertiesDto): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoSendRuleComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AutoSendRuleComponent, "lib-auto-send-rule", never, {}, {}, never, never, false>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { AutoSendRuleDocTypeCreateDto, AutoSendRuleDocTypeDto, AutoSendRuleDocTypeUpdateDto, AutoSendRuleDocTypeWithNavigationPropertiesDto, GetAutoSendRuleDocTypesInput } from './models';
|
|
2
|
+
import { RestService } from '@abp/ng.core';
|
|
3
|
+
import type { PagedResultDto } from '@abp/ng.core';
|
|
4
|
+
import type { LookupDto, LookupRequestDto } from '../shared/models';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class AutoSendRuleDocTypeService {
|
|
7
|
+
private restService;
|
|
8
|
+
apiName: string;
|
|
9
|
+
create: (input: AutoSendRuleDocTypeCreateDto) => import("rxjs").Observable<AutoSendRuleDocTypeDto>;
|
|
10
|
+
delete: (id: string) => import("rxjs").Observable<void>;
|
|
11
|
+
get: (id: string) => import("rxjs").Observable<AutoSendRuleDocTypeDto>;
|
|
12
|
+
getAutoSendRuleLookup: (input: LookupRequestDto) => import("rxjs").Observable<PagedResultDto<LookupDto<string>>>;
|
|
13
|
+
getList: (input: GetAutoSendRuleDocTypesInput) => import("rxjs").Observable<PagedResultDto<AutoSendRuleDocTypeWithNavigationPropertiesDto>>;
|
|
14
|
+
getWithNavigationProperties: (id: string) => import("rxjs").Observable<AutoSendRuleDocTypeWithNavigationPropertiesDto>;
|
|
15
|
+
update: (id: string, input: AutoSendRuleDocTypeUpdateDto) => import("rxjs").Observable<AutoSendRuleDocTypeDto>;
|
|
16
|
+
constructor(restService: RestService);
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoSendRuleDocTypeService, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AutoSendRuleDocTypeService>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { FullAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
|
|
2
|
+
import type { AutoSendRuleDto } from '../auto-send-rules/models';
|
|
3
|
+
export interface AutoSendRuleDocTypeCreateDto {
|
|
4
|
+
docType?: number;
|
|
5
|
+
autoSendRuleId: string;
|
|
6
|
+
}
|
|
7
|
+
export interface AutoSendRuleDocTypeDto extends FullAuditedEntityDto<string> {
|
|
8
|
+
docType?: number;
|
|
9
|
+
autoSendRuleId: string;
|
|
10
|
+
concurrencyStamp?: string;
|
|
11
|
+
}
|
|
12
|
+
export interface AutoSendRuleDocTypeUpdateDto {
|
|
13
|
+
docType?: number;
|
|
14
|
+
autoSendRuleId: string;
|
|
15
|
+
concurrencyStamp?: string;
|
|
16
|
+
}
|
|
17
|
+
export interface AutoSendRuleDocTypeWithNavigationPropertiesDto {
|
|
18
|
+
autoSendRuleDocType: AutoSendRuleDocTypeDto;
|
|
19
|
+
autoSendRule: AutoSendRuleDto;
|
|
20
|
+
}
|
|
21
|
+
export interface GetAutoSendRuleDocTypesInput extends PagedAndSortedResultRequestDto {
|
|
22
|
+
filterText?: string;
|
|
23
|
+
docTypeMin?: number;
|
|
24
|
+
docTypeMax?: number;
|
|
25
|
+
autoSendRuleId?: string;
|
|
26
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { AutoSendRuleScenarioCreateDto, AutoSendRuleScenarioDto, AutoSendRuleScenarioUpdateDto, AutoSendRuleScenarioWithNavigationPropertiesDto, GetAutoSendRuleScenariosInput } from './models';
|
|
2
|
+
import { RestService } from '@abp/ng.core';
|
|
3
|
+
import type { PagedResultDto } from '@abp/ng.core';
|
|
4
|
+
import type { LookupDto, LookupRequestDto } from '../shared/models';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class AutoSendRuleScenarioService {
|
|
7
|
+
private restService;
|
|
8
|
+
apiName: string;
|
|
9
|
+
create: (input: AutoSendRuleScenarioCreateDto) => import("rxjs").Observable<AutoSendRuleScenarioDto>;
|
|
10
|
+
delete: (id: string) => import("rxjs").Observable<void>;
|
|
11
|
+
get: (id: string) => import("rxjs").Observable<AutoSendRuleScenarioDto>;
|
|
12
|
+
getAutoSendRuleLookup: (input: LookupRequestDto) => import("rxjs").Observable<PagedResultDto<LookupDto<string>>>;
|
|
13
|
+
getList: (input: GetAutoSendRuleScenariosInput) => import("rxjs").Observable<PagedResultDto<AutoSendRuleScenarioWithNavigationPropertiesDto>>;
|
|
14
|
+
getWithNavigationProperties: (id: string) => import("rxjs").Observable<AutoSendRuleScenarioWithNavigationPropertiesDto>;
|
|
15
|
+
update: (id: string, input: AutoSendRuleScenarioUpdateDto) => import("rxjs").Observable<AutoSendRuleScenarioDto>;
|
|
16
|
+
constructor(restService: RestService);
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoSendRuleScenarioService, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AutoSendRuleScenarioService>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { FullAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
|
|
2
|
+
import type { AutoSendRuleDto } from '../auto-send-rules/models';
|
|
3
|
+
export interface AutoSendRuleScenarioCreateDto {
|
|
4
|
+
scenario?: number;
|
|
5
|
+
autoSendRuleId?: string;
|
|
6
|
+
}
|
|
7
|
+
export interface AutoSendRuleScenarioDto extends FullAuditedEntityDto<string> {
|
|
8
|
+
scenario?: number;
|
|
9
|
+
autoSendRuleId?: string;
|
|
10
|
+
concurrencyStamp?: string;
|
|
11
|
+
}
|
|
12
|
+
export interface AutoSendRuleScenarioUpdateDto {
|
|
13
|
+
scenario?: number;
|
|
14
|
+
autoSendRuleId?: string;
|
|
15
|
+
concurrencyStamp?: string;
|
|
16
|
+
}
|
|
17
|
+
export interface AutoSendRuleScenarioWithNavigationPropertiesDto {
|
|
18
|
+
autoSendRuleScenario: AutoSendRuleScenarioDto;
|
|
19
|
+
autoSendRule: AutoSendRuleDto;
|
|
20
|
+
}
|
|
21
|
+
export interface GetAutoSendRuleScenariosInput extends PagedAndSortedResultRequestDto {
|
|
22
|
+
filterText?: string;
|
|
23
|
+
scenarioMin?: number;
|
|
24
|
+
scenarioMax?: number;
|
|
25
|
+
autoSendRuleId?: string;
|
|
26
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { AutoSendRuleCreateDto, AutoSendRuleDto, AutoSendRuleUpdateDto, AutoSendRuleWithNavigationPropertiesDto, GetAutoSendRulesInput } from './models';
|
|
2
|
+
import { RestService } from '@abp/ng.core';
|
|
3
|
+
import type { PagedResultDto } from '@abp/ng.core';
|
|
4
|
+
import type { LookupDto, LookupRequestDto } from '../shared/models';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class AutoSendRuleService {
|
|
7
|
+
private restService;
|
|
8
|
+
apiName: string;
|
|
9
|
+
create: (input: AutoSendRuleCreateDto) => import("rxjs").Observable<AutoSendRuleDto>;
|
|
10
|
+
delete: (id: string) => import("rxjs").Observable<void>;
|
|
11
|
+
get: (id: string) => import("rxjs").Observable<AutoSendRuleDto>;
|
|
12
|
+
getDocumentSerialLookup: (input: LookupRequestDto) => import("rxjs").Observable<PagedResultDto<LookupDto<string>>>;
|
|
13
|
+
getList: (input: GetAutoSendRulesInput) => import("rxjs").Observable<PagedResultDto<AutoSendRuleWithNavigationPropertiesDto>>;
|
|
14
|
+
getWithNavigationProperties: (id: string) => import("rxjs").Observable<AutoSendRuleWithNavigationPropertiesDto>;
|
|
15
|
+
update: (id: string, input: AutoSendRuleUpdateDto) => import("rxjs").Observable<AutoSendRuleDto>;
|
|
16
|
+
constructor(restService: RestService);
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoSendRuleService, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AutoSendRuleService>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import type { FullAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
|
|
2
|
+
import type { DocumentSerialDto } from '../document-serials/models';
|
|
3
|
+
export interface AutoSendRuleCreateDto {
|
|
4
|
+
ruleName: string;
|
|
5
|
+
serialType?: number;
|
|
6
|
+
document?: number;
|
|
7
|
+
orderNo?: number;
|
|
8
|
+
noteQuery?: string;
|
|
9
|
+
isPassive?: boolean;
|
|
10
|
+
desc?: string;
|
|
11
|
+
noteQueryHTML?: string;
|
|
12
|
+
documentSerialId: string;
|
|
13
|
+
}
|
|
14
|
+
export interface AutoSendRuleDto extends FullAuditedEntityDto<string> {
|
|
15
|
+
ruleName: string;
|
|
16
|
+
serialType?: number;
|
|
17
|
+
document?: number;
|
|
18
|
+
orderNo?: number;
|
|
19
|
+
noteQuery?: string;
|
|
20
|
+
isPassive?: boolean;
|
|
21
|
+
desc?: string;
|
|
22
|
+
noteQueryHTML?: string;
|
|
23
|
+
documentSerialId: string;
|
|
24
|
+
concurrencyStamp?: string;
|
|
25
|
+
}
|
|
26
|
+
export interface AutoSendRuleUpdateDto {
|
|
27
|
+
ruleName: string;
|
|
28
|
+
serialType?: number;
|
|
29
|
+
document?: number;
|
|
30
|
+
orderNo?: number;
|
|
31
|
+
noteQuery?: string;
|
|
32
|
+
isPassive?: boolean;
|
|
33
|
+
desc?: string;
|
|
34
|
+
noteQueryHTML?: string;
|
|
35
|
+
documentSerialId: string;
|
|
36
|
+
concurrencyStamp?: string;
|
|
37
|
+
}
|
|
38
|
+
export interface AutoSendRuleWithNavigationPropertiesDto {
|
|
39
|
+
autoSendRule: AutoSendRuleDto;
|
|
40
|
+
documentSerial: DocumentSerialDto;
|
|
41
|
+
}
|
|
42
|
+
export interface GetAutoSendRulesInput extends PagedAndSortedResultRequestDto {
|
|
43
|
+
filterText?: string;
|
|
44
|
+
ruleName?: string;
|
|
45
|
+
serialTypeMin?: number;
|
|
46
|
+
serialTypeMax?: number;
|
|
47
|
+
documentMin?: number;
|
|
48
|
+
documentMax?: number;
|
|
49
|
+
orderNoMin?: number;
|
|
50
|
+
orderNoMax?: number;
|
|
51
|
+
noteQuery?: string;
|
|
52
|
+
isPassive?: boolean;
|
|
53
|
+
desc?: string;
|
|
54
|
+
noteQueryHTML?: string;
|
|
55
|
+
documentSerialId?: string;
|
|
56
|
+
}
|
|
@@ -5,6 +5,7 @@ export interface DocumentSerialCreateDto {
|
|
|
5
5
|
isPassive?: boolean;
|
|
6
6
|
type?: number;
|
|
7
7
|
gbAlias?: string;
|
|
8
|
+
useRetroactiveCounter?: boolean;
|
|
8
9
|
}
|
|
9
10
|
export interface DocumentSerialDto extends FullAuditedEntityDto<string> {
|
|
10
11
|
code: string;
|
|
@@ -12,6 +13,7 @@ export interface DocumentSerialDto extends FullAuditedEntityDto<string> {
|
|
|
12
13
|
isPassive?: boolean;
|
|
13
14
|
type?: number;
|
|
14
15
|
gbAlias?: string;
|
|
16
|
+
useRetroactiveCounter?: boolean;
|
|
15
17
|
concurrencyStamp?: string;
|
|
16
18
|
}
|
|
17
19
|
export interface DocumentSerialUpdateDto {
|
|
@@ -20,6 +22,7 @@ export interface DocumentSerialUpdateDto {
|
|
|
20
22
|
isPassive?: boolean;
|
|
21
23
|
type?: number;
|
|
22
24
|
gbAlias?: string;
|
|
25
|
+
useRetroactiveCounter?: boolean;
|
|
23
26
|
concurrencyStamp?: string;
|
|
24
27
|
}
|
|
25
28
|
export interface GetDocumentSerialsInput extends PagedAndSortedResultRequestDto {
|
|
@@ -30,4 +33,5 @@ export interface GetDocumentSerialsInput extends PagedAndSortedResultRequestDto
|
|
|
30
33
|
typeMin?: number;
|
|
31
34
|
typeMax?: number;
|
|
32
35
|
gbAlias?: string;
|
|
36
|
+
useRetroactiveCounter?: boolean;
|
|
33
37
|
}
|
|
@@ -21,6 +21,8 @@ export interface GetParamseDispatchesInput extends PagedAndSortedResultRequestDt
|
|
|
21
21
|
orderReferenceFieldMin?: number;
|
|
22
22
|
orderReferenceFieldMax?: number;
|
|
23
23
|
isShowBatchNSerial?: boolean;
|
|
24
|
+
isPartnerCatalogDesc?: boolean;
|
|
25
|
+
isPartnerCatalogNum?: boolean;
|
|
24
26
|
}
|
|
25
27
|
export interface ParamseDispatchCreateDto {
|
|
26
28
|
defaultScenario?: number;
|
|
@@ -38,6 +40,8 @@ export interface ParamseDispatchCreateDto {
|
|
|
38
40
|
itemTreeOption?: number;
|
|
39
41
|
orderReferenceField?: number;
|
|
40
42
|
isShowBatchNSerial?: boolean;
|
|
43
|
+
isPartnerCatalogDesc?: boolean;
|
|
44
|
+
isPartnerCatalogNum?: boolean;
|
|
41
45
|
}
|
|
42
46
|
export interface ParamseDispatchDto extends FullAuditedEntityDto<string> {
|
|
43
47
|
defaultScenario?: number;
|
|
@@ -55,6 +59,8 @@ export interface ParamseDispatchDto extends FullAuditedEntityDto<string> {
|
|
|
55
59
|
itemTreeOption?: number;
|
|
56
60
|
orderReferenceField?: number;
|
|
57
61
|
isShowBatchNSerial?: boolean;
|
|
62
|
+
isPartnerCatalogDesc?: boolean;
|
|
63
|
+
isPartnerCatalogNum?: boolean;
|
|
58
64
|
concurrencyStamp?: string;
|
|
59
65
|
}
|
|
60
66
|
export interface ParamseDispatchExcelDownloadDto {
|
|
@@ -78,5 +84,7 @@ export interface ParamseDispatchUpdateDto {
|
|
|
78
84
|
itemTreeOption?: number;
|
|
79
85
|
orderReferenceField?: number;
|
|
80
86
|
isShowBatchNSerial?: boolean;
|
|
87
|
+
isPartnerCatalogDesc?: boolean;
|
|
88
|
+
isPartnerCatalogNum?: boolean;
|
|
81
89
|
concurrencyStamp?: string;
|
|
82
90
|
}
|
|
@@ -16,6 +16,8 @@ export interface GetParamseInvoicesInput extends PagedAndSortedResultRequestDto
|
|
|
16
16
|
despatchReferenceFieldMin?: number;
|
|
17
17
|
despatchReferenceFieldMax?: number;
|
|
18
18
|
isShowBatchNSerial?: boolean;
|
|
19
|
+
isPartnerCatalogDesc?: boolean;
|
|
20
|
+
isPartnerCatalogNum?: boolean;
|
|
19
21
|
}
|
|
20
22
|
export interface ParamseInvoiceCreateDto {
|
|
21
23
|
defaultScenario?: number;
|
|
@@ -28,6 +30,8 @@ export interface ParamseInvoiceCreateDto {
|
|
|
28
30
|
orderReferenceField?: number;
|
|
29
31
|
despatchReferenceField?: number;
|
|
30
32
|
isShowBatchNSerial?: boolean;
|
|
33
|
+
isPartnerCatalogDesc?: boolean;
|
|
34
|
+
isPartnerCatalogNum?: boolean;
|
|
31
35
|
}
|
|
32
36
|
export interface ParamseInvoiceDto extends FullAuditedEntityDto<string> {
|
|
33
37
|
defaultScenario?: number;
|
|
@@ -40,6 +44,8 @@ export interface ParamseInvoiceDto extends FullAuditedEntityDto<string> {
|
|
|
40
44
|
orderReferenceField?: number;
|
|
41
45
|
despatchReferenceField?: number;
|
|
42
46
|
isShowBatchNSerial?: boolean;
|
|
47
|
+
isPartnerCatalogDesc?: boolean;
|
|
48
|
+
isPartnerCatalogNum?: boolean;
|
|
43
49
|
concurrencyStamp?: string;
|
|
44
50
|
}
|
|
45
51
|
export interface ParamseInvoiceExcelDownloadDto {
|
|
@@ -58,5 +64,7 @@ export interface ParamseInvoiceUpdateDto {
|
|
|
58
64
|
orderReferenceField?: number;
|
|
59
65
|
despatchReferenceField?: number;
|
|
60
66
|
isShowBatchNSerial?: boolean;
|
|
67
|
+
isPartnerCatalogDesc?: boolean;
|
|
68
|
+
isPartnerCatalogNum?: boolean;
|
|
61
69
|
concurrencyStamp?: string;
|
|
62
70
|
}
|