diff --git a/src/i18n/locale/en.yml b/src/i18n/locale/en.yml index 5ef3a5472..7f212ca30 100644 --- a/src/i18n/locale/en.yml +++ b/src/i18n/locale/en.yml @@ -442,6 +442,7 @@ ticket: sms: Sms notes: Notes sale: Sale + weeklyTickets: Weekly tickets list: nickname: Nickname state: State diff --git a/src/i18n/locale/es.yml b/src/i18n/locale/es.yml index cfadd57b3..ff357492b 100644 --- a/src/i18n/locale/es.yml +++ b/src/i18n/locale/es.yml @@ -440,6 +440,7 @@ ticket: sms: Sms notes: Notas sale: Lineas del pedido + weeklyTickets: Tickets programados list: nickname: Alias state: Estado diff --git a/src/pages/Ticket/TicketWeekly.vue b/src/pages/Ticket/TicketWeekly.vue new file mode 100644 index 000000000..50b4c0451 --- /dev/null +++ b/src/pages/Ticket/TicketWeekly.vue @@ -0,0 +1,327 @@ + + + + + +es: + You are going to delete this weekly ticket: Vas a eliminar este ticket programado + This ticket will be removed from weekly tickets! Continue anyway?: Este ticket se eliminará de tickets programados! ¿Continuar de todas formas? + diff --git a/src/pages/Ticket/locale/en.yml b/src/pages/Ticket/locale/en.yml new file mode 100644 index 000000000..a4c5b78ac --- /dev/null +++ b/src/pages/Ticket/locale/en.yml @@ -0,0 +1,9 @@ +weeklyTickets: + id: Ticket ID + client: Client + shipment: Shipment + agency: Agency + warehouse: Warehouse + salesperson: Salesperson + search: Search weekly tickets + searchInfo: Search weekly tickets by id or client id diff --git a/src/pages/Ticket/locale/es.yml b/src/pages/Ticket/locale/es.yml index 5348b29b9..0e2f77d73 100644 --- a/src/pages/Ticket/locale/es.yml +++ b/src/pages/Ticket/locale/es.yml @@ -1,2 +1,11 @@ +weeklyTickets: + id: ID Ticket + client: Cliente + shipment: Salida + agency: Agencia + warehouse: Almacén + salesperson: Comercial + search: Buscar por tickets programados + searchInfo: Buscar tickets programados por el identificador o el identificador del cliente Search ticket: Buscar ticket You can search by ticket id or alias: Puedes buscar por id o alias del ticket diff --git a/src/router/modules/ticket.js b/src/router/modules/ticket.js index 6cb7291dc..e92ba6650 100644 --- a/src/router/modules/ticket.js +++ b/src/router/modules/ticket.js @@ -11,7 +11,7 @@ export default { component: RouterView, redirect: { name: 'TicketMain' }, menus: { - main: ['TicketList'], + main: ['TicketList', 'TicketWeekly'], card: ['TicketBoxing', 'TicketSms', 'TicketSale'], }, children: [ @@ -40,6 +40,15 @@ export default { }, component: () => import('src/pages/Ticket/TicketCreate.vue'), }, + { + name: 'TicketWeekly', + path: 'weekly', + meta: { + title: 'weeklyTickets', + icon: 'access_time', + }, + component: () => import('src/pages/Ticket/TicketWeekly.vue'), + }, ], }, {