Skip to content

Commit

Permalink
[REF] OCA convention : module description;
Browse files Browse the repository at this point in the history
  • Loading branch information
legalsylvain committed Jul 24, 2015
1 parent 115cb40 commit 0b13675
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 40 deletions.
47 changes: 47 additions & 0 deletions product_replenishment_cost/README.rst
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.

58 changes: 18 additions & 40 deletions product_replenishment_cost/__openerp__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
}

0 comments on commit 0b13675

Please sign in to comment.