@hitsoft/e-donusum 1.0.6 → 1.0.8

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.
Files changed (85) hide show
  1. package/config/providers/hit-providers/inbound-despatch-route.provider.d.ts +9 -0
  2. package/esm2020/config/e-donusum-config.module.mjs +5 -3
  3. package/esm2020/config/providers/hit-providers/inbound-despatch-route.provider.mjs +20 -0
  4. package/esm2020/lib/components/hit-branches/hit-branch.component.mjs +28 -0
  5. package/esm2020/lib/components/hit-branches/hit-branch.module.mjs +55 -0
  6. package/esm2020/lib/components/hit-business-partner-groups/hit-business-partner-group.component.mjs +28 -0
  7. package/esm2020/lib/components/hit-business-partner-groups/hit-business-partner-group.module.mjs +52 -0
  8. package/esm2020/lib/components/hit-business-partners/hit-business-partner.component.mjs +31 -0
  9. package/esm2020/lib/components/hit-business-partners/hit-business-partner.module.mjs +52 -0
  10. package/esm2020/lib/components/hit-despatches/hit-despatch.component.mjs +133 -0
  11. package/esm2020/lib/components/hit-despatches/hit-despatch.module.mjs +71 -0
  12. package/esm2020/lib/components/hit-despatches/sanitize-html.pipe.mjs +19 -0
  13. package/esm2020/lib/components/hit-gib-partner-pk-alls/hit-gib-partner-pk-all.component.mjs +28 -0
  14. package/esm2020/lib/components/hit-gib-partner-pk-alls/hit-gib-partner-pk-all.module.mjs +52 -0
  15. package/esm2020/lib/components/hit-gib-partner-pks/hit-gib-partner-pk.component.mjs +32 -0
  16. package/esm2020/lib/components/hit-gib-partner-pks/hit-gib-partner-pk.module.mjs +55 -0
  17. package/esm2020/lib/components/hit-inbound-despatches/hit-inbound-despatch-routing.module.mjs +38 -0
  18. package/esm2020/lib/components/hit-inbound-despatches/hit-inbound-despatch.component.mjs +135 -0
  19. package/esm2020/lib/components/hit-inbound-despatches/hit-inbound-despatch.module.mjs +77 -0
  20. package/esm2020/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.mjs +3 -3
  21. package/esm2020/lib/components/hit-invoices/hit-invoice.component.mjs +38 -13
  22. package/esm2020/lib/components/hit-params-generals/hit-params-generals-part1/hit-params-general-part1.component.mjs +2 -1
  23. package/esm2020/lib/components/hit-params-integrators/hit-params-integrator.component.mjs +2 -1
  24. package/esm2020/lib/components/hit-setup-wizard/hit-setup-wizard.component.mjs +3 -3
  25. package/esm2020/lib/despatches/despatch/components/despatch.component.mjs +14 -4
  26. package/esm2020/lib/despatches/despatch/despatch-routing.module.mjs +2 -2
  27. package/esm2020/lib/despatches/despatch/despatch.module.mjs +1 -1
  28. package/esm2020/lib/e-donusum-routing.module.mjs +16 -2
  29. package/esm2020/lib/e-donusum.module.mjs +31 -1
  30. package/esm2020/lib/hit-proxy/hit-branches/hit-branch.service.mjs +10 -4
  31. package/esm2020/lib/hit-proxy/hit-business-partner-groups/hit-business-partner-group.service.mjs +24 -0
  32. package/esm2020/lib/hit-proxy/hit-business-partners/hit-business-partner.service.mjs +24 -0
  33. package/esm2020/lib/hit-proxy/hit-despatch-lines/hit-despatch-line.service.mjs +25 -0
  34. package/esm2020/lib/hit-proxy/hit-despatches/hit-despatch.service.mjs +70 -0
  35. package/esm2020/lib/hit-proxy/hit-file-document-type/hit-file-document-type.service.mjs +24 -0
  36. package/esm2020/lib/hit-proxy/hit-gib-partner-pk-alls/hit-gib-partner-pk-alls.service.mjs +24 -0
  37. package/esm2020/lib/hit-proxy/hit-gib-partner-pks/hit-gib-partner-pk.service.mjs +24 -0
  38. package/esm2020/lib/hit-proxy/hit-inbound-despatches/hit-inbound-despatch.service.mjs +39 -0
  39. package/esm2020/lib/hit-proxy/hit-inbound-despatches/models.mjs +2 -0
  40. package/esm2020/lib/hit-proxy/hit-invoices/hit-invoice.service.mjs +27 -5
  41. package/esm2020/lib/invoices/invoice/components/invoice.component.mjs +5 -4
  42. package/esm2020/lib/invoices/invoice/invoice-routing.module.mjs +1 -1
  43. package/esm2020/lib/proxy/despatches/despatch.service.mjs +2 -2
  44. package/esm2020/lib/proxy/despatches/models.mjs +1 -1
  45. package/esm2020/lib/proxy/invoices/invoice.service.mjs +2 -2
  46. package/esm2020/lib/proxy/invoices/models.mjs +1 -1
  47. package/fesm2015/hitsoft-e-donusum-config.mjs +108 -89
  48. package/fesm2015/hitsoft-e-donusum-config.mjs.map +1 -1
  49. package/fesm2015/hitsoft-e-donusum.mjs +1237 -200
  50. package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
  51. package/fesm2020/hitsoft-e-donusum-config.mjs +108 -89
  52. package/fesm2020/hitsoft-e-donusum-config.mjs.map +1 -1
  53. package/fesm2020/hitsoft-e-donusum.mjs +1237 -200
  54. package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
  55. package/lib/components/hit-branches/hit-branch.component.d.ts +13 -0
  56. package/lib/components/hit-branches/hit-branch.module.d.ts +15 -0
  57. package/lib/components/hit-business-partner-groups/hit-business-partner-group.component.d.ts +13 -0
  58. package/lib/components/hit-business-partner-groups/hit-business-partner-group.module.d.ts +15 -0
  59. package/lib/components/hit-business-partners/hit-business-partner.component.d.ts +16 -0
  60. package/lib/components/hit-business-partners/hit-business-partner.module.d.ts +15 -0
  61. package/lib/components/hit-despatches/hit-despatch.component.d.ts +35 -0
  62. package/lib/components/hit-despatches/hit-despatch.module.d.ts +16 -0
  63. package/lib/components/hit-despatches/sanitize-html.pipe.d.ts +10 -0
  64. package/lib/components/hit-gib-partner-pk-alls/hit-gib-partner-pk-all.component.d.ts +13 -0
  65. package/lib/components/hit-gib-partner-pk-alls/hit-gib-partner-pk-all.module.d.ts +15 -0
  66. package/lib/components/hit-gib-partner-pks/hit-gib-partner-pk.component.d.ts +17 -0
  67. package/lib/components/hit-gib-partner-pks/hit-gib-partner-pk.module.d.ts +15 -0
  68. package/lib/components/hit-inbound-despatches/hit-inbound-despatch-routing.module.d.ts +7 -0
  69. package/lib/components/hit-inbound-despatches/hit-inbound-despatch.component.d.ts +38 -0
  70. package/lib/components/hit-inbound-despatches/hit-inbound-despatch.module.d.ts +16 -0
  71. package/lib/components/hit-invoices/hit-invoice.component.d.ts +10 -1
  72. package/lib/hit-proxy/hit-branches/hit-branch.service.d.ts +4 -1
  73. package/lib/hit-proxy/hit-business-partner-groups/hit-business-partner-group.service.d.ts +12 -0
  74. package/lib/hit-proxy/hit-business-partners/hit-business-partner.service.d.ts +12 -0
  75. package/lib/hit-proxy/hit-despatch-lines/hit-despatch-line.service.d.ts +12 -0
  76. package/lib/hit-proxy/hit-despatches/hit-despatch.service.d.ts +22 -0
  77. package/lib/hit-proxy/hit-file-document-type/hit-file-document-type.service.d.ts +12 -0
  78. package/lib/hit-proxy/hit-gib-partner-pk-alls/hit-gib-partner-pk-alls.service.d.ts +12 -0
  79. package/lib/hit-proxy/hit-gib-partner-pks/hit-gib-partner-pk.service.d.ts +12 -0
  80. package/lib/hit-proxy/hit-inbound-despatches/hit-inbound-despatch.service.d.ts +16 -0
  81. package/lib/hit-proxy/hit-inbound-despatches/models.d.ts +11 -0
  82. package/lib/hit-proxy/hit-invoices/hit-invoice.service.d.ts +4 -1
  83. package/lib/proxy/despatches/models.d.ts +45 -0
  84. package/lib/proxy/invoices/models.d.ts +4 -0
  85. package/package.json +1 -5
