@hitsoft/e-donusum 1.0.61 → 1.0.63

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 (66) hide show
  1. package/config/providers/auto-send-rule-doc-type-route.provider.d.ts +9 -0
  2. package/config/providers/auto-send-rule-route.provider.d.ts +9 -0
  3. package/config/providers/auto-send-rule-scenario-route.provider.d.ts +9 -0
  4. package/esm2020/config/e-donusum-config.module.mjs +8 -2
  5. package/esm2020/config/providers/auto-send-rule-doc-type-route.provider.mjs +19 -0
  6. package/esm2020/config/providers/auto-send-rule-route.provider.mjs +19 -0
  7. package/esm2020/config/providers/auto-send-rule-scenario-route.provider.mjs +19 -0
  8. package/esm2020/config/providers/hit-providers/route.provider.mjs +2 -1
  9. package/esm2020/config/providers/hit-providers/wizard-route.provider.mjs +3 -2
  10. package/esm2020/config/providers/paramse-dispatch-route.provider.mjs +1 -1
  11. package/esm2020/config/providers/paramse-invoice-route.provider.mjs +1 -1
  12. package/esm2020/lib/auto-send-rule-doc-types/auto-send-rule-doc-type/auto-send-rule-doc-type-routing.module.mjs +26 -0
  13. package/esm2020/lib/auto-send-rule-doc-types/auto-send-rule-doc-type/auto-send-rule-doc-type.module.mjs +52 -0
  14. package/esm2020/lib/auto-send-rule-doc-types/auto-send-rule-doc-type/components/auto-send-rule-doc-type.component.mjs +98 -0
  15. package/esm2020/lib/auto-send-rule-scenarios/auto-send-rule-scenario/auto-send-rule-scenario-routing.module.mjs +26 -0
  16. package/esm2020/lib/auto-send-rule-scenarios/auto-send-rule-scenario/auto-send-rule-scenario.module.mjs +52 -0
  17. package/esm2020/lib/auto-send-rule-scenarios/auto-send-rule-scenario/components/auto-send-rule-scenario.component.mjs +97 -0
  18. package/esm2020/lib/auto-send-rules/auto-send-rule/auto-send-rule-routing.module.mjs +26 -0
  19. package/esm2020/lib/auto-send-rules/auto-send-rule/auto-send-rule.module.mjs +52 -0
  20. package/esm2020/lib/auto-send-rules/auto-send-rule/components/auto-send-rule.component.mjs +106 -0
  21. package/esm2020/lib/components/hit-document-serial/hit-document-serial.component.mjs +5 -4
  22. package/esm2020/lib/components/hit-paramas-invoices/hit-params-invoice.component.mjs +6 -4
  23. package/esm2020/lib/components/hit-params-dispatches/hit-params-dispatch.component.mjs +6 -4
  24. package/esm2020/lib/document-serials/document-serial/components/document-serial.component.mjs +5 -4
  25. package/esm2020/lib/e-donusum-routing.module.mjs +11 -2
  26. package/esm2020/lib/paramse-dispatches/paramse-dispatch/components/paramse-dispatch.component.mjs +6 -4
  27. package/esm2020/lib/paramse-invoices/paramse-invoice/components/paramse-invoice.component.mjs +6 -4
  28. package/esm2020/lib/proxy/auto-send-rule-doc-types/auto-send-rule-doc-type.service.mjs +50 -0
  29. package/esm2020/lib/proxy/auto-send-rule-doc-types/models.mjs +2 -0
  30. package/esm2020/lib/proxy/auto-send-rule-scenarios/auto-send-rule-scenario.service.mjs +50 -0
  31. package/esm2020/lib/proxy/auto-send-rule-scenarios/models.mjs +2 -0
  32. package/esm2020/lib/proxy/auto-send-rules/auto-send-rule.service.mjs +50 -0
  33. package/esm2020/lib/proxy/auto-send-rules/models.mjs +2 -0
  34. package/esm2020/lib/proxy/document-serials/document-serial.service.mjs +2 -2
  35. package/esm2020/lib/proxy/document-serials/models.mjs +1 -1
  36. package/esm2020/lib/proxy/paramse-dispatches/models.mjs +1 -1
  37. package/esm2020/lib/proxy/paramse-dispatches/paramse-dispatch.service.mjs +2 -2
  38. package/esm2020/lib/proxy/paramse-invoices/models.mjs +1 -1
  39. package/esm2020/lib/proxy/paramse-invoices/paramse-invoice.service.mjs +2 -2
  40. package/fesm2015/hitsoft-e-donusum-config.mjs +171 -115
  41. package/fesm2015/hitsoft-e-donusum-config.mjs.map +1 -1
  42. package/fesm2015/hitsoft-e-donusum.mjs +739 -164
  43. package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
  44. package/fesm2020/hitsoft-e-donusum-config.mjs +171 -115
  45. package/fesm2020/hitsoft-e-donusum-config.mjs.map +1 -1
  46. package/fesm2020/hitsoft-e-donusum.mjs +757 -164
  47. package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
  48. package/lib/auto-send-rule-doc-types/auto-send-rule-doc-type/auto-send-rule-doc-type-routing.module.d.ts +7 -0
  49. package/lib/auto-send-rule-doc-types/auto-send-rule-doc-type/auto-send-rule-doc-type.module.d.ts +15 -0
  50. package/lib/auto-send-rule-doc-types/auto-send-rule-doc-type/components/auto-send-rule-doc-type.component.d.ts +33 -0
  51. package/lib/auto-send-rule-scenarios/auto-send-rule-scenario/auto-send-rule-scenario-routing.module.d.ts +7 -0
  52. package/lib/auto-send-rule-scenarios/auto-send-rule-scenario/auto-send-rule-scenario.module.d.ts +15 -0
  53. package/lib/auto-send-rule-scenarios/auto-send-rule-scenario/components/auto-send-rule-scenario.component.d.ts +33 -0
  54. package/lib/auto-send-rules/auto-send-rule/auto-send-rule-routing.module.d.ts +7 -0
  55. package/lib/auto-send-rules/auto-send-rule/auto-send-rule.module.d.ts +15 -0
  56. package/lib/auto-send-rules/auto-send-rule/components/auto-send-rule.component.d.ts +33 -0
  57. package/lib/proxy/auto-send-rule-doc-types/auto-send-rule-doc-type.service.d.ts +19 -0
  58. package/lib/proxy/auto-send-rule-doc-types/models.d.ts +26 -0
  59. package/lib/proxy/auto-send-rule-scenarios/auto-send-rule-scenario.service.d.ts +19 -0
  60. package/lib/proxy/auto-send-rule-scenarios/models.d.ts +26 -0
  61. package/lib/proxy/auto-send-rules/auto-send-rule.service.d.ts +19 -0
  62. package/lib/proxy/auto-send-rules/models.d.ts +56 -0
  63. package/lib/proxy/document-serials/models.d.ts +4 -0
  64. package/lib/proxy/paramse-dispatches/models.d.ts +8 -0
  65. package/lib/proxy/paramse-invoices/models.d.ts +8 -0
  66. 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$T,
