diff --git a/account_easy_reconcile/__openerp__.py b/account_easy_reconcile/__openerp__.py index ecb77b79..6131accf 100755 --- a/account_easy_reconcile/__openerp__.py +++ b/account_easy_reconcile/__openerp__.py @@ -22,27 +22,35 @@ { "name" : "Easy Reconcile", "version" : "1.1", - "depends" : ["account", "base_scheduler_creator" + "depends" : ["account", ], "author" : "Akretion,Camptocamp", "description": """ -This is a shared work between Akretion and Camptocamp in order to provide: +Easy Reconcile +============== + +This is a shared work between Akretion and Camptocamp +in order to provide: - reconciliation facilities for big volume of transactions - setup different profiles of reconciliation by account - each profile can use many methods of reconciliation - - this module is also a base to create others reconciliation methods - which can plug in the profiles - - a profile a reconciliation can be run manually or by a cron - - monitoring of reconciliation runs with an history which keep track - of the reconciled entries + - this module is also a base to create others + reconciliation methods which can plug in the profiles + - a profile a reconciliation can be run manually + or by a cron + - monitoring of reconciliation runs with an history + which keep track of the reconciled entries -2 simple reconciliation methods are integrated in this module, the simple -reconciliations works on 2 lines (1 debit / 1 credit) and do not allows -partial reconcilation, they also match on 1 key, partner or entry name. +2 simple reconciliation methods are integrated +in this module, the simple reconciliations works +on 2 lines (1 debit / 1 credit) and do not allow +partial reconcilation, they also match on 1 key, +partner or entry name. -You may be interested to install also the account_advanced_reconciliation -module available at: https://code.launchpad.net/c2c-financial-addons -This latter add more complex reconciliations, allows multiple lines and partial. +You may be interested to install also the +``account_advanced_reconciliation`` module. +This latter add more complex reconciliations, +allows multiple lines and partial. """, "website" : "http://www.akretion.com/", diff --git a/account_easy_reconcile/easy_reconcile.py b/account_easy_reconcile/easy_reconcile.py index 25b3e370..ea71959e 100644 --- a/account_easy_reconcile/easy_reconcile.py +++ b/account_easy_reconcile/easy_reconcile.py @@ -148,7 +148,6 @@ class account_easy_reconcile(Model): 'name': fields.char('Name', size=64, required=True), '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), 'unreconciled_count': fields.function(_get_total_unrec, type='integer', string='Unreconciled Entries'), 'reconciled_partial_count': fields.function(_get_partial_rec, @@ -166,13 +165,6 @@ class account_easy_reconcile(Model): readonly=True), } - def copy_data(self, cr, uid, id, default=None, context=None): - if default is None: - default = {} - default = dict(default, scheduler=False) - return super(account_easy_reconcile, self).copy_data( - cr, uid, id, default=default, context=context) - def _prepare_run_transient(self, cr, uid, rec_method, context=None): return {'account_id': rec_method.task_id.account.id, 'write_off': rec_method.write_off, diff --git a/account_easy_reconcile/easy_reconcile.xml b/account_easy_reconcile/easy_reconcile.xml index 7f7f8334..6c93e70d 100644 --- a/account_easy_reconcile/easy_reconcile.xml +++ b/account_easy_reconcile/easy_reconcile.xml @@ -15,7 +15,6 @@ - @@ -67,7 +66,6 @@ The lines should have the same amount (with the write-off) and the same partner -