diff --git a/src/i18n/locale/en.yml b/src/i18n/locale/en.yml
index 4de062ab0b..636774d54b 100644
--- a/src/i18n/locale/en.yml
+++ b/src/i18n/locale/en.yml
@@ -98,6 +98,7 @@ globals:
worker: Worker
now: Now
name: Name
+ new: New
errors:
statusUnauthorized: Access denied
statusInternalServerError: An internal server error has ocurred
@@ -1174,8 +1175,8 @@ agency:
isOwn: Own
isAnyVolumeAllowed: Any volume allowed
notification:
- removeItem: Agency removed successfully
removeItemError: Error removing agency
+ removeItem: WorkCenter removed successfully
pageTitles:
agency: Agency
searchBar:
diff --git a/src/i18n/locale/es.yml b/src/i18n/locale/es.yml
index 10b77ef492..a2c7dd4dc1 100644
--- a/src/i18n/locale/es.yml
+++ b/src/i18n/locale/es.yml
@@ -98,6 +98,7 @@ globals:
worker: Trabajador
now: Ahora
name: Nombre
+ new: Nuevo
errors:
statusUnauthorized: Acceso denegado
statusInternalServerError: Ha ocurrido un error interno del servidor
@@ -1175,6 +1176,7 @@ agency:
removeItem: Agencia eliminada correctamente
notification:
removeItemError: Error al eliminar la agencia
+ removeItem: Centro de trabajo eliminado correctamente
pageTitles:
agency: Agencia
searchBar:
diff --git a/src/pages/Agency/AgencyList.vue b/src/pages/Agency/AgencyList.vue
index c042066252..88abba3eb7 100644
--- a/src/pages/Agency/AgencyList.vue
+++ b/src/pages/Agency/AgencyList.vue
@@ -14,7 +14,6 @@ function navigate(id) {
}
function exprBuilder(param, value) {
if (!value) return;
- console.log('value: ', value);
if (param !== 'search') return;
if (!isNaN(value)) return { id: value };
@@ -62,13 +61,6 @@ function exprBuilder(param, value) {
:disable="true"
/>
-
-
-
diff --git a/src/pages/Agency/Card/AgencyDescriptor.vue b/src/pages/Agency/Card/AgencyDescriptor.vue
index 311f5d3a57..0fa89d07d3 100644
--- a/src/pages/Agency/Card/AgencyDescriptor.vue
+++ b/src/pages/Agency/Card/AgencyDescriptor.vue
@@ -19,7 +19,6 @@ const { params } = useRoute();
const entityId = computed(() => props.id || params.id);
const { store } = useArrayData('Parking');
const card = computed(() => store.data);
-console.log('card: ', card);
diff --git a/src/pages/Agency/Card/AgencySummary.vue b/src/pages/Agency/Card/AgencySummary.vue
index 4c9e7052f5..0e80813aa3 100644
--- a/src/pages/Agency/Card/AgencySummary.vue
+++ b/src/pages/Agency/Card/AgencySummary.vue
@@ -38,10 +38,15 @@ const filter = {
/>
-
+
diff --git a/src/pages/Agency/Card/AgencyWorkcenter.vue b/src/pages/Agency/Card/AgencyWorkcenter.vue
index ed9f156894..b5e846300f 100644
--- a/src/pages/Agency/Card/AgencyWorkcenter.vue
+++ b/src/pages/Agency/Card/AgencyWorkcenter.vue
@@ -134,6 +134,8 @@ async function deleteWorCenter(id) {
Search agency: Buscar agencia
You can search by name: Puedes buscar por nombre
This workCenter is already assigned to this agency: Este workCenter ya está asignado a esta agencia
+ Add work center: Añadir centro de trabajo
+ workCenter: Centro de trabajo
en:
isOwn: Has owner
isAnyVolumeAllowed: Allows any volume
diff --git a/src/pages/Customer/components/CustomerCreditCreate.vue b/src/pages/Customer/components/CustomerCreditCreate.vue
index ae6d4de89c..729deb2584 100644
--- a/src/pages/Customer/components/CustomerCreditCreate.vue
+++ b/src/pages/Customer/components/CustomerCreditCreate.vue
@@ -13,7 +13,6 @@ const router = useRouter();
const initialData = ref({});
const setClient = (data) => {
- console.log(data.credit);
initialData.value.credit = data.credit;
};
diff --git a/src/pages/Ticket/TicketCreate.vue b/src/pages/Ticket/TicketCreate.vue
index 3fb9c00837..c6cd252440 100644
--- a/src/pages/Ticket/TicketCreate.vue
+++ b/src/pages/Ticket/TicketCreate.vue
@@ -73,7 +73,6 @@ const fetchAddresses = async (formData) => {
const { defaultAddress } = selectedClient.value;
formData.addressId = defaultAddress.id;
- console.log();
} catch (err) {
console.error(`Error fetching addresses`, err);
return err.response;