diff --git a/CHANGELOG.md b/CHANGELOG.md index d15ad787d..555b4f0ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2416.01] - 2024-04-18 + +### Added + ## [2414.01] - 2024-04-04 ### Added diff --git a/package.json b/package.json index a35020b66..82f21efe6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "salix-front", - "version": "24.14.0", + "version": "24.16.0", "description": "Salix frontend", "productName": "Salix", "author": "Verdnatura", diff --git a/src/components/common/VnDms.vue b/src/components/common/VnDms.vue index 08255f8a5..bf3f4d384 100644 --- a/src/components/common/VnDms.vue +++ b/src/components/common/VnDms.vue @@ -198,9 +198,11 @@ function addDefaultData(data) { en: contentTypesInfo: Allowed file types {allowedContentTypes} EntryDmsDescription: Reference {reference} + SupplierDmsDescription: Reference {reference} es: Generate identifier for original file: Generar identificador para archivo original contentTypesInfo: Tipos de archivo permitidos {allowedContentTypes} EntryDmsDescription: Referencia {reference} + SupplierDmsDescription: Referencia {reference} diff --git a/src/i18n/en/index.js b/src/i18n/en/index.js index 7afffd017..5e0bba5c0 100644 --- a/src/i18n/en/index.js +++ b/src/i18n/en/index.js @@ -1035,6 +1035,7 @@ export default { addresses: 'Addresses', consumption: 'Consumption', agencyTerm: 'Agency agreement', + dms: 'File management', }, list: { payMethod: 'Pay method', diff --git a/src/i18n/es/index.js b/src/i18n/es/index.js index 5b86cf8b7..a4aa9d8cc 100644 --- a/src/i18n/es/index.js +++ b/src/i18n/es/index.js @@ -1034,6 +1034,7 @@ export default { addresses: 'Direcciones', consumption: 'Consumo', agencyTerm: 'Acuerdo agencia', + dms: 'Gestión documental', }, list: { payMethod: 'Método de pago', diff --git a/src/pages/Supplier/Card/SupplierDms.vue b/src/pages/Supplier/Card/SupplierDms.vue new file mode 100644 index 000000000..2848f858d --- /dev/null +++ b/src/pages/Supplier/Card/SupplierDms.vue @@ -0,0 +1,11 @@ + + diff --git a/src/router/modules/Supplier.js b/src/router/modules/Supplier.js index 379a2c2c2..64c48146b 100644 --- a/src/router/modules/Supplier.js +++ b/src/router/modules/Supplier.js @@ -22,6 +22,7 @@ export default { 'SupplierAddresses', 'SupplierConsumption', 'SupplierAgencyTerm', + 'SupplierDms', ], }, children: [ @@ -161,6 +162,15 @@ export default { component: () => import('src/pages/Supplier/Card/SupplierAgencyTerm.vue'), }, + { + path: 'dms', + name: 'SupplierDms', + meta: { + title: 'dms', + icon: 'smb_share', + }, + component: () => import('src/pages/Supplier/Card/SupplierDms.vue'), + }, { path: 'agency-term/create', name: 'SupplierAgencyTermCreate',