@hitsoft/e-donusum 100.1.12-Edo-Test → 100.1.14-Edo-Test

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 (27) hide show
  1. package/esm2020/lib/auto-send-rules/auto-send-rule/auto-send-rule.module.mjs +1 -1
  2. package/esm2020/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.mjs +46 -3
  3. package/esm2020/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.mjs +6 -1
  4. package/esm2020/lib/proxy/auto-send-rule-doc-types/index.mjs +1 -1
  5. package/esm2020/lib/proxy/auto-send-rule-scenarios/index.mjs +1 -1
  6. package/esm2020/lib/proxy/auto-send-rules/index.mjs +1 -1
  7. package/esm2020/lib/proxy/document-serials/index.mjs +1 -1
  8. package/esm2020/lib/proxy/gib-partner-pks/index.mjs +1 -1
  9. package/esm2020/lib/proxy/note-rule-doc-types/index.mjs +1 -1
  10. package/esm2020/lib/proxy/note-rule-scenarios/index.mjs +1 -1
  11. package/esm2020/lib/proxy/note-rules/index.mjs +1 -1
  12. package/esm2020/lib/proxy/params-companies/index.mjs +1 -1
  13. package/esm2020/lib/proxy/params-generals/index.mjs +1 -1
  14. package/esm2020/lib/proxy/params-integrators/index.mjs +1 -1
  15. package/esm2020/lib/proxy/paramse-dispatches/index.mjs +1 -1
  16. package/esm2020/lib/proxy/paramse-invoices/index.mjs +1 -1
  17. package/esm2020/lib/proxy/xslt-formats/index.mjs +1 -1
  18. package/esm2020/lib/proxy/xslt-rule-doc-types/index.mjs +1 -1
  19. package/esm2020/lib/proxy/xslt-rule-scenarios/index.mjs +1 -1
  20. package/esm2020/lib/proxy/xslt-rules/index.mjs +1 -1
  21. package/fesm2015/hitsoft-e-donusum.mjs +52 -2
  22. package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
  23. package/fesm2020/hitsoft-e-donusum.mjs +50 -2
  24. package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
  25. package/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.d.ts +5 -0
  26. package/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.d.ts +1 -0
  27. package/package.json +1 -1
@@ -50,6 +50,8 @@ export declare class HitInboundInvoiceComponent implements OnInit {
50
50
  openDocumentsForPartner: [];
51
51
  invoiceObjectsEnumLookup: any;
52
52
  invoiceFilesDataSource: any;
53
+ userCommentMap: Record<string, string>;
54
+ isSavingComment: Record<string, boolean>;
53
55
  purchaseOrderDocuments: [];
54
56
  documentLines: OpenDocumentDto[];
55
57
  purchaseDespatchDocuments: [];
@@ -109,6 +111,9 @@ export declare class HitInboundInvoiceComponent implements OnInit {
109
111
  getInboundInvoice(): void;
110
112
  getInvoicePreview(record: any): void;
111
113
  viewPDFsMultiple(): void;
114
+ getRowComment(record: any): string;
115
+ onUserCommentChanged(value: string, record: any): void;
116
+ saveUserComment(record: any): void;
112
117
  openResponseModal(record: any): void;
113
118
  buildForm(record: any): void;
114
119
  sendInvoiceResponse(response: boolean): void;
@@ -14,6 +14,7 @@ export declare class HitInboundInvoiceService {
14
14
  checkBusinessPartnerExist: (tcknVkn: string, cardType?: string) => import("rxjs").Observable<any>;
15
15
  getPartnerNumberingSeries: () => import("rxjs").Observable<any>;
16
16
  getPartnerDetails: (invoiceGuid: string) => import("rxjs").Observable<any>;
17
+ saveInvoiceUserComment: (invoiceID: string, comment: string) => import("rxjs").Observable<any>;
17
18
  getCountries: () => import("rxjs").Observable<any>;
18
19
  getStates: (countryCode: string) => import("rxjs").Observable<any>;
19
20
  getOpenDocuments: (tcknVkn: string) => import("rxjs").Observable<any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hitsoft/e-donusum",
3
- "version": "100.1.12-Edo-Test",
3
+ "version": "100.1.14-Edo-Test",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=9",
6
6
  "@angular/core": ">=9",