-
-
-
-
+
@@ -1137,8 +1155,12 @@ es:
.grid-create {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, max-content));
+ max-width: 100%;
grid-gap: 20px;
margin: 0 auto;
+ .col-span-2 {
+ grid-column: span 2;
+ }
}
.flex-one {
diff --git a/src/components/__tests__/Leftmenu.spec.js b/src/components/__tests__/Leftmenu.spec.js
index 4ab8b527f..0bcc587ac 100644
--- a/src/components/__tests__/Leftmenu.spec.js
+++ b/src/components/__tests__/Leftmenu.spec.js
@@ -15,10 +15,7 @@ vi.mock('src/router/modules', () => ({
meta: {
title: 'customers',
icon: 'vn:client',
- },
- menus: {
- main: ['CustomerList', 'CustomerCreate'],
- card: ['CustomerBasicData'],
+ menu: ['CustomerList', 'CustomerCreate'],
},
children: [
{
@@ -50,14 +47,6 @@ vi.mock('src/router/modules', () => ({
],
},
},
- {
- path: 'create',
- name: 'CustomerCreate',
- meta: {
- title: 'createCustomer',
- icon: 'vn:addperson',
- },
- },
],
},
],
@@ -98,7 +87,7 @@ vi.spyOn(vueRouter, 'useRoute').mockReturnValue({
icon: 'vn:client',
moduleName: 'Customer',
keyBinding: 'c',
- menu: 'customer',
+ menu: ['customer'],
},
},
],
@@ -260,15 +249,6 @@ describe('Leftmenu as main', () => {
});
});
- it('should handle a single matched route with a menu', () => {
- const route = {
- matched: [{ meta: { menu: 'customer' } }],
- };
-
- const result = vm.betaGetRoutes();
-
- expect(result.meta.menu).toEqual(route.matched[0].meta.menu);
- });
it('should get routes for main source', () => {
vm.props.source = 'main';
vm.getRoutes();
@@ -351,8 +331,9 @@ describe('addChildren', () => {
it('should handle routes with no meta menu', () => {
const route = {
- meta: {},
- menus: {},
+ meta: {
+ menu: [],
+ },
};
const parent = [];
diff --git a/src/components/common/SendEmailDialog.vue b/src/components/common/SendEmailDialog.vue
index d73133921..254eb9cf9 100644
--- a/src/components/common/SendEmailDialog.vue
+++ b/src/components/common/SendEmailDialog.vue
@@ -56,7 +56,12 @@ async function confirm() {
{{ t('The notification will be sent to the following address') }}
-
+
diff --git a/src/components/common/VnCard.vue b/src/components/common/VnCard.vue
index 44002c22a..620dc2ad2 100644
--- a/src/components/common/VnCard.vue
+++ b/src/components/common/VnCard.vue
@@ -1,50 +1,56 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
diff --git a/src/components/common/VnCardBeta.vue b/src/components/common/VnCardBeta.vue
deleted file mode 100644
index 620dc2ad2..000000000
--- a/src/components/common/VnCardBeta.vue
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
-
-
-
diff --git a/src/components/common/VnDms.vue b/src/components/common/VnDms.vue
index 35308c2c4..bee300f4e 100644
--- a/src/components/common/VnDms.vue
+++ b/src/components/common/VnDms.vue
@@ -177,6 +177,7 @@ function addDefaultData(data) {
name="vn:attach"
class="cursor-pointer"
@click="inputFileRef.pickFiles()"
+ data-cy="attachFile"
>
{{ t('globals.selectFile') }}
diff --git a/src/components/common/VnDmsInput.vue b/src/components/common/VnDmsInput.vue
new file mode 100644
index 000000000..5a3ef351b
--- /dev/null
+++ b/src/components/common/VnDmsInput.vue
@@ -0,0 +1,166 @@
+
+
+
+
+
+
+ {{ t('Download file') }}
+
+ {
+ documentDialogRef.show = true;
+ documentDialogRef.dms = data.dms;
+ }
+ "
+ icon="edit"
+ color="primary"
+ flat
+ :class="{
+ 'no-pointer-events': editDownloadDisabled,
+ }"
+ padding="xs"
+ round
+ >
+ {{ t('Edit document') }}
+
+
+ {{ t('Delete file') }}
+
+
+
{
+ documentDialogRef.show = true;
+ delete documentDialogRef.dms;
+ }
+ "
+ data-cy="dms-create"
+ >
+ {{ t('Create document') }}
+
+
+
+ {
+ let dmsData = data;
+ if (Array.isArray(data)) dmsData = data[0];
+ formRef.formData.dmsFk = dmsData.id;
+ formRef.formData.dms = dmsData;
+ formRef.hasChanges = true;
+ formRef.save();
+ }
+ "
+ />
+
+
+
+es:
+ Document: Documento
+ Download file: Descargar archivo
+ Edit document: Editar documento
+ Delete file: Eliminar archivo
+ Create document: Crear documento
+
+
diff --git a/src/components/common/VnDmsList.vue b/src/components/common/VnDmsList.vue
index 424781a26..aafa9f4ba 100644
--- a/src/components/common/VnDmsList.vue
+++ b/src/components/common/VnDmsList.vue
@@ -389,10 +389,7 @@ defineExpose({