@cbm-common/cbm-types 0.0.229 → 0.0.231
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/lib/components/alert/alert.component.d.ts +8 -0
- package/lib/components/electronic-receipt-monitor/electronic-receipt-monitor.d.ts +88 -0
- package/lib/components/user-history/components/sri-history/sri-history.component.d.ts +2 -0
- package/lib/components/view-reports/view-reports.d.ts +1 -0
- package/lib/domain/models/auth-reactive.domain.model.d.ts +2 -1
- package/lib/domain/models/electronic-receipt-monitor.model.d.ts +264 -0
- package/lib/domain/models/retention-sales.domain.model.d.ts +2 -0
- package/lib/domain/repositories/electronic-receipt-monitor.domain.repository.d.ts +9 -0
- package/lib/domain/services/PIN.domain.service.d.ts +9 -0
- package/lib/domain/services/general.domain.service.d.ts +9 -0
- package/lib/environments/environment.d.ts +1 -0
- package/lib/environments/environment.development.d.ts +1 -0
- package/lib/infrastructure/repositories/electronic-receipts-monitor.infrastructure.repository.d.ts +6 -0
- package/lib/infrastructure/services/electronic-receipts-monitor.infrastructure.service.d.ts +11 -0
- package/lib/types/get-date.d.ts +9 -0
- package/package.json +1 -1
- package/public-api.d.ts +13 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare class CbmAlertComponent {
|
|
2
|
+
type: import("@angular/core").InputSignal<"success" | "warning" | "danger" | "info">;
|
|
3
|
+
title: import("@angular/core").InputSignal<string>;
|
|
4
|
+
message: import("@angular/core").InputSignal<string>;
|
|
5
|
+
icon: import("@angular/core").InputSignal<string>;
|
|
6
|
+
isVisible: import("@angular/core").WritableSignal<boolean>;
|
|
7
|
+
closeAlert(): void;
|
|
8
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { DestroyRef, OnInit } from '@angular/core';
|
|
2
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
4
|
+
import { PaginatedListService } from '@cbm-common/data-access';
|
|
5
|
+
import { CbmElectronicReceiptMonitorModel } from '../../domain/models/electronic-receipt-monitor.model';
|
|
6
|
+
import { CbmElectronicReceiptMonitorDomainRepository } from '../../domain/repositories/electronic-receipt-monitor.domain.repository';
|
|
7
|
+
import { GeneralDomainService } from '../../domain/services/general.domain.service';
|
|
8
|
+
import { CbmAuthReactiveService } from '../../domain/services/auth-reactive.domain.service';
|
|
9
|
+
import { CbmNotificationService } from '../../remotes/services.remote';
|
|
10
|
+
import { CbmClientDomainRepository } from '../../domain/repositories/client.domain.repository';
|
|
11
|
+
import { CbmProviderRepository } from '../../domain/repositories/provider.domain.repository';
|
|
12
|
+
import { CbmClientModel } from '../../domain/models/client.domain.model';
|
|
13
|
+
import { CbmProviderModel } from '../../domain/models/provider.domain.model';
|
|
14
|
+
export declare class CbmElectronicReceiptMonitor implements OnInit {
|
|
15
|
+
private router;
|
|
16
|
+
private destroyRef;
|
|
17
|
+
generalService: GeneralDomainService;
|
|
18
|
+
private electronicReceiptMonitorRepository;
|
|
19
|
+
private readonly providerRepository;
|
|
20
|
+
private readonly clientRepository;
|
|
21
|
+
private readonly notificationService;
|
|
22
|
+
private readonly authService;
|
|
23
|
+
constructor(router: Router, destroyRef: DestroyRef, generalService: GeneralDomainService, electronicReceiptMonitorRepository: CbmElectronicReceiptMonitorDomainRepository, providerRepository: CbmProviderRepository, clientRepository: CbmClientDomainRepository, notificationService: CbmNotificationService, authService: CbmAuthReactiveService);
|
|
24
|
+
totalAmountClient: import("@angular/core").WritableSignal<CbmElectronicReceiptMonitorModel.TotalAmoun[]>;
|
|
25
|
+
totalAmountProvider: import("@angular/core").WritableSignal<CbmElectronicReceiptMonitorModel.TotalAmoun[]>;
|
|
26
|
+
activeFilter: import("@angular/core").WritableSignal<string>;
|
|
27
|
+
signatureDaysRemaining: import("@angular/core").WritableSignal<number | null>;
|
|
28
|
+
filterFormClient: FormGroup<{
|
|
29
|
+
date_begin: FormControl<string>;
|
|
30
|
+
date_end: FormControl<string>;
|
|
31
|
+
client: FormControl<CbmClientModel.ListResponse.Item | null>;
|
|
32
|
+
sequential: FormControl<string | null>;
|
|
33
|
+
collection_origin_name: FormControl<string | null>;
|
|
34
|
+
sri_state: FormControl<"pending" | "in_process" | "authorized" | "rejected" | null>;
|
|
35
|
+
}>;
|
|
36
|
+
filterFormProvider: FormGroup<{
|
|
37
|
+
date_begin: FormControl<string>;
|
|
38
|
+
date_end: FormControl<string>;
|
|
39
|
+
provider: FormControl<CbmProviderModel.ListResponse.Item | null>;
|
|
40
|
+
sequential: FormControl<string | null>;
|
|
41
|
+
collection_origin_name: FormControl<string | null>;
|
|
42
|
+
sri_state: FormControl<"pending" | "in_process" | "authorized" | "rejected" | null>;
|
|
43
|
+
}>;
|
|
44
|
+
clients$: PaginatedListService<CbmClientModel.ListResponse, CbmClientModel.ListParams, CbmClientModel.ListResponse.Item[]>;
|
|
45
|
+
providers$: PaginatedListService<CbmProviderModel.ListResponse, CbmProviderModel.ListParams, CbmProviderModel.ListResponse.Item[]>;
|
|
46
|
+
clientsDocuments$: PaginatedListService<CbmElectronicReceiptMonitorModel.ListResponseClient, CbmElectronicReceiptMonitorModel.ListParams.Client, CbmElectronicReceiptMonitorModel.ListResponse.Client[]>;
|
|
47
|
+
providersDocuments$: PaginatedListService<CbmElectronicReceiptMonitorModel.ListResponseProvider, CbmElectronicReceiptMonitorModel.ListParams.Provider, CbmElectronicReceiptMonitorModel.ListResponse.Provider[]>;
|
|
48
|
+
readonly documentTypeTranslation: Record<string, string>;
|
|
49
|
+
clientDocumentTypes: string[];
|
|
50
|
+
providerDocumentTypes: string[];
|
|
51
|
+
summaryCards: import("@angular/core").WritableSignal<({
|
|
52
|
+
key: string;
|
|
53
|
+
label: string;
|
|
54
|
+
color: string;
|
|
55
|
+
filterKey: string;
|
|
56
|
+
customStyle?: undefined;
|
|
57
|
+
customBg?: undefined;
|
|
58
|
+
} | {
|
|
59
|
+
key: string;
|
|
60
|
+
label: string;
|
|
61
|
+
color: string;
|
|
62
|
+
filterKey: string;
|
|
63
|
+
customStyle: string;
|
|
64
|
+
customBg: string;
|
|
65
|
+
})[]>;
|
|
66
|
+
getSummaryData(key: string): {
|
|
67
|
+
count: number;
|
|
68
|
+
percentage: string;
|
|
69
|
+
};
|
|
70
|
+
getMassiveShipmentData(): {
|
|
71
|
+
total: number;
|
|
72
|
+
pending: number;
|
|
73
|
+
rejected: number;
|
|
74
|
+
inProcess: number;
|
|
75
|
+
};
|
|
76
|
+
showSignatureAlert: import("@angular/core").Signal<boolean>;
|
|
77
|
+
pendingDocsCount: import("@angular/core").Signal<number>;
|
|
78
|
+
ngOnInit(): void;
|
|
79
|
+
fetchClientsDocuments(resetPagination?: boolean): void;
|
|
80
|
+
fetchProvidersDocuments(resetPagination?: boolean): void;
|
|
81
|
+
compareWithId(a: {
|
|
82
|
+
_id: string;
|
|
83
|
+
}, b: {
|
|
84
|
+
_id: string;
|
|
85
|
+
}): boolean;
|
|
86
|
+
redirectTo(event_module: string, collection_origin_name: string, collection_origin_id: string): void;
|
|
87
|
+
setFilter(sriState: string): void;
|
|
88
|
+
}
|
|
@@ -7,6 +7,7 @@ import { CbmSriHistoryDomainRepository } from '../../../../domain/repositories/s
|
|
|
7
7
|
import { CbmUserDomainRepository } from '../../../../domain/repositories/user.domain.repository';
|
|
8
8
|
import { CbmAuthReactiveService } from '../../../../domain/services/auth-reactive.domain.service';
|
|
9
9
|
import { CbmNotificationService } from "../../../../domain/services/notification/notification.service";
|
|
10
|
+
import { CbmJsonModalComponent } from "../../../json-modal/json-modal";
|
|
10
11
|
import { CbmUserHistory } from '../../types';
|
|
11
12
|
export declare class SriHistoryComponent implements OnChanges, OnInit {
|
|
12
13
|
private sriHistoryRepository;
|
|
@@ -63,4 +64,5 @@ export declare class SriHistoryComponent implements OnChanges, OnInit {
|
|
|
63
64
|
onPreviousPage(page: number): void;
|
|
64
65
|
onPageSizeChange(size: number): void;
|
|
65
66
|
onDropdownMenuClick(event: MouseEvent, dropdownMenu: HTMLUListElement): void;
|
|
67
|
+
openJsonModal(item: CbmSriHistoryModel.ListResponse.Item, type: 'request' | 'response', modal: CbmJsonModalComponent): void;
|
|
66
68
|
}
|
|
@@ -38,6 +38,7 @@ export declare class CbmViewReportComponent {
|
|
|
38
38
|
};
|
|
39
39
|
};
|
|
40
40
|
stOfGetReport: import("@angular/core").WritableSignal<CbmViewReportModel.Status>;
|
|
41
|
+
updateMetadataOptionLoading(id: string, loading: CbmViewReportModel.Status): void;
|
|
41
42
|
fetchData(id: string): Promise<null | CbmGeneralReportModel.GetOneResponse.Data>;
|
|
42
43
|
setMetadata(report: CbmViewReportModel.ReportData): void;
|
|
43
44
|
downloadReport(typeFile: 'excel' | 'pdf' | 'print'): Promise<CbmViewReportModel.Status>;
|
|
@@ -29,6 +29,7 @@ export declare namespace CbmAuthReactiveModel {
|
|
|
29
29
|
email: string;
|
|
30
30
|
cellphone: string;
|
|
31
31
|
address: string;
|
|
32
|
+
status_code_security: boolean;
|
|
32
33
|
super_admin: boolean;
|
|
33
34
|
multi_company: boolean;
|
|
34
35
|
photo: string;
|
|
@@ -90,7 +91,7 @@ export declare namespace CbmAuthReactiveModel {
|
|
|
90
91
|
regime_name: string;
|
|
91
92
|
withholding_agent_number: string;
|
|
92
93
|
withholding_agent: boolean;
|
|
93
|
-
expiration_signature_date:
|
|
94
|
+
expiration_signature_date: number;
|
|
94
95
|
}
|
|
95
96
|
interface CompanyBranchData {
|
|
96
97
|
_id: string;
|
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
export declare namespace CbmElectronicReceiptMonitorModel {
|
|
2
|
+
type TStateSRI = 'authorized' | 'pending' | 'rejected' | 'in_process';
|
|
3
|
+
namespace ListParams {
|
|
4
|
+
interface Client {
|
|
5
|
+
page: number;
|
|
6
|
+
size: number;
|
|
7
|
+
collection_origin_name?: string;
|
|
8
|
+
client_id?: string;
|
|
9
|
+
company_environment?: string;
|
|
10
|
+
SRI_state?: TStateSRI;
|
|
11
|
+
date_begin?: number;
|
|
12
|
+
date_end?: number;
|
|
13
|
+
sequential?: string;
|
|
14
|
+
}
|
|
15
|
+
interface Provider {
|
|
16
|
+
page: number;
|
|
17
|
+
size: number;
|
|
18
|
+
collection_origin_name?: string;
|
|
19
|
+
provider_id?: string;
|
|
20
|
+
company_environment?: string;
|
|
21
|
+
SRI_state?: TStateSRI;
|
|
22
|
+
date_begin?: number;
|
|
23
|
+
date_end?: number;
|
|
24
|
+
sequential?: string;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
interface ListResponseClient {
|
|
28
|
+
success: boolean;
|
|
29
|
+
pageNum: number;
|
|
30
|
+
pageSize: number;
|
|
31
|
+
pages: number;
|
|
32
|
+
total: number;
|
|
33
|
+
items: ListResponse.Client[];
|
|
34
|
+
totalAmount: TotalAmoun[];
|
|
35
|
+
}
|
|
36
|
+
interface ListResponseProvider {
|
|
37
|
+
success: boolean;
|
|
38
|
+
pageNum: number;
|
|
39
|
+
pageSize: number;
|
|
40
|
+
pages: number;
|
|
41
|
+
total: number;
|
|
42
|
+
items: ListResponse.Provider[];
|
|
43
|
+
totalAmount: TotalAmoun[];
|
|
44
|
+
}
|
|
45
|
+
interface TotalAmoun {
|
|
46
|
+
_id: string;
|
|
47
|
+
sum_sri_state: number;
|
|
48
|
+
}
|
|
49
|
+
namespace ListResponse {
|
|
50
|
+
interface Client {
|
|
51
|
+
_id: string;
|
|
52
|
+
company_id: string;
|
|
53
|
+
company_NIF: string;
|
|
54
|
+
company_address: string;
|
|
55
|
+
company_trade_name: string;
|
|
56
|
+
company_business_name: string;
|
|
57
|
+
company_mandatory_accounting: boolean;
|
|
58
|
+
company_withholding_agent: boolean;
|
|
59
|
+
company_special_taxpayer: boolean;
|
|
60
|
+
company_artisanal_qualification: boolean;
|
|
61
|
+
company_withholding_agent_number: string;
|
|
62
|
+
company_regime_id: string;
|
|
63
|
+
company_regime_name: string;
|
|
64
|
+
company_branch_id: string;
|
|
65
|
+
company_branch_environment: number;
|
|
66
|
+
company_branch_identification_number: string;
|
|
67
|
+
company_branch_trade_name: string;
|
|
68
|
+
company_branch_logo: string;
|
|
69
|
+
company_branch_address: string;
|
|
70
|
+
company_branch_email: string[];
|
|
71
|
+
company_branch_cellphone: string;
|
|
72
|
+
company_branch_phone: string;
|
|
73
|
+
country_id: string;
|
|
74
|
+
country_code: string;
|
|
75
|
+
country_name: string;
|
|
76
|
+
country_short_name: string;
|
|
77
|
+
period_id: string;
|
|
78
|
+
period_year: string;
|
|
79
|
+
client_id: string;
|
|
80
|
+
client_business_name: string;
|
|
81
|
+
client_trade_name: string;
|
|
82
|
+
client_document_number: string;
|
|
83
|
+
client_credit_application: boolean;
|
|
84
|
+
client_document_type_id: string;
|
|
85
|
+
client_document_type_name: string;
|
|
86
|
+
client_document_type_code: string;
|
|
87
|
+
client_category_id: string;
|
|
88
|
+
client_category_name: string;
|
|
89
|
+
client_price_list_id: string;
|
|
90
|
+
client_price_list_code: string;
|
|
91
|
+
client_price_list_name: string;
|
|
92
|
+
client_branch_id: string;
|
|
93
|
+
client_branch_code: string;
|
|
94
|
+
client_branch_name: string;
|
|
95
|
+
client_branch_address: string;
|
|
96
|
+
client_branch_email: string[];
|
|
97
|
+
client_branch_phone_code: string;
|
|
98
|
+
client_branch_phone: string;
|
|
99
|
+
client_branch_cellphone: string;
|
|
100
|
+
client_branch_type_establishment: string;
|
|
101
|
+
client_branch_seller_id: string;
|
|
102
|
+
client_branch_seller_identification_number: string;
|
|
103
|
+
client_branch_seller_full_name: string;
|
|
104
|
+
client_branch_seller_address: string;
|
|
105
|
+
client_branch_seller_email: string[];
|
|
106
|
+
client_branch_seller_cellphone: string;
|
|
107
|
+
document_type: string;
|
|
108
|
+
environment: number;
|
|
109
|
+
document_nomenclature: string;
|
|
110
|
+
document_number: string;
|
|
111
|
+
document_date: number;
|
|
112
|
+
SRI_state: TStateSRI;
|
|
113
|
+
document_branch_identification_number: string;
|
|
114
|
+
document_emission_point_number: string;
|
|
115
|
+
document_emission_point_id: string;
|
|
116
|
+
document_sequence: string;
|
|
117
|
+
authorization_number: string;
|
|
118
|
+
payment_term: string;
|
|
119
|
+
tax_base: number;
|
|
120
|
+
discount: number;
|
|
121
|
+
service: number;
|
|
122
|
+
commentary: string;
|
|
123
|
+
tax_base_iva: number;
|
|
124
|
+
tax_base_iva_rate_0: number;
|
|
125
|
+
tax_base_iva_exempt: number;
|
|
126
|
+
tax_base_iva_not_subject: number;
|
|
127
|
+
tax_base_irbpnr: number;
|
|
128
|
+
tax_base_ice: number;
|
|
129
|
+
tax_iva: number;
|
|
130
|
+
tax_irbpnr: number;
|
|
131
|
+
tax_ice: number;
|
|
132
|
+
total: number;
|
|
133
|
+
invoice_type: string;
|
|
134
|
+
enabled: boolean;
|
|
135
|
+
deleted: boolean;
|
|
136
|
+
user_id: string;
|
|
137
|
+
created_user: string;
|
|
138
|
+
reverse_status: boolean;
|
|
139
|
+
deleted_at: number;
|
|
140
|
+
default_cost_center_id: string;
|
|
141
|
+
default_cost_center_code: string;
|
|
142
|
+
default_cost_center_name: string;
|
|
143
|
+
default_cost_center_father_code: string;
|
|
144
|
+
default_cost_center_father_name: string;
|
|
145
|
+
default_discount_rate: number;
|
|
146
|
+
additional_information: AdditionalInformation[];
|
|
147
|
+
locale: string;
|
|
148
|
+
timezone: string;
|
|
149
|
+
terms_and_conditions: boolean;
|
|
150
|
+
created_at: number;
|
|
151
|
+
document_origin_name: string;
|
|
152
|
+
related_documents: RelatedDocument[];
|
|
153
|
+
SRI_authorization_date: number;
|
|
154
|
+
SRI_authorization_type: string;
|
|
155
|
+
SRI_message: string;
|
|
156
|
+
SRI_user_name: string;
|
|
157
|
+
updated_at: number;
|
|
158
|
+
updated_user: string;
|
|
159
|
+
url_authorized_document: string;
|
|
160
|
+
retry_count: number;
|
|
161
|
+
collection_origin_name_consultation: string;
|
|
162
|
+
event_module: string;
|
|
163
|
+
}
|
|
164
|
+
interface AdditionalInformation {
|
|
165
|
+
_id: string;
|
|
166
|
+
description: string;
|
|
167
|
+
value: string;
|
|
168
|
+
type: string;
|
|
169
|
+
}
|
|
170
|
+
interface RelatedDocument {
|
|
171
|
+
_id: string;
|
|
172
|
+
collection_origin_id: string;
|
|
173
|
+
collection_origin_name: string;
|
|
174
|
+
document_number: string;
|
|
175
|
+
secuencial: string;
|
|
176
|
+
date: number;
|
|
177
|
+
total: number;
|
|
178
|
+
}
|
|
179
|
+
interface Provider {
|
|
180
|
+
_id: string;
|
|
181
|
+
company_id: string;
|
|
182
|
+
company_NIF: string;
|
|
183
|
+
company_address: string;
|
|
184
|
+
company_trade_name: string;
|
|
185
|
+
company_mandatory_accounting: boolean;
|
|
186
|
+
company_withholding_agent: boolean;
|
|
187
|
+
company_special_taxpayer: boolean;
|
|
188
|
+
company_artisanal_qualification: boolean;
|
|
189
|
+
company_artisanal_qualification_number: string;
|
|
190
|
+
company_withholding_agent_number: string;
|
|
191
|
+
company_regime_name: string;
|
|
192
|
+
company_environment: number;
|
|
193
|
+
company_business_name: string;
|
|
194
|
+
company_logo: string;
|
|
195
|
+
purchase_liquidation_origin: string;
|
|
196
|
+
locale: string;
|
|
197
|
+
timezone: string;
|
|
198
|
+
document_type_code: string;
|
|
199
|
+
document_type_name: string;
|
|
200
|
+
document_type_id: string;
|
|
201
|
+
company_regime_id: string;
|
|
202
|
+
provider_id: string;
|
|
203
|
+
provider_business_name: string;
|
|
204
|
+
provider_trade_name: string;
|
|
205
|
+
provider_document_number: string;
|
|
206
|
+
provider_address: string;
|
|
207
|
+
provider_email: string[];
|
|
208
|
+
provider_phone_code: string;
|
|
209
|
+
provider_cellphone: string;
|
|
210
|
+
provider_category_id: string;
|
|
211
|
+
provider_category_name: string;
|
|
212
|
+
provider_document_type_id: string;
|
|
213
|
+
provider_document_type_code: string;
|
|
214
|
+
provider_document_type_name: string;
|
|
215
|
+
country_id: string;
|
|
216
|
+
period_id: string;
|
|
217
|
+
tax_support_id: string;
|
|
218
|
+
document_emission_point_id: string;
|
|
219
|
+
default_cost_center_id: string;
|
|
220
|
+
credit_SRI_payment_term_id: string;
|
|
221
|
+
credit_SRI_payment_term_code: string;
|
|
222
|
+
credit_SRI_payment_term_name: string;
|
|
223
|
+
user_id: string;
|
|
224
|
+
country_code: string;
|
|
225
|
+
country_name: string;
|
|
226
|
+
country_short_name: string;
|
|
227
|
+
period_year: string;
|
|
228
|
+
document_nomenclature: string;
|
|
229
|
+
document_number: string;
|
|
230
|
+
document_date: number;
|
|
231
|
+
SRI_state: TStateSRI;
|
|
232
|
+
document_branch_identification_number: string;
|
|
233
|
+
document_emission_point_number: string;
|
|
234
|
+
document_sequence: string;
|
|
235
|
+
authorization_number: string;
|
|
236
|
+
tax_support_code: string;
|
|
237
|
+
tax_support_name: string;
|
|
238
|
+
tax_base: number;
|
|
239
|
+
tax_base_iva: number;
|
|
240
|
+
tax_base_iva_rate_0: number;
|
|
241
|
+
tax_base_iva_exempt: number;
|
|
242
|
+
tax_base_iva_not_subject: number;
|
|
243
|
+
tax_iva: number;
|
|
244
|
+
total: number;
|
|
245
|
+
commentary: string;
|
|
246
|
+
default_cost_center_code: string;
|
|
247
|
+
default_cost_center_name: string;
|
|
248
|
+
default_cost_center_father_code: string;
|
|
249
|
+
default_cost_center_father_name: string;
|
|
250
|
+
deleted: boolean;
|
|
251
|
+
retention: boolean;
|
|
252
|
+
created_user: string;
|
|
253
|
+
reverse_status: boolean;
|
|
254
|
+
created_at: number;
|
|
255
|
+
SRI_authorization_date: number;
|
|
256
|
+
url_authorized_document: string;
|
|
257
|
+
retry_count: number;
|
|
258
|
+
SRI_last_attempt: number;
|
|
259
|
+
SRI_message: string;
|
|
260
|
+
collection_origin_name: string;
|
|
261
|
+
event_module: string;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
}
|
|
@@ -153,6 +153,8 @@ export declare namespace CbmRetentionSalesModel {
|
|
|
153
153
|
created_user: string;
|
|
154
154
|
reverse_status: boolean;
|
|
155
155
|
created_at: number;
|
|
156
|
+
document_date: number;
|
|
157
|
+
account_date: number;
|
|
156
158
|
retention_id: string;
|
|
157
159
|
cost_center_id: string;
|
|
158
160
|
retention_type: string;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { CbmElectronicReceiptMonitorModel } from '../models/electronic-receipt-monitor.model';
|
|
3
|
+
import { ICbmElectronicReceiptMonitorInfrastructureRepository } from '../../infrastructure/repositories/electronic-receipts-monitor.infrastructure.repository';
|
|
4
|
+
export declare class CbmElectronicReceiptMonitorDomainRepository implements ICbmElectronicReceiptMonitorInfrastructureRepository {
|
|
5
|
+
private service;
|
|
6
|
+
constructor(service: ICbmElectronicReceiptMonitorInfrastructureRepository);
|
|
7
|
+
listProvider(request: CbmElectronicReceiptMonitorModel.ListParams.Provider): Observable<CbmElectronicReceiptMonitorModel.ListResponseProvider>;
|
|
8
|
+
listClient(request: CbmElectronicReceiptMonitorModel.ListParams.Client): Observable<CbmElectronicReceiptMonitorModel.ListResponseClient>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare class CbmPINService {
|
|
2
|
+
private get localStorageConfigPIN();
|
|
3
|
+
private set localStorageConfigPIN(value);
|
|
4
|
+
getPinEmails(): string[];
|
|
5
|
+
setPinEmails(emails: string[]): void;
|
|
6
|
+
removeConfigPIN(email: string): void;
|
|
7
|
+
addConfigPIN(email: string): void;
|
|
8
|
+
deleteAllPinEmails(): void;
|
|
9
|
+
}
|
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
export declare class GeneralDomainService {
|
|
2
2
|
modalShow(modalId: string): void;
|
|
3
3
|
modalHide(modalId: string): void;
|
|
4
|
+
getTimestampFromDate(localDate: string): number;
|
|
5
|
+
findRoute(eventModule: string, collectionName: string): {
|
|
6
|
+
event: string | undefined;
|
|
7
|
+
route: {
|
|
8
|
+
panel: string;
|
|
9
|
+
path: string;
|
|
10
|
+
collection: string;
|
|
11
|
+
} | undefined;
|
|
12
|
+
};
|
|
4
13
|
}
|
|
5
14
|
export declare function getDateTimestamp(localDate: string): number;
|
|
6
15
|
export declare function findRoute(eventModule: string, collectionName: string): {
|
package/lib/infrastructure/repositories/electronic-receipts-monitor.infrastructure.repository.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { CbmElectronicReceiptMonitorModel } from '../../domain/models/electronic-receipt-monitor.model';
|
|
3
|
+
export interface ICbmElectronicReceiptMonitorInfrastructureRepository {
|
|
4
|
+
listProvider(params: CbmElectronicReceiptMonitorModel.ListParams.Provider): Observable<CbmElectronicReceiptMonitorModel.ListResponseProvider>;
|
|
5
|
+
listClient(params: CbmElectronicReceiptMonitorModel.ListParams.Client): Observable<CbmElectronicReceiptMonitorModel.ListResponseClient>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { CbmElectronicReceiptMonitorModel } from '../../domain/models/electronic-receipt-monitor.model';
|
|
4
|
+
import { ICbmElectronicReceiptMonitorInfrastructureRepository } from '../repositories/electronic-receipts-monitor.infrastructure.repository';
|
|
5
|
+
export declare class CbmElectronicReceiptMonitorInfrastructureService implements ICbmElectronicReceiptMonitorInfrastructureRepository {
|
|
6
|
+
private http;
|
|
7
|
+
constructor(http: HttpClient);
|
|
8
|
+
private readonly baseUrl;
|
|
9
|
+
listProvider(params: CbmElectronicReceiptMonitorModel.ListParams.Provider): Observable<CbmElectronicReceiptMonitorModel.ListResponseProvider>;
|
|
10
|
+
listClient(params: CbmElectronicReceiptMonitorModel.ListParams.Client): Observable<CbmElectronicReceiptMonitorModel.ListResponseClient>;
|
|
11
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -190,6 +190,10 @@ export * from './lib/domain/models/provider-group.domain.model';
|
|
|
190
190
|
export * from './lib/domain/repositories/rate.domain.repository';
|
|
191
191
|
export * from './lib/domain/models/rate.domain.model';
|
|
192
192
|
|
|
193
|
+
//#region electronic-receipt-monitor repository
|
|
194
|
+
export * from './lib/domain/repositories/electronic-receipt-monitor.domain.repository';
|
|
195
|
+
export * from './lib/domain/models/electronic-receipt-monitor.model';
|
|
196
|
+
|
|
193
197
|
//#region reason country repository
|
|
194
198
|
export * from './lib/domain/repositories/reason-country.domain.repository';
|
|
195
199
|
export * from './lib/domain/models/reason-country.domain.model';
|
|
@@ -222,6 +226,12 @@ export {
|
|
|
222
226
|
TOptionType as TDocumentsReferenceOptionType,
|
|
223
227
|
} from './lib/components/documents-reference/types';
|
|
224
228
|
|
|
229
|
+
//#region electronic-receipt-monitor
|
|
230
|
+
export * from './lib/components/electronic-receipt-monitor/electronic-receipt-monitor';
|
|
231
|
+
|
|
232
|
+
//#region alert
|
|
233
|
+
export * from './lib/components/alert/alert.component';
|
|
234
|
+
|
|
225
235
|
//#region dropzone component
|
|
226
236
|
export * from './lib/components/dropzone/dropzone';
|
|
227
237
|
|
|
@@ -549,3 +559,6 @@ export * from './lib/components/excel-import-list/excel-import-list';
|
|
|
549
559
|
|
|
550
560
|
//#region item selection domain service
|
|
551
561
|
export * from './lib/domain/services/item-selection.domain.service';
|
|
562
|
+
|
|
563
|
+
//#region PIN service
|
|
564
|
+
export * from './lib/domain/services/PIN.domain.service';
|