From c90f280224ea6ce231ed8dd5e01f61a67e1f1796 Mon Sep 17 00:00:00 2001 From: Alex Comba Date: Fri, 21 Nov 2014 15:23:55 +0100 Subject: [PATCH] Move the description to README.rst --- account_move_template/README.rst | 16 ++++++++++++++++ account_move_template/__openerp__.py | 15 --------------- 2 files changed, 16 insertions(+), 15 deletions(-) create mode 100644 account_move_template/README.rst 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',