From c681fc12a91b51f200a9e16db4b606efee2b9223 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Kuzn=C3=ADk?= Date: Wed, 13 May 2015 19:20:33 +0100 Subject: [PATCH] [IMP] Move description to README.rst --- product_warranty/README.rst | 48 +++++++++++++++++++++++++++++++++ product_warranty/__openerp__.py | 20 -------------- 2 files changed, 48 insertions(+), 20 deletions(-) create mode 100644 product_warranty/README.rst diff --git a/product_warranty/README.rst b/product_warranty/README.rst new file mode 100644 index 00000000..70f169fe --- /dev/null +++ b/product_warranty/README.rst @@ -0,0 +1,48 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License: AGPL-3 + +Product Warranty +================ + +Extends the product warranty management with warranty details on product / +supplier relation: + +* supplier warranty duration +* Set default return address for company (if different from standard one) +* Whether to return product to company, supplier, other + +Usage +===== + +The new information is not explicitly used by the system until you install +another module that makes use of it, e.g. RMA Claim (Product Return +Management). + +Credits +======= + +Contributors +------------ + +* Emmanuel Samyn +* Paulius Sladkevičius +* Benoît Guillot +* David Beal +* Maxime Chambreuil +* Joël Grand-Guillaume +* Ondřej Kuzník + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit http://odoo-community.org. diff --git a/product_warranty/__openerp__.py b/product_warranty/__openerp__.py index ff802a44..f0d15262 100644 --- a/product_warranty/__openerp__.py +++ b/product_warranty/__openerp__.py @@ -22,22 +22,6 @@ 'name': 'Product warranty', 'version': '1.0', 'category': 'Generic Modules/Product', - 'description': """ -Product Warranty -================ - -Extend the product warranty management with warranty details on product / -supplier relation: - -* supplier warranty duration -* Set default return address for company (if different from standard one) -* return product to company, supplier, other - - -Those informations are used in the RMA Claim (Product Return Management) -module. - -""", 'author': "Akretion,Odoo Community Association (OCA)", 'website': 'http://akretion.com', 'license': 'AGPL-3', @@ -50,9 +34,5 @@ module. 'demo_xml': [], 'test': [], 'installable': True, - 'active': False, - 'certificate': '', 'images': ['images/product_warranty.png'], } - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: