@hitsoft/e-donusum 1.0.33 → 1.0.35
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/failed-connector-despatch-route.provider.d.ts +9 -0
- package/config/providers/hit-providers/failed-despatch-route.provider.d.ts +9 -0
- package/esm2020/config/e-donusum-config.module.mjs +6 -2
- package/esm2020/config/providers/hit-providers/failed-connector-despatch-route.provider.mjs +20 -0
- package/esm2020/config/providers/hit-providers/failed-despatch-route.provider.mjs +20 -0
- package/esm2020/lib/components/hit-despatches/hit-despatch.component.mjs +3 -3
- package/esm2020/lib/components/hit-failed-connector-despatches/hit-failed-connector-despatch-routing.module.mjs +38 -0
- package/esm2020/lib/components/hit-failed-connector-despatches/hit-failed-connector-despatch.component.mjs +33 -0
- package/esm2020/lib/components/hit-failed-connector-despatches/hit-failed-connector-despatch.module.mjs +77 -0
- package/esm2020/lib/components/hit-failed-despatches/hit-failed-despatch-routing.module.mjs +38 -0
- package/esm2020/lib/components/hit-failed-despatches/hit-failed-despatch.component.mjs +62 -0
- package/esm2020/lib/components/hit-failed-despatches/hit-failed-despatch.module.mjs +77 -0
- package/esm2020/lib/components/hit-gib-partner-pks/hit-gib-partner-pk.component.mjs +3 -3
- package/esm2020/lib/components/hit-invoices/hit-invoice.component.mjs +3 -3
- package/esm2020/lib/components/hit-paramas-invoices/hit-params-invoice.component.mjs +3 -2
- package/esm2020/lib/components/hit-params-companies/hit-params-company.component.mjs +3 -2
- package/esm2020/lib/components/hit-params-dispatches/hit-params-dispatch.component.mjs +3 -2
- package/esm2020/lib/components/hit-params-generals/hit-params-generals-part1/hit-params-general-part1.component.mjs +15 -4
- package/esm2020/lib/components/hit-params-generals/hit-params-generals-part2/hit-params-general-part2.component.mjs +5 -3
- package/esm2020/lib/components/hit-params-integrators/hit-params-integrator.component.mjs +11 -3
- package/esm2020/lib/components/hit-setup-wizard/hit-setup-wizard.component.mjs +29 -10
- package/esm2020/lib/e-donusum-routing.module.mjs +5 -1
- package/esm2020/lib/gib-partner-pk-alls/gib-partner-pk-all/gib-partner-pk-all-routing.module.mjs +16 -4
- package/esm2020/lib/gib-partner-pks/gib-partner-pk/gib-partner-pk-routing.module.mjs +16 -4
- package/esm2020/lib/hit-proxy/hit-despatches/hit-despatch.service.mjs +11 -1
- package/esm2020/lib/hit-proxy/hit-failed-connector-despatches/hit-failed-connector-despatches.service.mjs +24 -0
- package/esm2020/lib/hit-proxy/hit-failed-despatches/hit-failed-despatch.service.mjs +24 -0
- package/fesm2015/hitsoft-e-donusum-config.mjs +132 -94
- package/fesm2015/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2015/hitsoft-e-donusum.mjs +762 -368
- package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum-config.mjs +132 -94
- package/fesm2020/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum.mjs +648 -262
- package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
- package/lib/components/hit-failed-connector-despatches/hit-failed-connector-despatch-routing.module.d.ts +7 -0
- package/lib/components/hit-failed-connector-despatches/hit-failed-connector-despatch.component.d.ts +17 -0
- package/lib/components/hit-failed-connector-despatches/hit-failed-connector-despatch.module.d.ts +16 -0
- package/lib/components/hit-failed-despatches/hit-failed-despatch-routing.module.d.ts +7 -0
- package/lib/components/hit-failed-despatches/hit-failed-despatch.component.d.ts +24 -0
- package/lib/components/hit-failed-despatches/hit-failed-despatch.module.d.ts +16 -0
- package/lib/components/hit-paramas-invoices/hit-params-invoice.component.d.ts +1 -1
- package/lib/components/hit-params-companies/hit-params-company.component.d.ts +1 -1
- package/lib/components/hit-params-dispatches/hit-params-dispatch.component.d.ts +1 -1
- package/lib/components/hit-params-generals/hit-params-generals-part1/hit-params-general-part1.component.d.ts +1 -0
- package/lib/components/hit-params-generals/hit-params-generals-part2/hit-params-general-part2.component.d.ts +1 -1
- package/lib/components/hit-params-integrators/hit-params-integrator.component.d.ts +1 -0
- package/lib/components/hit-setup-wizard/hit-setup-wizard.component.d.ts +1 -0
- package/lib/hit-proxy/hit-despatches/hit-despatch.service.d.ts +2 -0
- package/lib/hit-proxy/hit-failed-connector-despatches/hit-failed-connector-despatches.service.d.ts +12 -0
- package/lib/hit-proxy/hit-failed-despatches/hit-failed-despatch.service.d.ts +12 -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$L,
|
|
9
9
|
deps: [RoutesService],
|
|
10
10
|
multi: true,
|
|
11
11
|
},
|
|
12
12
|
];
|
|
13
|
-
function configureRoutes$
|
|
13
|
+
function configureRoutes$L(routes) {
|
|
14
14
|
return () => {
|
|
15
15
|
routes.add([
|
|
16
16
|
{
|
|
@@ -25,9 +25,9 @@ function configureRoutes$J(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$K, deps: [RoutesService], multi: true },
|
|
29
29
|
];
|
|
30
|
-
function configureRoutes$
|
|
30
|
+
function configureRoutes$K(routes) {
|
|
31
31
|
return () => {
|
|
32
32
|
routes.add([
|
|
33
33
|
{
|
|
@@ -42,9 +42,9 @@ function configureRoutes$I(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$J, deps: [RoutesService], multi: true },
|
|
46
46
|
];
|
|
47
|
-
function configureRoutes$
|
|
47
|
+
function configureRoutes$J(routes) {
|
|
48
48
|
return () => {
|
|
49
49
|
routes.add([
|
|
50
50
|
{
|
|
@@ -59,9 +59,9 @@ function configureRoutes$H(routes) {
|
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
const BRANCHES_BRANCH_ROUTE_PROVIDER = [
|
|
62
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
62
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$I, deps: [RoutesService], multi: true },
|
|
63
63
|
];
|
|
64
|
-
function configureRoutes$
|
|
64
|
+
function configureRoutes$I(routes) {
|
|
65
65
|
return () => {
|
|
66
66
|
routes.add([
|
|
67
67
|
{
|
|
@@ -76,9 +76,9 @@ function configureRoutes$G(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$H, deps: [RoutesService], multi: true },
|
|
80
80
|
];
|
|
81
|
-
function configureRoutes$
|
|
81
|
+
function configureRoutes$H(routes) {
|
|
82
82
|
return () => {
|
|
83
83
|
routes.add([
|
|
84
84
|
{
|
|
@@ -93,9 +93,9 @@ function configureRoutes$F(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$G, deps: [RoutesService], multi: true },
|
|
97
97
|
];
|
|
98
|
-
function configureRoutes$
|
|
98
|
+
function configureRoutes$G(routes) {
|
|
99
99
|
return () => {
|
|
100
100
|
routes.add([
|
|
101
101
|
{
|
|
@@ -110,9 +110,9 @@ function configureRoutes$E(routes) {
|
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
const DESPATCHES_DESPATCH_ROUTE_PROVIDER = [
|
|
113
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
113
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$F, deps: [RoutesService], multi: true },
|
|
114
114
|
];
|
|
115
|
-
function configureRoutes$
|
|
115
|
+
function configureRoutes$F(routes) {
|
|
116
116
|
return () => {
|
|
117
117
|
routes.add([
|
|
118
118
|
{
|
|
@@ -127,9 +127,9 @@ function configureRoutes$D(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$E, deps: [RoutesService], multi: true },
|
|
131
131
|
];
|
|
132
|
-
function configureRoutes$
|
|
132
|
+
function configureRoutes$E(routes) {
|
|
133
133
|
return () => {
|
|
134
134
|
routes.add([
|
|
135
135
|
{
|
|
@@ -144,9 +144,9 @@ function configureRoutes$C(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$D, deps: [RoutesService], multi: true },
|
|
148
148
|
];
|
|
149
|
-
function configureRoutes$
|
|
149
|
+
function configureRoutes$D(routes) {
|
|
150
150
|
return () => {
|
|
151
151
|
routes.add([
|
|
152
152
|
{
|
|
@@ -161,9 +161,9 @@ function configureRoutes$B(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$C, deps: [RoutesService], multi: true },
|
|
165
165
|
];
|
|
166
|
-
function configureRoutes$
|
|
166
|
+
function configureRoutes$C(routes) {
|
|
167
167
|
return () => {
|
|
168
168
|
routes.add([
|
|
169
169
|
{
|
|
@@ -177,8 +177,8 @@ function configureRoutes$A(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$B, deps: [RoutesService], multi: true }];
|
|
181
|
+
function configureRoutes$B(routes) {
|
|
182
182
|
return () => {
|
|
183
183
|
routes.add([
|
|
184
184
|
{
|
|
@@ -193,9 +193,9 @@ function configureRoutes$z(routes) {
|
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
const INVOICES_INVOICE_ROUTE_PROVIDER = [
|
|
196
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
196
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$A, deps: [RoutesService], multi: true },
|
|
197
197
|
];
|
|
198
|
-
function configureRoutes$
|
|
198
|
+
function configureRoutes$A(routes) {
|
|
199
199
|
return () => {
|
|
200
200
|
routes.add([
|
|
201
201
|
{
|
|
@@ -210,9 +210,9 @@ function configureRoutes$y(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$z, deps: [RoutesService], multi: true },
|
|
214
214
|
];
|
|
215
|
-
function configureRoutes$
|
|
215
|
+
function configureRoutes$z(routes) {
|
|
216
216
|
return () => {
|
|
217
217
|
routes.add([
|
|
218
218
|
{
|
|
@@ -227,9 +227,9 @@ function configureRoutes$x(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$y, deps: [RoutesService], multi: true },
|
|
231
231
|
];
|
|
232
|
-
function configureRoutes$
|
|
232
|
+
function configureRoutes$y(routes) {
|
|
233
233
|
return () => {
|
|
234
234
|
routes.add([
|
|
235
235
|
{
|
|
@@ -244,9 +244,9 @@ function configureRoutes$w(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$x, deps: [RoutesService], multi: true },
|
|
248
248
|
];
|
|
249
|
-
function configureRoutes$
|
|
249
|
+
function configureRoutes$x(routes) {
|
|
250
250
|
return () => {
|
|
251
251
|
routes.add([
|
|
252
252
|
{
|
|
@@ -261,9 +261,9 @@ function configureRoutes$v(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$w, deps: [RoutesService], multi: true },
|
|
265
265
|
];
|
|
266
|
-
function configureRoutes$
|
|
266
|
+
function configureRoutes$w(routes) {
|
|
267
267
|
return () => {
|
|
268
268
|
routes.add([
|
|
269
269
|
{
|
|
@@ -277,8 +277,8 @@ function configureRoutes$u(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$v, deps: [RoutesService], multi: true }];
|
|
281
|
+
function configureRoutes$v(routes) {
|
|
282
282
|
return () => {
|
|
283
283
|
routes.add([
|
|
284
284
|
{
|
|
@@ -292,8 +292,8 @@ function configureRoutes$t(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$u, deps: [RoutesService], multi: true }];
|
|
296
|
+
function configureRoutes$u(routes) {
|
|
297
297
|
return () => {
|
|
298
298
|
routes.add([
|
|
299
299
|
{
|
|
@@ -308,9 +308,9 @@ function configureRoutes$s(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$t, deps: [RoutesService], multi: true },
|
|
312
312
|
];
|
|
313
|
-
function configureRoutes$
|
|
313
|
+
function configureRoutes$t(routes) {
|
|
314
314
|
return () => {
|
|
315
315
|
routes.add([
|
|
316
316
|
{
|
|
@@ -325,9 +325,9 @@ function configureRoutes$r(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$s, deps: [RoutesService], multi: true },
|
|
329
329
|
];
|
|
330
|
-
function configureRoutes$
|
|
330
|
+
function configureRoutes$s(routes) {
|
|
331
331
|
return () => {
|
|
332
332
|
routes.add([
|
|
333
333
|
{
|
|
@@ -342,9 +342,9 @@ function configureRoutes$q(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$r, deps: [RoutesService], multi: true },
|
|
346
346
|
];
|
|
347
|
-
function configureRoutes$
|
|
347
|
+
function configureRoutes$r(routes) {
|
|
348
348
|
return () => {
|
|
349
349
|
routes.add([
|
|
350
350
|
{
|
|
@@ -359,9 +359,9 @@ function configureRoutes$p(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$q, deps: [RoutesService], multi: true },
|
|
363
363
|
];
|
|
364
|
-
function configureRoutes$
|
|
364
|
+
function configureRoutes$q(routes) {
|
|
365
365
|
return () => {
|
|
366
366
|
routes.add([
|
|
367
367
|
{
|
|
@@ -376,9 +376,9 @@ function configureRoutes$o(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$p, deps: [RoutesService], multi: true },
|
|
380
380
|
];
|
|
381
|
-
function configureRoutes$
|
|
381
|
+
function configureRoutes$p(routes) {
|
|
382
382
|
return () => {
|
|
383
383
|
routes.add([
|
|
384
384
|
{
|
|
@@ -393,9 +393,9 @@ function configureRoutes$n(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$o, deps: [RoutesService], multi: true },
|
|
397
397
|
];
|
|
398
|
-
function configureRoutes$
|
|
398
|
+
function configureRoutes$o(routes) {
|
|
399
399
|
return () => {
|
|
400
400
|
routes.add([
|
|
401
401
|
{
|
|
@@ -410,9 +410,9 @@ function configureRoutes$m(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$n, deps: [RoutesService], multi: true },
|
|
414
414
|
];
|
|
415
|
-
function configureRoutes$
|
|
415
|
+
function configureRoutes$n(routes) {
|
|
416
416
|
return () => {
|
|
417
417
|
routes.add([
|
|
418
418
|
{
|
|
@@ -427,9 +427,9 @@ function configureRoutes$l(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$m, deps: [RoutesService], multi: true },
|
|
431
431
|
];
|
|
432
|
-
function configureRoutes$
|
|
432
|
+
function configureRoutes$m(routes) {
|
|
433
433
|
return () => {
|
|
434
434
|
routes.add([
|
|
435
435
|
{
|
|
@@ -444,9 +444,9 @@ function configureRoutes$k(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$l, deps: [RoutesService], multi: true },
|
|
448
448
|
];
|
|
449
|
-
function configureRoutes$
|
|
449
|
+
function configureRoutes$l(routes) {
|
|
450
450
|
return () => {
|
|
451
451
|
routes.add([
|
|
452
452
|
{
|
|
@@ -462,9 +462,9 @@ function configureRoutes$j(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$k, deps: [RoutesService], multi: true },
|
|
466
466
|
];
|
|
467
|
-
function configureRoutes$
|
|
467
|
+
function configureRoutes$k(routes) {
|
|
468
468
|
return () => {
|
|
469
469
|
routes.add([
|
|
470
470
|
{
|
|
@@ -479,9 +479,9 @@ function configureRoutes$i(routes) {
|
|
|
479
479
|
}
|
|
480
480
|
|
|
481
481
|
const XSLT_FORMATS_XSLT_FORMAT_ROUTE_PROVIDER = [
|
|
482
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
482
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$j, deps: [RoutesService], multi: true },
|
|
483
483
|
];
|
|
484
|
-
function configureRoutes$
|
|
484
|
+
function configureRoutes$j(routes) {
|
|
485
485
|
return () => {
|
|
486
486
|
routes.add([
|
|
487
487
|
{
|
|
@@ -496,9 +496,9 @@ function configureRoutes$h(routes) {
|
|
|
496
496
|
}
|
|
497
497
|
|
|
498
498
|
const XSLT_RULES_XSLT_RULE_ROUTE_PROVIDER = [
|
|
499
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
499
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$i, deps: [RoutesService], multi: true },
|
|
500
500
|
];
|
|
501
|
-
function configureRoutes$
|
|
501
|
+
function configureRoutes$i(routes) {
|
|
502
502
|
return () => {
|
|
503
503
|
routes.add([
|
|
504
504
|
{
|
|
@@ -513,9 +513,9 @@ function configureRoutes$g(routes) {
|
|
|
513
513
|
}
|
|
514
514
|
|
|
515
515
|
const XSLT_RULE_DOC_TYPES_XSLT_RULE_DOC_TYPE_ROUTE_PROVIDER = [
|
|
516
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
516
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$h, deps: [RoutesService], multi: true },
|
|
517
517
|
];
|
|
518
|
-
function configureRoutes$
|
|
518
|
+
function configureRoutes$h(routes) {
|
|
519
519
|
return () => {
|
|
520
520
|
routes.add([
|
|
521
521
|
{
|
|
@@ -530,9 +530,9 @@ function configureRoutes$f(routes) {
|
|
|
530
530
|
}
|
|
531
531
|
|
|
532
532
|
const XSLT_RULE_SCENARIOS_XSLT_RULE_SCENARIO_ROUTE_PROVIDER = [
|
|
533
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
533
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$g, deps: [RoutesService], multi: true },
|
|
534
534
|
];
|
|
535
|
-
function configureRoutes$
|
|
535
|
+
function configureRoutes$g(routes) {
|
|
536
536
|
return () => {
|
|
537
537
|
routes.add([
|
|
538
538
|
{
|
|
@@ -549,12 +549,12 @@ function configureRoutes$e(routes) {
|
|
|
549
549
|
const HIT_E_DONUSUM_ROUTE_PROVIDERS = [
|
|
550
550
|
{
|
|
551
551
|
provide: APP_INITIALIZER,
|
|
552
|
-
useFactory: configureRoutes$
|
|
552
|
+
useFactory: configureRoutes$f,
|
|
553
553
|
deps: [RoutesService],
|
|
554
554
|
multi: true,
|
|
555
555
|
},
|
|
556
556
|
];
|
|
557
|
-
function configureRoutes$
|
|
557
|
+
function configureRoutes$f(routes) {
|
|
558
558
|
return () => {
|
|
559
559
|
routes.add([
|
|
560
560
|
{
|
|
@@ -604,9 +604,9 @@ function configureRoutes$d(routes) {
|
|
|
604
604
|
}
|
|
605
605
|
|
|
606
606
|
const HIT_BRANCHES_BRANCH_ROUTE_PROVIDER = [
|
|
607
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
607
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$e, deps: [RoutesService], multi: true },
|
|
608
608
|
];
|
|
609
|
-
function configureRoutes$
|
|
609
|
+
function configureRoutes$e(routes) {
|
|
610
610
|
return () => {
|
|
611
611
|
routes.add([
|
|
612
612
|
{
|
|
@@ -622,9 +622,9 @@ function configureRoutes$c(routes) {
|
|
|
622
622
|
}
|
|
623
623
|
|
|
624
624
|
const HIT_BUSINESS_PARTNERS_BUSINESS_PARTNER_ROUTE_PROVIDER = [
|
|
625
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
625
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$d, deps: [RoutesService], multi: true },
|
|
626
626
|
];
|
|
627
|
-
function configureRoutes$
|
|
627
|
+
function configureRoutes$d(routes) {
|
|
628
628
|
return () => {
|
|
629
629
|
routes.add([
|
|
630
630
|
{
|
|
@@ -640,9 +640,9 @@ function configureRoutes$b(routes) {
|
|
|
640
640
|
}
|
|
641
641
|
|
|
642
642
|
const HIT_BUSINESS_PARTNER_GROUPS_BUSINESS_PARTNER_GROUP_ROUTE_PROVIDER = [
|
|
643
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
643
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$c, deps: [RoutesService], multi: true },
|
|
644
644
|
];
|
|
645
|
-
function configureRoutes$
|
|
645
|
+
function configureRoutes$c(routes) {
|
|
646
646
|
return () => {
|
|
647
647
|
routes.add([
|
|
648
648
|
{
|
|
@@ -658,9 +658,9 @@ function configureRoutes$a(routes) {
|
|
|
658
658
|
}
|
|
659
659
|
|
|
660
660
|
const HIT_GIB_PARTNER_PKS_GIB_PARTNER_PK_ROUTE_PROVIDER = [
|
|
661
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
661
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$b, deps: [RoutesService], multi: true },
|
|
662
662
|
];
|
|
663
|
-
function configureRoutes$
|
|
663
|
+
function configureRoutes$b(routes) {
|
|
664
664
|
return () => {
|
|
665
665
|
routes.add([
|
|
666
666
|
{
|
|
@@ -676,9 +676,9 @@ function configureRoutes$9(routes) {
|
|
|
676
676
|
}
|
|
677
677
|
|
|
678
678
|
const HIT_GIB_PARTNER_PK_ALLS_GIB_PARTNER_PK_ALL_ROUTE_PROVIDER = [
|
|
679
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
679
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$a, deps: [RoutesService], multi: true },
|
|
680
680
|
];
|
|
681
|
-
function configureRoutes$
|
|
681
|
+
function configureRoutes$a(routes) {
|
|
682
682
|
return () => {
|
|
683
683
|
routes.add([
|
|
684
684
|
{
|
|
@@ -694,9 +694,9 @@ function configureRoutes$8(routes) {
|
|
|
694
694
|
}
|
|
695
695
|
|
|
696
696
|
const HIT_XSLT_RULES_XSLT_RULE_ROUTE_PROVIDER = [
|
|
697
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
697
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$9, deps: [RoutesService], multi: true },
|
|
698
698
|
];
|
|
699
|
-
function configureRoutes$
|
|
699
|
+
function configureRoutes$9(routes) {
|
|
700
700
|
return () => {
|
|
701
701
|
routes.add([
|
|
702
702
|
{
|
|
@@ -712,9 +712,9 @@ function configureRoutes$7(routes) {
|
|
|
712
712
|
}
|
|
713
713
|
|
|
714
714
|
const HIT_XSLT_FORMATS_XSLT_FORMAT_ROUTE_PROVIDER = [
|
|
715
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
715
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$8, deps: [RoutesService], multi: true },
|
|
716
716
|
];
|
|
717
|
-
function configureRoutes$
|
|
717
|
+
function configureRoutes$8(routes) {
|
|
718
718
|
return () => {
|
|
719
719
|
routes.add([
|
|
720
720
|
{
|
|
@@ -730,9 +730,9 @@ function configureRoutes$6(routes) {
|
|
|
730
730
|
}
|
|
731
731
|
|
|
732
732
|
const HIT_INVOICES_INVOICE_ROUTE_PROVIDER = [
|
|
733
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
733
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$7, deps: [RoutesService], multi: true },
|
|
734
734
|
];
|
|
735
|
-
function configureRoutes$
|
|
735
|
+
function configureRoutes$7(routes) {
|
|
736
736
|
return () => {
|
|
737
737
|
routes.add([
|
|
738
738
|
{
|
|
@@ -748,9 +748,9 @@ function configureRoutes$5(routes) {
|
|
|
748
748
|
}
|
|
749
749
|
|
|
750
750
|
const HIT_DESPATCHES_DESPATCH_ROUTE_PROVIDER = [
|
|
751
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
751
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$6, deps: [RoutesService], multi: true },
|
|
752
752
|
];
|
|
753
|
-
function configureRoutes$
|
|
753
|
+
function configureRoutes$6(routes) {
|
|
754
754
|
return () => {
|
|
755
755
|
routes.add([
|
|
756
756
|
{
|
|
@@ -766,9 +766,9 @@ function configureRoutes$4(routes) {
|
|
|
766
766
|
}
|
|
767
767
|
|
|
768
768
|
const HIT_INBOUND_INVOICES_INVOICE_ROUTE_PROVIDER = [
|
|
769
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
769
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$5, deps: [RoutesService], multi: true },
|
|
770
770
|
];
|
|
771
|
-
function configureRoutes$
|
|
771
|
+
function configureRoutes$5(routes) {
|
|
772
772
|
return () => {
|
|
773
773
|
routes.add([
|
|
774
774
|
{
|
|
@@ -784,9 +784,9 @@ function configureRoutes$3(routes) {
|
|
|
784
784
|
}
|
|
785
785
|
|
|
786
786
|
const HIT_INBOUND_DESPATCHES_DESPATCH_ROUTE_PROVIDER = [
|
|
787
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
787
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$4, deps: [RoutesService], multi: true },
|
|
788
788
|
];
|
|
789
|
-
function configureRoutes$
|
|
789
|
+
function configureRoutes$4(routes) {
|
|
790
790
|
return () => {
|
|
791
791
|
routes.add([
|
|
792
792
|
{
|
|
@@ -802,9 +802,9 @@ function configureRoutes$2(routes) {
|
|
|
802
802
|
}
|
|
803
803
|
|
|
804
804
|
const HIT_FAILED_INVOICES_INVOICE_ROUTE_PROVIDER = [
|
|
805
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
805
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$3, deps: [RoutesService], multi: true },
|
|
806
806
|
];
|
|
807
|
-
function configureRoutes$
|
|
807
|
+
function configureRoutes$3(routes) {
|
|
808
808
|
return () => {
|
|
809
809
|
routes.add([
|
|
810
810
|
{
|
|
@@ -820,9 +820,9 @@ function configureRoutes$1(routes) {
|
|
|
820
820
|
}
|
|
821
821
|
|
|
822
822
|
const HIT_FAILED_CONNECTOR_INVOICES_INVOICE_ROUTE_PROVIDER = [
|
|
823
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true },
|
|
823
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$2, deps: [RoutesService], multi: true },
|
|
824
824
|
];
|
|
825
|
-
function configureRoutes(routes) {
|
|
825
|
+
function configureRoutes$2(routes) {
|
|
826
826
|
return () => {
|
|
827
827
|
routes.add([
|
|
828
828
|
{
|
|
@@ -837,6 +837,42 @@ function configureRoutes(routes) {
|
|
|
837
837
|
};
|
|
838
838
|
}
|
|
839
839
|
|
|
840
|
+
const HIT_FAILED_DESPATCHES_DESPATCH_ROUTE_PROVIDER = [
|
|
841
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$1, deps: [RoutesService], multi: true },
|
|
842
|
+
];
|
|
843
|
+
function configureRoutes$1(routes) {
|
|
844
|
+
return () => {
|
|
845
|
+
routes.add([
|
|
846
|
+
{
|
|
847
|
+
path: '/e-donusum/failed-despatches',
|
|
848
|
+
parentName: "eDonusum::Menu:eDespatch" /* eDonusumRouteNames.eDespatch */,
|
|
849
|
+
name: 'eDonusum::Menu:FailedDespatches',
|
|
850
|
+
layout: "application" /* eLayoutType.application */,
|
|
851
|
+
requiredPolicy: 'eDonusum.Despatches',
|
|
852
|
+
order: 3
|
|
853
|
+
},
|
|
854
|
+
]);
|
|
855
|
+
};
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
const HIT_FAILED_CONNECTOR_DESPATCHES_DESPATCH_ROUTE_PROVIDER = [
|
|
859
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true },
|
|
860
|
+
];
|
|
861
|
+
function configureRoutes(routes) {
|
|
862
|
+
return () => {
|
|
863
|
+
routes.add([
|
|
864
|
+
{
|
|
865
|
+
path: '/e-donusum/failed-connector-despatches',
|
|
866
|
+
parentName: "eDonusum::Menu:eDespatch" /* eDonusumRouteNames.eDespatch */,
|
|
867
|
+
name: 'eDonusum::Menu:FailedConnectorDespatches',
|
|
868
|
+
layout: "application" /* eLayoutType.application */,
|
|
869
|
+
requiredPolicy: 'eDonusum.Despatches',
|
|
870
|
+
order: 4
|
|
871
|
+
},
|
|
872
|
+
]);
|
|
873
|
+
};
|
|
874
|
+
}
|
|
875
|
+
|
|
840
876
|
class eDonusumConfigModule {
|
|
841
877
|
static forRoot() {
|
|
842
878
|
return {
|
|
@@ -887,7 +923,9 @@ class eDonusumConfigModule {
|
|
|
887
923
|
HIT_INBOUND_DESPATCHES_DESPATCH_ROUTE_PROVIDER,
|
|
888
924
|
HIT_BUSINESS_PARTNER_GROUPS_BUSINESS_PARTNER_GROUP_ROUTE_PROVIDER,
|
|
889
925
|
HIT_FAILED_INVOICES_INVOICE_ROUTE_PROVIDER,
|
|
890
|
-
HIT_FAILED_CONNECTOR_INVOICES_INVOICE_ROUTE_PROVIDER
|
|
926
|
+
HIT_FAILED_CONNECTOR_INVOICES_INVOICE_ROUTE_PROVIDER,
|
|
927
|
+
HIT_FAILED_DESPATCHES_DESPATCH_ROUTE_PROVIDER,
|
|
928
|
+
HIT_FAILED_CONNECTOR_DESPATCHES_DESPATCH_ROUTE_PROVIDER
|
|
891
929
|
],
|
|
892
930
|
};
|
|
893
931
|
}
|
|
@@ -903,5 +941,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
903
941
|
* Generated bundle index. Do not edit.
|
|
904
942
|
*/
|
|
905
943
|
|
|
906
|
-
export { E_DONUSUM_ROUTE_PROVIDERS, configureRoutes$
|
|
944
|
+
export { E_DONUSUM_ROUTE_PROVIDERS, configureRoutes$L as configureRoutes, eDonusumConfigModule };
|
|
907
945
|
//# sourceMappingURL=hitsoft-e-donusum-config.mjs.map
|