diff --git a/src/i18n/en/index.js b/src/i18n/en/index.js
index 5bf4be887..000cbf5e8 100644
--- a/src/i18n/en/index.js
+++ b/src/i18n/en/index.js
@@ -889,6 +889,7 @@ export default {
basicData: 'Basic Data',
summary: 'Summary',
RouteRoadmap: 'Roadmaps',
+ RouteRoadmapCreate: 'Create roadmap',
tickets: 'Tickets',
log: 'Log',
autonomous: 'Autonomous',
diff --git a/src/i18n/es/index.js b/src/i18n/es/index.js
index cea9c9a6c..7d43aaa7f 100644
--- a/src/i18n/es/index.js
+++ b/src/i18n/es/index.js
@@ -943,6 +943,7 @@ export default {
basicData: 'Datos básicos',
summary: 'Resumen',
RouteRoadmap: 'Troncales',
+ RouteRoadmapCreate: 'Crear troncal',
tickets: 'Tickets',
log: 'Historial',
autonomous: 'Autónomos',
diff --git a/src/pages/Route/Roadmap/RoadmapCreate.vue b/src/pages/Route/Roadmap/RoadmapCreate.vue
new file mode 100644
index 000000000..214983dd3
--- /dev/null
+++ b/src/pages/Route/Roadmap/RoadmapCreate.vue
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+es:
+ Roadmap: Troncal
+ ETD date: Fecha ETD
+ ETD hour: Hora ETD
+
diff --git a/src/pages/Route/RouteRoadmap.vue b/src/pages/Route/RouteRoadmap.vue
index 6962176e4..fd4d52f62 100644
--- a/src/pages/Route/RouteRoadmap.vue
+++ b/src/pages/Route/RouteRoadmap.vue
@@ -226,7 +226,7 @@ function confirmRemove() {
>
-
+
{{ props.value }}
-
-
-
-
-
-
-
-
+
+
+
+
+ {{ t('Create roadmap') }}
+
+
+
@@ -283,6 +283,7 @@ es:
Are you sure you want to continue?: ¿Seguro que quieres continuar?
The date can't be empty: La fecha no puede estar vacía
Clone Selected Routes: Clonar rutas seleccionadas
+ Create roadmap: Crear trocal
Roadmap: Trocal
Carrier: Transportista
Plate: Placa
diff --git a/src/router/modules/route.js b/src/router/modules/route.js
index 32e4619ba..f38601a26 100644
--- a/src/router/modules/route.js
+++ b/src/router/modules/route.js
@@ -38,6 +38,15 @@ export default {
},
component: () => import('src/pages/Route/RouteRoadmap.vue'),
},
+ {
+ path: 'roadmap/create',
+ name: 'RouteRoadmapCreate',
+ meta: {
+ title: 'RouteRoadmapCreate',
+ icon: 'vn:troncales',
+ },
+ component: () => import('src/pages/Route/Roadmap/RoadmapCreate.vue'),
+ },
{
path: 'create',
name: 'RouteCreate',