[FIX] trigger DOM blur event on searchview root to allow autocomplete to close-on...
[odoo/odoo.git] / addons / account_analytic_analysis / cron_account_analytic_account.py
index 581bbfe..caa9067 100644 (file)
@@ -32,9 +32,7 @@ Here is the list of contracts to renew:
       % endif
       - Dates: ${account.date_start} to ${account.date and account.date or '???'}
       - Contacts:
-        % for address in account.partner_id.address:
-        . ${address.name}, ${address.phone}, ${address.email}
-        % endfor
+        ${account.partner_id.name}, ${account.partner_id.phone}, ${account.partner_id.email}
 
   % endfor
 % endfor
@@ -77,3 +75,5 @@ class analytic_account(osv.osv):
         return True
 
 analytic_account()
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: