~romaindeheele/banking-addons/bank-statement-reconcile-60

« back to all changes in this revision

Viewing changes to account_easy_reconcile/__openerp__.py

[MRG] [FIX] remove the dependency on base_scheduler_creator and fix manifest's description

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
{
23
23
    "name" : "Easy Reconcile",
24
24
    "version" : "1.1",
25
 
    "depends" : ["account", "base_scheduler_creator"
 
25
    "depends" : ["account",
26
26
                ],
27
27
    "author" : "Akretion,Camptocamp",
28
28
    "description": """
29
 
This is a shared work between Akretion and Camptocamp in order to provide:
 
29
Easy Reconcile
 
30
==============
 
31
 
 
32
This is a shared work between Akretion and Camptocamp
 
33
in order to provide:
30
34
 - reconciliation facilities for big volume of transactions
31
35
 - setup different profiles of reconciliation by account
32
36
 - each profile can use many methods of reconciliation
33
 
 - this module is also a base to create others reconciliation methods
34
 
    which can plug in the profiles
35
 
 - a profile a reconciliation can be run manually or by a cron
36
 
 - monitoring of reconciliation runs with an history which keep track
37
 
   of the reconciled entries
38
 
 
39
 
2 simple reconciliation methods are integrated in this module, the simple
40
 
reconciliations works on 2 lines (1 debit / 1 credit) and do not allows
41
 
partial reconcilation, they also match on 1 key, partner or entry name.
42
 
 
43
 
You may be interested to install also the account_advanced_reconciliation
44
 
module available at: https://code.launchpad.net/c2c-financial-addons
45
 
This latter add more complex reconciliations, allows multiple lines and partial.
 
37
 - this module is also a base to create others
 
38
   reconciliation methods which can plug in the profiles
 
39
 - a profile a reconciliation can be run manually
 
40
   or by a cron
 
41
 - monitoring of reconciliation runs with an history
 
42
   which keep track of the reconciled entries
 
43
 
 
44
2 simple reconciliation methods are integrated
 
45
in this module, the simple reconciliations works
 
46
on 2 lines (1 debit / 1 credit) and do not allow
 
47
partial reconcilation, they also match on 1 key,
 
48
partner or entry name.
 
49
 
 
50
You may be interested to install also the
 
51
``account_advanced_reconciliation`` module.
 
52
This latter add more complex reconciliations,
 
53
allows multiple lines and partial.
46
54
 
47
55
""",
48
56
    "website" : "http://www.akretion.com/",