Skip to content

Commit

Permalink
Merge 26b7bda into 122629c
Browse files Browse the repository at this point in the history
  • Loading branch information
mathi123 committed Jun 9, 2015
2 parents 122629c + 26b7bda commit df40c82
Show file tree
Hide file tree
Showing 23 changed files with 1,598 additions and 0 deletions.
27 changes: 27 additions & 0 deletions machine_manager/README.rst
@@ -0,0 +1,27 @@
Machine Manager
===============

This module is a vertical for Machinery management.

Credits
=======

Contributors
------------
* Daniel Campos <danielcampos@avanzosc.es>
* Pedro M. Baeza <pedro.baeza@serviciobaeza.com>
* Ana Juaristi <ajuaristio@gmail.com>
* Oihane Crucelaegui <oihanecrucelaegi@avanzosc.es>

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.
6 changes: 6 additions & 0 deletions machine_manager/__init__.py
@@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-
##############################################################################
# For copyright and license notices, see __openerp__.py file in root directory
##############################################################################

from . import models
50 changes: 50 additions & 0 deletions machine_manager/__openerp__.py
@@ -0,0 +1,50 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see http://www.gnu.org/licenses/.
#
##############################################################################

{
"name": "Machine Manager",
"version": "1.0",
"author": "OdooMRP team,"
"AvanzOSC,"
"Serv. Tecnol. Avanzados - Pedro M. Baeza,"
"Odoo Community Association (OCA)",
"contributors": [
"Daniel Campos <danielcampos@avanzosc.es>",
"Pedro M. Baeza <pedro.baeza@serviciosbaeza.com>",
"Ana Juaristi <ajuaristio@gmail.com>",
"Oihane Crucelaegui <oihanecrucelaegi@avanzosc.es>",
],
"website": "http://www.odoomrp.com",
"depends": [
"stock",
"account",
"product_manufacturer",
],
"category": "Machinery Management",
"data": [
"views/machinery_view.xml",
"views/machine_model_view.xml",
"views/machinery_users_view.xml",
"views/product_view.xml",
"views/menus.xml",
"security/machinery_security.xml",
"security/ir.model.access.csv",
],
"installable": True,
"application": True,
}

0 comments on commit df40c82

Please sign in to comment.