+ ${partner_name or _('No Partner')}
+
+ %for line in aged_open_inv[account.id][p_id].get('lines', []):
+
+ ## date
+
${formatLang(line.get('ldate') or '', date=True)}
+ ## move
+
${line.get('move_name') or ''}
+ ## journal
+
${line.get('jcode') or ''}
+ ## label
+
${line.get('lname')}
+ ## reconcile
+
${line.get('rec_name') or ''}
+ ## maturity date
+
${formatLang(line.get('date_maturity') or '', date=True)}
+ ## balance
+
${formatLang(line.get('balance') or 0.0) | amount }
+ ## classifications
+ %for classif in ranges:
+
+ ${formatLang(line.get(classif) or 0.0) | amount }
+
+ %endfor
+
+ %endfor # end of the loop on lines
+
+
${_('Total Partner')}
+
+
+
+
+
+
${formatLang(aged_open_inv[account.id][p_id]['balance']) | amount}
+ %for classif in ranges:
+
${formatLang(aged_open_inv[account.id][p_id][classif]) | amount }
+ %endfor
+
+
+
${_('Total')}
+
+
+
+
+
+
${formatLang(aged_open_inv[account.id]['balance']) | amount}
+ %for classif in ranges:
+
${formatLang(aged_open_inv[account.id][classif]) | amount }
+ %endfor
+
+ %endif
+ %endfor # end of the loop on accounts
+
+
diff --git a/account_financial_report_webkit/report/templates/aged_trial_webkit.mako b/account_financial_report_webkit/report/templates/aged_trial_webkit.mako
index 6ad17d7f..0717e7ad 100644
--- a/account_financial_report_webkit/report/templates/aged_trial_webkit.mako
+++ b/account_financial_report_webkit/report/templates/aged_trial_webkit.mako
@@ -100,9 +100,9 @@
## partner
## Classifications
%for title in ranges_titles:
diff --git a/account_financial_report_webkit/report_menus.xml b/account_financial_report_webkit/report_menus.xml
index 22251ba6..531cdbd3 100644
--- a/account_financial_report_webkit/report_menus.xml
+++ b/account_financial_report_webkit/report_menus.xml
@@ -2,31 +2,35 @@