[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 2bc8e0f..caa9067 100644 (file)
@@ -14,10 +14,10 @@ MAKO_TEMPLATE = u"""Hello ${user.name},
 Here is a list of contracts that have to be renewed for two
 possible reasons:
   - the end of contract date is passed
-  - the customer consumed more support hours than expected
+  - the customer consumed more hours than expected
 
 Can you contact the customer in order to sell a new or renew its contract.
-the contract has been set with a pending state, can you update the status
+The contract has been set with a pending state, can you update the status
 of the analytic account following this rule:
   - Set Done: if the customer does not want to renew
   - Set Open: if the customer purchased an extra contract
@@ -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: