From 4c5a8070f05e2fc6706b069abc32f831e50add44 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 00000000..18d0dcf0 --- /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 a4119bf0..631087ee 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',