8
+ useFactory: configureRoutes$W,
9
9
  deps: [RoutesService],
10
10
  multi: true,
11
11
  },
12
12
  ];
13
- function configureRoutes$T(routes) {
13
+ function configureRoutes$W(routes) {
14
14
  return () => {
15
15
  routes.add([
16
16
  {
@@ -25,9 +25,9 @@ function configureRoutes$T(routes) {
25
25
  }
26
26
 
27
27
  const BUSINESS_PARTNER_GROUPS_BUSINESS_PARTNER_GROUP_ROUTE_PROVIDER = [
28
- { provide: APP_INITIALIZER, useFactory: configureRoutes$S, deps: [RoutesService], multi: true },
28
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$V, deps: [RoutesService], multi: true },
29
29
  ];
30
- function configureRoutes$S(routes) {
30
+ function configureRoutes$V(routes) {
31
31
  return () => {
32
32
  routes.add([
33
33
  {
@@ -42,9 +42,9 @@ function configureRoutes$S(routes) {
42
42
  }
43
43
 
44
44
  const BUSINESS_PARTNERS_BUSINESS_PARTNER_ROUTE_PROVIDER = [
45
- { provide: APP_INITIALIZER, useFactory: configureRoutes$R, deps: [RoutesService], multi: true },
45
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$U, deps: [RoutesService], multi: true },
46
46
  ];
47
- function configureRoutes$R(routes) {
47
+ function configureRoutes$U(routes) {
48
48
  return () => {
49
49
  routes.add([
50
50
  {
@@ -59,9 +59,9 @@ function configureRoutes$R(routes) {
59
59
  }
60
60
 
61
61
  const BRANCHES_BRANCH_ROUTE_PROVIDER = [
62
- { provide: APP_INITIALIZER, useFactory: configureRoutes$Q, deps: [RoutesService], multi: true },
62
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$T, deps: [RoutesService], multi: true },
63
63
  ];
64
- function configureRoutes$Q(routes) {
64
+ function configureRoutes$T(routes) {
65
65
  return () => {
66
66
  routes.add([
67
67
  {
@@ -76,9 +76,9 @@ function configureRoutes$Q(routes) {
76
76
  }
77
77
 
78
78
  const GIB_PARTNER_PK_ALLS_GIB_PARTNER_PK_ALL_ROUTE_PROVIDER = [
79
- { provide: APP_INITIALIZER, useFactory: configureRoutes$P, deps: [RoutesService], multi: true },
79
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$S, deps: [RoutesService], multi: true },
80
80
  ];
81
- function configureRoutes$P(routes) {
81
+ function configureRoutes$S(routes) {
82
82
  return () => {
83
83
  routes.add([
84
84
  {
@@ -93,9 +93,9 @@ function configureRoutes$P(routes) {
93
93
  }
94
94
 
95
95
  const GIB_PARTNER_PKS_GIB_PARTNER_PK_ROUTE_PROVIDER = [
96
- { provide: APP_INITIALIZER, useFactory: configureRoutes$O, deps: [RoutesService], multi: true },
96
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$R, deps: [RoutesService], multi: true },
97
97
  ];
98
- function configureRoutes$O(routes) {
98
+ function configureRoutes$R(routes) {
99
99
  return () => {
100
100
  routes.add([
101
101
  {
@@ -110,9 +110,9 @@ function configureRoutes$O(routes) {
110
110
  }
111
111
 
112
112
  const DESPATCHES_DESPATCH_ROUTE_PROVIDER = [
113
- { provide: APP_INITIALIZER, useFactory: configureRoutes$N, deps: [RoutesService], multi: true },
113
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$Q, deps: [RoutesService], multi: true },
114
114
  ];
115
- function configureRoutes$N(routes) {
115
+ function configureRoutes$Q(routes) {
116
116
  return () => {
117
117
  routes.add([
118
118
  {
@@ -127,9 +127,9 @@ function configureRoutes$N(routes) {
127
127
  }
128
128
 
129
129
  const DESPATCH_LINES_DESPATCH_LINE_ROUTE_PROVIDER = [
130
- { provide: APP_INITIALIZER, useFactory: configureRoutes$M, deps: [RoutesService], multi: true },
130
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$P, deps: [RoutesService], multi: true },
131
131
  ];
132
- function configureRoutes$M(routes) {
132
+ function configureRoutes$P(routes) {
133
133
  return () => {
134
134
  routes.add([
135
135
  {
@@ -144,9 +144,9 @@ function configureRoutes$M(routes) {
144
144
  }
145
145
 
146
146
  const DESPATCH_NOTES_DESPATCH_NOTE_ROUTE_PROVIDER = [
147
- { provide: APP_INITIALIZER, useFactory: configureRoutes$L, deps: [RoutesService], multi: true },
147
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$O, deps: [RoutesService], multi: true },
148
148
  ];
149
- function configureRoutes$L(routes) {
149
+ function configureRoutes$O(routes) {
150
150
  return () => {
151
151
  routes.add([
152
152
  {
@@ -161,9 +161,9 @@ function configureRoutes$L(routes) {
161
161
  }
162
162
 
163
163
  const DESPATCH_DOCUMENT_REFERENCES_DESPATCH_DOCUMENT_REFERENCE_ROUTE_PROVIDER = [
164
- { provide: APP_INITIALIZER, useFactory: configureRoutes$K, deps: [RoutesService], multi: true },
164
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$N, deps: [RoutesService], multi: true },
165
165
  ];
166
- function configureRoutes$K(routes) {
166
+ function configureRoutes$N(routes) {
167
167
  return () => {
168
168
  routes.add([
169
169
  {
@@ -177,8 +177,8 @@ function configureRoutes$K(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$J, deps: [RoutesService], multi: true }];
181
- function configureRoutes$J(routes) {
180
+ const DESPATCH_LINE_ORDER_LINE_REFERENCES_DESPATCH_LINE_ORDER_LINE_REFERENCE_ROUTE_PROVIDER = [{ provide: APP_INITIALIZER, useFactory: configureRoutes$M, deps: [RoutesService], multi: true }];
181
+ function configureRoutes$M(routes) {
182
182
  return () => {
183
183
  routes.add([
184
184
  {
@@ -193,9 +193,9 @@ function configureRoutes$J(routes) {
193
193
  }
194
194
 
195
195
  const INVOICES_INVOICE_ROUTE_PROVIDER = [
196
- { provide: APP_INITIALIZER, useFactory: configureRoutes$I, deps: [RoutesService], multi: true },
196
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$L, deps: [RoutesService], multi: true },
197
197
  ];
198
- function configureRoutes$I(routes) {
198
+ function configureRoutes$L(routes) {
199
199
  return () => {
200
200
  routes.add([
201
201
  {
@@ -210,9 +210,9 @@ function configureRoutes$I(routes) {
210
210
  }
211
211
 
212
212
  const INVOICE_LINES_INVOICE_LINE_ROUTE_PROVIDER = [
213
- { provide: APP_INITIALIZER, useFactory: configureRoutes$H, deps: [RoutesService], multi: true },
213
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$K, deps: [RoutesService], multi: true },
214
214
  ];
215
- function configureRoutes$H(routes) {
215
+ function configureRoutes$K(routes) {
216
216
  return () => {
217
217
  routes.add([
218
218
  {
@@ -227,9 +227,9 @@ function configureRoutes$H(routes) {
227
227
  }
228
228
 
229
229
  const INVOICE_NOTES_INVOICE_NOTE_ROUTE_PROVIDER = [
230
- { provide: APP_INITIALIZER, useFactory: configureRoutes$G, deps: [RoutesService], multi: true },
230
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$J, deps: [RoutesService], multi: true },
231
231
  ];
232
- function configureRoutes$G(routes) {
232
+ function configureRoutes$J(routes) {
233
233
  return () => {
234
234
  routes.add([
235
235
  {
@@ -244,9 +244,9 @@ function configureRoutes$G(routes) {
244
244
  }
245
245
 
246
246
  const INVOICE_DOCUMENT_REFERENCES_INVOICE_DOCUMENT_REFERENCE_ROUTE_PROVIDER = [
247
- { provide: APP_INITIALIZER, useFactory: configureRoutes$F, deps: [RoutesService], multi: true },
247
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$I, deps: [RoutesService], multi: true },
248
248
  ];
249
- function configureRoutes$F(routes) {
249
+ function configureRoutes$I(routes) {
250
250
  return () => {
251
251
  routes.add([
252
252
  {
@@ -261,9 +261,9 @@ function configureRoutes$F(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$E, deps: [RoutesService], multi: true },
264
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$H, deps: [RoutesService], multi: true },
265
265
  ];
266
- function configureRoutes$E(routes) {
266
+ function configureRoutes$H(routes) {
267
267
  return () => {
268
268
  routes.add([
269
269
  {
@@ -277,8 +277,8 @@ function configureRoutes$E(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$D, deps: [RoutesService], multi: true }];
281
- function configureRoutes$D(routes) {
280
+ const INVOICE_LINE_DESPATCH_LINE_REFERENCES_INVOICE_LINE_DESPATCH_LINE_REFERENCE_ROUTE_PROVIDER = [{ provide: APP_INITIALIZER, useFactory: configureRoutes$G, deps: [RoutesService], multi: true }];
281
+ function configureRoutes$G(routes) {
282
282
  return () => {
283
283
  routes.add([
284
284
  {
@@ -292,8 +292,8 @@ function configureRoutes$D(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$C, deps: [RoutesService], multi: true }];
296
- function configureRoutes$C(routes) {
295
+ const INVOICE_LINE_RECEIPT_LINE_REFERENCES_INVOICE_LINE_RECEIPT_LINE_REFERENCE_ROUTE_PROVIDER = [{ provide: APP_INITIALIZER, useFactory: configureRoutes$F, deps: [RoutesService], multi: true }];
296
+ function configureRoutes$F(routes) {
297
297
  return () => {
298
298
  routes.add([
299
299
  {
@@ -308,9 +308,9 @@ function configureRoutes$C(routes) {
308
308
  }
309
309
 
310
310
  const NOTE_RULES_NOTE_RULE_ROUTE_PROVIDER = [
311
- { provide: APP_INITIALIZER, useFactory: configureRoutes$B, deps: [RoutesService], multi: true },
311
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$E, deps: [RoutesService], multi: true },
312
312
  ];
313
- function configureRoutes$B(routes) {
313
+ function configureRoutes$E(routes) {
314
314
  return () => {
315
315
  routes.add([
316
316
  {
@@ -325,9 +325,9 @@ function configureRoutes$B(routes) {
325
325
  }
326
326
 
327
327
  const NOTE_RULE_SCENARIOS_NOTE_RULE_SCENARIO_ROUTE_PROVIDER = [
328
- { provide: APP_INITIALIZER, useFactory: configureRoutes$A, deps: [RoutesService], multi: true },
328
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$D, deps: [RoutesService], multi: true },
329
329
  ];
330
- function configureRoutes$A(routes) {
330
+ function configureRoutes$D(routes) {
331
331
  return () => {
332
332
  routes.add([
333
333
  {
@@ -342,9 +342,9 @@ function configureRoutes$A(routes) {
342
342
  }
343
343
 
344
344
  const NOTE_RULE_DOC_TYPES_NOTE_RULE_DOC_TYPE_ROUTE_PROVIDER = [
345
- { provide: APP_INITIALIZER, useFactory: configureRoutes$z, deps: [RoutesService], multi: true },
345
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$C, deps: [RoutesService], multi: true },
346
346
  ];
347
- function configureRoutes$z(routes) {
347
+ function configureRoutes$C(routes) {
348
348
  return () => {
349
349
  routes.add([
350
350
  {
@@ -359,9 +359,9 @@ function configureRoutes$z(routes) {
359
359
  }
360
360
 
361
361
  const PARAMS_COMPANIES_PARAMS_COMPANY_ROUTE_PROVIDER = [
362
- { provide: APP_INITIALIZER, useFactory: configureRoutes$y, deps: [RoutesService], multi: true },
362
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$B, deps: [RoutesService], multi: true },
363
363
  ];
364
- function configureRoutes$y(routes) {
364
+ function configureRoutes$B(routes) {
365
365
  return () => {
366
366
  routes.add([
367
367
  {
@@ -376,9 +376,9 @@ function configureRoutes$y(routes) {
376
376
  }
377
377
 
378
378
  const PARAMS_INTEGRATORS_PARAMS_INTEGRATOR_ROUTE_PROVIDER = [
379
- { provide: APP_INITIALIZER, useFactory: configureRoutes$x, deps: [RoutesService], multi: true },
379
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$A, deps: [RoutesService], multi: true },
380
380
  ];
381
- function configureRoutes$x(routes) {
381
+ function configureRoutes$A(routes) {
382
382
  return () => {
383
383
  routes.add([
384
384
  {
@@ -393,9 +393,9 @@ function configureRoutes$x(routes) {
393
393
  }
394
394
 
395
395
  const PARAMSE_INVOICES_PARAMSE_INVOICE_ROUTE_PROVIDER = [
396
- { provide: APP_INITIALIZER, useFactory: configureRoutes$w, deps: [RoutesService], multi: true },
396
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$z, deps: [RoutesService], multi: true },
397
397
  ];
398
- function configureRoutes$w(routes) {
398
+ function configureRoutes$z(routes) {
399
399
  return () => {
400
400
  routes.add([
401
401
  {
@@ -410,9 +410,9 @@ function configureRoutes$w(routes) {
410
410
  }
411
411
 
412
412
  const PARAMSE_DISPATCHES_PARAMSE_DISPATCH_ROUTE_PROVIDER = [
413
- { provide: APP_INITIALIZER, useFactory: configureRoutes$v, deps: [RoutesService], multi: true },
413
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$y, deps: [RoutesService], multi: true },
414
414
  ];
415
- function configureRoutes$v(routes) {
415
+ function configureRoutes$y(routes) {
416
416
  return () => {
417
417
  routes.add([
418
418
  {
@@ -427,9 +427,9 @@ function configureRoutes$v(routes) {
427
427
  }
428
428
 
429
429
  const PARAMS_GENERALS_PARAMS_GENERAL_ROUTE_PROVIDER = [
430
- { provide: APP_INITIALIZER, useFactory: configureRoutes$u, deps: [RoutesService], multi: true },
430
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$x, deps: [RoutesService], multi: true },
431
431
  ];
432
- function configureRoutes$u(routes) {
432
+ function configureRoutes$x(routes) {
433
433
  return () => {
434
434
  routes.add([
435
435
  {
@@ -444,9 +444,9 @@ function configureRoutes$u(routes) {
444
444
  }
445
445
 
446
446
  const HIT_NOTE_RULES_NOTE_RULE_ROUTE_PROVIDER = [
447
- { provide: APP_INITIALIZER, useFactory: configureRoutes$t, deps: [RoutesService], multi: true },
447
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$w, deps: [RoutesService], multi: true },
448
448
  ];
449
- function configureRoutes$t(routes) {
449
+ function configureRoutes$w(routes) {
450
450
  return () => {
451
451
  routes.add([
452
452
  {
@@ -462,9 +462,9 @@ function configureRoutes$t(routes) {
462
462
  }
463
463
 
464
464
  const HIT_SETUP_WIZARD_ROUTE_PROVIDER = [
465
- { provide: APP_INITIALIZER, useFactory: configureRoutes$s, deps: [RoutesService], multi: true },
465
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$v, deps: [RoutesService], multi: true },
466
466
  ];
467
- function configureRoutes$s(routes) {
467
+ function configureRoutes$v(routes) {
468
468
  return () => {
469
469
  routes.add([
470
470
  {
@@ -472,16 +472,17 @@ function configureRoutes$s(routes) {
472
472
  parentName: "eDonusum::Menu:eDonusumSetup" /* eDonusumRouteNames.eDonusumSetup */,
473
473
  name: 'eDonusum::Menu:SetupWizard',
474
474
  layout: "application" /* eLayoutType.application */,
475
- order: 1
475
+ order: 1,
476
+ requiredPolicy: "eDonusum.ParamsGenerals"
476
477
  },
477
478
  ]);
478
479
  };
479
480
  }
480
481
 
481
482
  const XSLT_FORMATS_XSLT_FORMAT_ROUTE_PROVIDER = [
482
- { provide: APP_INITIALIZER, useFactory: configureRoutes$r, deps: [RoutesService], multi: true },
483
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$u, deps: [RoutesService], multi: true },
483
484
  ];
484
- function configureRoutes$r(routes) {
485
+ function configureRoutes$u(routes) {
485
486
  return () => {
486
487
  routes.add([
487
488
  {
@@ -496,9 +497,9 @@ function configureRoutes$r(routes) {
496
497
  }
497
498
 
498
499
  const XSLT_RULES_XSLT_RULE_ROUTE_PROVIDER = [
499
- { provide: APP_INITIALIZER, useFactory: configureRoutes$q, deps: [RoutesService], multi: true },
500
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$t, deps: [RoutesService], multi: true },
500
501
  ];
501
- function configureRoutes$q(routes) {
502
+ function configureRoutes$t(routes) {
502
503
  return () => {
503
504
  routes.add([
504
505
  {
@@ -513,9 +514,9 @@ function configureRoutes$q(routes) {
513
514
  }
514
515
 
515
516
  const XSLT_RULE_DOC_TYPES_XSLT_RULE_DOC_TYPE_ROUTE_PROVIDER = [
516
- { provide: APP_INITIALIZER, useFactory: configureRoutes$p, deps: [RoutesService], multi: true },
517
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$s, deps: [RoutesService], multi: true },
517
518
  ];
518
- function configureRoutes$p(routes) {
519
+ function configureRoutes$s(routes) {
519
520
  return () => {
520
521
  routes.add([
521
522
  {
@@ -530,9 +531,9 @@ function configureRoutes$p(routes) {
530
531
  }
531
532
 
532
533
  const XSLT_RULE_SCENARIOS_XSLT_RULE_SCENARIO_ROUTE_PROVIDER = [
533
- { provide: APP_INITIALIZER, useFactory: configureRoutes$o, deps: [RoutesService], multi: true },
534
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$r, deps: [RoutesService], multi: true },
534
535
  ];
535
- function configureRoutes$o(routes) {
536
+ function configureRoutes$r(routes) {
536
537
  return () => {
537
538
  routes.add([
538
539
  {
@@ -549,12 +550,12 @@ function configureRoutes$o(routes) {
549
550
  const HIT_E_DONUSUM_ROUTE_PROVIDERS = [
550
551
  {
551
552
  provide: APP_INITIALIZER,
552
- useFactory: configureRoutes$n,
553
+ useFactory: configureRoutes$q,
553
554
  deps: [RoutesService],
554
555
  multi: true,
555
556
  },
556
557
  ];
557
- function configureRoutes$n(routes) {
558
+ function configureRoutes$q(routes) {
558
559
  return () => {
559
560
  routes.add([
560
561
  {
@@ -563,6 +564,7 @@ function configureRoutes$n(routes) {
563
564
  iconClass: 'fas fa-book',
564
565
  layout: "application" /* eLayoutType.application */,
565
566
  order: 2,
567
+ requiredPolicy: "eDonusum.ParamsGenerals"
566
568
  },
567
569
  {
568
570
  path: '/',
@@ -611,9 +613,9 @@ function configureRoutes$n(routes) {
611
613
  }
612
614
 
613
615
  const HIT_BRANCHES_BRANCH_ROUTE_PROVIDER = [
614
- { provide: APP_INITIALIZER, useFactory: configureRoutes$m, deps: [RoutesService], multi: true },
616
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$p, deps: [RoutesService], multi: true },
615
617
  ];
616
- function configureRoutes$m(routes) {
618
+ function configureRoutes$p(routes) {
617
619
  return () => {
618
620
  routes.add([
619
621
  {
@@ -629,9 +631,9 @@ function configureRoutes$m(routes) {
629
631
  }
630
632
 
631
633
  const HIT_BUSINESS_PARTNERS_BUSINESS_PARTNER_ROUTE_PROVIDER = [
632
- { provide: APP_INITIALIZER, useFactory: configureRoutes$l, deps: [RoutesService], multi: true },
634
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$o, deps: [RoutesService], multi: true },
633
635
  ];
634
- function configureRoutes$l(routes) {
636
+ function configureRoutes$o(routes) {
635
637
  return () => {
636
638
  routes.add([
637
639
  {
@@ -647,9 +649,9 @@ function configureRoutes$l(routes) {
647
649
  }
648
650
 
649
651
  const HIT_BUSINESS_PARTNER_GROUPS_BUSINESS_PARTNER_GROUP_ROUTE_PROVIDER = [
650
- { provide: APP_INITIALIZER, useFactory: configureRoutes$k, deps: [RoutesService], multi: true },
652
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$n, deps: [RoutesService], multi: true },
651
653
  ];
652
- function configureRoutes$k(routes) {
654
+ function configureRoutes$n(routes) {
653
655
  return () => {
654
656
  routes.add([
655
657
  {
@@ -665,9 +667,9 @@ function configureRoutes$k(routes) {
665
667
  }
666
668
 
667
669
  const HIT_GIB_PARTNER_PKS_GIB_PARTNER_PK_ROUTE_PROVIDER = [
668
- { provide: APP_INITIALIZER, useFactory: configureRoutes$j, deps: [RoutesService], multi: true },
670
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$m, deps: [RoutesService], multi: true },
669
671
  ];
670
- function configureRoutes$j(routes) {
672
+ function configureRoutes$m(routes) {
671
673
  return () => {
672
674
  routes.add([
673
675
  {
@@ -683,9 +685,9 @@ function configureRoutes$j(routes) {
683
685
  }
684
686
 
685
687
  const HIT_GIB_PARTNER_PK_ALLS_GIB_PARTNER_PK_ALL_ROUTE_PROVIDER = [
686
- { provide: APP_INITIALIZER, useFactory: configureRoutes$i, deps: [RoutesService], multi: true },
688
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$l, deps: [RoutesService], multi: true },
687
689
  ];
688
- function configureRoutes$i(routes) {
690
+ function configureRoutes$l(routes) {
689
691
  return () => {
690
692
  routes.add([
691
693
  {
@@ -701,9 +703,9 @@ function configureRoutes$i(routes) {
701
703
  }
702
704
 
703
705
  const HIT_XSLT_RULES_XSLT_RULE_ROUTE_PROVIDER = [
704
- { provide: APP_INITIALIZER, useFactory: configureRoutes$h, deps: [RoutesService], multi: true },
706
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$k, deps: [RoutesService], multi: true },
705
707
  ];
706
- function configureRoutes$h(routes) {
708
+ function configureRoutes$k(routes) {
707
709
  return () => {
708
710
  routes.add([
709
711
  {
@@ -719,9 +721,9 @@ function configureRoutes$h(routes) {
719
721
  }
720
722
 
721
723
  const HIT_XSLT_FORMATS_XSLT_FORMAT_ROUTE_PROVIDER = [
722
- { provide: APP_INITIALIZER, useFactory: configureRoutes$g, deps: [RoutesService], multi: true },
724
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$j, deps: [RoutesService], multi: true },
723
725
  ];
724
- function configureRoutes$g(routes) {
726
+ function configureRoutes$j(routes) {
725
727
  return () => {
726
728
  routes.add([
727
729
  {
@@ -737,9 +739,9 @@ function configureRoutes$g(routes) {
737
739
  }
738
740
 
739
741
  const HIT_INVOICES_INVOICE_ROUTE_PROVIDER = [
740
- { provide: APP_INITIALIZER, useFactory: configureRoutes$f, deps: [RoutesService], multi: true },
742
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$i, deps: [RoutesService], multi: true },
741
743
  ];
742
- function configureRoutes$f(routes) {
744
+ function configureRoutes$i(routes) {
743
745
  return () => {
744
746
  routes.add([
745
747
  {
@@ -755,9 +757,9 @@ function configureRoutes$f(routes) {
755
757
  }
756
758
 
757
759
  const HIT_DESPATCHES_DESPATCH_ROUTE_PROVIDER = [
758
- { provide: APP_INITIALIZER, useFactory: configureRoutes$e, deps: [RoutesService], multi: true },
760
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$h, deps: [RoutesService], multi: true },
759
761
  ];
760
- function configureRoutes$e(routes) {
762
+ function configureRoutes$h(routes) {
761
763
  return () => {
762
764
  routes.add([
763
765
  {
@@ -773,9 +775,9 @@ function configureRoutes$e(routes) {
773
775
  }
774
776
 
775
777
  const HIT_INBOUND_INVOICES_INVOICE_ROUTE_PROVIDER = [
776
- { provide: APP_INITIALIZER, useFactory: configureRoutes$d, deps: [RoutesService], multi: true },
778
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$g, deps: [RoutesService], multi: true },
777
779
  ];
778
- function configureRoutes$d(routes) {
780
+ function configureRoutes$g(routes) {
779
781
  return () => {
780
782
  routes.add([
781
783
  {
@@ -791,9 +793,9 @@ function configureRoutes$d(routes) {
791
793
  }
792
794
 
793
795
  const HIT_INBOUND_DESPATCHES_DESPATCH_ROUTE_PROVIDER = [
794
- { provide: APP_INITIALIZER, useFactory: configureRoutes$c, deps: [RoutesService], multi: true },
796
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$f, deps: [RoutesService], multi: true },
795
797
  ];
796
- function configureRoutes$c(routes) {
798
+ function configureRoutes$f(routes) {
797
799
  return () => {
798
800
  routes.add([
799
801
  {
@@ -809,9 +811,9 @@ function configureRoutes$c(routes) {
809
811
  }
810
812
 
811
813
  const HIT_FAILED_INVOICES_INVOICE_ROUTE_PROVIDER = [
812
- { provide: APP_INITIALIZER, useFactory: configureRoutes$b, deps: [RoutesService], multi: true },
814
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$e, deps: [RoutesService], multi: true },
813
815
  ];
814
- function configureRoutes$b(routes) {
816
+ function configureRoutes$e(routes) {
815
817
  return () => {
816
818
  routes.add([
817
819
  {
@@ -827,9 +829,9 @@ function configureRoutes$b(routes) {
827
829
  }
828
830
 
829
831
  const HIT_FAILED_CONNECTOR_INVOICES_INVOICE_ROUTE_PROVIDER = [
830
- { provide: APP_INITIALIZER, useFactory: configureRoutes$a, deps: [RoutesService], multi: true },
832
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$d, deps: [RoutesService], multi: true },
831
833
  ];
832
- function configureRoutes$a(routes) {
834
+ function configureRoutes$d(routes) {
833
835
  return () => {
834
836
  routes.add([
835
837
  {
@@ -845,9 +847,9 @@ function configureRoutes$a(routes) {
845
847
  }
846
848
 
847
849
  const HIT_FAILED_DESPATCHES_DESPATCH_ROUTE_PROVIDER = [
848
- { provide: APP_INITIALIZER, useFactory: configureRoutes$9, deps: [RoutesService], multi: true },
850
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$c, deps: [RoutesService], multi: true },
849
851
  ];
850
- function configureRoutes$9(routes) {
852
+ function configureRoutes$c(routes) {
851
853
  return () => {
852
854
  routes.add([
853
855
  {
@@ -863,9 +865,9 @@ function configureRoutes$9(routes) {
863
865
  }
864
866
 
865
867
  const HIT_FAILED_CONNECTOR_DESPATCHES_DESPATCH_ROUTE_PROVIDER = [
866
- { provide: APP_INITIALIZER, useFactory: configureRoutes$8, deps: [RoutesService], multi: true },
868
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$b, deps: [RoutesService], multi: true },
867
869
  ];
868
- function configureRoutes$8(routes) {
870
+ function configureRoutes$b(routes) {
869
871
  return () => {
870
872
  routes.add([
871
873
  {
@@ -881,9 +883,9 @@ function configureRoutes$8(routes) {
881
883
  }
882
884
 
883
885
  const DOCUMENT_SERIALS_DOCUMENT_SERIAL_ROUTE_PROVIDER = [
884
- { provide: APP_INITIALIZER, useFactory: configureRoutes$7, deps: [RoutesService], multi: true },
886
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$a, deps: [RoutesService], multi: true },
885
887
  ];
886
- function configureRoutes$7(routes) {
888
+ function configureRoutes$a(routes) {
887
889
  return () => {
888
890
  routes.add([
889
891
  {
@@ -898,9 +900,9 @@ function configureRoutes$7(routes) {
898
900
  }
899
901
 
900
902
  const HIT_DOCUMENT_SERIALS_DOCUMENT_SERIAL_ROUTE_PROVIDER = [
901
- { provide: APP_INITIALIZER, useFactory: configureRoutes$6, deps: [RoutesService], multi: true },
903
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$9, deps: [RoutesService], multi: true },
902
904
  ];
903
- function configureRoutes$6(routes) {
905
+ function configureRoutes$9(routes) {
904
906
  return () => {
905
907
  routes.add([
906
908
  {
@@ -916,9 +918,9 @@ function configureRoutes$6(routes) {
916
918
  }
917
919
 
918
920
  const PRODUCER_RECEIPTS_PRODUCER_RECEIPT_ROUTE_PROVIDER = [
919
- { provide: APP_INITIALIZER, useFactory: configureRoutes$5, deps: [RoutesService], multi: true },
921
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$8, deps: [RoutesService], multi: true },
920
922
  ];
921
- function configureRoutes$5(routes) {
923
+ function configureRoutes$8(routes) {
922
924
  return () => {
923
925
  routes.add([
924
926
  {
@@ -933,9 +935,9 @@ function configureRoutes$5(routes) {
933
935
  }
934
936
 
935
937
  const PRODUCER_RECEIPT_LINES_PRODUCER_RECEIPT_LINE_ROUTE_PROVIDER = [
936
- { provide: APP_INITIALIZER, useFactory: configureRoutes$4, deps: [RoutesService], multi: true },
938
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$7, deps: [RoutesService], multi: true },
937
939
  ];
938
- function configureRoutes$4(routes) {
940
+ function configureRoutes$7(routes) {
939
941
  return () => {
940
942
  routes.add([
941
943
  {
@@ -950,9 +952,9 @@ function configureRoutes$4(routes) {
950
952
  }
951
953
 
952
954
  const PRODUCER_RECEIPT_NOTES_PRODUCER_RECEIPT_NOTE_ROUTE_PROVIDER = [
953
- { provide: APP_INITIALIZER, useFactory: configureRoutes$3, deps: [RoutesService], multi: true },
955
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$6, deps: [RoutesService], multi: true },
954
956
  ];
955
- function configureRoutes$3(routes) {
957
+ function configureRoutes$6(routes) {
956
958
  return () => {
957
959
  routes.add([
958
960
  {
@@ -967,9 +969,9 @@ function configureRoutes$3(routes) {
967
969
  }
968
970
 
969
971
  const HIT_PRODUCER_RECEIPTS_PRODUCER_RECEIPT_ROUTE_PROVIDER = [
970
- { provide: APP_INITIALIZER, useFactory: configureRoutes$2, deps: [RoutesService], multi: true },
972
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$5, deps: [RoutesService], multi: true },
971
973
  ];
972
- function configureRoutes$2(routes) {
974
+ function configureRoutes$5(routes) {
973
975
  return () => {
974
976
  routes.add([
975
977
  {
@@ -985,9 +987,9 @@ function configureRoutes$2(routes) {
985
987
  }
986
988
 
987
989
  const HIT_FAILED_PRODUCER_RECEIPTS_PRODUCER_RECEIPT_ROUTE_PROVIDER = [
988
- { provide: APP_INITIALIZER, useFactory: configureRoutes$1, deps: [RoutesService], multi: true },
990
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$4, deps: [RoutesService], multi: true },
989
991
  ];
990
- function configureRoutes$1(routes) {
992
+ function configureRoutes$4(routes) {
991
993
  return () => {
992
994
  routes.add([
993
995
  {
@@ -1003,9 +1005,9 @@ function configureRoutes$1(routes) {
1003
1005
  }
1004
1006
 
1005
1007
  const HIT_FAILED_CONNECTOR_PRODUCER_RECEIPTS_PRODUCER_RECEIPT_ROUTE_PROVIDER = [
1006
- { provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true },
1008
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$3, deps: [RoutesService], multi: true },
1007
1009
  ];
1008
- function configureRoutes(routes) {
1010
+ function configureRoutes$3(routes) {
1009
1011
  return () => {
1010
1012
  routes.add([
1011
1013
  {
@@ -1020,6 +1022,57 @@ function configureRoutes(routes) {
1020
1022
  };
1021
1023
  }
1022
1024
 
1025
+ const AUTO_SEND_RULES_AUTO_SEND_RULE_ROUTE_PROVIDER = [
1026
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$2, deps: [RoutesService], multi: true },
1027
+ ];
1028
+ function configureRoutes$2(routes) {
1029
+ return () => {
1030
+ routes.add([
1031
+ {
1032
+ path: '/e-donusum/auto-send-rules',
1033
+ parentName: "eDonusum::Menu:eDonusum" /* eeDonusumRouteNames.eDonusum */,
1034
+ name: 'eDonusum::Menu:AutoSendRules',
1035
+ layout: "application" /* eLayoutType.application */,
1036
+ requiredPolicy: 'eDonusum.AutoSendRules',
1037
+ },
1038
+ ]);
1039
+ };
1040
+ }
1041
+
1042
+ const AUTO_SEND_RULE_DOC_TYPES_AUTO_SEND_RULE_DOC_TYPE_ROUTE_PROVIDER = [
1043
+ { provide: APP_INITIALIZER, useFactory: configureRoutes$1, deps: [RoutesService], multi: true },
1044
+ ];
1045
+ function configureRoutes$1(routes) {
1046
+ return () => {
1047
+ routes.add([
1048
+ {
1049
+ path: '/e-donusum/auto-send-rule-doc-types',
1050
+ parentName: "eDonusum::Menu:eDonusum" /* eeDonusumRouteNames.eDonusum */,
1051
+ name: 'eDonusum::Menu:AutoSendRuleDocTypes',
1052
+ layout: "application" /* eLayoutType.application */,
1053
+ requiredPolicy: 'eDonusum.AutoSendRuleDocTypes',
1054
+ },
1055
+ ]);
1056
+ };
1057
+ }
1058
+
1059
+ const AUTO_SEND_RULE_SCENARIOS_AUTO_SEND_RULE_SCENARIO_ROUTE_PROVIDER = [
1060
+ { provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true },
1061
+ ];
1062
+ function configureRoutes(routes) {
1063
+ return () => {
1064
+ routes.add([
1065
+ {
1066
+ path: '/e-donusum/auto-send-rule-scenarios',
1067
+ parentName: "eDonusum::Menu:eDonusum" /* eeDonusumRouteNames.eDonusum */,
1068
+ name: 'eDonusum::Menu:AutoSendRuleScenarios',
1069
+ layout: "application" /* eLayoutType.application */,
1070
+ requiredPolicy: 'eDonusum.AutoSendRuleScenarios',
1071
+ },
1072
+ ]);
1073
+ };
1074
+ }
1075
+
1023
1076
  class eDonusumConfigModule {
1024
1077
  static forRoot() {
1025
1078
  return {
@@ -1080,7 +1133,10 @@ class eDonusumConfigModule {
1080
1133
  PRODUCER_RECEIPT_NOTES_PRODUCER_RECEIPT_NOTE_ROUTE_PROVIDER,
1081
1134
  HIT_PRODUCER_RECEIPTS_PRODUCER_RECEIPT_ROUTE_PROVIDER,
1082
1135
  HIT_FAILED_PRODUCER_RECEIPTS_PRODUCER_RECEIPT_ROUTE_PROVIDER,
1083
- HIT_FAILED_CONNECTOR_PRODUCER_RECEIPTS_PRODUCER_RECEIPT_ROUTE_PROVIDER
1136
+ HIT_FAILED_CONNECTOR_PRODUCER_RECEIPTS_PRODUCER_RECEIPT_ROUTE_PROVIDER,
1137
+ AUTO_SEND_RULES_AUTO_SEND_RULE_ROUTE_PROVIDER,
1138
+ AUTO_SEND_RULE_DOC_TYPES_AUTO_SEND_RULE_DOC_TYPE_ROUTE_PROVIDER,
1139
+ AUTO_SEND_RULE_SCENARIOS_AUTO_SEND_RULE_SCENARIO_ROUTE_PROVIDER,
1084
1140
  ],
1085
1141
  };
1086
1142
  }
@@ -1096,5 +1152,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
1096
1152
  * Generated bundle index. Do not edit.
1097
1153
  */
1098
1154
 
1099
- export { E_DONUSUM_ROUTE_PROVIDERS, configureRoutes$T as configureRoutes, eDonusumConfigModule };
1155
+ export { E_DONUSUM_ROUTE_PROVIDERS, configureRoutes$W as configureRoutes, eDonusumConfigModule };
1100
1156
  //# sourceMappingURL=hitsoft-e-donusum-config.mjs.map