@@ -0,0 +1,13 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { DxDataGridComponent } from 'devextreme-angular';
3
+ import { HitBranchesService } from '../../hit-proxy/hit-branches/hit-branch.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class HitBranchComponent implements OnInit {
6
+ private hitBranchService;
7
+ dxBranchInstance: DxDataGridComponent;
8
+ branchsDataSource: any;
9
+ constructor(hitBranchService: HitBranchesService);
10
+ ngOnInit(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitBranchComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<HitBranchComponent, "lib-branch", never, {}, {}, never, never, false>;
13
+ }
@@ -0,0 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./hit-branch.component";
3
+ import * as i2 from "@abp/ng.core";
4
+ import * as i3 from "@abp/ng.theme.shared";
5
+ import * as i4 from "@volo/abp.commercial.ng.ui";
6
+ import * as i5 from "@ngx-validate/core";
7
+ import * as i6 from "@ng-bootstrap/ng-bootstrap";
8
+ import * as i7 from "devextreme-angular";
9
+ import * as i8 from "@abp/ng.components/page";
10
+ export declare class HitBranchModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitBranchModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HitBranchModule, [typeof i1.HitBranchComponent], [typeof i2.CoreModule, typeof i3.ThemeSharedModule, typeof i4.CommercialUiModule, typeof i5.NgxValidateCoreModule, typeof i6.NgbCollapseModule, typeof i6.NgbDatepickerModule, typeof i6.NgbDropdownModule, typeof i7.DxDataGridModule, typeof i7.DxCheckBoxModule, typeof i8.PageModule], never>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<HitBranchModule>;
14
+ }
15
+ export declare function loadHitBranchModuleAsChild(): Promise<typeof HitBranchModule>;
@@ -0,0 +1,13 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { DxDataGridComponent } from 'devextreme-angular';
3
+ import { HitBusinessPartnerGroupService } from '../../hit-proxy/hit-business-partner-groups/hit-business-partner-group.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class HitBusinessPartnerGroupComponent implements OnInit {
6
+ private hitBusinessPartnerGroupService;
7
+ dxBusinessPartnerGroupInstance: DxDataGridComponent;
8
+ businessPartnerGroupsDataSource: any;
9
+ constructor(hitBusinessPartnerGroupService: HitBusinessPartnerGroupService);
10
+ ngOnInit(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitBusinessPartnerGroupComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<HitBusinessPartnerGroupComponent, "lib-business-partner-group", never, {}, {}, never, never, false>;
13
+ }
@@ -0,0 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./hit-business-partner-group.component";
3
+ import * as i2 from "@abp/ng.core";
4
+ import * as i3 from "@abp/ng.theme.shared";
5
+ import * as i4 from "@volo/abp.commercial.ng.ui";
6
+ import * as i5 from "@ngx-validate/core";
7
+ import * as i6 from "@ng-bootstrap/ng-bootstrap";
8
+ import * as i7 from "devextreme-angular";
9
+ import * as i8 from "@abp/ng.components/page";
10
+ export declare class HitBusinessPartnerGroupModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitBusinessPartnerGroupModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HitBusinessPartnerGroupModule, [typeof i1.HitBusinessPartnerGroupComponent], [typeof i2.CoreModule, typeof i3.ThemeSharedModule, typeof i4.CommercialUiModule, typeof i5.NgxValidateCoreModule, typeof i6.NgbCollapseModule, typeof i6.NgbDatepickerModule, typeof i6.NgbDropdownModule, typeof i7.DxDataGridModule, typeof i8.PageModule], never>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<HitBusinessPartnerGroupModule>;
14
+ }
15
+ export declare function loadHitBusinessPartnerGroupModuleAsChild(): Promise<typeof HitBusinessPartnerGroupModule>;
@@ -0,0 +1,16 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { DxDataGridComponent } from 'devextreme-angular';
3
+ import { HitBusinessPartnerGroupService } from '../../hit-proxy/hit-business-partner-groups/hit-business-partner-group.service';
4
+ import { HitBusinessPartnerService } from '../../hit-proxy/hit-business-partners/hit-business-partner.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class HitBusinessPartnerComponent implements OnInit {
7
+ private hitBusinessPartnerService;
8
+ private hitBusinessPartnerGroupService;
9
+ dxBusinessPartnerInstance: DxDataGridComponent;
10
+ businessPartnersDataSource: any;
11
+ businessPartnerGroupDataSource: any;
12
+ constructor(hitBusinessPartnerService: HitBusinessPartnerService, hitBusinessPartnerGroupService: HitBusinessPartnerGroupService);
13
+ ngOnInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitBusinessPartnerComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<HitBusinessPartnerComponent, "lib-business-partner", never, {}, {}, never, never, false>;
16
+ }
@@ -0,0 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./hit-business-partner.component";
3
+ import * as i2 from "@abp/ng.core";
4
+ import * as i3 from "@abp/ng.theme.shared";
5
+ import * as i4 from "@volo/abp.commercial.ng.ui";
6
+ import * as i5 from "@ngx-validate/core";
7
+ import * as i6 from "@ng-bootstrap/ng-bootstrap";
8
+ import * as i7 from "devextreme-angular";
9
+ import * as i8 from "@abp/ng.components/page";
10
+ export declare class HitBusinessPartnerModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitBusinessPartnerModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HitBusinessPartnerModule, [typeof i1.HitBusinessPartnerComponent], [typeof i2.CoreModule, typeof i3.ThemeSharedModule, typeof i4.CommercialUiModule, typeof i5.NgxValidateCoreModule, typeof i6.NgbCollapseModule, typeof i6.NgbDatepickerModule, typeof i6.NgbDropdownModule, typeof i7.DxDataGridModule, typeof i8.PageModule], never>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<HitBusinessPartnerModule>;
14
+ }
15
+ export declare function loadHitBusinessPartnerModuleAsChild(): Promise<typeof HitBusinessPartnerModule>;
@@ -0,0 +1,35 @@
1
+ import { ListService } from '@abp/ng.core';
2
+ import { OnInit } from '@angular/core';
3
+ import { DxDataGridComponent } from 'devextreme-angular';
4
+ import { HitDespatchService } from '../../hit-proxy/hit-despatches/hit-despatch.service';
5
+ import { HitFileDocumentTypeService } from '../../hit-proxy/hit-file-document-type/hit-file-document-type.service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class HitDespatchComponent implements OnInit {
8
+ readonly list: ListService;
9
+ readonly service: HitDespatchService;
10
+ private readonly fileDocumentTypeService;
11
+ dxDespatchInstance: DxDataGridComponent;
12
+ dxDespatchFileInstance: DxDataGridComponent;
13
+ despatchesDataSource: any;
14
+ despatchStatusLookup: any;
15
+ despatchReceiverResponseLookup: any;
16
+ despatchObjectsEnumLookup: any;
17
+ despatchFileNameLookup: any;
18
+ despatchFilesDataSource: any;
19
+ isFileModalOpen: boolean;
20
+ isFileModalBusy: boolean;
21
+ constructor(list: ListService, service: HitDespatchService, fileDocumentTypeService: HitFileDocumentTypeService);
22
+ ngOnInit(): void;
23
+ sendDespatchSingle(record: any): void;
24
+ sendDespatchMultiple(): void;
25
+ getDespatchPreview(record: any): void;
26
+ getIconClass(responseId: any): "" | "fas fa-clock" | "fas fa-check-circle" | "fas fa-times-circle" | "fas fa-minus-circle";
27
+ getDespatchView(record: any): void;
28
+ getDespatchResponses(): void;
29
+ getReceiverResponseName(responseId: any): any;
30
+ showAllFiles(record: any): void;
31
+ DownloadFile(record: any): void;
32
+ getReceiptAdvicePreview(record: any): void;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitDespatchComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<HitDespatchComponent, "lib-despatch", never, {}, {}, never, never, false>;
35
+ }
@@ -0,0 +1,16 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./hit-despatch.component";
3
+ import * as i2 from "./sanitize-html.pipe";
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 "devextreme-angular";
10
+ import * as i9 from "@abp/ng.components/page";
11
+ export declare class HitDespatchModule {
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitDespatchModule, never>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HitDespatchModule, [typeof i1.HitDespatchComponent, typeof i2.SanitizeHtmlPipe], [typeof i3.CoreModule, typeof i4.ThemeSharedModule, typeof i5.CommercialUiModule, typeof i6.NgxValidateCoreModule, typeof i7.NgbCollapseModule, typeof i7.NgbDatepickerModule, typeof i7.NgbDropdownModule, typeof i8.DxDataGridModule, typeof i8.DxTextAreaModule, typeof i8.DxTextBoxModule, typeof i8.DxHtmlEditorModule, typeof i8.DxSelectBoxModule, typeof i8.DxLookupModule, typeof i8.DxTabPanelModule, typeof i9.PageModule], never>;
14
+ static ɵinj: i0.ɵɵInjectorDeclaration<HitDespatchModule>;
15
+ }
16
+ export declare function loadHitDespatchModuleAsChild(): Promise<typeof HitDespatchModule>;
@@ -0,0 +1,10 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SanitizeHtmlPipe implements PipeTransform {
5
+ private _sanitizer;
6
+ constructor(_sanitizer: DomSanitizer);
7
+ transform(value: string): SafeHtml;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SanitizeHtmlPipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<SanitizeHtmlPipe, "sanitizeHtml", false>;
10
+ }
@@ -0,0 +1,13 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { DxDataGridComponent } from 'devextreme-angular';
3
+ import { HitGibPartnerPkAllService } from '../../hit-proxy/hit-gib-partner-pk-alls/hit-gib-partner-pk-alls.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class HitGibPartnerPkAllComponent implements OnInit {
6
+ private hitGibPartnerPkService;
7
+ dxGibPartnerPkAllInstance: DxDataGridComponent;
8
+ gibPartnerPKAllDataSource: any;
9
+ constructor(hitGibPartnerPkService: HitGibPartnerPkAllService);
10
+ ngOnInit(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitGibPartnerPkAllComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<HitGibPartnerPkAllComponent, "lib-gib-partner-pk-all", never, {}, {}, never, never, false>;
13
+ }
@@ -0,0 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./hit-gib-partner-pk-all.component";
3
+ import * as i2 from "@abp/ng.core";
4
+ import * as i3 from "@abp/ng.theme.shared";
5
+ import * as i4 from "@volo/abp.commercial.ng.ui";
6
+ import * as i5 from "@ngx-validate/core";
7
+ import * as i6 from "@ng-bootstrap/ng-bootstrap";
8
+ import * as i7 from "devextreme-angular";
9
+ import * as i8 from "@abp/ng.components/page";
10
+ export declare class HitGibPartnerPkAllModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitGibPartnerPkAllModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HitGibPartnerPkAllModule, [typeof i1.HitGibPartnerPkAllComponent], [typeof i2.CoreModule, typeof i3.ThemeSharedModule, typeof i4.CommercialUiModule, typeof i5.NgxValidateCoreModule, typeof i6.NgbCollapseModule, typeof i6.NgbDatepickerModule, typeof i6.NgbDropdownModule, typeof i7.DxDataGridModule, typeof i8.PageModule], never>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<HitGibPartnerPkAllModule>;
14
+ }
15
+ export declare function loadHitGibPartnerPkAllModuleAsChild(): Promise<typeof HitGibPartnerPkAllModule>;
@@ -0,0 +1,17 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { DxDataGridComponent } from 'devextreme-angular';
3
+ import { HitGibPartnerPkService } from '../../hit-proxy/hit-gib-partner-pks/hit-gib-partner-pk.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class HitGibPartnerPkComponent implements OnInit {
6
+ private hitGibPartnerPkService;
7
+ dxGibPkPartnerInstance: DxDataGridComponent;
8
+ gibPartnerPkDatasource: any;
9
+ lookupDataSource: {
10
+ typeName: string;
11
+ typeCode: number;
12
+ }[];
13
+ constructor(hitGibPartnerPkService: HitGibPartnerPkService);
14
+ ngOnInit(): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitGibPartnerPkComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<HitGibPartnerPkComponent, "lib-gib-partner-pks", never, {}, {}, never, never, false>;
17
+ }
@@ -0,0 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./hit-gib-partner-pk.component";
3
+ import * as i2 from "@abp/ng.core";
4
+ import * as i3 from "@abp/ng.theme.shared";
5
+ import * as i4 from "@volo/abp.commercial.ng.ui";
6
+ import * as i5 from "@ngx-validate/core";
7
+ import * as i6 from "@ng-bootstrap/ng-bootstrap";
8
+ import * as i7 from "devextreme-angular";
9
+ import * as i8 from "@abp/ng.components/page";
10
+ export declare class HitGibPartnerPkModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitGibPartnerPkModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HitGibPartnerPkModule, [typeof i1.HitGibPartnerPkComponent], [typeof i2.CoreModule, typeof i3.ThemeSharedModule, typeof i4.CommercialUiModule, typeof i5.NgxValidateCoreModule, typeof i6.NgbCollapseModule, typeof i6.NgbDatepickerModule, typeof i6.NgbDropdownModule, typeof i7.DxDataGridModule, typeof i8.PageModule, typeof i7.DxLookupModule], never>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<HitGibPartnerPkModule>;
14
+ }
15
+ export declare function loadHitGibPartnerPkModuleAsChild(): Promise<typeof HitGibPartnerPkModule>;
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/router";
3
+ export declare class HitInboundDespatchRoutingModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundDespatchRoutingModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HitInboundDespatchRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<HitInboundDespatchRoutingModule>;
7
+ }
@@ -0,0 +1,38 @@
1
+ import { ListService } from '@abp/ng.core';
2
+ import { OnInit } from '@angular/core';
3
+ import { DxDataGridComponent } from 'devextreme-angular';
4
+ import { HitInvoiceService } from '../../hit-proxy/hit-invoices/hit-invoice.service';
5
+ import { FormBuilder, FormGroup } from '@angular/forms';
6
+ import { ToasterService } from '@abp/ng.theme.shared';
7
+ import { HitInboundDespatchService } from '../../hit-proxy/hit-inbound-despatches/hit-inbound-despatch.service';
8
+ import { HitDespatchLineService } from '../../hit-proxy/hit-despatch-lines/hit-despatch-line.service';
9
+ import * as i0 from "@angular/core";
10
+ export declare class HitInboundDespatchComponent implements OnInit {
11
+ readonly list: ListService;
12
+ private readonly despatchService;
13
+ private readonly despatchLineService;
14
+ private readonly invoiceService;
15
+ private readonly formBuilder;
16
+ private readonly toasterService;
17
+ dxInboundDespatchInstance: DxDataGridComponent;
18
+ dxDespatchRowsInstance: DxDataGridComponent;
19
+ inboundDespatchDataSource: any;
20
+ despatchRowsDataSource: any;
21
+ inboundDespatchStatusLookup: any;
22
+ inboundDespatchReceiverResponseLookup: any;
23
+ isModalBusyForResponse: boolean;
24
+ isModalOpenForResponse: boolean;
25
+ faturaOnizleme: any;
26
+ formResponse: FormGroup;
27
+ constructor(list: ListService, despatchService: HitInboundDespatchService, despatchLineService: HitDespatchLineService, invoiceService: HitInvoiceService, formBuilder: FormBuilder, toasterService: ToasterService);
28
+ ngOnInit(): void;
29
+ openResponseModal(record: any): void;
30
+ buildForm(record: any): void;
31
+ sendDespatchResponse(acceptType: any): void;
32
+ getInboundDespatches(): void;
33
+ getReceiverResponseName(responseId: any): any;
34
+ getIconClass(responseId: any): "" | "fas fa-clock" | "fas fa-check-circle" | "fas fa-times-circle" | "fas fa-minus-circle";
35
+ getInboundDespatchPreview(record: any): void;
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundDespatchComponent, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<HitInboundDespatchComponent, "lib-inbound-despatch", never, {}, {}, never, never, false>;
38
+ }
@@ -0,0 +1,16 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./hit-inbound-despatch.component";
3
+ import * as i2 from "@abp/ng.core";
4
+ import * as i3 from "@abp/ng.theme.shared";
5
+ import * as i4 from "@volo/abp.commercial.ng.ui";
6
+ import * as i5 from "@ngx-validate/core";
7
+ import * as i6 from "@ng-bootstrap/ng-bootstrap";
8
+ import * as i7 from "devextreme-angular";
9
+ import * as i8 from "@abp/ng.components/page";
10
+ import * as i9 from "./hit-inbound-despatch-routing.module";
11
+ export declare class HitInboundDespatchModule {
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundDespatchModule, never>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HitInboundDespatchModule, [typeof i1.HitInboundDespatchComponent], [typeof i2.CoreModule, typeof i3.ThemeSharedModule, typeof i4.CommercialUiModule, typeof i5.NgxValidateCoreModule, typeof i6.NgbCollapseModule, typeof i6.NgbDatepickerModule, typeof i6.NgbDropdownModule, typeof i7.DxDataGridModule, typeof i7.DxTextAreaModule, typeof i7.DxTextBoxModule, typeof i7.DxHtmlEditorModule, typeof i7.DxSelectBoxModule, typeof i7.DxLookupModule, typeof i7.DxTabPanelModule, typeof i8.PageModule, typeof i9.HitInboundDespatchRoutingModule, typeof i7.DxRadioGroupModule], never>;
14
+ static ɵinj: i0.ɵɵInjectorDeclaration<HitInboundDespatchModule>;
15
+ }
16
+ export declare function loadHitInboundDespatchModuleAsChild(): Promise<typeof HitInboundDespatchModule>;
@@ -2,19 +2,26 @@ import { ListService } from '@abp/ng.core';
2
2
  import { OnInit } from '@angular/core';
