@hitsoft/smart-warehouse 1.0.1
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/README.md +24 -0
- package/config/enums/index.d.ts +1 -0
- package/config/enums/route-names.d.ts +12 -0
- package/config/index.d.ts +5 -0
- package/config/providers/connector-params-route.provider.d.ts +8 -0
- package/config/providers/index.d.ts +7 -0
- package/config/providers/order-station-route.provider.d.ts +8 -0
- package/config/providers/orders-route.provider.d.ts +8 -0
- package/config/providers/quantity-correction-route.provider.d.ts +8 -0
- package/config/providers/route.provider.d.ts +8 -0
- package/config/providers/shelf-placement-route.provider.d.ts +8 -0
- package/config/providers/shelf-transfer-route.provider.d.ts +8 -0
- package/config/providers/shortages-route.provider.d.ts +8 -0
- package/config/providers/station.provider.d.ts +8 -0
- package/config/providers/stock-report.d.ts +8 -0
- package/config/public-api.d.ts +3 -0
- package/config/smart-warehouse-config.module.d.ts +8 -0
- package/esm2020/config/enums/index.mjs +2 -0
- package/esm2020/config/enums/route-names.mjs +2 -0
- package/esm2020/config/hitsoft-smart-warehouse-config.mjs +5 -0
- package/esm2020/config/providers/connector-params-route.provider.mjs +25 -0
- package/esm2020/config/providers/index.mjs +8 -0
- package/esm2020/config/providers/order-station-route.provider.mjs +25 -0
- package/esm2020/config/providers/orders-route.provider.mjs +25 -0
- package/esm2020/config/providers/quantity-correction-route.provider.mjs +25 -0
- package/esm2020/config/providers/route.provider.mjs +24 -0
- package/esm2020/config/providers/shelf-placement-route.provider.mjs +25 -0
- package/esm2020/config/providers/shelf-transfer-route.provider.mjs +25 -0
- package/esm2020/config/providers/shortages-route.provider.mjs +25 -0
- package/esm2020/config/providers/station.provider.mjs +25 -0
- package/esm2020/config/providers/stock-report.mjs +25 -0
- package/esm2020/config/public-api.mjs +4 -0
- package/esm2020/config/smart-warehouse-config.module.mjs +37 -0
- package/esm2020/hitsoft-smart-warehouse.mjs +5 -0
- package/esm2020/lib/components/connector-params/connector-params.component.mjs +182 -0
- package/esm2020/lib/components/connector-params/connector-params.module.mjs +41 -0
- package/esm2020/lib/components/order-station/order-station.component.mjs +160 -0
- package/esm2020/lib/components/order-station/order-station.module.mjs +57 -0
- package/esm2020/lib/components/orders/orders.component.mjs +445 -0
- package/esm2020/lib/components/orders/orders.module.mjs +75 -0
- package/esm2020/lib/components/quantity-correction/quantity-correction.component.mjs +231 -0
- package/esm2020/lib/components/quantity-correction/quantity-correction.module.mjs +41 -0
- package/esm2020/lib/components/shelf-placement/shelf-placement.component.mjs +297 -0
- package/esm2020/lib/components/shelf-placement/shelf-placement.module.mjs +66 -0
- package/esm2020/lib/components/shelf-transfer/shelf-transfer.component.mjs +146 -0
- package/esm2020/lib/components/shelf-transfer/shelf-transfer.module.mjs +41 -0
- package/esm2020/lib/components/shortages/shortages.component.mjs +75 -0
- package/esm2020/lib/components/shortages/shortages.module.mjs +42 -0
- package/esm2020/lib/components/smart-warehouse.component.mjs +18 -0
- package/esm2020/lib/components/stock-report/stock-report.component.mjs +29 -0
- package/esm2020/lib/components/stock-report/stock-report.module.mjs +42 -0
- package/esm2020/lib/guards/connector-params.guard.mjs +58 -0
- package/esm2020/lib/hit-proxy/connector-params/connector-params.service.mjs +27 -0
- package/esm2020/lib/hit-proxy/devexpress-query-builder/devexpress-load-options.model.mjs +2 -0
- package/esm2020/lib/hit-proxy/devexpress-query-builder/devexpress-query-builder.mjs +62 -0
- package/esm2020/lib/hit-proxy/inventory/inventory.service.mjs +21 -0
- package/esm2020/lib/hit-proxy/order-station/order-station.service.mjs +18 -0
- package/esm2020/lib/hit-proxy/orders/model.mjs +2 -0
- package/esm2020/lib/hit-proxy/orders/order.service.mjs +81 -0
- package/esm2020/lib/hit-proxy/quantity-correction/quantity-correction.service.mjs +47 -0
- package/esm2020/lib/hit-proxy/shortages/model.mjs +2 -0
- package/esm2020/lib/hit-proxy/shortages/shortages.service.mjs +26 -0
- package/esm2020/lib/hit-proxy/stations/station.service.mjs +86 -0
- package/esm2020/lib/hit-proxy/stock-report/stock-report.service.mjs +22 -0
- package/esm2020/lib/hit-proxy/stock-transfer/stock-transfer.service.mjs +21 -0
- package/esm2020/lib/hit-proxy/warehouse/warehouse.service.mjs +65 -0
- package/esm2020/lib/services/smart-warehouse.service.mjs +21 -0
- package/esm2020/lib/smart-warehouse-routing.module.mjs +79 -0
- package/esm2020/lib/smart-warehouse.module.mjs +34 -0
- package/esm2020/lib/stations/station.component.mjs +43 -0
- package/esm2020/lib/stations/station.module.mjs +42 -0
- package/esm2020/public-api.mjs +20 -0
- package/fesm2015/hitsoft-smart-warehouse-config.mjs +264 -0
- package/fesm2015/hitsoft-smart-warehouse-config.mjs.map +1 -0
- package/fesm2015/hitsoft-smart-warehouse.mjs +2577 -0
- package/fesm2015/hitsoft-smart-warehouse.mjs.map +1 -0
- package/fesm2020/hitsoft-smart-warehouse-config.mjs +264 -0
- package/fesm2020/hitsoft-smart-warehouse-config.mjs.map +1 -0
- package/fesm2020/hitsoft-smart-warehouse.mjs +2515 -0
- package/fesm2020/hitsoft-smart-warehouse.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/connector-params/connector-params.component.d.ts +44 -0
- package/lib/components/connector-params/connector-params.module.d.ts +13 -0
- package/lib/components/order-station/order-station.component.d.ts +31 -0
- package/lib/components/order-station/order-station.module.d.ts +16 -0
- package/lib/components/orders/orders.component.d.ts +63 -0
- package/lib/components/orders/orders.module.d.ts +17 -0
- package/lib/components/quantity-correction/quantity-correction.component.d.ts +52 -0
- package/lib/components/quantity-correction/quantity-correction.module.d.ts +16 -0
- package/lib/components/shelf-placement/shelf-placement.component.d.ts +93 -0
- package/lib/components/shelf-placement/shelf-placement.module.d.ts +17 -0
- package/lib/components/shelf-transfer/shelf-transfer.component.d.ts +26 -0
- package/lib/components/shelf-transfer/shelf-transfer.module.d.ts +16 -0
- package/lib/components/shortages/shortages.component.d.ts +25 -0
- package/lib/components/shortages/shortages.module.d.ts +17 -0
- package/lib/components/smart-warehouse.component.d.ts +10 -0
- package/lib/components/stock-report/stock-report.component.d.ts +16 -0
- package/lib/components/stock-report/stock-report.module.d.ts +17 -0
- package/lib/guards/connector-params.guard.d.ts +21 -0
- package/lib/hit-proxy/connector-params/connector-params.service.d.ts +46 -0
- package/lib/hit-proxy/devexpress-query-builder/devexpress-load-options.model.d.ts +8 -0
- package/lib/hit-proxy/devexpress-query-builder/devexpress-query-builder.d.ts +17 -0
- package/lib/hit-proxy/inventory/inventory.service.d.ts +22 -0
- package/lib/hit-proxy/order-station/order-station.service.d.ts +24 -0
- package/lib/hit-proxy/orders/model.d.ts +74 -0
- package/lib/hit-proxy/orders/order.service.d.ts +26 -0
- package/lib/hit-proxy/quantity-correction/quantity-correction.service.d.ts +88 -0
- package/lib/hit-proxy/shortages/model.d.ts +17 -0
- package/lib/hit-proxy/shortages/shortages.service.d.ts +13 -0
- package/lib/hit-proxy/stations/station.service.d.ts +25 -0
- package/lib/hit-proxy/stock-report/stock-report.service.d.ts +12 -0
- package/lib/hit-proxy/stock-transfer/stock-transfer.service.d.ts +19 -0
- package/lib/hit-proxy/warehouse/warehouse.service.d.ts +59 -0
- package/lib/services/smart-warehouse.service.d.ts +10 -0
- package/lib/smart-warehouse-routing.module.d.ts +7 -0
- package/lib/smart-warehouse.module.d.ts +13 -0
- package/lib/stations/station.component.d.ts +14 -0
- package/lib/stations/station.module.d.ts +17 -0
- package/package.json +45 -0
- package/public-api.d.ts +16 -0
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { APP_INITIALIZER, NgModule } from '@angular/core';
|
|
3
|
+
import { RoutesService } from '@abp/ng.core';
|
|
4
|
+
|
|
5
|
+
const SMART_WAREHOUSE_ROUTE_PROVIDERS = [
|
|
6
|
+
{
|
|
7
|
+
provide: APP_INITIALIZER,
|
|
8
|
+
useFactory: configureRoutes,
|
|
9
|
+
deps: [RoutesService],
|
|
10
|
+
multi: true,
|
|
11
|
+
},
|
|
12
|
+
];
|
|
13
|
+
function configureRoutes(routes) {
|
|
14
|
+
return () => {
|
|
15
|
+
routes.add([
|
|
16
|
+
{
|
|
17
|
+
path: '/smart-warehouse',
|
|
18
|
+
name: "SmartWarehouse::Menu:SmartWarehouse" /* eSmartWarehouseRouteNames.SmartWarehouse */,
|
|
19
|
+
iconClass: 'fas fa-book',
|
|
20
|
+
layout: "application" /* eLayoutType.application */,
|
|
21
|
+
order: 3,
|
|
22
|
+
},
|
|
23
|
+
]);
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
const ORDERS_ROUTE_PROVIDER = [
|
|
28
|
+
{
|
|
29
|
+
provide: APP_INITIALIZER,
|
|
30
|
+
useFactory: configureOrdersRoutes,
|
|
31
|
+
deps: [RoutesService],
|
|
32
|
+
multi: true,
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
function configureOrdersRoutes(routes) {
|
|
36
|
+
return () => {
|
|
37
|
+
routes.add([
|
|
38
|
+
{
|
|
39
|
+
path: '/smart-warehouse/orders',
|
|
40
|
+
name: "SmartWarehouse::Menu:Orders" /* eSmartWarehouseRouteNames.Orders */,
|
|
41
|
+
parentName: "SmartWarehouse::Menu:SmartWarehouse" /* eSmartWarehouseRouteNames.SmartWarehouse */,
|
|
42
|
+
iconClass: 'fas fa-shopping-cart',
|
|
43
|
+
layout: "application" /* eLayoutType.application */,
|
|
44
|
+
order: 1,
|
|
45
|
+
},
|
|
46
|
+
]);
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
const SHELF_PLACEMENT_ROUTE_PROVIDER = [
|
|
51
|
+
{
|
|
52
|
+
provide: APP_INITIALIZER,
|
|
53
|
+
useFactory: configureShelfPlacementRoutes,
|
|
54
|
+
deps: [RoutesService],
|
|
55
|
+
multi: true,
|
|
56
|
+
},
|
|
57
|
+
];
|
|
58
|
+
function configureShelfPlacementRoutes(routes) {
|
|
59
|
+
return () => {
|
|
60
|
+
routes.add([
|
|
61
|
+
{
|
|
62
|
+
path: '/smart-warehouse/shelf-placement',
|
|
63
|
+
name: "Raf Yerle\u015Ftirme" /* eSmartWarehouseRouteNames.ShelfPlacement */,
|
|
64
|
+
parentName: "SmartWarehouse::Menu:SmartWarehouse" /* eSmartWarehouseRouteNames.SmartWarehouse */,
|
|
65
|
+
iconClass: 'fas fa-warehouse',
|
|
66
|
+
layout: "application" /* eLayoutType.application */,
|
|
67
|
+
order: 2,
|
|
68
|
+
},
|
|
69
|
+
]);
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
const SHELF_TRANSFER_ROUTE_PROVIDER = [
|
|
74
|
+
{
|
|
75
|
+
provide: APP_INITIALIZER,
|
|
76
|
+
useFactory: configureShelfTransferRoutes$2,
|
|
77
|
+
deps: [RoutesService],
|
|
78
|
+
multi: true,
|
|
79
|
+
},
|
|
80
|
+
];
|
|
81
|
+
function configureShelfTransferRoutes$2(routes) {
|
|
82
|
+
return () => {
|
|
83
|
+
routes.add([
|
|
84
|
+
{
|
|
85
|
+
path: '/smart-warehouse/shelf-transfer',
|
|
86
|
+
name: "Raf Transfer" /* eSmartWarehouseRouteNames.ShelfTransfer */,
|
|
87
|
+
parentName: "SmartWarehouse::Menu:SmartWarehouse" /* eSmartWarehouseRouteNames.SmartWarehouse */,
|
|
88
|
+
iconClass: 'fas fa-exchange-alt',
|
|
89
|
+
layout: "application" /* eLayoutType.application */,
|
|
90
|
+
order: 3,
|
|
91
|
+
},
|
|
92
|
+
]);
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
const ORDER_STATION_ROUTE_PROVIDER = [
|
|
97
|
+
{
|
|
98
|
+
provide: APP_INITIALIZER,
|
|
99
|
+
useFactory: configureOrderStationRoutes,
|
|
100
|
+
deps: [RoutesService],
|
|
101
|
+
multi: true,
|
|
102
|
+
},
|
|
103
|
+
];
|
|
104
|
+
function configureOrderStationRoutes(routes) {
|
|
105
|
+
return () => {
|
|
106
|
+
routes.add([
|
|
107
|
+
{
|
|
108
|
+
path: '/smart-warehouse/order-station',
|
|
109
|
+
name: "Sipari\u015F-Toplama Noktas\u0131 E\u015Fle\u015Ftirme" /* eSmartWarehouseRouteNames.OrderStation */,
|
|
110
|
+
parentName: "SmartWarehouse::Menu:SmartWarehouse" /* eSmartWarehouseRouteNames.SmartWarehouse */,
|
|
111
|
+
iconClass: 'fas fa-link',
|
|
112
|
+
layout: "application" /* eLayoutType.application */,
|
|
113
|
+
order: 4,
|
|
114
|
+
},
|
|
115
|
+
]);
|
|
116
|
+
};
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
const STOCK_REPORT_ROUTE_PROVIDER = [
|
|
120
|
+
{
|
|
121
|
+
provide: APP_INITIALIZER,
|
|
122
|
+
useFactory: configureShelfTransferRoutes$1,
|
|
123
|
+
deps: [RoutesService],
|
|
124
|
+
multi: true,
|
|
125
|
+
},
|
|
126
|
+
];
|
|
127
|
+
function configureShelfTransferRoutes$1(routes) {
|
|
128
|
+
return () => {
|
|
129
|
+
routes.add([
|
|
130
|
+
{
|
|
131
|
+
path: '/smart-warehouse/stock-report',
|
|
132
|
+
name: "Depo Stok Raporu" /* eSmartWarehouseRouteNames.StockReport */,
|
|
133
|
+
parentName: "SmartWarehouse::Menu:SmartWarehouse" /* eSmartWarehouseRouteNames.SmartWarehouse */,
|
|
134
|
+
iconClass: 'fas fa-exchange-alt',
|
|
135
|
+
layout: "application" /* eLayoutType.application */,
|
|
136
|
+
order: 3,
|
|
137
|
+
},
|
|
138
|
+
]);
|
|
139
|
+
};
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
const SHORTAGES_ROUTE_PROVIDER = [
|
|
143
|
+
{
|
|
144
|
+
provide: APP_INITIALIZER,
|
|
145
|
+
useFactory: configureShortagesRoutes,
|
|
146
|
+
deps: [RoutesService],
|
|
147
|
+
multi: true,
|
|
148
|
+
},
|
|
149
|
+
];
|
|
150
|
+
function configureShortagesRoutes(routes) {
|
|
151
|
+
return () => {
|
|
152
|
+
routes.add([
|
|
153
|
+
{
|
|
154
|
+
path: '/smart-warehouse/shortages',
|
|
155
|
+
name: "Fark Listesi" /* eSmartWarehouseRouteNames.Shortages */,
|
|
156
|
+
parentName: "SmartWarehouse::Menu:SmartWarehouse" /* eSmartWarehouseRouteNames.SmartWarehouse */,
|
|
157
|
+
iconClass: 'fas fa-exclamation-triangle',
|
|
158
|
+
layout: "application" /* eLayoutType.application */,
|
|
159
|
+
order: 4,
|
|
160
|
+
},
|
|
161
|
+
]);
|
|
162
|
+
};
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
const STATION_ROUTE_PROVIDER = [
|
|
166
|
+
{
|
|
167
|
+
provide: APP_INITIALIZER,
|
|
168
|
+
useFactory: configureShelfTransferRoutes,
|
|
169
|
+
deps: [RoutesService],
|
|
170
|
+
multi: true,
|
|
171
|
+
},
|
|
172
|
+
];
|
|
173
|
+
function configureShelfTransferRoutes(routes) {
|
|
174
|
+
return () => {
|
|
175
|
+
routes.add([
|
|
176
|
+
{
|
|
177
|
+
path: '/smart-warehouse/station',
|
|
178
|
+
name: "\u0130stasyonlar" /* eSmartWarehouseRouteNames.Station */,
|
|
179
|
+
parentName: "SmartWarehouse::Menu:SmartWarehouse" /* eSmartWarehouseRouteNames.SmartWarehouse */,
|
|
180
|
+
iconClass: 'fas fa-exchange-alt',
|
|
181
|
+
layout: "application" /* eLayoutType.application */,
|
|
182
|
+
order: 3,
|
|
183
|
+
},
|
|
184
|
+
]);
|
|
185
|
+
};
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
const QUANTITY_CORRECTION_ROUTE_PROVIDER = [
|
|
189
|
+
{
|
|
190
|
+
provide: APP_INITIALIZER,
|
|
191
|
+
useFactory: configureQuantityCorrectionRoutes,
|
|
192
|
+
deps: [RoutesService],
|
|
193
|
+
multi: true,
|
|
194
|
+
},
|
|
195
|
+
];
|
|
196
|
+
function configureQuantityCorrectionRoutes(routes) {
|
|
197
|
+
return () => {
|
|
198
|
+
routes.add([
|
|
199
|
+
{
|
|
200
|
+
path: '/smart-warehouse/quantity-correction',
|
|
201
|
+
name: "Al\u0131nacak Miktar D\u00FCzeltme" /* eSmartWarehouseRouteNames.QuantityCorrection */,
|
|
202
|
+
parentName: "SmartWarehouse::Menu:SmartWarehouse" /* eSmartWarehouseRouteNames.SmartWarehouse */,
|
|
203
|
+
iconClass: 'fas fa-pencil-alt',
|
|
204
|
+
layout: "application" /* eLayoutType.application */,
|
|
205
|
+
order: 8,
|
|
206
|
+
},
|
|
207
|
+
]);
|
|
208
|
+
};
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
const CONNECTOR_PARAMS_ROUTE_PROVIDER = [
|
|
212
|
+
{
|
|
213
|
+
provide: APP_INITIALIZER,
|
|
214
|
+
useFactory: configureConnectorParamsRoutes,
|
|
215
|
+
deps: [RoutesService],
|
|
216
|
+
multi: true,
|
|
217
|
+
},
|
|
218
|
+
];
|
|
219
|
+
function configureConnectorParamsRoutes(routes) {
|
|
220
|
+
return () => {
|
|
221
|
+
routes.add([
|
|
222
|
+
{
|
|
223
|
+
path: '/smart-warehouse/connector-params',
|
|
224
|
+
name: "Parametreler" /* eSmartWarehouseRouteNames.ConnectorParams */,
|
|
225
|
+
parentName: "SmartWarehouse::Menu:SmartWarehouse" /* eSmartWarehouseRouteNames.SmartWarehouse */,
|
|
226
|
+
iconClass: 'fas fa-plug',
|
|
227
|
+
layout: "application" /* eLayoutType.application */,
|
|
228
|
+
order: 99,
|
|
229
|
+
},
|
|
230
|
+
]);
|
|
231
|
+
};
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
class SmartWarehouseConfigModule {
|
|
235
|
+
static forRoot() {
|
|
236
|
+
return {
|
|
237
|
+
ngModule: SmartWarehouseConfigModule,
|
|
238
|
+
providers: [SMART_WAREHOUSE_ROUTE_PROVIDERS,
|
|
239
|
+
ORDERS_ROUTE_PROVIDER,
|
|
240
|
+
SHELF_PLACEMENT_ROUTE_PROVIDER,
|
|
241
|
+
SHELF_TRANSFER_ROUTE_PROVIDER,
|
|
242
|
+
ORDER_STATION_ROUTE_PROVIDER,
|
|
243
|
+
STOCK_REPORT_ROUTE_PROVIDER,
|
|
244
|
+
SHORTAGES_ROUTE_PROVIDER,
|
|
245
|
+
STATION_ROUTE_PROVIDER,
|
|
246
|
+
QUANTITY_CORRECTION_ROUTE_PROVIDER,
|
|
247
|
+
CONNECTOR_PARAMS_ROUTE_PROVIDER
|
|
248
|
+
],
|
|
249
|
+
};
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
SmartWarehouseConfigModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SmartWarehouseConfigModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
253
|
+
SmartWarehouseConfigModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.3.0", ngImport: i0, type: SmartWarehouseConfigModule });
|
|
254
|
+
SmartWarehouseConfigModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SmartWarehouseConfigModule });
|
|
255
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SmartWarehouseConfigModule, decorators: [{
|
|
256
|
+
type: NgModule
|
|
257
|
+
}] });
|
|
258
|
+
|
|
259
|
+
/**
|
|
260
|
+
* Generated bundle index. Do not edit.
|
|
261
|
+
*/
|
|
262
|
+
|
|
263
|
+
export { CONNECTOR_PARAMS_ROUTE_PROVIDER, ORDERS_ROUTE_PROVIDER, ORDER_STATION_ROUTE_PROVIDER, QUANTITY_CORRECTION_ROUTE_PROVIDER, SHELF_PLACEMENT_ROUTE_PROVIDER, SHELF_TRANSFER_ROUTE_PROVIDER, SMART_WAREHOUSE_ROUTE_PROVIDERS, SmartWarehouseConfigModule, configureConnectorParamsRoutes, configureOrderStationRoutes, configureOrdersRoutes, configureQuantityCorrectionRoutes, configureRoutes, configureShelfPlacementRoutes, configureShelfTransferRoutes$2 as configureShelfTransferRoutes };
|
|
264
|
+
//# sourceMappingURL=hitsoft-smart-warehouse-config.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hitsoft-smart-warehouse-config.mjs","sources":["../../../projects/smart-warehouse/config/src/providers/route.provider.ts","../../../projects/smart-warehouse/config/src/providers/orders-route.provider.ts","../../../projects/smart-warehouse/config/src/providers/shelf-placement-route.provider.ts","../../../projects/smart-warehouse/config/src/providers/shelf-transfer-route.provider.ts","../../../projects/smart-warehouse/config/src/providers/order-station-route.provider.ts","../../../projects/smart-warehouse/config/src/providers/stock-report.ts","../../../projects/smart-warehouse/config/src/providers/shortages-route.provider.ts","../../../projects/smart-warehouse/config/src/providers/station.provider.ts","../../../projects/smart-warehouse/config/src/providers/quantity-correction-route.provider.ts","../../../projects/smart-warehouse/config/src/providers/connector-params-route.provider.ts","../../../projects/smart-warehouse/config/src/smart-warehouse-config.module.ts","../../../projects/smart-warehouse/config/src/hitsoft-smart-warehouse-config.ts"],"sourcesContent":["import { eLayoutType, RoutesService } from '@abp/ng.core';\r\nimport { APP_INITIALIZER } from '@angular/core';\r\nimport { eSmartWarehouseRouteNames } from '../enums/route-names';\r\n\r\nexport const SMART_WAREHOUSE_ROUTE_PROVIDERS = [\r\n {\r\n provide: APP_INITIALIZER,\r\n useFactory: configureRoutes,\r\n deps: [RoutesService],\r\n multi: true,\r\n },\r\n];\r\n\r\nexport function configureRoutes(routes: RoutesService) {\r\n return () => {\r\n routes.add([\r\n {\r\n path: '/smart-warehouse',\r\n name: eSmartWarehouseRouteNames.SmartWarehouse,\r\n iconClass: 'fas fa-book',\r\n layout: eLayoutType.application,\r\n order: 3,\r\n },\r\n ]);\r\n };\r\n}\r\n","import { eLayoutType, RoutesService } from '@abp/ng.core';\r\nimport { APP_INITIALIZER } from '@angular/core';\r\nimport { eSmartWarehouseRouteNames } from '../enums/route-names';\r\n\r\nexport const ORDERS_ROUTE_PROVIDER = [\r\n {\r\n provide: APP_INITIALIZER,\r\n useFactory: configureOrdersRoutes,\r\n deps: [RoutesService],\r\n multi: true,\r\n },\r\n];\r\n\r\nexport function configureOrdersRoutes(routes: RoutesService) {\r\n return () => {\r\n routes.add([\r\n {\r\n path: '/smart-warehouse/orders',\r\n name: eSmartWarehouseRouteNames.Orders,\r\n parentName: eSmartWarehouseRouteNames.SmartWarehouse,\r\n iconClass: 'fas fa-shopping-cart',\r\n layout: eLayoutType.application,\r\n order: 1,\r\n },\r\n ]);\r\n };\r\n}\r\n","import { eLayoutType, RoutesService } from '@abp/ng.core';\r\nimport { APP_INITIALIZER } from '@angular/core';\r\nimport { eSmartWarehouseRouteNames } from '../enums/route-names';\r\n\r\nexport const SHELF_PLACEMENT_ROUTE_PROVIDER = [\r\n {\r\n provide: APP_INITIALIZER,\r\n useFactory: configureShelfPlacementRoutes,\r\n deps: [RoutesService],\r\n multi: true,\r\n },\r\n];\r\n\r\nexport function configureShelfPlacementRoutes(routes: RoutesService) {\r\n return () => {\r\n routes.add([\r\n {\r\n path: '/smart-warehouse/shelf-placement',\r\n name: eSmartWarehouseRouteNames.ShelfPlacement,\r\n parentName: eSmartWarehouseRouteNames.SmartWarehouse,\r\n iconClass: 'fas fa-warehouse',\r\n layout: eLayoutType.application,\r\n order: 2,\r\n },\r\n ]);\r\n };\r\n}\r\n","import { eLayoutType, RoutesService } from '@abp/ng.core';\r\nimport { APP_INITIALIZER } from '@angular/core';\r\nimport { eSmartWarehouseRouteNames } from '../enums/route-names';\r\n\r\nexport const SHELF_TRANSFER_ROUTE_PROVIDER = [\r\n {\r\n provide: APP_INITIALIZER,\r\n useFactory: configureShelfTransferRoutes,\r\n deps: [RoutesService],\r\n multi: true,\r\n },\r\n];\r\n\r\nexport function configureShelfTransferRoutes(routes: RoutesService) {\r\n return () => {\r\n routes.add([\r\n {\r\n path: '/smart-warehouse/shelf-transfer',\r\n name: eSmartWarehouseRouteNames.ShelfTransfer,\r\n parentName: eSmartWarehouseRouteNames.SmartWarehouse,\r\n iconClass: 'fas fa-exchange-alt',\r\n layout: eLayoutType.application,\r\n order: 3,\r\n },\r\n ]);\r\n };\r\n}\r\n","import { eLayoutType, RoutesService } from '@abp/ng.core';\r\nimport { APP_INITIALIZER } from '@angular/core';\r\nimport { eSmartWarehouseRouteNames } from '../enums/route-names';\r\n\r\nexport const ORDER_STATION_ROUTE_PROVIDER = [\r\n {\r\n provide: APP_INITIALIZER,\r\n useFactory: configureOrderStationRoutes,\r\n deps: [RoutesService],\r\n multi: true,\r\n },\r\n];\r\n\r\nexport function configureOrderStationRoutes(routes: RoutesService) {\r\n return () => {\r\n routes.add([\r\n {\r\n path: '/smart-warehouse/order-station',\r\n name: eSmartWarehouseRouteNames.OrderStation,\r\n parentName: eSmartWarehouseRouteNames.SmartWarehouse,\r\n iconClass: 'fas fa-link',\r\n layout: eLayoutType.application,\r\n order: 4,\r\n },\r\n ]);\r\n };\r\n}\r\n","import { eLayoutType, RoutesService } from '@abp/ng.core';\r\nimport { APP_INITIALIZER } from '@angular/core';\r\nimport { eSmartWarehouseRouteNames } from '../enums/route-names';\r\n\r\nexport const STOCK_REPORT_ROUTE_PROVIDER = [\r\n {\r\n provide: APP_INITIALIZER,\r\n useFactory: configureShelfTransferRoutes,\r\n deps: [RoutesService],\r\n multi: true,\r\n },\r\n];\r\n\r\nexport function configureShelfTransferRoutes(routes: RoutesService) {\r\n return () => {\r\n routes.add([\r\n {\r\n path: '/smart-warehouse/stock-report',\r\n name: eSmartWarehouseRouteNames.StockReport,\r\n parentName: eSmartWarehouseRouteNames.SmartWarehouse,\r\n iconClass: 'fas fa-exchange-alt',\r\n layout: eLayoutType.application,\r\n order: 3,\r\n },\r\n ]);\r\n };\r\n}\r\n","import { eLayoutType, RoutesService } from '@abp/ng.core';\nimport { APP_INITIALIZER } from '@angular/core';\nimport { eSmartWarehouseRouteNames } from '../enums/route-names';\n\nexport const SHORTAGES_ROUTE_PROVIDER = [\n {\n provide: APP_INITIALIZER,\n useFactory: configureShortagesRoutes,\n deps: [RoutesService],\n multi: true,\n },\n];\n\nexport function configureShortagesRoutes(routes: RoutesService) {\n return () => {\n routes.add([\n {\n path: '/smart-warehouse/shortages',\n name: eSmartWarehouseRouteNames.Shortages,\n parentName: eSmartWarehouseRouteNames.SmartWarehouse,\n iconClass: 'fas fa-exclamation-triangle',\n layout: eLayoutType.application,\n order: 4,\n },\n ]);\n };\n}\n","import { eLayoutType, RoutesService } from '@abp/ng.core';\r\nimport { APP_INITIALIZER } from '@angular/core';\r\nimport { eSmartWarehouseRouteNames } from '../enums/route-names';\r\n\r\nexport const STATION_ROUTE_PROVIDER = [\r\n {\r\n provide: APP_INITIALIZER,\r\n useFactory: configureShelfTransferRoutes,\r\n deps: [RoutesService],\r\n multi: true,\r\n },\r\n];\r\n\r\nexport function configureShelfTransferRoutes(routes: RoutesService) {\r\n return () => {\r\n routes.add([\r\n {\r\n path: '/smart-warehouse/station',\r\n name: eSmartWarehouseRouteNames.Station,\r\n parentName: eSmartWarehouseRouteNames.SmartWarehouse,\r\n iconClass: 'fas fa-exchange-alt',\r\n layout: eLayoutType.application,\r\n order: 3,\r\n },\r\n ]);\r\n };\r\n}\r\n","import { eLayoutType, RoutesService } from '@abp/ng.core';\r\nimport { APP_INITIALIZER } from '@angular/core';\r\nimport { eSmartWarehouseRouteNames } from '../enums/route-names';\r\n\r\nexport const QUANTITY_CORRECTION_ROUTE_PROVIDER = [\r\n {\r\n provide: APP_INITIALIZER,\r\n useFactory: configureQuantityCorrectionRoutes,\r\n deps: [RoutesService],\r\n multi: true,\r\n },\r\n];\r\n\r\nexport function configureQuantityCorrectionRoutes(routes: RoutesService) {\r\n return () => {\r\n routes.add([\r\n {\r\n path: '/smart-warehouse/quantity-correction',\r\n name: eSmartWarehouseRouteNames.QuantityCorrection,\r\n parentName: eSmartWarehouseRouteNames.SmartWarehouse,\r\n iconClass: 'fas fa-pencil-alt',\r\n layout: eLayoutType.application,\r\n order: 8,\r\n },\r\n ]);\r\n };\r\n}\r\n","import { eLayoutType, RoutesService } from '@abp/ng.core';\r\nimport { APP_INITIALIZER } from '@angular/core';\r\nimport { eSmartWarehouseRouteNames } from '../enums/route-names';\r\n\r\nexport const CONNECTOR_PARAMS_ROUTE_PROVIDER = [\r\n {\r\n provide: APP_INITIALIZER,\r\n useFactory: configureConnectorParamsRoutes,\r\n deps: [RoutesService],\r\n multi: true,\r\n },\r\n];\r\n\r\nexport function configureConnectorParamsRoutes(routes: RoutesService) {\r\n return () => {\r\n routes.add([\r\n {\r\n path: '/smart-warehouse/connector-params',\r\n name: eSmartWarehouseRouteNames.ConnectorParams,\r\n parentName: eSmartWarehouseRouteNames.SmartWarehouse,\r\n iconClass: 'fas fa-plug',\r\n layout: eLayoutType.application,\r\n order: 99,\r\n },\r\n ]);\r\n };\r\n}\r\n","import { ModuleWithProviders, NgModule } from '@angular/core';\r\nimport { SMART_WAREHOUSE_ROUTE_PROVIDERS } from './providers/route.provider';\r\nimport { ORDERS_ROUTE_PROVIDER } from './providers/orders-route.provider';\r\nimport { SHELF_PLACEMENT_ROUTE_PROVIDER } from './providers/shelf-placement-route.provider';\r\nimport { SHELF_TRANSFER_ROUTE_PROVIDER } from './providers/shelf-transfer-route.provider';\r\nimport { ORDER_STATION_ROUTE_PROVIDER } from './providers/order-station-route.provider';\r\nimport { STOCK_REPORT_ROUTE_PROVIDER } from './providers/stock-report';\r\nimport { SHORTAGES_ROUTE_PROVIDER } from './providers/shortages-route.provider';\r\nimport { STATION_ROUTE_PROVIDER } from './providers/station.provider';\r\nimport { QUANTITY_CORRECTION_ROUTE_PROVIDER } from './providers/quantity-correction-route.provider';\r\nimport { CONNECTOR_PARAMS_ROUTE_PROVIDER } from './providers/connector-params-route.provider';\r\n\r\n@NgModule()\r\nexport class SmartWarehouseConfigModule {\r\n static forRoot(): ModuleWithProviders<SmartWarehouseConfigModule> {\r\n return {\r\n ngModule: SmartWarehouseConfigModule,\r\n providers: [SMART_WAREHOUSE_ROUTE_PROVIDERS,\r\n ORDERS_ROUTE_PROVIDER,\r\n SHELF_PLACEMENT_ROUTE_PROVIDER,\r\n SHELF_TRANSFER_ROUTE_PROVIDER,\r\n ORDER_STATION_ROUTE_PROVIDER,\r\n STOCK_REPORT_ROUTE_PROVIDER,\r\n SHORTAGES_ROUTE_PROVIDER,\r\n STATION_ROUTE_PROVIDER,\r\n QUANTITY_CORRECTION_ROUTE_PROVIDER,\r\n CONNECTOR_PARAMS_ROUTE_PROVIDER\r\n ],\r\n };\r\n }\r\n}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["configureShelfTransferRoutes"],"mappings":"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"}
|