[FIX] accont bank statement balance: do not crash if balance is None

bzr revid: sle@openerp.com-20140407144820-21qlpvd3ik42i78d
This commit is contained in:
Simon Lejeune 2014-04-07 16:48:20 +02:00
parent f99349a165
commit c590c25345
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@
<td><span t-esc="line['s_date']"/></td>
<td><span t-esc="line['j_code']"/></td>
<td class="text-right">
<span t-esc="formatLang(line['s_balance'], digits=2)"/>
<span t-esc="formatLang(line['s_balance'] or 0, digits=2)"/>
</td>
</tr>
</tbody>