3
3
  import { DxDataGridComponent } from 'devextreme-angular';
4
4
  import { HitInvoiceService } from '../../hit-proxy/hit-invoices/hit-invoice.service';
5
+ import { HitFileDocumentTypeService } from '../../hit-proxy/hit-file-document-type/hit-file-document-type.service';
5
6
  import * as i0 from "@angular/core";
6
7
  export declare class HitInvoiceComponent implements OnInit {
7
8
  readonly list: ListService;
8
9
  private readonly invoiceService;
10
+ private readonly fileDocumentTypeService;
9
11
  dxInvoiceInstance: DxDataGridComponent;
12
+ dxInvoiceFileInstance: DxDataGridComponent;
10
13
  invoicesDataSource: any;
11
14
  invoiceStatusLookup: any;
15
+ invoiceFileNameLookup: any;
12
16
  invoiceReceiverResponseLookup: any;
13
17
  invoiceObjectsEnumLookup: any;
18
+ invoiceFilesDataSource: any;
14
19
  isPreviewModalOpen: boolean;
15
20
  isPreviewModalBusy: boolean;
21
+ isFileModalOpen: boolean;
22
+ isFileModalBusy: boolean;
16
23
  faturaOnizleme: any;
17
- constructor(list: ListService, invoiceService: HitInvoiceService);
24
+ constructor(list: ListService, invoiceService: HitInvoiceService, fileDocumentTypeService: HitFileDocumentTypeService);
18
25
  ngOnInit(): void;
19
26
  sendInvoiceSingle(record: any): void;
20
27
  sendInvoiceMultiple(): void;
@@ -22,9 +29,11 @@ export declare class HitInvoiceComponent implements OnInit {
22
29
  getInvoicesFromConnector(): void;
23
30
  getInvoiceResponses(): void;
24
31
  getInvoiceView(record: any): void;
32
+ showAllFiles(record: any): void;
25
33
  getInvoicePreview(record: any): void;
26
34
  getReceiverResponseName(responseId: any): any;
27
35
  getIconClass(responseId: any): "" | "fas fa-clock" | "fas fa-check-circle" | "fas fa-times-circle";
36
+ DownloadFile(record: any): void;
28
37
  static ɵfac: i0.ɵɵFactoryDeclaration<HitInvoiceComponent, never>;
29
38
  static ɵcmp: i0.ɵɵComponentDeclaration<HitInvoiceComponent, "lib-invoice", never, {}, {}, never, never, false>;
30
39
  }
@@ -1,11 +1,14 @@
1
1
  import { RestService } from '@abp/ng.core';
2
+ import { DevexpressRestService } from '../devexpress-query-builder/devexpress-query-builder';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class HitBranchesService {
4
5
  private restService;
6
+ private devexService;
5
7
  apiName: string;
8
+ LoadBranches: import("devextreme-aspnet-data-nojquery").CustomStore;
6
9
  getBranches: () => import("rxjs").Observable<any>;
7
10
  anyExistBranch: () => import("rxjs").Observable<any>;
8
- constructor(restService: RestService);
11
+ constructor(restService: RestService, devexService: DevexpressRestService);
9
12
  static ɵfac: i0.ɵɵFactoryDeclaration<HitBranchesService, never>;
10
13
  static ɵprov: i0.ɵɵInjectableDeclaration<HitBranchesService>;
11
14
  }
@@ -0,0 +1,12 @@
1
+ import { RestService } from "@abp/ng.core";
2
+ import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
3
+ import * as i0 from "@angular/core";
4
+ export declare class HitBusinessPartnerGroupService {
5
+ private restService;
6
+ private devexService;
7
+ apiName: string;
8
+ LoadBusinessPartnerGroups: import("devextreme-aspnet-data-nojquery").CustomStore;
9
+ constructor(restService: RestService, devexService: DevexpressRestService);
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitBusinessPartnerGroupService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<HitBusinessPartnerGroupService>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { RestService } from "@abp/ng.core";
2
+ import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
3
+ import * as i0 from "@angular/core";
4
+ export declare class HitBusinessPartnerService {
5
+ private restService;
6
+ private devexService;
7
+ apiName: string;
8
+ LoadBusinessPartners: import("devextreme-aspnet-data-nojquery").CustomStore;
9
+ constructor(restService: RestService, devexService: DevexpressRestService);
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitBusinessPartnerService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<HitBusinessPartnerService>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { RestService } from "@abp/ng.core";
2
+ import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
3
+ import * as i0 from "@angular/core";
4
+ export declare class HitDespatchLineService {
5
+ private restService;
6
+ private devexService;
7
+ apiName: string;
8
+ LoadDespatchLines: (despatchUUID: string) => import("devextreme-aspnet-data-nojquery").CustomStore;
9
+ constructor(restService: RestService, devexService: DevexpressRestService);
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitDespatchLineService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<HitDespatchLineService>;
12
+ }
@@ -0,0 +1,22 @@
1
+ import { RestService } from "@abp/ng.core";
2
+ import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
3
+ import * as i0 from "@angular/core";
4
+ export declare class HitDespatchService {
5
+ private restService;
6
+ private devexService;
7
+ apiName: string;
8
+ LoadDespatches: import("devextreme-aspnet-data-nojquery").CustomStore;
9
+ LoadDespatchFiles: (despatchGUID: string) => import("devextreme-aspnet-data-nojquery").CustomStore;
10
+ getSapObjects: () => import("rxjs").Observable<any>;
11
+ getReceiverResponses: () => import("rxjs").Observable<any>;
12
+ getStatuses: () => import("rxjs").Observable<any>;
13
+ sendDespatchById: (despatchIds: string[]) => import("rxjs").Observable<any>;
14
+ getDespatchPreview: (despatchGUID: string, tableValue: number) => import("rxjs").Observable<any>;
15
+ getDespatchResponses: (startDate: string, endDate: string) => import("rxjs").Observable<any>;
16
+ getDespatchView: (despatchUUID: string) => import("rxjs").Observable<any>;
17
+ downloadFileById: (blobID: string) => import("rxjs").Observable<any>;
18
+ getReceiptAdvicePreview: (despatchGUID: string) => import("rxjs").Observable<any>;
19
+ constructor(restService: RestService, devexService: DevexpressRestService);
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitDespatchService, never>;
21
+ static ɵprov: i0.ɵɵInjectableDeclaration<HitDespatchService>;
22
+ }
@@ -0,0 +1,12 @@
1
+ import { RestService } from "@abp/ng.core";
2
+ import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
3
+ import * as i0 from "@angular/core";
4
+ export declare class HitFileDocumentTypeService {
5
+ private restService;
6
+ private devexService;
7
+ apiName: string;
8
+ getFileDocumentTypes: () => import("rxjs").Observable<any>;
9
+ constructor(restService: RestService, devexService: DevexpressRestService);
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitFileDocumentTypeService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<HitFileDocumentTypeService>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { RestService } from "@abp/ng.core";
2
+ import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
3
+ import * as i0 from "@angular/core";
4
+ export declare class HitGibPartnerPkAllService {
5
+ private restService;
6
+ private devexService;
7
+ apiName: string;
8
+ LoadGibPartnerPkAlls: import("devextreme-aspnet-data-nojquery").CustomStore;
9
+ constructor(restService: RestService, devexService: DevexpressRestService);
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitGibPartnerPkAllService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<HitGibPartnerPkAllService>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { RestService } from "@abp/ng.core";
2
+ import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
3
+ import * as i0 from "@angular/core";
4
+ export declare class HitGibPartnerPkService {
5
+ private restService;
6
+ private devexService;
7
+ apiName: string;
8
+ LoadGibPartnerPks: import("devextreme-aspnet-data-nojquery").CustomStore;
9
+ constructor(restService: RestService, devexService: DevexpressRestService);
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitGibPartnerPkService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<HitGibPartnerPkService>;
12
+ }
@@ -0,0 +1,16 @@
1
+ import { RestService } from "@abp/ng.core";
2
+ import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
3
+ import { DespatchMainResponseDto } from "./models";
4
+ import * as i0 from "@angular/core";
5
+ export declare class HitInboundDespatchService {
6
+ private restService;
7
+ private devexService;
8
+ apiName: string;
9
+ LoadInboundDespatches: import("devextreme-aspnet-data-nojquery").CustomStore;
10
+ sendDespatchResponse: (mainResponse: DespatchMainResponseDto) => import("rxjs").Observable<any>;
11
+ getInboundDespatch: (startDate: string, endDate: string) => import("rxjs").Observable<any>;
12
+ getDespatchPreviewInbound: (despatchGUID: string) => import("rxjs").Observable<any>;
13
+ constructor(restService: RestService, devexService: DevexpressRestService);
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundDespatchService, never>;
15
+ static ɵprov: i0.ɵɵInjectableDeclaration<HitInboundDespatchService>;
16
+ }
@@ -0,0 +1,11 @@
1
+ export interface DespatchLineResponseDto {
2
+ receivedQuantity: number;
3
+ rejectedQuantity: number;
4
+ rejectReason: string;
5
+ itemCode: string;
6
+ itemName: string;
7
+ }
8
+ export interface DespatchMainResponseDto {
9
+ despatchUUID: string;
10
+ lineResponse: DespatchLineResponseDto[];
11
+ }
@@ -6,15 +6,18 @@ export declare class HitInvoiceService {
6
6
  private devexService;
7
7
  apiName: string;
8
8
  LoadInvoices: import("devextreme-aspnet-data-nojquery").CustomStore;
9
+ LoadInvoiceFiles: (invoiceUUID: string) => import("devextreme-aspnet-data-nojquery").CustomStore;
9
10
  sendInvoiceById: (invoiceIds: string[]) => import("rxjs").Observable<any>;
10
11
  sendInvoiceToEntegrator: () => import("rxjs").Observable<any>;
11
12
  getInvoicesFromConnector: () => import("rxjs").Observable<any>;
12
- getInvoicesResponses: () => import("rxjs").Observable<any>;
13
13
  getStatuses: () => import("rxjs").Observable<any>;
14
14
  getSapObjects: () => import("rxjs").Observable<any>;
15
15
  getReceiverResponses: () => import("rxjs").Observable<any>;
16
+ getInvoiceResponses: (startDate: string, endDate: string) => import("rxjs").Observable<any>;
16
17
  getInvoiceView: (invoiceUUID: string) => import("rxjs").Observable<any>;
18
+ showAllFiles: (invoiceUUID: string) => import("rxjs").Observable<any>;
17
19
  getInvoicePreview: (invoiceGUID: string, tableName: string) => import("rxjs").Observable<any>;
20
+ downloadFileById: (blobID: string) => import("rxjs").Observable<any>;
18
21
  constructor(restService: RestService, devexService: DevexpressRestService);
19
22
  static ɵfac: i0.ɵɵFactoryDeclaration<HitInvoiceService, never>;
20
23
  static ɵprov: i0.ɵɵInjectableDeclaration<HitInvoiceService>;
@@ -73,6 +73,16 @@ export interface DespatchCreateDto {
73
73
  legalMonetaryTotalChargeTotalAmount?: number;
74
74
  legalMonetaryTotalPayableRoundingAmount?: number;
75
75
  legalMonetaryTotalPayableAmount?: number;
76
+ isCanceled?: boolean;
77
+ receiverResponse?: number;
78
+ receiverResponseDesc?: string;
79
+ status?: number;
80
+ resourceDocEntry?: string;
81
+ resourceDocType?: number;
82
+ targetDocEntry?: string;
83
+ targetDocType?: number;
84
+ docType?: number;
85
+ senderGB?: string;
76
86
  }
77
87
  export interface DespatchDto extends FullAuditedEntityDto<string> {
78
88
  ublVersionId: string;
@@ -148,6 +158,16 @@ export interface DespatchDto extends FullAuditedEntityDto<string> {
148
158
  legalMonetaryTotalChargeTotalAmount?: number;
149
159
  legalMonetaryTotalPayableRoundingAmount?: number;
150
160
  legalMonetaryTotalPayableAmount?: number;
161
+ isCanceled?: boolean;
162
+ receiverResponse?: number;
163
+ receiverResponseDesc?: string;
164
+ status?: number;
165
+ resourceDocEntry?: string;
166
+ resourceDocType?: number;
167
+ targetDocEntry?: string;
168
+ targetDocType?: number;
169
+ docType?: number;
170
+ senderGB?: string;
151
171
  concurrencyStamp?: string;
152
172
  }
153
173
  export interface DespatchExcelDownloadDto {
@@ -229,6 +249,16 @@ export interface DespatchUpdateDto {
229
249
  legalMonetaryTotalChargeTotalAmount?: number;
230
250
  legalMonetaryTotalPayableRoundingAmount?: number;
231
251
  legalMonetaryTotalPayableAmount?: number;
252
+ isCanceled?: boolean;
253
+ receiverResponse?: number;
254
+ receiverResponseDesc?: string;
255
+ status?: number;
256
+ resourceDocEntry?: string;
257
+ resourceDocType?: number;
258
+ targetDocEntry?: string;
259
+ targetDocType?: number;
260
+ docType?: number;
261
+ senderGB?: string;
232
262
  concurrencyStamp?: string;
233
263
  }
234
264
  export interface GetDespatchesInput extends PagedAndSortedResultRequestDto {
@@ -330,4 +360,19 @@ export interface GetDespatchesInput extends PagedAndSortedResultRequestDto {
330
360
  legalMonetaryTotalPayableRoundingAmountMax?: number;
331
361
  legalMonetaryTotalPayableAmountMin?: number;
332
362
  legalMonetaryTotalPayableAmountMax?: number;
363
+ isCanceled?: boolean;
364
+ receiverResponseMin?: number;
365
+ receiverResponseMax?: number;
366
+ receiverResponseDesc?: string;
367
+ statusMin?: number;
368
+ statusMax?: number;
369
+ resourceDocEntry?: string;
370
+ resourceDocTypeMin?: number;
371
+ resourceDocTypeMax?: number;
372
+ targetDocEntry?: string;
373
+ targetDocTypeMin?: number;
374
+ targetDocTypeMax?: number;
375
+ docTypeMin?: number;
376
+ docTypeMax?: number;
377
+ senderGB?: string;
333
378
  }
@@ -107,6 +107,7 @@ export interface GetInvoicesInput extends PagedAndSortedResultRequestDto {
107
107
  docTypeMin?: number;
108
108
  docTypeMax?: number;
109
109
  isEArchive?: boolean;
110
+ senderGB?: string;
110
111
  }
111
112
  export interface InvoiceCreateDto {
112
113
  ublVersionId: string;
@@ -186,6 +187,7 @@ export interface InvoiceCreateDto {
186
187
  receiverResponseDesc?: string;
187
188
  docType?: number;
188
189
  isEArchive?: boolean;
190
+ senderGB?: string;
189
191
  }
190
192
  export interface InvoiceDto extends FullAuditedEntityDto<string> {
191
193
  ublVersionId: string;
@@ -265,6 +267,7 @@ export interface InvoiceDto extends FullAuditedEntityDto<string> {
265
267
  receiverResponseDesc?: string;
266
268
  docType?: number;
267
269
  isEArchive?: boolean;
270
+ senderGB?: string;
268
271
  concurrencyStamp?: string;
269
272
  }
270
273
  export interface InvoiceExcelDownloadDto {
@@ -350,5 +353,6 @@ export interface InvoiceUpdateDto {
350
353
  receiverResponseDesc?: string;
351
354
  docType?: number;
352
355
  isEArchive?: boolean;
356
+ senderGB?: string;
353
357
  concurrencyStamp?: string;
354
358
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hitsoft/e-donusum",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=9",
6
6
  "@angular/core": ">=9",
@@ -10,10 +10,6 @@
10
10
  "dependencies": {
11
11
  "tslib": "^2.1.0"
12
12
  },
13
- "description": "This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 12.0.4.",
14
- "main": "karma.conf.js",
15
- "author": "",
16
- "license": "ISC",
17
13
  "module": "fesm2015/hitsoft-e-donusum.mjs",
18
14
  "es2020": "fesm2020/hitsoft-e-donusum.mjs",
19
15
  "esm2020": "esm2020/hitsoft-e-donusum.mjs",