[IMP] account_followups: improve varible name

bzr revid: ara@tinyerp.com-20110711100903-dts3dzar0tv95wh3
This commit is contained in:
ARA (OpenERP) 2011-07-11 15:39:03 +05:30
parent 469ca9b5f4
commit 71a33c47bd
2 changed files with 11 additions and 10 deletions

View File

@ -121,7 +121,7 @@ class account_followup_print_all(osv.osv_memory):
'partner_lang': fields.boolean('Send Email in Partner Language', help='Do not change message text, if you want to send email in partner language, or configure from company'),
'email_body': fields.text('Email body'),
'summary': fields.text('Summary', required=True, readonly=True),
'test': fields.boolean('Test File', help='Check if you want to print follow ups without changing follow ups level.')
'test_print': fields.boolean('Test Print', help='Check if you want to print followups without changing follow ups level.')
}
def _get_summary(self, cr, uid, context=None):
if context is None:
@ -316,14 +316,15 @@ class account_followup_print_all(osv.osv_memory):
to_update = res
data['followup_id'] = 'followup_id' in context and context['followup_id'] or False
date = 'date' in context and context['date'] or data['date']
for id in to_update.keys():
if to_update[id]['partner_id'] in data['partner_ids'] and not data['test']:
cr.execute(
"UPDATE account_move_line "\
"SET followup_line_id=%s, followup_date=%s "\
"WHERE id=%s",
(to_update[id]['level'],
date, int(id),))
if not data['test_print']:
for id in to_update.keys():
if to_update[id]['partner_id'] in data['partner_ids']:
cr.execute(
"UPDATE account_move_line "\
"SET followup_line_id=%s, followup_date=%s "\
"WHERE id=%s",
(to_update[id]['level'],
date, int(id),))
data.update({'date': context['date']})
datas = {
'ids': [],

View File

@ -86,7 +86,7 @@
<page string="Email Settings">
<field name="email_conf" colspan="4"/>
<field name="partner_lang" colspan="4"/>
<field name="test" colspan="4"/>
<field name="test_print" colspan="4"/>
<field name="email_subject" colspan="4"/>
<separator string="Email body" colspan="4" />
<field name="email_body" colspan="4" nolabel="1"/>