@@ -1055,6 +1055,9 @@ app.controller('mainController', function($scope, $detection, $http, $mdSidenav,
if(value === 'undefined' || value === undefined) {
value = '';
}
+ if(key === 'telephone_fixe' || key === 'telephone_portable') {
+ value = value.replace(/ /g, '').replace(/\./g, '').replace(/-/g, '');
+ }
if(typeof value === 'boolean') {
values += value + ', ';