[WIP]: removing tests

bzr revid: jco@openerp.com-20121029124118-w90vqg9c0opfk0ha
This commit is contained in:
Josse Colpaert 2012-10-29 13:41:18 +01:00
parent c74e937b0d
commit 81b59fa65f
2 changed files with 26 additions and 28 deletions

View File

@ -15,14 +15,12 @@
<field name="auto_delete" eval="True"/>
<field name="body_html"><![CDATA[
<div style="font-family: 'Lucica Grande', Ubuntu, Arial, Verdana, sans-serif; font-size: 12px; color: rgb(34, 34, 34); background-color: rgb(255, 255, 255); ">
${object.latest_followup_level_id.description}
<p>Hello${object.name and ' ' or ''},</p>
<p>We see in our books that some accounts are not settled yet:</p>
<%for aml in ${object.accountmoveline_ids}>
${aml.debit}
<%endfor>
<p style="border-left: 1px solid #8e0000; margin-left: 30px;">
&nbsp;&nbsp;<strong>REFERENCES</strong><br />

View File

@ -10,27 +10,27 @@
-
!record {model: account.followup.print, id: account_followup_print_0}:
{}
-
I select the follow-up to send it to the partner.
-
!python {model: account.followup.print}: |
self.do_continue(cr, uid, [ref("account_followup_print_0")], {"active_ids": [ref("account_followup.account_followup_print_menu")], "active_id": ref("account_followup.account_followup_print_menu"),
})
-
I select partners whom I want to send follow-ups.
-
!record {model: account.followup.print.all, id: account_followup_print_all_0}:
email_body: 'Date : %(date)s\n\nDear %(partner_name)s,\n\nPlease find in attachment
a reminder of all your unpaid invoices, for a total amount due of:\n\n%(followup_amount).2f
%(company_currency)s\n\nThanks,\n--\n%(user_signature)s\n%(company_name)s'
email_subject: Invoices Reminder
partner_ids:
- base.res_partner_12
partner_lang: 1
-
I send a follow-up mail to partner.
-
!python {model: account.followup.print.all}: |
import time
self.do_mail(cr, uid, [ref("account_followup_print_all_0")], {"active_ids": [ref("account_followup.account_followup_print_menu")], "date": time.strftime('%Y-%m-%d'), "followup_id": ref("account_followup.demo_followup1"), "active_id": ref("account_followup.account_followup_print_menu"),
})
#-
# I select the follow-up to send it to the partner.
# -
# !python {model: account.followup.print}: |
# self.do_continue(cr, uid, [ref("account_followup_print_0")], {"active_ids": [ref("account_followup.account_followup_print_menu")], "active_id": ref("account_followup.account_followup_print_menu"),
# })
# -
# I select partners whom I want to send follow-ups.
# -
# !record {model: account.followup.print.all, id: account_followup_print_all_0}:
# email_body: 'Date : %(date)s\n\nDear %(partner_name)s,\n\nPlease find in attachment
# a reminder of all your unpaid invoices, for a total amount due of:\n\n%(followup_amount).2f
# %(company_currency)s\n\nThanks,\n--\n%(user_signature)s\n%(company_name)s'
# email_subject: Invoices Reminder
# partner_ids:
# - base.res_partner_12
# partner_lang: 1
# -
# I send a follow-up mail to partner.
# -
# !python {model: account.followup.print.all}: |
# import time
# self.do_mail(cr, uid, [ref("account_followup_print_all_0")], {"active_ids": [ref("account_followup.account_followup_print_menu")], "date": time.strftime('%Y-%m-%d'), "followup_id": ref("account_followup.demo_followup1"), "active_id": ref("account_followup.account_followup_print_menu"),
# })