Merge pull request #123 from dvdhinesh/stock_location_area_data

[9.0] port - stock_location_area_data
This commit is contained in:
Pedro M. Baeza
2016-10-14 02:09:51 +02:00
committed by GitHub
5 changed files with 68 additions and 73 deletions

View File

@@ -1,47 +1,55 @@
Features
========
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
========================
Stock location area data
========================
This module was written to add surface units of measure
Screenshots
===========
... next step (after development)
Installation
============
To install this module, you just need to select the module and insure yourself dependencies are available
Configuration
=============
No particular configuration to use this module
Usage
=====
* n/a
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/153/9.0
Known issues / Roadmap
======================
Bug Tracker
===========
* n/a
Contributors
============
* Adriana Ierfino <adriana.ierfino@savoirfairelinux.com>
* Bruno Joliveau <bruno.joliveau@savoirfairelinux.com>
* Agathe Mollé <agathe.molle@savoirfairelinux.com>
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.
Credits
=======
* Module developed and tested with Odoo version 8.0
* For questions, please contact our support services <support@savoirfairelinux.com>
Images
------
* Odoo Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_.
Contributors
------------
* Adriana Ierfino <adriana.ierfino@savoirfairelinux.com>
* Bruno Joliveau <bruno.joliveau@savoirfairelinux.com>
* Agathe Mollé <agathe.molle@savoirfairelinux.com>
* Dhinesh D <dvdhinesh.mail@gmail.com>
Maintainer
==========
----------
This module is maintained by Savoir-Faire Linux.
.. 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 https://odoo-community.org.

View File

@@ -1 +1,4 @@
# -*- coding: utf-8 -*-
# Copyright 2015 Savoir Faire Linux
# Copyright 2016 Dhinesh D
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

View File

@@ -1,39 +1,24 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# Odoo, Open Source Management Solution
# This module copyright (C) 2015 Savoir-faire Linux
# (<http://www.savoirfairelinux.com>).
#
# 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
# -*- coding: utf-8 -*-
# Copyright 2015 Savoir Faire Linux
# Copyright 2016 Dhinesh D
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Stock Location Area Data',
'version': '8.0.0.1.0',
'author': 'Savoir-faire Linux',
'maintainer': 'Savoir-faire Linux',
'website': 'http://www.savoirfairelinux.com',
'license': 'AGPL-3',
'category': 'Warehouse',
'summary': "Add surface units of measure",
'depends': [
'product',
"name": "Stock Location Area Data",
"summary": "Add surface units of measure",
"version": "9.0.1.0.0",
"category": "Warehouse",
"website": "https://odoo-community.org/",
"author": "Savoir-faire Linux,"
"Dhinesh D,"
"Odoo Community Association (OCA)",
"license": "AGPL-3",
"application": False,
"installable": True,
"depends": [
"product",
],
'data': [
'data/stock_location_area_data.xml',
"data": [
"data/stock_location_area_data.xml",
],
'installable': False,
'application': False,
}

View File

@@ -1,17 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<!-- Copyright 2015 Savoir Faire Linux, 2016 Dhinesh D
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
<odoo>
<record id="product_uom_categ_surface" model="product.uom.categ">
<field name="name">Surface</field>
</record>
<record id="product_uom_m2" model="product.uom">
<field name="name"></field>
<field name="category_id" eval="product_uom_categ_surface"/>
<field name="uom_type">reference</field>
</record>
<record id="product_uom_feet2" model="product.uom">
<field name="name">feet²</field>
<field name="category_id" eval="product_uom_categ_surface"/>
@@ -19,5 +19,4 @@
<field name="factor">10.76391042</field>
</record>
</data>
</openerp>
</odoo>

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB