Skip to content

Commit

Permalink
Add partner_area_data and partner_area_management
Browse files Browse the repository at this point in the history
This module was written to enter a location's area based on different units of measure
The information is dependant on the different locations entered
  • Loading branch information
Ehtaga committed Apr 21, 2015
1 parent a7272f4 commit 242544d
Show file tree
Hide file tree
Showing 16 changed files with 609 additions and 0 deletions.
47 changes: 47 additions & 0 deletions partner_area_data/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
Features
========

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

Known issues / Roadmap
======================

* n/a

Contributors
============

* Adriana Ierfino <[email protected]>
* Bruno Joliveau <[email protected]>
* Agathe Mollé <[email protected]>

Credits
=======

* Module developed and tested with Odoo version 8.0
* For questions, please contact our support services <[email protected]>

Maintainer
==========

This module is maintained by Savoir-Faire Linux.
1 change: 1 addition & 0 deletions partner_area_data/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# -*- coding: utf-8 -*-
39 changes: 39 additions & 0 deletions partner_area_data/__openerp__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# -*- 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/>.
#
##############################################################################
{
'name': 'Partner Area Data',
'version': '0.1',
'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',
],
'data': [
'data/partner_area_data.xml',
],
'installable': True,
'application': False,
}
20 changes: 20 additions & 0 deletions partner_area_data/data/partner_area_data.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>

<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">m²</field>
<field name="category_id" eval="product_uom_categ_surface"/>
</record>

<record id="product_uom_feet2" model="product.uom">
<field name="name">feet²</field>
<field name="category_id" eval="product_uom_categ_surface"/>
</record>

</data>
</openerp>
34 changes: 34 additions & 0 deletions partner_area_data/i18n/fr.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * partner_area_data
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-04-21 20:06+0000\n"
"PO-Revision-Date: 2015-04-21 16:08-0500\n"
"Last-Translator: Agathe Mollé <[email protected]>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Poedit 1.5.4\n"
"Language: fr\n"
"X-Poedit-SourceCharset: UTF-8\n"

#. module: partner_area_data
#: model:product.uom.categ,name:partner_area_data.product_uom_categ_surface
msgid "Surface"
msgstr "Surface"

#. module: partner_area_data
#: model:product.uom,name:partner_area_data.product_uom_feet2
msgid "feet²"
msgstr "pied²"

#. module: partner_area_data
#: model:product.uom,name:partner_area_data.product_uom_m2
msgid "m²"
msgstr "m²"
31 changes: 31 additions & 0 deletions partner_area_data/i18n/partner_area_data.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * partner_area_data
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-04-21 20:06+0000\n"
"PO-Revision-Date: 2015-04-21 20:06+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: partner_area_data
#: model:product.uom.categ,name:partner_area_data.product_uom_categ_surface
msgid "Surface"
msgstr ""

#. module: partner_area_data
#: model:product.uom,name:partner_area_data.product_uom_feet2
msgid "feet²"
msgstr ""

#. module: partner_area_data
#: model:product.uom,name:partner_area_data.product_uom_m2
msgid "m²"
msgstr ""
50 changes: 50 additions & 0 deletions partner_area_management/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
Features
========

This module was written to enter a location's area based on different units of measure
The information is dependant on the different locations entered

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
=====

To use this module, you need to :

- create a location and enter its area dimensions

Known issues / Roadmap
======================

* n/a

Contributors
============

* Adriana Ierfino <[email protected]>
* Bruno Joliveau <[email protected]>
* Agathe Mollé <[email protected]>

Credits
=======

* Module developed and tested with Odoo version 8.0
* For questions, please contact our support services <[email protected]>

Maintainer
==========

This module is maintained by Savoir-Faire Linux.
5 changes: 5 additions & 0 deletions partner_area_management/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# -*- coding: utf-8 -*-

from . import (
models,
)
41 changes: 41 additions & 0 deletions partner_area_management/__openerp__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# -*- 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/>.
#
##############################################################################
{
'name': 'Partner Area Management',
'version': '0.1',
'author': 'Savoir-faire Linux',
'maintainer': 'Savoir-faire Linux',
'website': 'http://www.savoirfairelinux.com',
'license': 'AGPL-3',
'category': 'Warehouse',
'summary': "Enter a location's area based on different units of measure",
'depends': [
'stock',
'partner_area_data'
],
'data': [
'views/res_company.xml',
'views/stock_location.xml',
],
'installable': True,
'application': False,
}
81 changes: 81 additions & 0 deletions partner_area_management/i18n/fr.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * partner_area_management
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-04-21 20:09+0000\n"
"PO-Revision-Date: 2015-04-21 16:19-0500\n"
"Last-Translator: Agathe Mollé <[email protected]>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Poedit 1.5.4\n"
"Language: fr\n"
"X-Poedit-SourceCharset: UTF-8\n"

#. module: partner_area_management
#: model:ir.model,name:partner_area_management.model_res_company
msgid "Companies"
msgstr "Sociétés"

#. module: partner_area_management
#: view:stock.location:partner_area_management.partner_area_management_stock_location_search
#: field:stock.location,area_dimension:0
msgid "Dimension"
msgstr "Dimension"

#. module: partner_area_management
#: field:stock.location,active_dimension:0
msgid "Area Dimension"
msgstr "Dimension de la surface"

#. module: partner_area_management
#: view:stock.location:partner_area_management.partner_area_management_stock_location_search
msgid "Group By"
msgstr "Grouper par"

#. module: partner_area_management
#: model:ir.model,name:partner_area_management.model_stock_location
msgid "Inventory Locations"
msgstr "Emplacements d'inventaire"

#. module: partner_area_management
#: view:res.company:partner_area_management.partner_area_management_res_company_form_view
msgid "Locations"
msgstr "Emplacements"

#. module: partner_area_management
#: view:stock.location:partner_area_management.partner_area_management_stock_location_search
msgid "Owner"
msgstr "Propriétaire"

#. module: partner_area_management
#: view:stock.location:partner_area_management.partner_area_management_stock_location_search
msgid "Partner"
msgstr "Partenaire"

#. module: partner_area_management
#: view:stock.location:partner_area_management.partner_area_management_stock_location_form_view
msgid "Surface"
msgstr "Surface"

#. module: partner_area_management
#: help:stock.location,location_uom:0
msgid "This field corresponds to the unit of measure of the location"
msgstr "Ce champ correspond à l'unité de mesure de l'emplacement"

#. module: partner_area_management
#: help:res.company,locations_uom:0
msgid ""
"This field corresponds to the unit of measure of the warehouse locations"
msgstr "Ce champ correspond à l'unité de mesure des emplacements de l'entrepôt"

#. module: partner_area_management
#: field:res.company,locations_uom:0 field:stock.location,location_uom:0
msgid "Unit of Measure"
msgstr "Unité de mesure"
Loading

0 comments on commit 242544d

Please sign in to comment.