@@ -7,7 +7,61 @@ export default {
77 const widgetService = universe . getService ( 'widget' ) ;
88
99 // Register header navigation
10- menuService . registerHeaderMenuItem ( 'Fleet-Ops' , 'console.fleet-ops' , { icon : 'route' , priority : 0 } ) ;
10+ menuService . registerHeaderMenuItem ( 'Fleet-Ops' , 'console.fleet-ops' , {
11+ icon : 'route' ,
12+ priority : 0 ,
13+ description : 'Dispatch, fleet management, driver tracking, and logistics operations.' ,
14+ shortcuts : [
15+ {
16+ title : 'Orders' ,
17+ description : 'Create, dispatch, and track delivery orders in real time.' ,
18+ icon : 'boxes-stacked' ,
19+ route : 'console.fleet-ops.operations.orders' ,
20+ } ,
21+ {
22+ title : 'Places' ,
23+ description : 'Manage saved locations, addresses, and points of interest.' ,
24+ icon : 'location-dot' ,
25+ route : 'console.fleet-ops.management.places' ,
26+ } ,
27+ {
28+ title : 'Drivers' ,
29+ description : 'Manage driver profiles, assignments, and live locations.' ,
30+ icon : 'id-card' ,
31+ route : 'console.fleet-ops.management.drivers' ,
32+ } ,
33+ {
34+ title : 'Vehicles' ,
35+ description : 'View and manage your vehicle fleet and telematics.' ,
36+ icon : 'truck' ,
37+ route : 'console.fleet-ops.management.vehicles' ,
38+ } ,
39+ {
40+ title : 'Fleets' ,
41+ description : 'Organise drivers and vehicles into operational fleets.' ,
42+ icon : 'layer-group' ,
43+ route : 'console.fleet-ops.management.fleets' ,
44+ } ,
45+ {
46+ title : 'Service Rates' ,
47+ description : 'Configure pricing rules and service rate cards.' ,
48+ icon : 'tags' ,
49+ route : 'console.fleet-ops.operations.service-rates' ,
50+ } ,
51+ {
52+ title : 'Devices' ,
53+ description : 'Manage connected telematics devices and their sensor data.' ,
54+ icon : 'microchip' ,
55+ route : 'console.fleet-ops.connectivity.devices' ,
56+ } ,
57+ {
58+ title : 'Reports' ,
59+ description : 'Generate and review operational analytics reports.' ,
60+ icon : 'chart-bar' ,
61+ route : 'console.fleet-ops.analytics.reports' ,
62+ } ,
63+ ] ,
64+ } ) ;
1165
1266 // Register admin sections
1367 menuService . registerAdminMenuPanel (
0 commit comments