forked from OCA/margin-analysis
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[REF] OCA convention : module description;
- Loading branch information
1 parent
115cb40
commit 0b13675
Showing
2 changed files
with
65 additions
and
40 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,47 @@ | ||
Product Replenishment Cost | ||
========================== | ||
|
||
Provides an overridable method on product which compute the Replenishment cost | ||
of a product. By default it just returns the value of "Cost price" field, but | ||
using the product_cost_incl_bom module, it will return the costing from the | ||
bom. | ||
|
||
As it is a generic module, you can also setup your own way of computing the | ||
replenishment_cost for your product. | ||
|
||
All OCA modules to compute margins are based on it, so you'll be able to use | ||
them in your own way. | ||
|
||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/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/margin-analysis/issues/new?body=module:%20product_replenishment_cost%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
|
||
Credits | ||
======= | ||
|
||
Contributors | ||
------------ | ||
|
||
* Alexandre Fayolle <[email protected]> | ||
* Yannick Vaucher <[email protected]> | ||
* Joël Grand-Guillaume <[email protected]> | ||
* Sylvain Le Gal (https://twitter.com/legalsylvain) | ||
|
||
Maintainer | ||
---------- | ||
|
||
.. image:: http://odoo-community.org/logo.png | ||
:alt: Odoo Community Association | ||
:target: http://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 |
---|---|---|
|
@@ -18,43 +18,21 @@ | |
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
# | ||
############################################################################## | ||
{'name': 'Replenishment cost', | ||
'version': '1.0.3', | ||
'author': "Camptocamp,Odoo Community Association (OCA)", | ||
'maintainer': 'Camptocamp', | ||
'category': 'Products', | ||
'depends': [ | ||
'product', | ||
], | ||
'description': """ | ||
Product Replenishment Cost | ||
========================== | ||
Provides an overridable method on product which compute the Replenishment cost | ||
of a product. By default it just returns the value of "Cost price" field, but | ||
using the product_cost_incl_bom module, it will return the costing from the | ||
bom. | ||
As it is a generic module, you can also setup your own way of computing the | ||
cost_price for your product. | ||
All OCA modules to compute margins are based on it, so you'll be able to use | ||
them in your own way. | ||
Contributors | ||
------------ | ||
* Alexandre Fayolle <[email protected]> | ||
* Yannick Vaucher <[email protected]> | ||
* Joël Grand-Guillaume <[email protected]> | ||
""", | ||
'website': 'http://www.camptocamp.com/', | ||
'data': [ | ||
'views/view.xml', | ||
'demo/res_groups.yml', | ||
], | ||
'test': [ | ||
'test/cost_price_update.yml', | ||
], | ||
'license': 'AGPL-3', | ||
} | ||
{ | ||
'name': 'Replenishment cost', | ||
'version': '2.0', | ||
'author': "Camptocamp,GRAP,Odoo Community Association (OCA)", | ||
'category': 'Products', | ||
'depends': [ | ||
'product', | ||
], | ||
'website': 'http://www.camptocamp.com/', | ||
'data': [ | ||
'views/view.xml', | ||
'demo/res_groups.yml', | ||
], | ||
'test': [ | ||
'test/cost_price_update.yml', | ||
], | ||
'license': 'AGPL-3', | ||
} |