diff --git a/account_move_template/README.rst b/account_move_template/README.rst new file mode 100644 index 000000000..18d0dcf0f --- /dev/null +++ b/account_move_template/README.rst @@ -0,0 +1,16 @@ +Account Move Template +===================== + +Templates for Journal Entries + +User can configure journal entries templates, useful for recurring entries. + +The amount of each template line can be computed (through python code) +or kept as user input. + +If user input, when using the template, user has to fill +the amount of every input lines. + +The journal entry form allows lo load, through a wizard, +the template to use and the amounts to fill. + diff --git a/account_move_template/__openerp__.py b/account_move_template/__openerp__.py index b60e00ab5..207a6f609 100644 --- a/account_move_template/__openerp__.py +++ b/account_move_template/__openerp__.py @@ -23,21 +23,6 @@ 'version': '0.1', 'category': 'Generic Modules/Accounting', 'summary': "Templates for recurring Journal Entries", - 'description': """ -Templates for Journal Entries - -User can configure journal entries templates, useful for recurring entries. - -The amount of each template line can be computed (through python code) -or kept as user input. - -If user input, when using the template, user has to fill -the amount of every input lines. - -The journal entry form allows lo load, through a wizard, -the template to use and the amounts to fill. - -""", 'author': 'Agile Business Group', 'website': 'http://www.agilebg.com', 'license': 'AGPL-3',