@hitsoft/e-donusum 1.0.52 → 1.0.54
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/producer-receipt-line-route.provider.d.ts +9 -0
- package/config/providers/producer-receipt-note-route.provider.d.ts +9 -0
- package/config/providers/producer-receipt-route.provider.d.ts +9 -0
- package/esm2020/config/e-donusum-config.module.mjs +8 -2
- package/esm2020/config/providers/producer-receipt-line-route.provider.mjs +19 -0
- package/esm2020/config/providers/producer-receipt-note-route.provider.mjs +19 -0
- package/esm2020/config/providers/producer-receipt-route.provider.mjs +19 -0
- package/esm2020/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.mjs +13 -8
- package/esm2020/lib/components/hit-paramas-invoices/hit-params-invoice.component.mjs +3 -3
- package/esm2020/lib/components/hit-params-dispatches/hit-params-dispatch.component.mjs +3 -3
- package/esm2020/lib/despatches/despatch/despatch.module.mjs +1 -1
- package/esm2020/lib/document-serials/document-serial/document-serial.module.mjs +1 -1
- package/esm2020/lib/e-donusum-routing.module.mjs +7 -1
- package/esm2020/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.mjs +6 -1
- package/esm2020/lib/hit-proxy/hit-inbound-invoices/models.mjs +1 -1
- package/esm2020/lib/invoices/invoice/invoice.module.mjs +1 -1
- package/esm2020/lib/params-generals/params-general/components/params-general.component.mjs +8 -4
- package/esm2020/lib/paramse-dispatches/paramse-dispatch/paramse-dispatch.module.mjs +1 -1
- package/esm2020/lib/paramse-invoices/paramse-invoice/paramse-invoice.module.mjs +1 -1
- package/esm2020/lib/producer-receipt-lines/producer-receipt-line/components/producer-receipt-line.component.mjs +127 -0
- package/esm2020/lib/producer-receipt-lines/producer-receipt-line/producer-receipt-line-routing.module.mjs +26 -0
- package/esm2020/lib/producer-receipt-lines/producer-receipt-line/producer-receipt-line.module.mjs +52 -0
- package/esm2020/lib/producer-receipt-notes/producer-receipt-note/components/producer-receipt-note.component.mjs +98 -0
- package/esm2020/lib/producer-receipt-notes/producer-receipt-note/producer-receipt-note-routing.module.mjs +26 -0
- package/esm2020/lib/producer-receipt-notes/producer-receipt-note/producer-receipt-note.module.mjs +52 -0
- package/esm2020/lib/producer-receipts/producer-receipt/components/producer-receipt.component.mjs +229 -0
- package/esm2020/lib/producer-receipts/producer-receipt/producer-receipt-routing.module.mjs +26 -0
- package/esm2020/lib/producer-receipts/producer-receipt/producer-receipt.module.mjs +52 -0
- package/esm2020/lib/proxy/params-generals/models.mjs +1 -1
- package/esm2020/lib/proxy/params-generals/params-general.service.mjs +2 -2
- package/esm2020/lib/proxy/producer-receipt-lines/models.mjs +2 -0
- package/esm2020/lib/proxy/producer-receipt-lines/producer-receipt-line.service.mjs +50 -0
- package/esm2020/lib/proxy/producer-receipt-notes/models.mjs +2 -0
- package/esm2020/lib/proxy/producer-receipt-notes/producer-receipt-note.service.mjs +50 -0
- package/esm2020/lib/proxy/producer-receipts/models.mjs +2 -0
- package/esm2020/lib/proxy/producer-receipts/producer-receipt.service.mjs +41 -0
- package/fesm2015/hitsoft-e-donusum-config.mjs +156 -102
- package/fesm2015/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2015/hitsoft-e-donusum.mjs +844 -126
- package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum-config.mjs +156 -102
- package/fesm2020/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum.mjs +863 -126
- package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
- package/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.d.ts +1 -0
- package/lib/hit-proxy/hit-inbound-invoices/models.d.ts +3 -0
- package/lib/producer-receipt-lines/producer-receipt-line/components/producer-receipt-line.component.d.ts +33 -0
- package/lib/producer-receipt-lines/producer-receipt-line/producer-receipt-line-routing.module.d.ts +7 -0
- package/lib/producer-receipt-lines/producer-receipt-line/producer-receipt-line.module.d.ts +15 -0
- package/lib/producer-receipt-notes/producer-receipt-note/components/producer-receipt-note.component.d.ts +33 -0
- package/lib/producer-receipt-notes/producer-receipt-note/producer-receipt-note-routing.module.d.ts +7 -0
- package/lib/producer-receipt-notes/producer-receipt-note/producer-receipt-note.module.d.ts +15 -0
- package/lib/producer-receipts/producer-receipt/components/producer-receipt.component.d.ts +33 -0
- package/lib/producer-receipts/producer-receipt/producer-receipt-routing.module.d.ts +7 -0
- package/lib/producer-receipts/producer-receipt/producer-receipt.module.d.ts +15 -0
- package/lib/proxy/params-generals/models.d.ts +5 -0
- package/lib/proxy/producer-receipt-lines/models.d.ts +97 -0
- package/lib/proxy/producer-receipt-lines/producer-receipt-line.service.d.ts +19 -0
- package/lib/proxy/producer-receipt-notes/models.d.ts +25 -0
- package/lib/proxy/producer-receipt-notes/producer-receipt-note.service.d.ts +19 -0
- package/lib/proxy/producer-receipts/models.d.ts +264 -0
- package/lib/proxy/producer-receipts/producer-receipt.service.d.ts +16 -0
- package/package.json +1 -1
|
@@ -9,6 +9,7 @@ export declare class HitInboundInvoiceService {
|
|
|
9
9
|
LoadInboundInvoices: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
10
10
|
sendInvoiceResponse: (invoiceUUID: string, isConfirm: boolean, id: string) => import("rxjs").Observable<any>;
|
|
11
11
|
getInboundInvoice: (startDate: string, endDate: string) => import("rxjs").Observable<any>;
|
|
12
|
+
getInboundInvoiceView: (invoiceGUID: string) => import("rxjs").Observable<any>;
|
|
12
13
|
getBankAccountByCurrency: (actCurr: string) => import("rxjs").Observable<any>;
|
|
13
14
|
checkBusinessPartnerExist: (tcknVkn: string) => import("rxjs").Observable<any>;
|
|
14
15
|
getPartnerNumberingSeries: () => import("rxjs").Observable<any>;
|
|
@@ -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 { GetProducerReceiptLinesInput, ProducerReceiptLineWithNavigationPropertiesDto } from '../../../proxy/producer-receipt-lines/models';
|
|
6
|
+
import { ProducerReceiptLineService } from '../../../proxy/producer-receipt-lines/producer-receipt-line.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class ProducerReceiptLineComponent implements OnInit {
|
|
9
|
+
readonly list: ListService;
|
|
10
|
+
readonly track: TrackByService;
|
|
11
|
+
readonly service: ProducerReceiptLineService;
|
|
12
|
+
private confirmation;
|
|
13
|
+
private fb;
|
|
14
|
+
data: PagedResultDto<ProducerReceiptLineWithNavigationPropertiesDto>;
|
|
15
|
+
filters: GetProducerReceiptLinesInput;
|
|
16
|
+
form: FormGroup;
|
|
17
|
+
isFiltersHidden: boolean;
|
|
18
|
+
isModalBusy: boolean;
|
|
19
|
+
isModalOpen: boolean;
|
|
20
|
+
selected?: ProducerReceiptLineWithNavigationPropertiesDto;
|
|
21
|
+
constructor(list: ListService, track: TrackByService, service: ProducerReceiptLineService, 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: ProducerReceiptLineWithNavigationPropertiesDto): void;
|
|
30
|
+
delete(record: ProducerReceiptLineWithNavigationPropertiesDto): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProducerReceiptLineComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProducerReceiptLineComponent, "lib-producer-receipt-line", never, {}, {}, never, never, false>;
|
|
33
|
+
}
|
package/lib/producer-receipt-lines/producer-receipt-line/producer-receipt-line-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 ProducerReceiptLineRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProducerReceiptLineRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ProducerReceiptLineRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ProducerReceiptLineRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/producer-receipt-line.component";
|
|
3
|
+
import * as i2 from "./producer-receipt-line-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 ProducerReceiptLineModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProducerReceiptLineModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ProducerReceiptLineModule, [typeof i1.ProducerReceiptLineComponent], [typeof i2.ProducerReceiptLineRoutingModule, 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<ProducerReceiptLineModule>;
|
|
14
|
+
}
|
|
15
|
+
export declare function loadProducerReceiptLineModuleAsChild(): Promise<typeof ProducerReceiptLineModule>;
|
|
@@ -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 { GetProducerReceiptNotesInput, ProducerReceiptNoteWithNavigationPropertiesDto } from '../../../proxy/producer-receipt-notes/models';
|
|
6
|
+
import { ProducerReceiptNoteService } from '../../../proxy/producer-receipt-notes/producer-receipt-note.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class ProducerReceiptNoteComponent implements OnInit {
|
|
9
|
+
readonly list: ListService;
|
|
10
|
+
readonly track: TrackByService;
|
|
11
|
+
readonly service: ProducerReceiptNoteService;
|
|
12
|
+
private confirmation;
|
|
13
|
+
private fb;
|
|
14
|
+
data: PagedResultDto<ProducerReceiptNoteWithNavigationPropertiesDto>;
|
|
15
|
+
filters: GetProducerReceiptNotesInput;
|
|
16
|
+
form: FormGroup;
|
|
17
|
+
isFiltersHidden: boolean;
|
|
18
|
+
isModalBusy: boolean;
|
|
19
|
+
isModalOpen: boolean;
|
|
20
|
+
selected?: ProducerReceiptNoteWithNavigationPropertiesDto;
|
|
21
|
+
constructor(list: ListService, track: TrackByService, service: ProducerReceiptNoteService, 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: ProducerReceiptNoteWithNavigationPropertiesDto): void;
|
|
30
|
+
delete(record: ProducerReceiptNoteWithNavigationPropertiesDto): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProducerReceiptNoteComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProducerReceiptNoteComponent, "lib-producer-receipt-note", never, {}, {}, never, never, false>;
|
|
33
|
+
}
|
package/lib/producer-receipt-notes/producer-receipt-note/producer-receipt-note-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 ProducerReceiptNoteRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProducerReceiptNoteRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ProducerReceiptNoteRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ProducerReceiptNoteRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/producer-receipt-note.component";
|
|
3
|
+
import * as i2 from "./producer-receipt-note-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 ProducerReceiptNoteModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProducerReceiptNoteModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ProducerReceiptNoteModule, [typeof i1.ProducerReceiptNoteComponent], [typeof i2.ProducerReceiptNoteRoutingModule, 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<ProducerReceiptNoteModule>;
|
|
14
|
+
}
|
|
15
|
+
export declare function loadProducerReceiptNoteModuleAsChild(): Promise<typeof ProducerReceiptNoteModule>;
|
|
@@ -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 { GetProducerReceiptsInput, ProducerReceiptDto } from '../../../proxy/producer-receipts/models';
|
|
6
|
+
import { ProducerReceiptService } from '../../../proxy/producer-receipts/producer-receipt.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class ProducerReceiptComponent implements OnInit {
|
|
9
|
+
readonly list: ListService;
|
|
10
|
+
readonly track: TrackByService;
|
|
11
|
+
readonly service: ProducerReceiptService;
|
|
12
|
+
private confirmation;
|
|
13
|
+
private fb;
|
|
14
|
+
data: PagedResultDto<ProducerReceiptDto>;
|
|
15
|
+
filters: GetProducerReceiptsInput;
|
|
16
|
+
form: FormGroup;
|
|
17
|
+
isFiltersHidden: boolean;
|
|
18
|
+
isModalBusy: boolean;
|
|
19
|
+
isModalOpen: boolean;
|
|
20
|
+
selected?: ProducerReceiptDto;
|
|
21
|
+
constructor(list: ListService, track: TrackByService, service: ProducerReceiptService, 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: ProducerReceiptDto): void;
|
|
30
|
+
delete(record: ProducerReceiptDto): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProducerReceiptComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProducerReceiptComponent, "lib-producer-receipt", 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 ProducerReceiptRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProducerReceiptRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ProducerReceiptRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ProducerReceiptRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/producer-receipt.component";
|
|
3
|
+
import * as i2 from "./producer-receipt-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 ProducerReceiptModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProducerReceiptModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ProducerReceiptModule, [typeof i1.ProducerReceiptComponent], [typeof i2.ProducerReceiptRoutingModule, 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<ProducerReceiptModule>;
|
|
14
|
+
}
|
|
15
|
+
export declare function loadProducerReceiptModuleAsChild(): Promise<typeof ProducerReceiptModule>;
|
|
@@ -10,6 +10,8 @@ export interface GetParamsGeneralsInput extends PagedAndSortedResultRequestDto {
|
|
|
10
10
|
eInvoiceStartDateMax?: string;
|
|
11
11
|
eDespatchStartDateMin?: string;
|
|
12
12
|
eDespatchStartDateMax?: string;
|
|
13
|
+
eProducerReceiptStartDateMin?: string;
|
|
14
|
+
eProducerReceiptStartDateMax?: string;
|
|
13
15
|
}
|
|
14
16
|
export interface ParamsGeneralCreateDto {
|
|
15
17
|
connector?: number;
|
|
@@ -17,6 +19,7 @@ export interface ParamsGeneralCreateDto {
|
|
|
17
19
|
isBranch?: boolean;
|
|
18
20
|
eInvoiceStartDate?: string;
|
|
19
21
|
eDespatchStartDate?: string;
|
|
22
|
+
eProducerReceiptStartDate?: string;
|
|
20
23
|
}
|
|
21
24
|
export interface ParamsGeneralDto extends FullAuditedEntityDto<string> {
|
|
22
25
|
connector?: number;
|
|
@@ -24,6 +27,7 @@ export interface ParamsGeneralDto extends FullAuditedEntityDto<string> {
|
|
|
24
27
|
isBranch?: boolean;
|
|
25
28
|
eInvoiceStartDate?: string;
|
|
26
29
|
eDespatchStartDate?: string;
|
|
30
|
+
eProducerReceiptStartDate?: string;
|
|
27
31
|
}
|
|
28
32
|
export interface ParamsGeneralExcelDownloadDto {
|
|
29
33
|
downloadToken?: string;
|
|
@@ -36,4 +40,5 @@ export interface ParamsGeneralUpdateDto {
|
|
|
36
40
|
isBranch?: boolean;
|
|
37
41
|
eInvoiceStartDate?: string;
|
|
38
42
|
eDespatchStartDate?: string;
|
|
43
|
+
eProducerReceiptStartDate?: string;
|
|
39
44
|
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import type { FullAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
|
|
2
|
+
import type { ProducerReceiptDto } from '../producer-receipts/models';
|
|
3
|
+
export interface GetProducerReceiptLinesInput extends PagedAndSortedResultRequestDto {
|
|
4
|
+
filterText?: string;
|
|
5
|
+
producerReceipLineId?: string;
|
|
6
|
+
note?: string;
|
|
7
|
+
creditedQuantityMin?: number;
|
|
8
|
+
creditedQuantityMax?: number;
|
|
9
|
+
unitCode?: string;
|
|
10
|
+
lineExtensionAmountMin?: number;
|
|
11
|
+
lineExtensionAmountMax?: number;
|
|
12
|
+
taxTotalTaxAmountMin?: number;
|
|
13
|
+
taxTotalTaxAmountMax?: number;
|
|
14
|
+
itemDescription?: string;
|
|
15
|
+
itemName?: string;
|
|
16
|
+
itemKeyword?: string;
|
|
17
|
+
itemBrandName?: string;
|
|
18
|
+
modelName?: string;
|
|
19
|
+
itemBuyersItemIdentificationID?: string;
|
|
20
|
+
itemSellersItemIdentificationID?: string;
|
|
21
|
+
itemManufacturersItemIdentificationID?: string;
|
|
22
|
+
itemOriginCountryIdentificationCode?: string;
|
|
23
|
+
itemOriginCountryName?: string;
|
|
24
|
+
priceAmountMin?: number;
|
|
25
|
+
priceAmountMax?: number;
|
|
26
|
+
priceCurrencyCode?: string;
|
|
27
|
+
producerReceiptId?: string;
|
|
28
|
+
}
|
|
29
|
+
export interface ProducerReceiptLineCreateDto {
|
|
30
|
+
producerReceipLineId?: string;
|
|
31
|
+
note?: string;
|
|
32
|
+
creditedQuantity?: number;
|
|
33
|
+
unitCode?: string;
|
|
34
|
+
lineExtensionAmount?: number;
|
|
35
|
+
taxTotalTaxAmount?: number;
|
|
36
|
+
itemDescription?: string;
|
|
37
|
+
itemName?: string;
|
|
38
|
+
itemKeyword?: string;
|
|
39
|
+
itemBrandName?: string;
|
|
40
|
+
modelName?: string;
|
|
41
|
+
itemBuyersItemIdentificationID?: string;
|
|
42
|
+
itemSellersItemIdentificationID?: string;
|
|
43
|
+
itemManufacturersItemIdentificationID?: string;
|
|
44
|
+
itemOriginCountryIdentificationCode?: string;
|
|
45
|
+
itemOriginCountryName?: string;
|
|
46
|
+
priceAmount?: number;
|
|
47
|
+
priceCurrencyCode?: string;
|
|
48
|
+
producerReceiptId: string;
|
|
49
|
+
}
|
|
50
|
+
export interface ProducerReceiptLineDto extends FullAuditedEntityDto<string> {
|
|
51
|
+
producerReceipLineId?: string;
|
|
52
|
+
note?: string;
|
|
53
|
+
creditedQuantity?: number;
|
|
54
|
+
unitCode?: string;
|
|
55
|
+
lineExtensionAmount?: number;
|
|
56
|
+
taxTotalTaxAmount?: number;
|
|
57
|
+
itemDescription?: string;
|
|
58
|
+
itemName?: string;
|
|
59
|
+
itemKeyword?: string;
|
|
60
|
+
itemBrandName?: string;
|
|
61
|
+
modelName?: string;
|
|
62
|
+
itemBuyersItemIdentificationID?: string;
|
|
63
|
+
itemSellersItemIdentificationID?: string;
|
|
64
|
+
itemManufacturersItemIdentificationID?: string;
|
|
65
|
+
itemOriginCountryIdentificationCode?: string;
|
|
66
|
+
itemOriginCountryName?: string;
|
|
67
|
+
priceAmount?: number;
|
|
68
|
+
priceCurrencyCode?: string;
|
|
69
|
+
producerReceiptId: string;
|
|
70
|
+
concurrencyStamp?: string;
|
|
71
|
+
}
|
|
72
|
+
export interface ProducerReceiptLineUpdateDto {
|
|
73
|
+
producerReceipLineId?: string;
|
|
74
|
+
note?: string;
|
|
75
|
+
creditedQuantity?: number;
|
|
76
|
+
unitCode?: string;
|
|
77
|
+
lineExtensionAmount?: number;
|
|
78
|
+
taxTotalTaxAmount?: number;
|
|
79
|
+
itemDescription?: string;
|
|
80
|
+
itemName?: string;
|
|
81
|
+
itemKeyword?: string;
|
|
82
|
+
itemBrandName?: string;
|
|
83
|
+
modelName?: string;
|
|
84
|
+
itemBuyersItemIdentificationID?: string;
|
|
85
|
+
itemSellersItemIdentificationID?: string;
|
|
86
|
+
itemManufacturersItemIdentificationID?: string;
|
|
87
|
+
itemOriginCountryIdentificationCode?: string;
|
|
88
|
+
itemOriginCountryName?: string;
|
|
89
|
+
priceAmount?: number;
|
|
90
|
+
priceCurrencyCode?: string;
|
|
91
|
+
producerReceiptId: string;
|
|
92
|
+
concurrencyStamp?: string;
|
|
93
|
+
}
|
|
94
|
+
export interface ProducerReceiptLineWithNavigationPropertiesDto {
|
|
95
|
+
producerReceiptLine: ProducerReceiptLineDto;
|
|
96
|
+
producerReceipt: ProducerReceiptDto;
|
|
97
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { GetProducerReceiptLinesInput, ProducerReceiptLineCreateDto, ProducerReceiptLineDto, ProducerReceiptLineUpdateDto, ProducerReceiptLineWithNavigationPropertiesDto } 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 ProducerReceiptLineService {
|
|
7
|
+
private restService;
|
|
8
|
+
apiName: string;
|
|
9
|
+
create: (input: ProducerReceiptLineCreateDto) => import("rxjs").Observable<ProducerReceiptLineDto>;
|
|
10
|
+
delete: (id: string) => import("rxjs").Observable<void>;
|
|
11
|
+
get: (id: string) => import("rxjs").Observable<ProducerReceiptLineDto>;
|
|
12
|
+
getList: (input: GetProducerReceiptLinesInput) => import("rxjs").Observable<PagedResultDto<ProducerReceiptLineWithNavigationPropertiesDto>>;
|
|
13
|
+
getProducerReceiptLookup: (input: LookupRequestDto) => import("rxjs").Observable<PagedResultDto<LookupDto<string>>>;
|
|
14
|
+
getWithNavigationProperties: (id: string) => import("rxjs").Observable<ProducerReceiptLineWithNavigationPropertiesDto>;
|
|
15
|
+
update: (id: string, input: ProducerReceiptLineUpdateDto) => import("rxjs").Observable<ProducerReceiptLineDto>;
|
|
16
|
+
constructor(restService: RestService);
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProducerReceiptLineService, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProducerReceiptLineService>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { FullAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
|
|
2
|
+
import type { ProducerReceiptDto } from '../producer-receipts/models';
|
|
3
|
+
export interface GetProducerReceiptNotesInput extends PagedAndSortedResultRequestDto {
|
|
4
|
+
filterText?: string;
|
|
5
|
+
note?: string;
|
|
6
|
+
producerReceiptId?: string;
|
|
7
|
+
}
|
|
8
|
+
export interface ProducerReceiptNoteCreateDto {
|
|
9
|
+
note?: string;
|
|
10
|
+
producerReceiptId: string;
|
|
11
|
+
}
|
|
12
|
+
export interface ProducerReceiptNoteDto extends FullAuditedEntityDto<string> {
|
|
13
|
+
note?: string;
|
|
14
|
+
producerReceiptId: string;
|
|
15
|
+
concurrencyStamp?: string;
|
|
16
|
+
}
|
|
17
|
+
export interface ProducerReceiptNoteUpdateDto {
|
|
18
|
+
note?: string;
|
|
19
|
+
producerReceiptId: string;
|
|
20
|
+
concurrencyStamp?: string;
|
|
21
|
+
}
|
|
22
|
+
export interface ProducerReceiptNoteWithNavigationPropertiesDto {
|
|
23
|
+
producerReceiptNote: ProducerReceiptNoteDto;
|
|
24
|
+
producerReceipt: ProducerReceiptDto;
|
|
25
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { GetProducerReceiptNotesInput, ProducerReceiptNoteCreateDto, ProducerReceiptNoteDto, ProducerReceiptNoteUpdateDto, ProducerReceiptNoteWithNavigationPropertiesDto } 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 ProducerReceiptNoteService {
|
|
7
|
+
private restService;
|
|
8
|
+
apiName: string;
|
|
9
|
+
create: (input: ProducerReceiptNoteCreateDto) => import("rxjs").Observable<ProducerReceiptNoteDto>;
|
|
10
|
+
delete: (id: string) => import("rxjs").Observable<void>;
|
|
11
|
+
get: (id: string) => import("rxjs").Observable<ProducerReceiptNoteDto>;
|
|
12
|
+
getList: (input: GetProducerReceiptNotesInput) => import("rxjs").Observable<PagedResultDto<ProducerReceiptNoteWithNavigationPropertiesDto>>;
|
|
13
|
+
getProducerReceiptLookup: (input: LookupRequestDto) => import("rxjs").Observable<PagedResultDto<LookupDto<string>>>;
|
|
14
|
+
getWithNavigationProperties: (id: string) => import("rxjs").Observable<ProducerReceiptNoteWithNavigationPropertiesDto>;
|
|
15
|
+
update: (id: string, input: ProducerReceiptNoteUpdateDto) => import("rxjs").Observable<ProducerReceiptNoteDto>;
|
|
16
|
+
constructor(restService: RestService);
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProducerReceiptNoteService, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProducerReceiptNoteService>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
import type { FullAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
|
|
2
|
+
export interface GetProducerReceiptsInput extends PagedAndSortedResultRequestDto {
|
|
3
|
+
filterText?: string;
|
|
4
|
+
ublVersionId?: string;
|
|
5
|
+
customizationId?: string;
|
|
6
|
+
profileId?: string;
|
|
7
|
+
producerReceiptID?: string;
|
|
8
|
+
copyIndicator?: boolean;
|
|
9
|
+
uuId?: string;
|
|
10
|
+
issueDateMin?: string;
|
|
11
|
+
issueDateMax?: string;
|
|
12
|
+
issueTimeMin?: string;
|
|
13
|
+
issueTimeMax?: string;
|
|
14
|
+
creditNoteTypeCode?: string;
|
|
15
|
+
documentCurrencyCode?: string;
|
|
16
|
+
taxCurrencyCode?: string;
|
|
17
|
+
pricingCurrencyCode?: string;
|
|
18
|
+
paymentCurrencyCode?: string;
|
|
19
|
+
paymentAlternativeCurrencyCode?: string;
|
|
20
|
+
accountingCost?: string;
|
|
21
|
+
lineCountNumericMin?: number;
|
|
22
|
+
lineCountNumericMax?: number;
|
|
23
|
+
accountingSupplierPartyName?: string;
|
|
24
|
+
accountingSupplierPartySchemeID?: string;
|
|
25
|
+
accountingSupplierPartyVKNTCKN?: string;
|
|
26
|
+
accountingCustomerPartyName?: string;
|
|
27
|
+
accountingCustomerPartySchemeID?: string;
|
|
28
|
+
accountingCustomerPartyVKNTCKN?: string;
|
|
29
|
+
deliveryActualDeliveryDateMin?: string;
|
|
30
|
+
deliveryActualDeliveryDateMax?: string;
|
|
31
|
+
taxExchangeRateSourceCurrencyCode?: string;
|
|
32
|
+
taxExchangeRateTargetCurrencyCode?: string;
|
|
33
|
+
taxExchangeRateCalculationRateMin?: number;
|
|
34
|
+
taxExchangeRateCalculationRateMax?: number;
|
|
35
|
+
taxExchangeRateDateMin?: string;
|
|
36
|
+
taxExchangeRateDateMax?: string;
|
|
37
|
+
pricingExchangeRateSourceCurrencyCode?: string;
|
|
38
|
+
pricingExchangeRateTargetCurrencyCode?: string;
|
|
39
|
+
pricingExchangeRateCalculationRateMin?: string;
|
|
40
|
+
pricingExchangeRateCalculationRateMax?: string;
|
|
41
|
+
pricingExchangeRateDateMin?: string;
|
|
42
|
+
pricingExchangeRateDateMax?: string;
|
|
43
|
+
paymentExchangeRateSourceCurrencyCode?: string;
|
|
44
|
+
paymentExchangeRateTargetCurrencyCode?: string;
|
|
45
|
+
paymentExchangeRateCalculationRateMin?: number;
|
|
46
|
+
paymentExchangeRateCalculationRateMax?: number;
|
|
47
|
+
paymentExchangeRateDateMin?: string;
|
|
48
|
+
paymentExchangeRateDateMax?: string;
|
|
49
|
+
paymentAlternativeExchangeRateSourceCurrencyCode?: string;
|
|
50
|
+
paymentAlternativeExchangeRateTargetCurrencyCode?: string;
|
|
51
|
+
paymentAlternativeExchangeRateCalculationRateMin?: number;
|
|
52
|
+
paymentAlternativeExchangeRateCalculationRateMax?: number;
|
|
53
|
+
paymentAlternativeExchangeRateDateMin?: string;
|
|
54
|
+
paymentAlternativeExchangeRateDateMax?: string;
|
|
55
|
+
legalMonetaryTotalLineExtensionAmountMin?: number;
|
|
56
|
+
legalMonetaryTotalLineExtensionAmountMax?: number;
|
|
57
|
+
legalMonetaryTotalTaxExclusiveAmountMin?: number;
|
|
58
|
+
legalMonetaryTotalTaxExclusiveAmountMax?: number;
|
|
59
|
+
legalMonetaryTotalTaxInclusiveAmountMin?: number;
|
|
60
|
+
legalMonetaryTotalTaxInclusiveAmountMax?: number;
|
|
61
|
+
legalMonetaryTotalAllowanceTotalAmountMin?: number;
|
|
62
|
+
legalMonetaryTotalAllowanceTotalAmountMax?: number;
|
|
63
|
+
legalMonetaryTotalChargeTotalAmountMin?: number;
|
|
64
|
+
legalMonetaryTotalChargeTotalAmountMax?: number;
|
|
65
|
+
legalMonetaryTotalPayableRoundingAmountMin?: number;
|
|
66
|
+
legalMonetaryTotalPayableRoundingAmountMax?: number;
|
|
67
|
+
legalMonetaryTotalPayableAmountMin?: number;
|
|
68
|
+
legalMonetaryTotalPayableAmountMax?: number;
|
|
69
|
+
isCanceled?: boolean;
|
|
70
|
+
cancelCode?: string;
|
|
71
|
+
cancelDescription?: string;
|
|
72
|
+
statusMin?: number;
|
|
73
|
+
statusMax?: number;
|
|
74
|
+
resourceDocEntryMin?: number;
|
|
75
|
+
resourceDocEntryMax?: number;
|
|
76
|
+
resourceDocTypeMin?: number;
|
|
77
|
+
resourceDocTypeMax?: number;
|
|
78
|
+
entegratorErrorMessage?: string;
|
|
79
|
+
resourceSubDocTypeMin?: number;
|
|
80
|
+
resourceSubDocTypeMax?: number;
|
|
81
|
+
resourceJournalEntryMin?: number;
|
|
82
|
+
resourceJournalEntryMax?: number;
|
|
83
|
+
isDraft?: boolean;
|
|
84
|
+
selectedReceiptSerial?: string;
|
|
85
|
+
}
|
|
86
|
+
export interface ProducerReceiptCreateDto {
|
|
87
|
+
ublVersionId: string;
|
|
88
|
+
customizationId: string;
|
|
89
|
+
profileId: string;
|
|
90
|
+
producerReceiptID: string;
|
|
91
|
+
copyIndicator?: boolean;
|
|
92
|
+
uuId: string;
|
|
93
|
+
issueDate?: string;
|
|
94
|
+
issueTime?: string;
|
|
95
|
+
creditNoteTypeCode: string;
|
|
96
|
+
documentCurrencyCode: string;
|
|
97
|
+
taxCurrencyCode?: string;
|
|
98
|
+
pricingCurrencyCode?: string;
|
|
99
|
+
paymentCurrencyCode?: string;
|
|
100
|
+
paymentAlternativeCurrencyCode?: string;
|
|
101
|
+
accountingCost?: string;
|
|
102
|
+
lineCountNumeric?: number;
|
|
103
|
+
accountingSupplierPartyName?: string;
|
|
104
|
+
accountingSupplierPartySchemeID?: string;
|
|
105
|
+
accountingSupplierPartyVKNTCKN?: string;
|
|
106
|
+
accountingCustomerPartyName?: string;
|
|
107
|
+
accountingCustomerPartySchemeID?: string;
|
|
108
|
+
accountingCustomerPartyVKNTCKN?: string;
|
|
109
|
+
deliveryActualDeliveryDate?: string;
|
|
110
|
+
taxExchangeRateSourceCurrencyCode?: string;
|
|
111
|
+
taxExchangeRateTargetCurrencyCode?: string;
|
|
112
|
+
taxExchangeRateCalculationRate?: number;
|
|
113
|
+
taxExchangeRateDate?: string;
|
|
114
|
+
pricingExchangeRateSourceCurrencyCode?: string;
|
|
115
|
+
pricingExchangeRateTargetCurrencyCode?: string;
|
|
116
|
+
pricingExchangeRateCalculationRate?: string;
|
|
117
|
+
pricingExchangeRateDate?: string;
|
|
118
|
+
paymentExchangeRateSourceCurrencyCode?: string;
|
|
119
|
+
paymentExchangeRateTargetCurrencyCode?: string;
|
|
120
|
+
paymentExchangeRateCalculationRate?: number;
|
|
121
|
+
paymentExchangeRateDate?: string;
|
|
122
|
+
paymentAlternativeExchangeRateSourceCurrencyCode?: string;
|
|
123
|
+
paymentAlternativeExchangeRateTargetCurrencyCode?: string;
|
|
124
|
+
paymentAlternativeExchangeRateCalculationRate?: number;
|
|
125
|
+
paymentAlternativeExchangeRateDate?: string;
|
|
126
|
+
legalMonetaryTotalLineExtensionAmount?: number;
|
|
127
|
+
legalMonetaryTotalTaxExclusiveAmount?: number;
|
|
128
|
+
legalMonetaryTotalTaxInclusiveAmount?: number;
|
|
129
|
+
legalMonetaryTotalAllowanceTotalAmount?: number;
|
|
130
|
+
legalMonetaryTotalChargeTotalAmount?: number;
|
|
131
|
+
legalMonetaryTotalPayableRoundingAmount?: number;
|
|
132
|
+
legalMonetaryTotalPayableAmount?: number;
|
|
133
|
+
isCanceled?: boolean;
|
|
134
|
+
cancelCode?: string;
|
|
135
|
+
cancelDescription?: string;
|
|
136
|
+
status?: number;
|
|
137
|
+
resourceDocEntry?: number;
|
|
138
|
+
resourceDocType?: number;
|
|
139
|
+
entegratorErrorMessage?: string;
|
|
140
|
+
resourceSubDocType?: number;
|
|
141
|
+
resourceJournalEntry?: number;
|
|
142
|
+
isDraft?: boolean;
|
|
143
|
+
selectedReceiptSerial?: string;
|
|
144
|
+
}
|
|
145
|
+
export interface ProducerReceiptDto extends FullAuditedEntityDto<string> {
|
|
146
|
+
ublVersionId: string;
|
|
147
|
+
customizationId: string;
|
|
148
|
+
profileId: string;
|
|
149
|
+
producerReceiptID: string;
|
|
150
|
+
copyIndicator?: boolean;
|
|
151
|
+
uuId: string;
|
|
152
|
+
issueDate?: string;
|
|
153
|
+
issueTime?: string;
|
|
154
|
+
creditNoteTypeCode: string;
|
|
155
|
+
documentCurrencyCode: string;
|
|
156
|
+
taxCurrencyCode?: string;
|
|
157
|
+
pricingCurrencyCode?: string;
|
|
158
|
+
paymentCurrencyCode?: string;
|
|
159
|
+
paymentAlternativeCurrencyCode?: string;
|
|
160
|
+
accountingCost?: string;
|
|
161
|
+
lineCountNumeric?: number;
|
|
162
|
+
accountingSupplierPartyName?: string;
|
|
163
|
+
accountingSupplierPartySchemeID?: string;
|
|
164
|
+
accountingSupplierPartyVKNTCKN?: string;
|
|
165
|
+
accountingCustomerPartyName?: string;
|
|
166
|
+
accountingCustomerPartySchemeID?: string;
|
|
167
|
+
accountingCustomerPartyVKNTCKN?: string;
|
|
168
|
+
deliveryActualDeliveryDate?: string;
|
|
169
|
+
taxExchangeRateSourceCurrencyCode?: string;
|
|
170
|
+
taxExchangeRateTargetCurrencyCode?: string;
|
|
171
|
+
taxExchangeRateCalculationRate?: number;
|
|
172
|
+
taxExchangeRateDate?: string;
|
|
173
|
+
pricingExchangeRateSourceCurrencyCode?: string;
|
|
174
|
+
pricingExchangeRateTargetCurrencyCode?: string;
|
|
175
|
+
pricingExchangeRateCalculationRate?: string;
|
|
176
|
+
pricingExchangeRateDate?: string;
|
|
177
|
+
paymentExchangeRateSourceCurrencyCode?: string;
|
|
178
|
+
paymentExchangeRateTargetCurrencyCode?: string;
|
|
179
|
+
paymentExchangeRateCalculationRate?: number;
|
|
180
|
+
paymentExchangeRateDate?: string;
|
|
181
|
+
paymentAlternativeExchangeRateSourceCurrencyCode?: string;
|
|
182
|
+
paymentAlternativeExchangeRateTargetCurrencyCode?: string;
|
|
183
|
+
paymentAlternativeExchangeRateCalculationRate?: number;
|
|
184
|
+
paymentAlternativeExchangeRateDate?: string;
|
|
185
|
+
legalMonetaryTotalLineExtensionAmount?: number;
|
|
186
|
+
legalMonetaryTotalTaxExclusiveAmount?: number;
|
|
187
|
+
legalMonetaryTotalTaxInclusiveAmount?: number;
|
|
188
|
+
legalMonetaryTotalAllowanceTotalAmount?: number;
|
|
189
|
+
legalMonetaryTotalChargeTotalAmount?: number;
|
|
190
|
+
legalMonetaryTotalPayableRoundingAmount?: number;
|
|
191
|
+
legalMonetaryTotalPayableAmount?: number;
|
|
192
|
+
isCanceled?: boolean;
|
|
193
|
+
cancelCode?: string;
|
|
194
|
+
cancelDescription?: string;
|
|
195
|
+
status?: number;
|
|
196
|
+
resourceDocEntry?: number;
|
|
197
|
+
resourceDocType?: number;
|
|
198
|
+
entegratorErrorMessage?: string;
|
|
199
|
+
resourceSubDocType?: number;
|
|
200
|
+
resourceJournalEntry?: number;
|
|
201
|
+
isDraft?: boolean;
|
|
202
|
+
selectedReceiptSerial?: string;
|
|
203
|
+
concurrencyStamp?: string;
|
|
204
|
+
}
|
|
205
|
+
export interface ProducerReceiptUpdateDto {
|
|
206
|
+
ublVersionId: string;
|
|
207
|
+
customizationId: string;
|
|
208
|
+
profileId: string;
|
|
209
|
+
producerReceiptID: string;
|
|
210
|
+
copyIndicator?: boolean;
|
|
211
|
+
uuId: string;
|
|
212
|
+
issueDate?: string;
|
|
213
|
+
issueTime?: string;
|
|
214
|
+
creditNoteTypeCode: string;
|
|
215
|
+
documentCurrencyCode: string;
|
|
216
|
+
taxCurrencyCode?: string;
|
|
217
|
+
pricingCurrencyCode?: string;
|
|
218
|
+
paymentCurrencyCode?: string;
|
|
219
|
+
paymentAlternativeCurrencyCode?: string;
|
|
220
|
+
accountingCost?: string;
|
|
221
|
+
lineCountNumeric?: number;
|
|
222
|
+
accountingSupplierPartyName?: string;
|
|
223
|
+
accountingSupplierPartySchemeID?: string;
|
|
224
|
+
accountingSupplierPartyVKNTCKN?: string;
|
|
225
|
+
accountingCustomerPartyName?: string;
|
|
226
|
+
accountingCustomerPartySchemeID?: string;
|
|
227
|
+
accountingCustomerPartyVKNTCKN?: string;
|
|
228
|
+
deliveryActualDeliveryDate?: string;
|
|
229
|
+
taxExchangeRateSourceCurrencyCode?: string;
|
|
230
|
+
taxExchangeRateTargetCurrencyCode?: string;
|
|
231
|
+
taxExchangeRateCalculationRate?: number;
|
|
232
|
+
taxExchangeRateDate?: string;
|
|
233
|
+
pricingExchangeRateSourceCurrencyCode?: string;
|
|
234
|
+
pricingExchangeRateTargetCurrencyCode?: string;
|
|
235
|
+
pricingExchangeRateCalculationRate?: string;
|
|
236
|
+
pricingExchangeRateDate?: string;
|
|
237
|
+
paymentExchangeRateSourceCurrencyCode?: string;
|
|
238
|
+
paymentExchangeRateTargetCurrencyCode?: string;
|
|
239
|
+
paymentExchangeRateCalculationRate?: number;
|
|
240
|
+
paymentExchangeRateDate?: string;
|
|
241
|
+
paymentAlternativeExchangeRateSourceCurrencyCode?: string;
|
|
242
|
+
paymentAlternativeExchangeRateTargetCurrencyCode?: string;
|
|
243
|
+
paymentAlternativeExchangeRateCalculationRate?: number;
|
|
244
|
+
paymentAlternativeExchangeRateDate?: string;
|
|
245
|
+
legalMonetaryTotalLineExtensionAmount?: number;
|
|
246
|
+
legalMonetaryTotalTaxExclusiveAmount?: number;
|
|
247
|
+
legalMonetaryTotalTaxInclusiveAmount?: number;
|
|
248
|
+
legalMonetaryTotalAllowanceTotalAmount?: number;
|
|
249
|
+
legalMonetaryTotalChargeTotalAmount?: number;
|
|
250
|
+
legalMonetaryTotalPayableRoundingAmount?: number;
|
|
251
|
+
legalMonetaryTotalPayableAmount?: number;
|
|
252
|
+
isCanceled?: boolean;
|
|
253
|
+
cancelCode?: string;
|
|
254
|
+
cancelDescription?: string;
|
|
255
|
+
status?: number;
|
|
256
|
+
resourceDocEntry?: number;
|
|
257
|
+
resourceDocType?: number;
|
|
258
|
+
entegratorErrorMessage?: string;
|
|
259
|
+
resourceSubDocType?: number;
|
|
260
|
+
resourceJournalEntry?: number;
|
|
261
|
+
isDraft?: boolean;
|
|
262
|
+
selectedReceiptSerial?: string;
|
|
263
|
+
concurrencyStamp?: string;
|
|
264
|
+
}
|