[IMP] remove rec_log column no longer used with an history

This commit is contained in:
Guewen Baconnier @ Camptocamp
2012-12-19 14:11:13 +01:00
parent 3ff89320a1
commit 18e08c0e98
2 changed files with 1 additions and 4 deletions

View File

@@ -142,7 +142,6 @@ class account_easy_reconcile(Model):
'account': fields.many2one('account.account', 'Account', required=True),
'reconcile_method': fields.one2many('account.easy.reconcile.method', 'task_id', 'Method'),
'scheduler': fields.many2one('ir.cron', 'scheduler', readonly=True),
'rec_log': fields.text('log', readonly=True),
'unreconciled_count': fields.function(_get_total_unrec,
type='integer', string='Unreconciled Entries'),
'reconciled_partial_count': fields.function(_get_partial_rec,
@@ -152,7 +151,7 @@ class account_easy_reconcile(Model):
def copy_data(self, cr, uid, id, default=None, context=None):
if default is None:
default = {}
default = dict(default, rec_log=False, scheduler=False)
default = dict(default, scheduler=False)
return super(account_easy_reconcile, self).copy_data(
cr, uid, id, default=default, context=context)

View File

@@ -33,8 +33,6 @@ The lines should have the same amount (with the write-off) and the same partner
</page>
</notebook>
<button icon="gtk-ok" name="run_reconcile" colspan = "4" string="Start Auto Reconcilation" type="object"/>
<separator colspan="4" string="Log" />
<field name="rec_log" colspan = "4" nolabel="1"/>
</form>
</field>
</record>