[IMP] description

(lp:c2c-financial-addons/6.1 rev 24.1.21)
This commit is contained in:
Guewen Baconnier @ Camptocamp
2012-06-18 15:15:27 +02:00
parent 7d9fe25b8a
commit 26691bdea3
2 changed files with 11 additions and 1 deletions

View File

@@ -28,6 +28,16 @@
'depends': ['account_easy_reconcile'],
'description': """
Advanced reconciliation methods for the module account_easy_reconcile.
The latter is available on: lp:~akretion-team/+junk/account-extra-addons
In addition to the features implemented in account_easy_reconcile, which are:
- 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 reconcilation runs with a few logs
It implements a basis to created advanced reconciliation methods in a few lines
of code.

View File

@@ -31,7 +31,7 @@ class account_easy_reconcile_method(Model):
_get_all_rec_method(cr, uid, context=context)
methods += [
('easy.reconcile.advanced.ref',
'Advanced method, payment ref matches with ref or name'),
'Advanced method. Match partner and ref -> ref/name'),
]
return methods