[IMP] Display the line note in the details

When reconciling, it's sometimes useful to have access to the note since the note can be filled with some information by the parser.
This commit is contained in:
Laurent Mignon 2015-03-23 13:36:42 +01:00 committed by Arthur Maniet
parent 8e48eb625d
commit 2faf4b7747
1 changed files with 1 additions and 0 deletions

View File

@ -137,6 +137,7 @@
<tr><td>Description</td><td><t t-esc="line.name"/></td></tr>
<tr><td>Amount</td><td><t t-esc="line.amount_str"/><t t-if="line.amount_currency_str"> (<t t-esc="line.amount_currency_str"/>)</t></td></tr>
<tr><td>Account</td><td><t t-esc="line.account_code"/> <t t-esc="line.account_name"/></td></tr>
<tr t-if="line.note"><td>Note</td><td><t t-esc="line.note"/></td></tr>
</table>
</t>