[FIX] l10n_be:vat declaration

bzr revid: qdp-launchpad@openerp.com-20120207131446-b9x5v8bdeu9mf1yy
This commit is contained in:
Quentin (OpenERP) 2012-02-07 14:14:46 +01:00
parent 7f7cb45527
commit 69e513cdb4
1 changed files with 2 additions and 2 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,
'phone': phone.replace('.','').replace('/',''),
'send_ref': send_ref,
'quarter': quarter,
'month': starting_month,
@ -189,7 +189,7 @@ class l10n_be_vat_declaration(osv.osv_memory):
for item in cases_list:
grid_amount_data = {
'code': str(int(item['code'])),
'amount': str(item['sum_period']),
'amount': str(abs(item['sum_period'])),
}
data_of_file += '\n\t\t\t<ns2:Amount GridNumber="%(code)s">%(amount)s</ns2:Amount''>' % (grid_amount_data)