@hitsoft/e-donusum 1.0.121 → 1.0.122
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/hit-providers/invoice-sent-route.provider.d.ts +9 -0
- package/esm2020/config/e-donusum-config.module.mjs +3 -1
- package/esm2020/config/providers/hit-providers/invoice-sent-route.provider.mjs +20 -0
- package/esm2020/lib/auto-send-rules/auto-send-rule/auto-send-rule.module.mjs +1 -1
- package/esm2020/lib/components/hit-despatches/hit-despatch.component.mjs +32 -5
- package/esm2020/lib/components/hit-inbound-despatches/hit-inbound-despatch.component.mjs +51 -3
- package/esm2020/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.mjs +93 -6
- package/esm2020/lib/components/hit-invoices/hit-invoice.component.mjs +15 -93
- package/esm2020/lib/components/hit-invoices-sent/hit-invoice-sent.component.mjs +142 -0
- package/esm2020/lib/components/hit-invoices-sent/hit-invoice-sent.module.mjs +81 -0
- package/esm2020/lib/components/hit-invoices-sent/sanitize-html-sent.pipe.mjs +19 -0
- package/esm2020/lib/document-serials/document-serial/document-serial.module.mjs +1 -1
- package/esm2020/lib/e-donusum-routing.module.mjs +3 -1
- package/esm2020/lib/hit-proxy/hit-inbound-despatches/hit-inbound-despatch.service.mjs +19 -4
- package/esm2020/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.mjs +7 -1
- package/esm2020/lib/hit-proxy/hit-invoices/hit-invoice.service.mjs +5 -1
- package/esm2020/lib/hit-proxy/shared/hit-shared.service.mjs +45 -9
- package/fesm2015/hitsoft-e-donusum-config.mjs +102 -83
- package/fesm2015/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2015/hitsoft-e-donusum.mjs +509 -150
- package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum-config.mjs +102 -83
- package/fesm2020/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum.mjs +508 -150
- package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
- package/lib/components/hit-despatches/hit-despatch.component.d.ts +1 -0
- package/lib/components/hit-inbound-despatches/hit-inbound-despatch.component.d.ts +3 -0
- package/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.d.ts +4 -0
- package/lib/components/hit-invoices/hit-invoice.component.d.ts +1 -16
- package/lib/components/hit-invoices-sent/hit-invoice-sent.component.d.ts +40 -0
- package/lib/components/hit-invoices-sent/hit-invoice-sent.module.d.ts +17 -0
- package/lib/components/hit-invoices-sent/sanitize-html-sent.pipe.d.ts +10 -0
- package/lib/hit-proxy/hit-inbound-despatches/hit-inbound-despatch.service.d.ts +5 -1
- package/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.d.ts +1 -0
- package/lib/hit-proxy/hit-invoices/hit-invoice.service.d.ts +1 -0
- package/lib/hit-proxy/shared/hit-shared.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -5,12 +5,12 @@ import { RoutesService } from '@abp/ng.core';
|
|
|
5
5
|
const E_DONUSUM_ROUTE_PROVIDERS = [
|
|
6
6
|
{
|
|
7
7
|
provide: APP_INITIALIZER,
|
|
8
|
-
useFactory: configureRoutes$
|
|
8
|
+
useFactory: configureRoutes$Y,
|
|
9
9
|
deps: [RoutesService],
|
|
10
10
|
multi: true,
|
|
11
11
|
},
|
|
12
12
|
];
|
|
13
|
-
function configureRoutes$
|
|
13
|
+
function configureRoutes$Y(routes) {
|
|
14
14
|
return () => {
|
|
15
15
|
routes.add([
|
|
16
16
|
{
|
|
@@ -25,9 +25,9 @@ function configureRoutes$X(routes) {
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
const BUSINESS_PARTNER_GROUPS_BUSINESS_PARTNER_GROUP_ROUTE_PROVIDER = [
|
|
28
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
28
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$X, deps: [RoutesService], multi: true },
|
|
29
29
|
];
|
|
30
|
-
function configureRoutes$
|
|
30
|
+
function configureRoutes$X(routes) {
|
|
31
31
|
return () => {
|
|
32
32
|
routes.add([
|
|
33
33
|
{
|
|
@@ -42,9 +42,9 @@ function configureRoutes$W(routes) {
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
const BUSINESS_PARTNERS_BUSINESS_PARTNER_ROUTE_PROVIDER = [
|
|
45
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
45
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$W, deps: [RoutesService], multi: true },
|
|
46
46
|
];
|
|
47
|
-
function configureRoutes$
|
|
47
|
+
function configureRoutes$W(routes) {
|
|
48
48
|
return () => {
|
|
49
49
|
routes.add([
|
|
50
50
|
{
|
|
@@ -59,9 +59,9 @@ function configureRoutes$V(routes) {
|
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
const BRANCHES_BRANCH_ROUTE_PROVIDER = [
|
|
62
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
62
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$V, deps: [RoutesService], multi: true },
|
|
63
63
|
];
|
|
64
|
-
function configureRoutes$
|
|
64
|
+
function configureRoutes$V(routes) {
|
|
65
65
|
return () => {
|
|
66
66
|
routes.add([
|
|
67
67
|
{
|
|
@@ -76,9 +76,9 @@ function configureRoutes$U(routes) {
|
|
|
76
76
|
}
|
|
77
77
|
|
|
78
78
|
const GIB_PARTNER_PK_ALLS_GIB_PARTNER_PK_ALL_ROUTE_PROVIDER = [
|
|
79
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
79
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$U, deps: [RoutesService], multi: true },
|
|
80
80
|
];
|
|
81
|
-
function configureRoutes$
|
|
81
|
+
function configureRoutes$U(routes) {
|
|
82
82
|
return () => {
|
|
83
83
|
routes.add([
|
|
84
84
|
{
|
|
@@ -93,9 +93,9 @@ function configureRoutes$T(routes) {
|
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
const GIB_PARTNER_PKS_GIB_PARTNER_PK_ROUTE_PROVIDER = [
|
|
96
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
96
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$T, deps: [RoutesService], multi: true },
|
|
97
97
|
];
|
|
98
|
-
function configureRoutes$
|
|
98
|
+
function configureRoutes$T(routes) {
|
|
99
99
|
return () => {
|
|
100
100
|
routes.add([
|
|
101
101
|
{
|
|
@@ -110,9 +110,9 @@ function configureRoutes$S(routes) {
|
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
const DESPATCHES_DESPATCH_ROUTE_PROVIDER = [
|
|
113
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
113
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$S, deps: [RoutesService], multi: true },
|
|
114
114
|
];
|
|
115
|
-
function configureRoutes$
|
|
115
|
+
function configureRoutes$S(routes) {
|
|
116
116
|
return () => {
|
|
117
117
|
routes.add([
|
|
118
118
|
{
|
|
@@ -127,9 +127,9 @@ function configureRoutes$R(routes) {
|
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
const DESPATCH_LINES_DESPATCH_LINE_ROUTE_PROVIDER = [
|
|
130
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
130
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$R, deps: [RoutesService], multi: true },
|
|
131
131
|
];
|
|
132
|
-
function configureRoutes$
|
|
132
|
+
function configureRoutes$R(routes) {
|
|
133
133
|
return () => {
|
|
134
134
|
routes.add([
|
|
135
135
|
{
|
|
@@ -144,9 +144,9 @@ function configureRoutes$Q(routes) {
|
|
|
144
144
|
}
|
|
145
145
|
|
|
146
146
|
const DESPATCH_NOTES_DESPATCH_NOTE_ROUTE_PROVIDER = [
|
|
147
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
147
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$Q, deps: [RoutesService], multi: true },
|
|
148
148
|
];
|
|
149
|
-
function configureRoutes$
|
|
149
|
+
function configureRoutes$Q(routes) {
|
|
150
150
|
return () => {
|
|
151
151
|
routes.add([
|
|
152
152
|
{
|
|
@@ -161,9 +161,9 @@ function configureRoutes$P(routes) {
|
|
|
161
161
|
}
|
|
162
162
|
|
|
163
163
|
const DESPATCH_DOCUMENT_REFERENCES_DESPATCH_DOCUMENT_REFERENCE_ROUTE_PROVIDER = [
|
|
164
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
164
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$P, deps: [RoutesService], multi: true },
|
|
165
165
|
];
|
|
166
|
-
function configureRoutes$
|
|
166
|
+
function configureRoutes$P(routes) {
|
|
167
167
|
return () => {
|
|
168
168
|
routes.add([
|
|
169
169
|
{
|
|
@@ -177,8 +177,8 @@ function configureRoutes$O(routes) {
|
|
|
177
177
|
};
|
|
178
178
|
}
|
|
179
179
|
|
|
180
|
-
const DESPATCH_LINE_ORDER_LINE_REFERENCES_DESPATCH_LINE_ORDER_LINE_REFERENCE_ROUTE_PROVIDER = [{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
181
|
-
function configureRoutes$
|
|
180
|
+
const DESPATCH_LINE_ORDER_LINE_REFERENCES_DESPATCH_LINE_ORDER_LINE_REFERENCE_ROUTE_PROVIDER = [{ provide: APP_INITIALIZER, useFactory: configureRoutes$O, deps: [RoutesService], multi: true }];
|
|
181
|
+
function configureRoutes$O(routes) {
|
|
182
182
|
return () => {
|
|
183
183
|
routes.add([
|
|
184
184
|
{
|
|
@@ -193,9 +193,9 @@ function configureRoutes$N(routes) {
|
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
const INVOICES_INVOICE_ROUTE_PROVIDER = [
|
|
196
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
196
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$N, deps: [RoutesService], multi: true },
|
|
197
197
|
];
|
|
198
|
-
function configureRoutes$
|
|
198
|
+
function configureRoutes$N(routes) {
|
|
199
199
|
return () => {
|
|
200
200
|
routes.add([
|
|
201
201
|
{
|
|
@@ -210,9 +210,9 @@ function configureRoutes$M(routes) {
|
|
|
210
210
|
}
|
|
211
211
|
|
|
212
212
|
const INVOICE_LINES_INVOICE_LINE_ROUTE_PROVIDER = [
|
|
213
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
213
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$M, deps: [RoutesService], multi: true },
|
|
214
214
|
];
|
|
215
|
-
function configureRoutes$
|
|
215
|
+
function configureRoutes$M(routes) {
|
|
216
216
|
return () => {
|
|
217
217
|
routes.add([
|
|
218
218
|
{
|
|
@@ -227,9 +227,9 @@ function configureRoutes$L(routes) {
|
|
|
227
227
|
}
|
|
228
228
|
|
|
229
229
|
const INVOICE_NOTES_INVOICE_NOTE_ROUTE_PROVIDER = [
|
|
230
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
230
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$L, deps: [RoutesService], multi: true },
|
|
231
231
|
];
|
|
232
|
-
function configureRoutes$
|
|
232
|
+
function configureRoutes$L(routes) {
|
|
233
233
|
return () => {
|
|
234
234
|
routes.add([
|
|
235
235
|
{
|
|
@@ -244,9 +244,9 @@ function configureRoutes$K(routes) {
|
|
|
244
244
|
}
|
|
245
245
|
|
|
246
246
|
const INVOICE_DOCUMENT_REFERENCES_INVOICE_DOCUMENT_REFERENCE_ROUTE_PROVIDER = [
|
|
247
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
247
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$K, deps: [RoutesService], multi: true },
|
|
248
248
|
];
|
|
249
|
-
function configureRoutes$
|
|
249
|
+
function configureRoutes$K(routes) {
|
|
250
250
|
return () => {
|
|
251
251
|
routes.add([
|
|
252
252
|
{
|
|
@@ -261,9 +261,9 @@ function configureRoutes$J(routes) {
|
|
|
261
261
|
}
|
|
262
262
|
|
|
263
263
|
const INVOICE_LINE_ORDER_LINE_REFERENCES_INVOICE_LINE_ORDER_LINE_REFERENCE_ROUTE_PROVIDER = [
|
|
264
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
264
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$J, deps: [RoutesService], multi: true },
|
|
265
265
|
];
|
|
266
|
-
function configureRoutes$
|
|
266
|
+
function configureRoutes$J(routes) {
|
|
267
267
|
return () => {
|
|
268
268
|
routes.add([
|
|
269
269
|
{
|
|
@@ -277,8 +277,8 @@ function configureRoutes$I(routes) {
|
|
|
277
277
|
};
|
|
278
278
|
}
|
|
279
279
|
|
|
280
|
-
const INVOICE_LINE_DESPATCH_LINE_REFERENCES_INVOICE_LINE_DESPATCH_LINE_REFERENCE_ROUTE_PROVIDER = [{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
281
|
-
function configureRoutes$
|
|
280
|
+
const INVOICE_LINE_DESPATCH_LINE_REFERENCES_INVOICE_LINE_DESPATCH_LINE_REFERENCE_ROUTE_PROVIDER = [{ provide: APP_INITIALIZER, useFactory: configureRoutes$I, deps: [RoutesService], multi: true }];
|
|
281
|
+
function configureRoutes$I(routes) {
|
|
282
282
|
return () => {
|
|
283
283
|
routes.add([
|
|
284
284
|
{
|
|
@@ -292,8 +292,8 @@ function configureRoutes$H(routes) {
|
|
|
292
292
|
};
|
|
293
293
|
}
|
|
294
294
|
|
|
295
|
-
const INVOICE_LINE_RECEIPT_LINE_REFERENCES_INVOICE_LINE_RECEIPT_LINE_REFERENCE_ROUTE_PROVIDER = [{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
296
|
-
function configureRoutes$
|
|
295
|
+
const INVOICE_LINE_RECEIPT_LINE_REFERENCES_INVOICE_LINE_RECEIPT_LINE_REFERENCE_ROUTE_PROVIDER = [{ provide: APP_INITIALIZER, useFactory: configureRoutes$H, deps: [RoutesService], multi: true }];
|
|
296
|
+
function configureRoutes$H(routes) {
|
|
297
297
|
return () => {
|
|
298
298
|
routes.add([
|
|
299
299
|
{
|
|
@@ -308,9 +308,9 @@ function configureRoutes$G(routes) {
|
|
|
308
308
|
}
|
|
309
309
|
|
|
310
310
|
const NOTE_RULES_NOTE_RULE_ROUTE_PROVIDER = [
|
|
311
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
311
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$G, deps: [RoutesService], multi: true },
|
|
312
312
|
];
|
|
313
|
-
function configureRoutes$
|
|
313
|
+
function configureRoutes$G(routes) {
|
|
314
314
|
return () => {
|
|
315
315
|
routes.add([
|
|
316
316
|
{
|
|
@@ -325,9 +325,9 @@ function configureRoutes$F(routes) {
|
|
|
325
325
|
}
|
|
326
326
|
|
|
327
327
|
const NOTE_RULE_SCENARIOS_NOTE_RULE_SCENARIO_ROUTE_PROVIDER = [
|
|
328
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
328
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$F, deps: [RoutesService], multi: true },
|
|
329
329
|
];
|
|
330
|
-
function configureRoutes$
|
|
330
|
+
function configureRoutes$F(routes) {
|
|
331
331
|
return () => {
|
|
332
332
|
routes.add([
|
|
333
333
|
{
|
|
@@ -342,9 +342,9 @@ function configureRoutes$E(routes) {
|
|
|
342
342
|
}
|
|
343
343
|
|
|
344
344
|
const NOTE_RULE_DOC_TYPES_NOTE_RULE_DOC_TYPE_ROUTE_PROVIDER = [
|
|
345
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
345
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$E, deps: [RoutesService], multi: true },
|
|
346
346
|
];
|
|
347
|
-
function configureRoutes$
|
|
347
|
+
function configureRoutes$E(routes) {
|
|
348
348
|
return () => {
|
|
349
349
|
routes.add([
|
|
350
350
|
{
|
|
@@ -359,9 +359,9 @@ function configureRoutes$D(routes) {
|
|
|
359
359
|
}
|
|
360
360
|
|
|
361
361
|
const PARAMS_COMPANIES_PARAMS_COMPANY_ROUTE_PROVIDER = [
|
|
362
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
362
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$D, deps: [RoutesService], multi: true },
|
|
363
363
|
];
|
|
364
|
-
function configureRoutes$
|
|
364
|
+
function configureRoutes$D(routes) {
|
|
365
365
|
return () => {
|
|
366
366
|
routes.add([
|
|
367
367
|
{
|
|
@@ -376,9 +376,9 @@ function configureRoutes$C(routes) {
|
|
|
376
376
|
}
|
|
377
377
|
|
|
378
378
|
const PARAMS_INTEGRATORS_PARAMS_INTEGRATOR_ROUTE_PROVIDER = [
|
|
379
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
379
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$C, deps: [RoutesService], multi: true },
|
|
380
380
|
];
|
|
381
|
-
function configureRoutes$
|
|
381
|
+
function configureRoutes$C(routes) {
|
|
382
382
|
return () => {
|
|
383
383
|
routes.add([
|
|
384
384
|
{
|
|
@@ -393,9 +393,9 @@ function configureRoutes$B(routes) {
|
|
|
393
393
|
}
|
|
394
394
|
|
|
395
395
|
const PARAMSE_INVOICES_PARAMSE_INVOICE_ROUTE_PROVIDER = [
|
|
396
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
396
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$B, deps: [RoutesService], multi: true },
|
|
397
397
|
];
|
|
398
|
-
function configureRoutes$
|
|
398
|
+
function configureRoutes$B(routes) {
|
|
399
399
|
return () => {
|
|
400
400
|
routes.add([
|
|
401
401
|
{
|
|
@@ -410,9 +410,9 @@ function configureRoutes$A(routes) {
|
|
|
410
410
|
}
|
|
411
411
|
|
|
412
412
|
const PARAMSE_DISPATCHES_PARAMSE_DISPATCH_ROUTE_PROVIDER = [
|
|
413
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
413
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$A, deps: [RoutesService], multi: true },
|
|
414
414
|
];
|
|
415
|
-
function configureRoutes$
|
|
415
|
+
function configureRoutes$A(routes) {
|
|
416
416
|
return () => {
|
|
417
417
|
routes.add([
|
|
418
418
|
{
|
|
@@ -427,9 +427,9 @@ function configureRoutes$z(routes) {
|
|
|
427
427
|
}
|
|
428
428
|
|
|
429
429
|
const PARAMS_GENERALS_PARAMS_GENERAL_ROUTE_PROVIDER = [
|
|
430
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
430
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$z, deps: [RoutesService], multi: true },
|
|
431
431
|
];
|
|
432
|
-
function configureRoutes$
|
|
432
|
+
function configureRoutes$z(routes) {
|
|
433
433
|
return () => {
|
|
434
434
|
routes.add([
|
|
435
435
|
{
|
|
@@ -444,9 +444,9 @@ function configureRoutes$y(routes) {
|
|
|
444
444
|
}
|
|
445
445
|
|
|
446
446
|
const HIT_NOTE_RULES_NOTE_RULE_ROUTE_PROVIDER = [
|
|
447
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
447
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$y, deps: [RoutesService], multi: true },
|
|
448
448
|
];
|
|
449
|
-
function configureRoutes$
|
|
449
|
+
function configureRoutes$y(routes) {
|
|
450
450
|
return () => {
|
|
451
451
|
routes.add([
|
|
452
452
|
{
|
|
@@ -462,9 +462,9 @@ function configureRoutes$x(routes) {
|
|
|
462
462
|
}
|
|
463
463
|
|
|
464
464
|
const HIT_SETUP_WIZARD_ROUTE_PROVIDER = [
|
|
465
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
465
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$x, deps: [RoutesService], multi: true },
|
|
466
466
|
];
|
|
467
|
-
function configureRoutes$
|
|
467
|
+
function configureRoutes$x(routes) {
|
|
468
468
|
return () => {
|
|
469
469
|
routes.add([
|
|
470
470
|
{
|
|
@@ -480,9 +480,9 @@ function configureRoutes$w(routes) {
|
|
|
480
480
|
}
|
|
481
481
|
|
|
482
482
|
const XSLT_FORMATS_XSLT_FORMAT_ROUTE_PROVIDER = [
|
|
483
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
483
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$w, deps: [RoutesService], multi: true },
|
|
484
484
|
];
|
|
485
|
-
function configureRoutes$
|
|
485
|
+
function configureRoutes$w(routes) {
|
|
486
486
|
return () => {
|
|
487
487
|
routes.add([
|
|
488
488
|
{
|
|
@@ -497,9 +497,9 @@ function configureRoutes$v(routes) {
|
|
|
497
497
|
}
|
|
498
498
|
|
|
499
499
|
const XSLT_RULES_XSLT_RULE_ROUTE_PROVIDER = [
|
|
500
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
500
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$v, deps: [RoutesService], multi: true },
|
|
501
501
|
];
|
|
502
|
-
function configureRoutes$
|
|
502
|
+
function configureRoutes$v(routes) {
|
|
503
503
|
return () => {
|
|
504
504
|
routes.add([
|
|
505
505
|
{
|
|
@@ -514,9 +514,9 @@ function configureRoutes$u(routes) {
|
|
|
514
514
|
}
|
|
515
515
|
|
|
516
516
|
const XSLT_RULE_DOC_TYPES_XSLT_RULE_DOC_TYPE_ROUTE_PROVIDER = [
|
|
517
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
517
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$u, deps: [RoutesService], multi: true },
|
|
518
518
|
];
|
|
519
|
-
function configureRoutes$
|
|
519
|
+
function configureRoutes$u(routes) {
|
|
520
520
|
return () => {
|
|
521
521
|
routes.add([
|
|
522
522
|
{
|
|
@@ -531,9 +531,9 @@ function configureRoutes$t(routes) {
|
|
|
531
531
|
}
|
|
532
532
|
|
|
533
533
|
const XSLT_RULE_SCENARIOS_XSLT_RULE_SCENARIO_ROUTE_PROVIDER = [
|
|
534
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
534
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$t, deps: [RoutesService], multi: true },
|
|
535
535
|
];
|
|
536
|
-
function configureRoutes$
|
|
536
|
+
function configureRoutes$t(routes) {
|
|
537
537
|
return () => {
|
|
538
538
|
routes.add([
|
|
539
539
|
{
|
|
@@ -550,12 +550,12 @@ function configureRoutes$s(routes) {
|
|
|
550
550
|
const HIT_E_DONUSUM_ROUTE_PROVIDERS = [
|
|
551
551
|
{
|
|
552
552
|
provide: APP_INITIALIZER,
|
|
553
|
-
useFactory: configureRoutes$
|
|
553
|
+
useFactory: configureRoutes$s,
|
|
554
554
|
deps: [RoutesService],
|
|
555
555
|
multi: true,
|
|
556
556
|
},
|
|
557
557
|
];
|
|
558
|
-
function configureRoutes$
|
|
558
|
+
function configureRoutes$s(routes) {
|
|
559
559
|
return () => {
|
|
560
560
|
routes.add([
|
|
561
561
|
{
|
|
@@ -613,9 +613,9 @@ function configureRoutes$r(routes) {
|
|
|
613
613
|
}
|
|
614
614
|
|
|
615
615
|
const HIT_BRANCHES_BRANCH_ROUTE_PROVIDER = [
|
|
616
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
616
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$r, deps: [RoutesService], multi: true },
|
|
617
617
|
];
|
|
618
|
-
function configureRoutes$
|
|
618
|
+
function configureRoutes$r(routes) {
|
|
619
619
|
return () => {
|
|
620
620
|
routes.add([
|
|
621
621
|
{
|
|
@@ -631,9 +631,9 @@ function configureRoutes$q(routes) {
|
|
|
631
631
|
}
|
|
632
632
|
|
|
633
633
|
const HIT_BUSINESS_PARTNERS_BUSINESS_PARTNER_ROUTE_PROVIDER = [
|
|
634
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
634
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$q, deps: [RoutesService], multi: true },
|
|
635
635
|
];
|
|
636
|
-
function configureRoutes$
|
|
636
|
+
function configureRoutes$q(routes) {
|
|
637
637
|
return () => {
|
|
638
638
|
routes.add([
|
|
639
639
|
{
|
|
@@ -649,9 +649,9 @@ function configureRoutes$p(routes) {
|
|
|
649
649
|
}
|
|
650
650
|
|
|
651
651
|
const HIT_BUSINESS_PARTNER_GROUPS_BUSINESS_PARTNER_GROUP_ROUTE_PROVIDER = [
|
|
652
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
652
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$p, deps: [RoutesService], multi: true },
|
|
653
653
|
];
|
|
654
|
-
function configureRoutes$
|
|
654
|
+
function configureRoutes$p(routes) {
|
|
655
655
|
return () => {
|
|
656
656
|
routes.add([
|
|
657
657
|
{
|
|
@@ -667,9 +667,9 @@ function configureRoutes$o(routes) {
|
|
|
667
667
|
}
|
|
668
668
|
|
|
669
669
|
const HIT_GIB_PARTNER_PKS_GIB_PARTNER_PK_ROUTE_PROVIDER = [
|
|
670
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
670
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$o, deps: [RoutesService], multi: true },
|
|
671
671
|
];
|
|
672
|
-
function configureRoutes$
|
|
672
|
+
function configureRoutes$o(routes) {
|
|
673
673
|
return () => {
|
|
674
674
|
routes.add([
|
|
675
675
|
{
|
|
@@ -685,9 +685,9 @@ function configureRoutes$n(routes) {
|
|
|
685
685
|
}
|
|
686
686
|
|
|
687
687
|
const HIT_GIB_PARTNER_PK_ALLS_GIB_PARTNER_PK_ALL_ROUTE_PROVIDER = [
|
|
688
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
688
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$n, deps: [RoutesService], multi: true },
|
|
689
689
|
];
|
|
690
|
-
function configureRoutes$
|
|
690
|
+
function configureRoutes$n(routes) {
|
|
691
691
|
return () => {
|
|
692
692
|
routes.add([
|
|
693
693
|
{
|
|
@@ -703,9 +703,9 @@ function configureRoutes$m(routes) {
|
|
|
703
703
|
}
|
|
704
704
|
|
|
705
705
|
const HIT_XSLT_RULES_XSLT_RULE_ROUTE_PROVIDER = [
|
|
706
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
706
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$m, deps: [RoutesService], multi: true },
|
|
707
707
|
];
|
|
708
|
-
function configureRoutes$
|
|
708
|
+
function configureRoutes$m(routes) {
|
|
709
709
|
return () => {
|
|
710
710
|
routes.add([
|
|
711
711
|
{
|
|
@@ -721,9 +721,9 @@ function configureRoutes$l(routes) {
|
|
|
721
721
|
}
|
|
722
722
|
|
|
723
723
|
const HIT_XSLT_FORMATS_XSLT_FORMAT_ROUTE_PROVIDER = [
|
|
724
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
724
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$l, deps: [RoutesService], multi: true },
|
|
725
725
|
];
|
|
726
|
-
function configureRoutes$
|
|
726
|
+
function configureRoutes$l(routes) {
|
|
727
727
|
return () => {
|
|
728
728
|
routes.add([
|
|
729
729
|
{
|
|
@@ -739,9 +739,9 @@ function configureRoutes$k(routes) {
|
|
|
739
739
|
}
|
|
740
740
|
|
|
741
741
|
const HIT_INVOICES_INVOICE_ROUTE_PROVIDER = [
|
|
742
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
742
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$k, deps: [RoutesService], multi: true },
|
|
743
743
|
];
|
|
744
|
-
function configureRoutes$
|
|
744
|
+
function configureRoutes$k(routes) {
|
|
745
745
|
return () => {
|
|
746
746
|
routes.add([
|
|
747
747
|
{
|
|
@@ -756,6 +756,24 @@ function configureRoutes$j(routes) {
|
|
|
756
756
|
};
|
|
757
757
|
}
|
|
758
758
|
|
|
759
|
+
const HIT_INVOICES_INVOICE_SENT_ROUTE_PROVIDER = [
|
|
760
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$j, deps: [RoutesService], multi: true },
|
|
761
|
+
];
|
|
762
|
+
function configureRoutes$j(routes) {
|
|
763
|
+
return () => {
|
|
764
|
+
routes.add([
|
|
765
|
+
{
|
|
766
|
+
path: '/e-donusum/invoices-sent',
|
|
767
|
+
parentName: "eDonusum::Menu:eInvoiceeArchive" /* eDonusumRouteNames.eInvoiceeArchive */,
|
|
768
|
+
name: 'eDonusum::Menu:SentInvoices',
|
|
769
|
+
layout: "application" /* eLayoutType.application */,
|
|
770
|
+
requiredPolicy: 'eDonusum.Invoices',
|
|
771
|
+
order: 2
|
|
772
|
+
},
|
|
773
|
+
]);
|
|
774
|
+
};
|
|
775
|
+
}
|
|
776
|
+
|
|
759
777
|
const HIT_DESPATCHES_DESPATCH_ROUTE_PROVIDER = [
|
|
760
778
|
{ provide: APP_INITIALIZER, useFactory: configureRoutes$i, deps: [RoutesService], multi: true },
|
|
761
779
|
];
|
|
@@ -1136,6 +1154,7 @@ class eDonusumConfigModule {
|
|
|
1136
1154
|
HIT_XSLT_RULES_XSLT_RULE_ROUTE_PROVIDER,
|
|
1137
1155
|
HIT_XSLT_FORMATS_XSLT_FORMAT_ROUTE_PROVIDER,
|
|
1138
1156
|
HIT_INVOICES_INVOICE_ROUTE_PROVIDER,
|
|
1157
|
+
HIT_INVOICES_INVOICE_SENT_ROUTE_PROVIDER,
|
|
1139
1158
|
HIT_DESPATCHES_DESPATCH_ROUTE_PROVIDER,
|
|
1140
1159
|
HIT_INBOUND_INVOICES_INVOICE_ROUTE_PROVIDER,
|
|
1141
1160
|
HIT_INBOUND_DESPATCHES_DESPATCH_ROUTE_PROVIDER,
|
|
@@ -1171,5 +1190,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
1171
1190
|
* Generated bundle index. Do not edit.
|
|
1172
1191
|
*/
|
|
1173
1192
|
|
|
1174
|
-
export { E_DONUSUM_ROUTE_PROVIDERS, configureRoutes$
|
|
1193
|
+
export { E_DONUSUM_ROUTE_PROVIDERS, configureRoutes$Y as configureRoutes, eDonusumConfigModule };
|
|
1175
1194
|
//# sourceMappingURL=hitsoft-e-donusum-config.mjs.map
|