From 1b72572440bb22ac15934488f70b357ea03d340c Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Tue, 2 Apr 2024 11:58:30 +0000 Subject: [PATCH 1/3] FIX render HTML --- print/templates/email/zone-included/zone-included.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/print/templates/email/zone-included/zone-included.html b/print/templates/email/zone-included/zone-included.html index 78915faad..e4fe08247 100644 --- a/print/templates/email/zone-included/zone-included.html +++ b/print/templates/email/zone-included/zone-included.html @@ -18,7 +18,7 @@ - + {{ zone.zn.name }} {{ zone.zoneFk }} {{ zone.z.price }} From 1f8afc074d3c98a11c84be1d5bb4c33eaad8a725 Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Wed, 3 Apr 2024 05:49:40 +0000 Subject: [PATCH 2/3] Actualizar print/templates/email/zone-included/zone-included.html --- print/templates/email/zone-included/zone-included.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/print/templates/email/zone-included/zone-included.html b/print/templates/email/zone-included/zone-included.html index e4fe08247..0484e0919 100644 --- a/print/templates/email/zone-included/zone-included.html +++ b/print/templates/email/zone-included/zone-included.html @@ -18,7 +18,7 @@ - + {{ zone.zn.name }} {{ zone.zoneFk }} {{ zone.z.price }} From 3449e271504344c3bd20d32027ea8333b66a1982 Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Wed, 3 Apr 2024 05:50:04 +0000 Subject: [PATCH 3/3] Actualizar print/templates/email/zone-included/zone-included.js --- print/templates/email/zone-included/zone-included.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/print/templates/email/zone-included/zone-included.js b/print/templates/email/zone-included/zone-included.js index 4de4777f3..ed6a59b40 100755 --- a/print/templates/email/zone-included/zone-included.js +++ b/print/templates/email/zone-included/zone-included.js @@ -8,5 +8,10 @@ module.exports = { }, props: { zoneCollisions: {type: Array, required: true} + }, + computed: { + zones() { + return JSON.parse(this.zoneCollisions); + } } };