@hitsoft/e-donusum 1.0.63 → 1.0.64
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/auto-send-rule-route.provider.d.ts +9 -0
- package/esm2020/config/e-donusum-config.module.mjs +3 -1
- package/esm2020/config/providers/auto-send-rule-doc-type-route.provider.mjs +2 -2
- package/esm2020/config/providers/auto-send-rule-route.provider.mjs +2 -2
- package/esm2020/config/providers/auto-send-rule-scenario-route.provider.mjs +2 -2
- package/esm2020/config/providers/hit-providers/auto-send-rule-route.provider.mjs +20 -0
- package/esm2020/lib/auto-send-rules/auto-send-rule/auto-send-rule-routing.module.mjs +15 -3
- package/esm2020/lib/auto-send-rules/auto-send-rule/components/auto-send-rule.component.mjs +5 -4
- package/esm2020/lib/components/hit-auto-send-rules/hit-auto-send-rule.component.mjs +297 -0
- package/esm2020/lib/components/hit-auto-send-rules/hit-auto-send-rule.module.mjs +73 -0
- package/esm2020/lib/components/hit-document-serial/hit-document-serial.component.mjs +28 -18
- package/esm2020/lib/despatches/despatch/despatch.module.mjs +1 -1
- package/esm2020/lib/e-donusum-routing.module.mjs +3 -1
- package/esm2020/lib/e-donusum.module.mjs +6 -1
- package/esm2020/lib/hit-proxy/hit-auto-send-rule-doc-types/hit-auto-send-rule-doc-type.service.mjs +23 -0
- package/esm2020/lib/hit-proxy/hit-auto-send-rule-scenarios/hit-auto-send-rule-scenario.service.mjs +23 -0
- package/esm2020/lib/hit-proxy/hit-auto-send-rules/hit-auto-send-rule.service.mjs +59 -0
- package/esm2020/lib/hit-proxy/hit-auto-send-rules/models.mjs +2 -0
- package/esm2020/lib/hit-proxy/hit-document-serials/hit-document-serial.service.mjs +6 -1
- package/esm2020/lib/invoices/invoice/invoice.module.mjs +1 -1
- package/esm2020/lib/proxy/auto-send-rule-doc-types/index.mjs +3 -0
- package/esm2020/lib/proxy/auto-send-rule-scenarios/index.mjs +3 -0
- package/esm2020/lib/proxy/auto-send-rules/auto-send-rule.service.mjs +2 -2
- package/esm2020/lib/proxy/auto-send-rules/index.mjs +3 -0
- package/esm2020/lib/proxy/auto-send-rules/models.mjs +1 -1
- package/fesm2015/hitsoft-e-donusum-config.mjs +141 -122
- package/fesm2015/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2015/hitsoft-e-donusum.mjs +493 -26
- package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum-config.mjs +141 -122
- package/fesm2020/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum.mjs +490 -26
- package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
- package/lib/components/hit-auto-send-rules/hit-auto-send-rule.component.d.ts +70 -0
- package/lib/components/hit-auto-send-rules/hit-auto-send-rule.module.d.ts +15 -0
- package/lib/components/hit-document-serial/hit-document-serial.component.d.ts +4 -1
- package/lib/hit-proxy/hit-auto-send-rule-doc-types/hit-auto-send-rule-doc-type.service.d.ts +11 -0
- package/lib/hit-proxy/hit-auto-send-rule-scenarios/hit-auto-send-rule-scenario.service.d.ts +11 -0
- package/lib/hit-proxy/hit-auto-send-rules/hit-auto-send-rule.service.d.ts +23 -0
- package/lib/hit-proxy/hit-auto-send-rules/models.d.ts +34 -0
- package/lib/hit-proxy/hit-document-serials/hit-document-serial.service.d.ts +1 -0
- package/lib/proxy/auto-send-rule-doc-types/index.d.ts +2 -0
- package/lib/proxy/auto-send-rule-scenarios/index.d.ts +2 -0
- package/lib/proxy/auto-send-rules/index.d.ts +2 -0
- package/lib/proxy/auto-send-rules/models.d.ts +4 -0
- 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$X,
|
|
9
9
|
deps: [RoutesService],
|
|
10
10
|
multi: true,
|
|
11
11
|
},
|
|
12
12
|
];
|
|
13
|
-
function configureRoutes$
|
|
13
|
+
function configureRoutes$X(routes) {
|
|
14
14
|
return () => {
|
|
15
15
|
routes.add([
|
|
16
16
|
{
|
|
@@ -25,9 +25,9 @@ function configureRoutes$W(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$W, deps: [RoutesService], multi: true },
|
|
29
29
|
];
|
|
30
|
-
function configureRoutes$
|
|
30
|
+
function configureRoutes$W(routes) {
|
|
31
31
|
return () => {
|
|
32
32
|
routes.add([
|
|
33
33
|
{
|
|
@@ -42,9 +42,9 @@ function configureRoutes$V(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$V, deps: [RoutesService], multi: true },
|
|
46
46
|
];
|
|
47
|
-
function configureRoutes$
|
|
47
|
+
function configureRoutes$V(routes) {
|
|
48
48
|
return () => {
|
|
49
49
|
routes.add([
|
|
50
50
|
{
|
|
@@ -59,9 +59,9 @@ function configureRoutes$U(routes) {
|
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
const BRANCHES_BRANCH_ROUTE_PROVIDER = [
|
|
62
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
62
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$U, deps: [RoutesService], multi: true },
|
|
63
63
|
];
|
|
64
|
-
function configureRoutes$
|
|
64
|
+
function configureRoutes$U(routes) {
|
|
65
65
|
return () => {
|
|
66
66
|
routes.add([
|
|
67
67
|
{
|
|
@@ -76,9 +76,9 @@ function configureRoutes$T(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$T, deps: [RoutesService], multi: true },
|
|
80
80
|
];
|
|
81
|
-
function configureRoutes$
|
|
81
|
+
function configureRoutes$T(routes) {
|
|
82
82
|
return () => {
|
|
83
83
|
routes.add([
|
|
84
84
|
{
|
|
@@ -93,9 +93,9 @@ function configureRoutes$S(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$S, deps: [RoutesService], multi: true },
|
|
97
97
|
];
|
|
98
|
-
function configureRoutes$
|
|
98
|
+
function configureRoutes$S(routes) {
|
|
99
99
|
return () => {
|
|
100
100
|
routes.add([
|
|
101
101
|
{
|
|
@@ -110,9 +110,9 @@ function configureRoutes$R(routes) {
|
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
const DESPATCHES_DESPATCH_ROUTE_PROVIDER = [
|
|
113
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
113
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$R, deps: [RoutesService], multi: true },
|
|
114
114
|
];
|
|
115
|
-
function configureRoutes$
|
|
115
|
+
function configureRoutes$R(routes) {
|
|
116
116
|
return () => {
|
|
117
117
|
routes.add([
|
|
118
118
|
{
|
|
@@ -127,9 +127,9 @@ function configureRoutes$Q(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$Q, deps: [RoutesService], multi: true },
|
|
131
131
|
];
|
|
132
|
-
function configureRoutes$
|
|
132
|
+
function configureRoutes$Q(routes) {
|
|
133
133
|
return () => {
|
|
134
134
|
routes.add([
|
|
135
135
|
{
|
|
@@ -144,9 +144,9 @@ function configureRoutes$P(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$P, deps: [RoutesService], multi: true },
|
|
148
148
|
];
|
|
149
|
-
function configureRoutes$
|
|
149
|
+
function configureRoutes$P(routes) {
|
|
150
150
|
return () => {
|
|
151
151
|
routes.add([
|
|
152
152
|
{
|
|
@@ -161,9 +161,9 @@ function configureRoutes$O(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$O, deps: [RoutesService], multi: true },
|
|
165
165
|
];
|
|
166
|
-
function configureRoutes$
|
|
166
|
+
function configureRoutes$O(routes) {
|
|
167
167
|
return () => {
|
|
168
168
|
routes.add([
|
|
169
169
|
{
|
|
@@ -177,8 +177,8 @@ function configureRoutes$N(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$N, deps: [RoutesService], multi: true }];
|
|
181
|
+
function configureRoutes$N(routes) {
|
|
182
182
|
return () => {
|
|
183
183
|
routes.add([
|
|
184
184
|
{
|
|
@@ -193,9 +193,9 @@ function configureRoutes$M(routes) {
|
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
const INVOICES_INVOICE_ROUTE_PROVIDER = [
|
|
196
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
196
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$M, deps: [RoutesService], multi: true },
|
|
197
197
|
];
|
|
198
|
-
function configureRoutes$
|
|
198
|
+
function configureRoutes$M(routes) {
|
|
199
199
|
return () => {
|
|
200
200
|
routes.add([
|
|
201
201
|
{
|
|
@@ -210,9 +210,9 @@ function configureRoutes$L(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$L, deps: [RoutesService], multi: true },
|
|
214
214
|
];
|
|
215
|
-
function configureRoutes$
|
|
215
|
+
function configureRoutes$L(routes) {
|
|
216
216
|
return () => {
|
|
217
217
|
routes.add([
|
|
218
218
|
{
|
|
@@ -227,9 +227,9 @@ function configureRoutes$K(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$K, deps: [RoutesService], multi: true },
|
|
231
231
|
];
|
|
232
|
-
function configureRoutes$
|
|
232
|
+
function configureRoutes$K(routes) {
|
|
233
233
|
return () => {
|
|
234
234
|
routes.add([
|
|
235
235
|
{
|
|
@@ -244,9 +244,9 @@ function configureRoutes$J(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$J, deps: [RoutesService], multi: true },
|
|
248
248
|
];
|
|
249
|
-
function configureRoutes$
|
|
249
|
+
function configureRoutes$J(routes) {
|
|
250
250
|
return () => {
|
|
251
251
|
routes.add([
|
|
252
252
|
{
|
|
@@ -261,9 +261,9 @@ function configureRoutes$I(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$I, deps: [RoutesService], multi: true },
|
|
265
265
|
];
|
|
266
|
-
function configureRoutes$
|
|
266
|
+
function configureRoutes$I(routes) {
|
|
267
267
|
return () => {
|
|
268
268
|
routes.add([
|
|
269
269
|
{
|
|
@@ -277,8 +277,8 @@ function configureRoutes$H(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$H, deps: [RoutesService], multi: true }];
|
|
281
|
+
function configureRoutes$H(routes) {
|
|
282
282
|
return () => {
|
|
283
283
|
routes.add([
|
|
284
284
|
{
|
|
@@ -292,8 +292,8 @@ function configureRoutes$G(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$G, deps: [RoutesService], multi: true }];
|
|
296
|
+
function configureRoutes$G(routes) {
|
|
297
297
|
return () => {
|
|
298
298
|
routes.add([
|
|
299
299
|
{
|
|
@@ -308,9 +308,9 @@ function configureRoutes$F(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$F, deps: [RoutesService], multi: true },
|
|
312
312
|
];
|
|
313
|
-
function configureRoutes$
|
|
313
|
+
function configureRoutes$F(routes) {
|
|
314
314
|
return () => {
|
|
315
315
|
routes.add([
|
|
316
316
|
{
|
|
@@ -325,9 +325,9 @@ function configureRoutes$E(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$E, deps: [RoutesService], multi: true },
|
|
329
329
|
];
|
|
330
|
-
function configureRoutes$
|
|
330
|
+
function configureRoutes$E(routes) {
|
|
331
331
|
return () => {
|
|
332
332
|
routes.add([
|
|
333
333
|
{
|
|
@@ -342,9 +342,9 @@ function configureRoutes$D(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$D, deps: [RoutesService], multi: true },
|
|
346
346
|
];
|
|
347
|
-
function configureRoutes$
|
|
347
|
+
function configureRoutes$D(routes) {
|
|
348
348
|
return () => {
|
|
349
349
|
routes.add([
|
|
350
350
|
{
|
|
@@ -359,9 +359,9 @@ function configureRoutes$C(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$C, deps: [RoutesService], multi: true },
|
|
363
363
|
];
|
|
364
|
-
function configureRoutes$
|
|
364
|
+
function configureRoutes$C(routes) {
|
|
365
365
|
return () => {
|
|
366
366
|
routes.add([
|
|
367
367
|
{
|
|
@@ -376,9 +376,9 @@ function configureRoutes$B(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$B, deps: [RoutesService], multi: true },
|
|
380
380
|
];
|
|
381
|
-
function configureRoutes$
|
|
381
|
+
function configureRoutes$B(routes) {
|
|
382
382
|
return () => {
|
|
383
383
|
routes.add([
|
|
384
384
|
{
|
|
@@ -393,9 +393,9 @@ function configureRoutes$A(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$A, deps: [RoutesService], multi: true },
|
|
397
397
|
];
|
|
398
|
-
function configureRoutes$
|
|
398
|
+
function configureRoutes$A(routes) {
|
|
399
399
|
return () => {
|
|
400
400
|
routes.add([
|
|
401
401
|
{
|
|
@@ -410,9 +410,9 @@ function configureRoutes$z(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$z, deps: [RoutesService], multi: true },
|
|
414
414
|
];
|
|
415
|
-
function configureRoutes$
|
|
415
|
+
function configureRoutes$z(routes) {
|
|
416
416
|
return () => {
|
|
417
417
|
routes.add([
|
|
418
418
|
{
|
|
@@ -427,9 +427,9 @@ function configureRoutes$y(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$y, deps: [RoutesService], multi: true },
|
|
431
431
|
];
|
|
432
|
-
function configureRoutes$
|
|
432
|
+
function configureRoutes$y(routes) {
|
|
433
433
|
return () => {
|
|
434
434
|
routes.add([
|
|
435
435
|
{
|
|
@@ -444,9 +444,9 @@ function configureRoutes$x(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$x, deps: [RoutesService], multi: true },
|
|
448
448
|
];
|
|
449
|
-
function configureRoutes$
|
|
449
|
+
function configureRoutes$x(routes) {
|
|
450
450
|
return () => {
|
|
451
451
|
routes.add([
|
|
452
452
|
{
|
|
@@ -462,9 +462,9 @@ function configureRoutes$w(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$w, deps: [RoutesService], multi: true },
|
|
466
466
|
];
|
|
467
|
-
function configureRoutes$
|
|
467
|
+
function configureRoutes$w(routes) {
|
|
468
468
|
return () => {
|
|
469
469
|
routes.add([
|
|
470
470
|
{
|
|
@@ -480,9 +480,9 @@ function configureRoutes$v(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$v, deps: [RoutesService], multi: true },
|
|
484
484
|
];
|
|
485
|
-
function configureRoutes$
|
|
485
|
+
function configureRoutes$v(routes) {
|
|
486
486
|
return () => {
|
|
487
487
|
routes.add([
|
|
488
488
|
{
|
|
@@ -497,9 +497,9 @@ function configureRoutes$u(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$u, deps: [RoutesService], multi: true },
|
|
501
501
|
];
|
|
502
|
-
function configureRoutes$
|
|
502
|
+
function configureRoutes$u(routes) {
|
|
503
503
|
return () => {
|
|
504
504
|
routes.add([
|
|
505
505
|
{
|
|
@@ -514,9 +514,9 @@ function configureRoutes$t(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$t, deps: [RoutesService], multi: true },
|
|
518
518
|
];
|
|
519
|
-
function configureRoutes$
|
|
519
|
+
function configureRoutes$t(routes) {
|
|
520
520
|
return () => {
|
|
521
521
|
routes.add([
|
|
522
522
|
{
|
|
@@ -531,9 +531,9 @@ function configureRoutes$s(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$s, deps: [RoutesService], multi: true },
|
|
535
535
|
];
|
|
536
|
-
function configureRoutes$
|
|
536
|
+
function configureRoutes$s(routes) {
|
|
537
537
|
return () => {
|
|
538
538
|
routes.add([
|
|
539
539
|
{
|
|
@@ -550,12 +550,12 @@ function configureRoutes$r(routes) {
|
|
|
550
550
|
const HIT_E_DONUSUM_ROUTE_PROVIDERS = [
|
|
551
551
|
{
|
|
552
552
|
provide: APP_INITIALIZER,
|
|
553
|
-
useFactory: configureRoutes$
|
|
553
|
+
useFactory: configureRoutes$r,
|
|
554
554
|
deps: [RoutesService],
|
|
555
555
|
multi: true,
|
|
556
556
|
},
|
|
557
557
|
];
|
|
558
|
-
function configureRoutes$
|
|
558
|
+
function configureRoutes$r(routes) {
|
|
559
559
|
return () => {
|
|
560
560
|
routes.add([
|
|
561
561
|
{
|
|
@@ -613,9 +613,9 @@ function configureRoutes$q(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$q, deps: [RoutesService], multi: true },
|
|
617
617
|
];
|
|
618
|
-
function configureRoutes$
|
|
618
|
+
function configureRoutes$q(routes) {
|
|
619
619
|
return () => {
|
|
620
620
|
routes.add([
|
|
621
621
|
{
|
|
@@ -631,9 +631,9 @@ function configureRoutes$p(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$p, deps: [RoutesService], multi: true },
|
|
635
635
|
];
|
|
636
|
-
function configureRoutes$
|
|
636
|
+
function configureRoutes$p(routes) {
|
|
637
637
|
return () => {
|
|
638
638
|
routes.add([
|
|
639
639
|
{
|
|
@@ -649,9 +649,9 @@ function configureRoutes$o(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$o, deps: [RoutesService], multi: true },
|
|
653
653
|
];
|
|
654
|
-
function configureRoutes$
|
|
654
|
+
function configureRoutes$o(routes) {
|
|
655
655
|
return () => {
|
|
656
656
|
routes.add([
|
|
657
657
|
{
|
|
@@ -667,9 +667,9 @@ function configureRoutes$n(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$n, deps: [RoutesService], multi: true },
|
|
671
671
|
];
|
|
672
|
-
function configureRoutes$
|
|
672
|
+
function configureRoutes$n(routes) {
|
|
673
673
|
return () => {
|
|
674
674
|
routes.add([
|
|
675
675
|
{
|
|
@@ -685,9 +685,9 @@ function configureRoutes$m(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$m, deps: [RoutesService], multi: true },
|
|
689
689
|
];
|
|
690
|
-
function configureRoutes$
|
|
690
|
+
function configureRoutes$m(routes) {
|
|
691
691
|
return () => {
|
|
692
692
|
routes.add([
|
|
693
693
|
{
|
|
@@ -703,9 +703,9 @@ function configureRoutes$l(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$l, deps: [RoutesService], multi: true },
|
|
707
707
|
];
|
|
708
|
-
function configureRoutes$
|
|
708
|
+
function configureRoutes$l(routes) {
|
|
709
709
|
return () => {
|
|
710
710
|
routes.add([
|
|
711
711
|
{
|
|
@@ -721,9 +721,9 @@ function configureRoutes$k(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$k, deps: [RoutesService], multi: true },
|
|
725
725
|
];
|
|
726
|
-
function configureRoutes$
|
|
726
|
+
function configureRoutes$k(routes) {
|
|
727
727
|
return () => {
|
|
728
728
|
routes.add([
|
|
729
729
|
{
|
|
@@ -739,9 +739,9 @@ function configureRoutes$j(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$j, deps: [RoutesService], multi: true },
|
|
743
743
|
];
|
|
744
|
-
function configureRoutes$
|
|
744
|
+
function configureRoutes$j(routes) {
|
|
745
745
|
return () => {
|
|
746
746
|
routes.add([
|
|
747
747
|
{
|
|
@@ -757,9 +757,9 @@ function configureRoutes$i(routes) {
|
|
|
757
757
|
}
|
|
758
758
|
|
|
759
759
|
const HIT_DESPATCHES_DESPATCH_ROUTE_PROVIDER = [
|
|
760
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
760
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$i, deps: [RoutesService], multi: true },
|
|
761
761
|
];
|
|
762
|
-
function configureRoutes$
|
|
762
|
+
function configureRoutes$i(routes) {
|
|
763
763
|
return () => {
|
|
764
764
|
routes.add([
|
|
765
765
|
{
|
|
@@ -775,9 +775,9 @@ function configureRoutes$h(routes) {
|
|
|
775
775
|
}
|
|
776
776
|
|
|
777
777
|
const HIT_INBOUND_INVOICES_INVOICE_ROUTE_PROVIDER = [
|
|
778
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
778
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$h, deps: [RoutesService], multi: true },
|
|
779
779
|
];
|
|
780
|
-
function configureRoutes$
|
|
780
|
+
function configureRoutes$h(routes) {
|
|
781
781
|
return () => {
|
|
782
782
|
routes.add([
|
|
783
783
|
{
|
|
@@ -793,9 +793,9 @@ function configureRoutes$g(routes) {
|
|
|
793
793
|
}
|
|
794
794
|
|
|
795
795
|
const HIT_INBOUND_DESPATCHES_DESPATCH_ROUTE_PROVIDER = [
|
|
796
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
796
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$g, deps: [RoutesService], multi: true },
|
|
797
797
|
];
|
|
798
|
-
function configureRoutes$
|
|
798
|
+
function configureRoutes$g(routes) {
|
|
799
799
|
return () => {
|
|
800
800
|
routes.add([
|
|
801
801
|
{
|
|
@@ -811,9 +811,9 @@ function configureRoutes$f(routes) {
|
|
|
811
811
|
}
|
|
812
812
|
|
|
813
813
|
const HIT_FAILED_INVOICES_INVOICE_ROUTE_PROVIDER = [
|
|
814
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
814
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$f, deps: [RoutesService], multi: true },
|
|
815
815
|
];
|
|
816
|
-
function configureRoutes$
|
|
816
|
+
function configureRoutes$f(routes) {
|
|
817
817
|
return () => {
|
|
818
818
|
routes.add([
|
|
819
819
|
{
|
|
@@ -829,9 +829,9 @@ function configureRoutes$e(routes) {
|
|
|
829
829
|
}
|
|
830
830
|
|
|
831
831
|
const HIT_FAILED_CONNECTOR_INVOICES_INVOICE_ROUTE_PROVIDER = [
|
|
832
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
832
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$e, deps: [RoutesService], multi: true },
|
|
833
833
|
];
|
|
834
|
-
function configureRoutes$
|
|
834
|
+
function configureRoutes$e(routes) {
|
|
835
835
|
return () => {
|
|
836
836
|
routes.add([
|
|
837
837
|
{
|
|
@@ -847,9 +847,9 @@ function configureRoutes$d(routes) {
|
|
|
847
847
|
}
|
|
848
848
|
|
|
849
849
|
const HIT_FAILED_DESPATCHES_DESPATCH_ROUTE_PROVIDER = [
|
|
850
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
850
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$d, deps: [RoutesService], multi: true },
|
|
851
851
|
];
|
|
852
|
-
function configureRoutes$
|
|
852
|
+
function configureRoutes$d(routes) {
|
|
853
853
|
return () => {
|
|
854
854
|
routes.add([
|
|
855
855
|
{
|
|
@@ -865,9 +865,9 @@ function configureRoutes$c(routes) {
|
|
|
865
865
|
}
|
|
866
866
|
|
|
867
867
|
const HIT_FAILED_CONNECTOR_DESPATCHES_DESPATCH_ROUTE_PROVIDER = [
|
|
868
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
868
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$c, deps: [RoutesService], multi: true },
|
|
869
869
|
];
|
|
870
|
-
function configureRoutes$
|
|
870
|
+
function configureRoutes$c(routes) {
|
|
871
871
|
return () => {
|
|
872
872
|
routes.add([
|
|
873
873
|
{
|
|
@@ -883,9 +883,9 @@ function configureRoutes$b(routes) {
|
|
|
883
883
|
}
|
|
884
884
|
|
|
885
885
|
const DOCUMENT_SERIALS_DOCUMENT_SERIAL_ROUTE_PROVIDER = [
|
|
886
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
886
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$b, deps: [RoutesService], multi: true },
|
|
887
887
|
];
|
|
888
|
-
function configureRoutes$
|
|
888
|
+
function configureRoutes$b(routes) {
|
|
889
889
|
return () => {
|
|
890
890
|
routes.add([
|
|
891
891
|
{
|
|
@@ -900,9 +900,9 @@ function configureRoutes$a(routes) {
|
|
|
900
900
|
}
|
|
901
901
|
|
|
902
902
|
const HIT_DOCUMENT_SERIALS_DOCUMENT_SERIAL_ROUTE_PROVIDER = [
|
|
903
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
903
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$a, deps: [RoutesService], multi: true },
|
|
904
904
|
];
|
|
905
|
-
function configureRoutes$
|
|
905
|
+
function configureRoutes$a(routes) {
|
|
906
906
|
return () => {
|
|
907
907
|
routes.add([
|
|
908
908
|
{
|
|
@@ -918,9 +918,9 @@ function configureRoutes$9(routes) {
|
|
|
918
918
|
}
|
|
919
919
|
|
|
920
920
|
const PRODUCER_RECEIPTS_PRODUCER_RECEIPT_ROUTE_PROVIDER = [
|
|
921
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
921
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$9, deps: [RoutesService], multi: true },
|
|
922
922
|
];
|
|
923
|
-
function configureRoutes$
|
|
923
|
+
function configureRoutes$9(routes) {
|
|
924
924
|
return () => {
|
|
925
925
|
routes.add([
|
|
926
926
|
{
|
|
@@ -935,9 +935,9 @@ function configureRoutes$8(routes) {
|
|
|
935
935
|
}
|
|
936
936
|
|
|
937
937
|
const PRODUCER_RECEIPT_LINES_PRODUCER_RECEIPT_LINE_ROUTE_PROVIDER = [
|
|
938
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
938
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$8, deps: [RoutesService], multi: true },
|
|
939
939
|
];
|
|
940
|
-
function configureRoutes$
|
|
940
|
+
function configureRoutes$8(routes) {
|
|
941
941
|
return () => {
|
|
942
942
|
routes.add([
|
|
943
943
|
{
|
|
@@ -952,9 +952,9 @@ function configureRoutes$7(routes) {
|
|
|
952
952
|
}
|
|
953
953
|
|
|
954
954
|
const PRODUCER_RECEIPT_NOTES_PRODUCER_RECEIPT_NOTE_ROUTE_PROVIDER = [
|
|
955
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
955
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$7, deps: [RoutesService], multi: true },
|
|
956
956
|
];
|
|
957
|
-
function configureRoutes$
|
|
957
|
+
function configureRoutes$7(routes) {
|
|
958
958
|
return () => {
|
|
959
959
|
routes.add([
|
|
960
960
|
{
|
|
@@ -969,9 +969,9 @@ function configureRoutes$6(routes) {
|
|
|
969
969
|
}
|
|
970
970
|
|
|
971
971
|
const HIT_PRODUCER_RECEIPTS_PRODUCER_RECEIPT_ROUTE_PROVIDER = [
|
|
972
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
972
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$6, deps: [RoutesService], multi: true },
|
|
973
973
|
];
|
|
974
|
-
function configureRoutes$
|
|
974
|
+
function configureRoutes$6(routes) {
|
|
975
975
|
return () => {
|
|
976
976
|
routes.add([
|
|
977
977
|
{
|
|
@@ -987,9 +987,9 @@ function configureRoutes$5(routes) {
|
|
|
987
987
|
}
|
|
988
988
|
|
|
989
989
|
const HIT_FAILED_PRODUCER_RECEIPTS_PRODUCER_RECEIPT_ROUTE_PROVIDER = [
|
|
990
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
990
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$5, deps: [RoutesService], multi: true },
|
|
991
991
|
];
|
|
992
|
-
function configureRoutes$
|
|
992
|
+
function configureRoutes$5(routes) {
|
|
993
993
|
return () => {
|
|
994
994
|
routes.add([
|
|
995
995
|
{
|
|
@@ -1005,9 +1005,9 @@ function configureRoutes$4(routes) {
|
|
|
1005
1005
|
}
|
|
1006
1006
|
|
|
1007
1007
|
const HIT_FAILED_CONNECTOR_PRODUCER_RECEIPTS_PRODUCER_RECEIPT_ROUTE_PROVIDER = [
|
|
1008
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
1008
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$4, deps: [RoutesService], multi: true },
|
|
1009
1009
|
];
|
|
1010
|
-
function configureRoutes$
|
|
1010
|
+
function configureRoutes$4(routes) {
|
|
1011
1011
|
return () => {
|
|
1012
1012
|
routes.add([
|
|
1013
1013
|
{
|
|
@@ -1023,9 +1023,9 @@ function configureRoutes$3(routes) {
|
|
|
1023
1023
|
}
|
|
1024
1024
|
|
|
1025
1025
|
const AUTO_SEND_RULES_AUTO_SEND_RULE_ROUTE_PROVIDER = [
|
|
1026
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
1026
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$3, deps: [RoutesService], multi: true },
|
|
1027
1027
|
];
|
|
1028
|
-
function configureRoutes$
|
|
1028
|
+
function configureRoutes$3(routes) {
|
|
1029
1029
|
return () => {
|
|
1030
1030
|
routes.add([
|
|
1031
1031
|
{
|
|
@@ -1033,16 +1033,16 @@ function configureRoutes$2(routes) {
|
|
|
1033
1033
|
parentName: "eDonusum::Menu:eDonusum" /* eeDonusumRouteNames.eDonusum */,
|
|
1034
1034
|
name: 'eDonusum::Menu:AutoSendRules',
|
|
1035
1035
|
layout: "application" /* eLayoutType.application */,
|
|
1036
|
-
requiredPolicy: 'eDonusum.AutoSendRules',
|
|
1036
|
+
requiredPolicy: 'eDonusum.AutoSendRules!',
|
|
1037
1037
|
},
|
|
1038
1038
|
]);
|
|
1039
1039
|
};
|
|
1040
1040
|
}
|
|
1041
1041
|
|
|
1042
1042
|
const AUTO_SEND_RULE_DOC_TYPES_AUTO_SEND_RULE_DOC_TYPE_ROUTE_PROVIDER = [
|
|
1043
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
1043
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$2, deps: [RoutesService], multi: true },
|
|
1044
1044
|
];
|
|
1045
|
-
function configureRoutes$
|
|
1045
|
+
function configureRoutes$2(routes) {
|
|
1046
1046
|
return () => {
|
|
1047
1047
|
routes.add([
|
|
1048
1048
|
{
|
|
@@ -1050,16 +1050,16 @@ function configureRoutes$1(routes) {
|
|
|
1050
1050
|
parentName: "eDonusum::Menu:eDonusum" /* eeDonusumRouteNames.eDonusum */,
|
|
1051
1051
|
name: 'eDonusum::Menu:AutoSendRuleDocTypes',
|
|
1052
1052
|
layout: "application" /* eLayoutType.application */,
|
|
1053
|
-
requiredPolicy: 'eDonusum.AutoSendRuleDocTypes',
|
|
1053
|
+
requiredPolicy: 'eDonusum.AutoSendRuleDocTypes!',
|
|
1054
1054
|
},
|
|
1055
1055
|
]);
|
|
1056
1056
|
};
|
|
1057
1057
|
}
|
|
1058
1058
|
|
|
1059
1059
|
const AUTO_SEND_RULE_SCENARIOS_AUTO_SEND_RULE_SCENARIO_ROUTE_PROVIDER = [
|
|
1060
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true },
|
|
1060
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$1, deps: [RoutesService], multi: true },
|
|
1061
1061
|
];
|
|
1062
|
-
function configureRoutes(routes) {
|
|
1062
|
+
function configureRoutes$1(routes) {
|
|
1063
1063
|
return () => {
|
|
1064
1064
|
routes.add([
|
|
1065
1065
|
{
|
|
@@ -1067,7 +1067,25 @@ function configureRoutes(routes) {
|
|
|
1067
1067
|
parentName: "eDonusum::Menu:eDonusum" /* eeDonusumRouteNames.eDonusum */,
|
|
1068
1068
|
name: 'eDonusum::Menu:AutoSendRuleScenarios',
|
|
1069
1069
|
layout: "application" /* eLayoutType.application */,
|
|
1070
|
-
requiredPolicy: 'eDonusum.AutoSendRuleScenarios',
|
|
1070
|
+
requiredPolicy: 'eDonusum.AutoSendRuleScenarios!',
|
|
1071
|
+
},
|
|
1072
|
+
]);
|
|
1073
|
+
};
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
const HIT_AUTO_SEND_RULES_AUTO_SEND_RULE_ROUTE_PROVIDER = [
|
|
1077
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true },
|
|
1078
|
+
];
|
|
1079
|
+
function configureRoutes(routes) {
|
|
1080
|
+
return () => {
|
|
1081
|
+
routes.add([
|
|
1082
|
+
{
|
|
1083
|
+
path: '/e-donusum/auto-send-rules',
|
|
1084
|
+
parentName: "eDonusum::Menu:eDonusumDefinitions" /* eDonusumRouteNames.eDonusumDefinitions */,
|
|
1085
|
+
name: 'eDonusum::Menu:AutoSendRules',
|
|
1086
|
+
layout: "application" /* eLayoutType.application */,
|
|
1087
|
+
requiredPolicy: 'eDonusum.AutoSendRules',
|
|
1088
|
+
order: 5
|
|
1071
1089
|
},
|
|
1072
1090
|
]);
|
|
1073
1091
|
};
|
|
@@ -1137,6 +1155,7 @@ class eDonusumConfigModule {
|
|
|
1137
1155
|
AUTO_SEND_RULES_AUTO_SEND_RULE_ROUTE_PROVIDER,
|
|
1138
1156
|
AUTO_SEND_RULE_DOC_TYPES_AUTO_SEND_RULE_DOC_TYPE_ROUTE_PROVIDER,
|
|
1139
1157
|
AUTO_SEND_RULE_SCENARIOS_AUTO_SEND_RULE_SCENARIO_ROUTE_PROVIDER,
|
|
1158
|
+
HIT_AUTO_SEND_RULES_AUTO_SEND_RULE_ROUTE_PROVIDER
|
|
1140
1159
|
],
|
|
1141
1160
|
};
|
|
1142
1161
|
}
|
|
@@ -1152,5 +1171,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
1152
1171
|
* Generated bundle index. Do not edit.
|
|
1153
1172
|
*/
|
|
1154
1173
|
|
|
1155
|
-
export { E_DONUSUM_ROUTE_PROVIDERS, configureRoutes$
|
|
1174
|
+
export { E_DONUSUM_ROUTE_PROVIDERS, configureRoutes$X as configureRoutes, eDonusumConfigModule };
|
|
1156
1175
|
//# sourceMappingURL=hitsoft-e-donusum-config.mjs.map
|