forked from OCA/stock-logistics-warehouse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add README.rst and remove description from __openerp__.py
- Loading branch information
1 parent
afa13e0
commit aa0733d
Showing
2 changed files
with
56 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <https://github.com/OCA/stock-logistics-warehouse/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 <https://github.com/OCA/stock-logistics-warehouse/issues/new?body=module:%20stock_reserve%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
|
||
|
||
Credits | ||
======= | ||
|
||
Contributors | ||
------------ | ||
|
||
* Guewen Baconnier <[email protected]> | ||
* Yannick Vaucher <[email protected]> | ||
* Alexandre Fayolle <[email protected]> | ||
* Leonardo Pistone <[email protected]> | ||
|
||
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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 <[email protected]> | ||
* Yannick Vaucher <[email protected]> | ||
* Leonardo Pistone <[email protected]> | ||
""", | ||
'depends': ['stock', | ||
], | ||
'demo': [], | ||
|