From 7f33f4c56e2bc72329947f5e2739a48b95af370e Mon Sep 17 00:00:00 2001 From: Joan Sanchez Date: Tue, 24 Sep 2019 07:24:17 +0200 Subject: [PATCH 1/2] fixed salixfront deletedTicket icon --- front/core/styles/salixfont.svg | 0 front/core/styles/salixfont.ttf | Bin front/core/styles/salixfont.woff | Bin 3 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 front/core/styles/salixfont.svg mode change 100755 => 100644 front/core/styles/salixfont.ttf mode change 100755 => 100644 front/core/styles/salixfont.woff diff --git a/front/core/styles/salixfont.svg b/front/core/styles/salixfont.svg old mode 100755 new mode 100644 diff --git a/front/core/styles/salixfont.ttf b/front/core/styles/salixfont.ttf old mode 100755 new mode 100644 diff --git a/front/core/styles/salixfont.woff b/front/core/styles/salixfont.woff old mode 100755 new mode 100644 From a091674f08dc520d29688ea657211f4aba24d012 Mon Sep 17 00:00:00 2001 From: Joan Sanchez Date: Tue, 24 Sep 2019 07:47:06 +0200 Subject: [PATCH 2/2] allowed numbers on fiscal name --- modules/client/back/models/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/client/back/models/client.js b/modules/client/back/models/client.js index 740066efa..2522e1413 100644 --- a/modules/client/back/models/client.js +++ b/modules/client/back/models/client.js @@ -168,7 +168,7 @@ module.exports = Self => { } function isAlpha(value) { - const regexp = new RegExp(/^[ñça-zA-Z\s]*$/); + const regexp = new RegExp(/^[ñça-zA-Z0-9\s]*$/); return regexp.test(value); }