From 4e074856ddd3364f72cab8632f65064e7fc158f9 Mon Sep 17 00:00:00 2001 From: Alexandre MOREAU Date: Mon, 1 Jun 2015 11:24:24 +0200 Subject: [PATCH] Add README.rst and remove description from __openerp__.py --- stock_reserve/README.rst | 56 ++++++++++++++++++++++++++++++++++++ stock_reserve/__openerp__.py | 26 ----------------- 2 files changed, 56 insertions(+), 26 deletions(-) create mode 100644 stock_reserve/README.rst diff --git a/stock_reserve/README.rst b/stock_reserve/README.rst new file mode 100644 index 000000000000..ce0914c4c46e --- /dev/null +++ b/stock_reserve/README.rst @@ -0,0 +1,56 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License: AGPL-3 + +Stock Reservation +================= + +Allows to create stock reservations on products. + +Each reservation can have a validity date, once passed, the reservation +is automatically lifted. + +The reserved products are substracted from the virtual stock. It means +that if you reserved a quantity of products which bring the virtual +stock below the minimum, the orderpoint will be triggered and new +purchase orders will be generated. It also implies that the max may be +exceeded if the reservations are canceled. + +If ownership of stock is active in the stock settings, you can specify the +owner on the reservation. + + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed feedback +`here `_. + + +Credits +======= + +Contributors +------------ + +* Guewen Baconnier +* Yannick Vaucher +* Alexandre Fayolle +* Leonardo Pistone + +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/stock_reserve/__openerp__.py b/stock_reserve/__openerp__.py index 1acf2312bff5..7794a39ddead 100644 --- a/stock_reserve/__openerp__.py +++ b/stock_reserve/__openerp__.py @@ -28,32 +28,6 @@ 'complexity': 'normal', 'images': [], 'website': "http://www.camptocamp.com", - 'description': """ -Stock Reservation -================= - -Allows to create stock reservations on products. - -Each reservation can have a validity date, once passed, the reservation -is automatically lifted. - -The reserved products are substracted from the virtual stock. It means -that if you reserved a quantity of products which bring the virtual -stock below the minimum, the orderpoint will be triggered and new -purchase orders will be generated. It also implies that the max may be -exceeded if the reservations are canceled. - -If ownership of stock is active in the stock settings, you can specify the -owner on the reservation. - -Contributors ------------- - -* Guewen Baconnier -* Yannick Vaucher -* Leonardo Pistone - -""", 'depends': ['stock', ], 'demo': [],