[IMP] l10n_be: escape special char in phone when submitting vat declaration through xml

bzr revid: qdp-launchpad@openerp.com-20120208111415-u0qbv5s7yvogfokc
This commit is contained in:
Quentin (OpenERP) 2012-02-08 12:14:15 +01:00
parent 69e513cdb4
commit c88f14efdf
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ class l10n_be_vat_declaration(osv.osv_memory):
'city': city,
'country_code': country_code,
'email': email,
'phone': phone.replace('.','').replace('/',''),
'phone': phone.replace('.','').replace('/','').replace('(','').replace(')','').replace(' ',''),
'send_ref': send_ref,
'quarter': quarter,
'month': starting_month,