[FIX] account: report agedpartnerbalance, copy paste error
authorDenis Ledoux <dle@odoo.com>
Tue, 17 Jun 2014 11:47:15 +0000 (13:47 +0200)
committerDenis Ledoux <dle@odoo.com>
Tue, 17 Jun 2014 11:47:15 +0000 (13:47 +0200)
The t-foreach save the iterazied item as not_partner, not as partner

addons/account/views/report_agedpartnerbalance.xml

index 019f32a..c1f9047 100644 (file)
@@ -99,7 +99,7 @@
                         </tr>
                         <tr t-foreach="get_lines_with_out_partner(data['form'])" t-as="not_partner">
                             <td>
-                                <span t-esc="partner['name']"/>
+                                <span t-esc="not_partner['name']"/>
                             </td>
                             <td class="text-right">
                                 <span t-esc="formatLang(not_partner['direction'], currency_obj=res_company.currency_id)"/>