diff --git a/front/core/components/table/style.scss b/front/core/components/table/style.scss index 7da20fe82..dea26a462 100644 --- a/front/core/components/table/style.scss +++ b/front/core/components/table/style.scss @@ -102,7 +102,7 @@ vn-table { & > vn-one { overflow: hidden; text-overflow: ellipsis; - font-size: 0.75rem; + font-size: 1rem; } & > vn-one:nth-child(2) h3 { diff --git a/modules/ticket/back/methods/ticket/summary.js b/modules/ticket/back/methods/ticket/summary.js index 760a71e2b..037aee8b1 100644 --- a/modules/ticket/back/methods/ticket/summary.js +++ b/modules/ticket/back/methods/ticket/summary.js @@ -63,7 +63,7 @@ module.exports = Self => { }, { relation: 'address', scope: { - fields: ['street', 'city', 'provinceFk', 'phone', 'mobile'], + fields: ['street', 'city', 'provinceFk', 'phone', 'mobile', 'postalCode'], include: { relation: 'province', scope: { diff --git a/modules/ticket/front/basic-data/step-one/locale/es.yml b/modules/ticket/front/basic-data/step-one/locale/es.yml index ab804aea5..116392b89 100644 --- a/modules/ticket/front/basic-data/step-one/locale/es.yml +++ b/modules/ticket/front/basic-data/step-one/locale/es.yml @@ -2,4 +2,5 @@ No delivery zone available for this landing date: No hay una zona de reparto dis No delivery zone available for this shipping date: No hay una zona de reparto disponible para la fecha de preparación seleccionada No delivery zone available for this parameters: No hay una zona de reparto disponible con estos parámetros Deleted: Eliminado -Zone: Zona \ No newline at end of file +Zone: Zona +Edit address: Editar dirección \ No newline at end of file diff --git a/modules/ticket/front/summary/index.js b/modules/ticket/front/summary/index.js index 5887be153..440d97567 100644 --- a/modules/ticket/front/summary/index.js +++ b/modules/ticket/front/summary/index.js @@ -16,10 +16,11 @@ class Controller extends Summary { get formattedAddress() { if (!this.summary) return ''; - let address = this.summary.address; - let province = address.province ? `(${address.province.name})` : ''; + const address = this.summary.address; + const postcode = address.postalCode; + const province = address.province ? `(${address.province.name})` : ''; - return `${address.street} - ${address.city} ${province}`; + return `${address.street} - ${postcode} - ${address.city} ${province}`; } loadData() { diff --git a/modules/ticket/front/summary/index.spec.js b/modules/ticket/front/summary/index.spec.js index e94f316de..9f836e204 100644 --- a/modules/ticket/front/summary/index.spec.js +++ b/modules/ticket/front/summary/index.spec.js @@ -27,18 +27,19 @@ describe('Ticket', () => { }); describe('formattedAddress()', () => { - it('should return a full fromatted address with city and province', () => { + it('should return the full fromatted address with city and province', () => { controller.summary = { address: { province: { name: 'Gotham' }, street: '1007 Mountain Drive', + postalCode: 46060, city: 'Gotham' } }; - expect(controller.formattedAddress).toEqual('1007 Mountain Drive - Gotham (Gotham)'); + expect(controller.formattedAddress).toEqual('1007 Mountain Drive - 46060 - Gotham (Gotham)'); }); }); });