-
-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
33a9fa9
commit 76dcd9e
Showing
9 changed files
with
538 additions
and
0 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,64 @@ | ||
Product Brand Manage [product_brand] | ||
=========== | ||
|
||
This module allows odoo users to easily manage product brands. You can | ||
define brands, attach a logo and a description to them. | ||
It also allows to attach a partner to a brand. | ||
|
||
Installation | ||
============ | ||
|
||
To install this module, you need to: | ||
|
||
* git clone https://github.com/OCA/product_attribute --branch 8.0 | ||
* make it available to odoo by adding its location to the addons_path in | ||
/etc/odoo-server.conf | ||
|
||
Configuration | ||
============= | ||
|
||
To configure this module, you need to: | ||
|
||
* no configuration required | ||
|
||
Usage | ||
===== | ||
|
||
To use this module, you need to: | ||
|
||
* go to ... | ||
|
||
For further information, please visit: | ||
|
||
* https://www.odoo.com/forum/help-1 | ||
|
||
Known issues / Roadmap | ||
====================== | ||
|
||
* A view to list or sort products by brand | ||
* add a field with brands assiciated to a Customer or Supplier on | ||
the Customers/Suppliers Form View | ||
|
||
Credits | ||
======= | ||
|
||
Contributors | ||
------------ | ||
|
||
Mathieu Lemercier <[email protected]> | ||
Franck Bret <[email protected]> | ||
Seraphine Lantible <[email protected]> | ||
Gunnar Wagner <[email protected]> | ||
|
||
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# -*- encoding: utf-8 -*- | ||
############################################################################### | ||
# # # | ||
# product_brand for Odoo # # | ||
# Copyright (C) 2009 NetAndCo (<http://www.netandco.net>). # # | ||
# Copyright (C) 2011 Akretion Benoît Guillot <[email protected]> # # | ||
# Copyright (C) 2014 prisnet.ch Seraphine Lantible <[email protected]> # # | ||
# Contributors # | ||
# Mathieu Lemercier, [email protected], # # | ||
# Franck Bret, [email protected] # # | ||
# Seraphine Lantible, [email protected], http://www.prisnet.ch # | ||
# # # | ||
# 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/>. # # | ||
# # # | ||
############################################################################### | ||
############################################################################### | ||
# Product Brand is an Openobject module wich enable Brand management # | ||
# for products # | ||
############################################################################### | ||
from . import product_brand |
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,46 @@ | ||
# -*- encoding: utf-8 -*- | ||
############################################################################### | ||
# # # | ||
# product_brand for Odoo # # | ||
# Copyright (C) 2009 NetAndCo (<http://www.netandco.net>). # # | ||
# Copyright (C) 2011 Akretion Benoît Guillot <[email protected]> # # | ||
# Copyright (C) 2014 prisnet.ch Seraphine Lantible <[email protected]> # # | ||
# Contributors # | ||
# Mathieu Lemercier, [email protected], # # | ||
# Franck Bret, [email protected] # # | ||
# Seraphine Lantible, [email protected], http://www.prisnet.ch # | ||
# # # | ||
# 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/>. # # | ||
# # # | ||
############################################################################### | ||
############################################################################### | ||
# Product Brand is an Openobject module wich enable Brand management for # | ||
# products # | ||
############################################################################### | ||
{ | ||
'name': 'Product Brand Manager', | ||
'version': '0.1', | ||
'category': 'Product', | ||
'summary': ' brand', | ||
'author': "NetAndCo, Akretion," | ||
"Prisnet Telecommunications SA," | ||
"Odoo Community Association (OCA)", | ||
'license': 'AGPL-3', | ||
'depends': ['product'], | ||
'data': [ | ||
'product_brand_view.xml', | ||
'security/ir.model.access.csv' | ||
], | ||
'installable': True, | ||
} |
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,82 @@ | ||
# Translation of OpenERP Server. | ||
# This file contains the translation of the following modules: | ||
# * product_brand | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: OpenERP Server 7.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2014-03-14 12:55+0000\n" | ||
"PO-Revision-Date: 2014-04-08 17:33+0000\n" | ||
"Last-Translator: Guewen Baconnier @ Camptocamp <Unknown>\n" | ||
"Language-Team: \n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"X-Launchpad-Export-Date: 2014-05-17 07:08+0000\n" | ||
"X-Generator: Launchpad (build 17007)\n" | ||
|
||
#. module: product_brand | ||
#: model:ir.model,name:product_brand.model_product_brand | ||
#: view:product.brand:0 | ||
msgid "product.brand" | ||
msgstr "product.brand" | ||
|
||
#. module: product_brand | ||
#: model:ir.model,name:product_brand.model_product_template | ||
msgid "Product Template" | ||
msgstr "Modèle de produit" | ||
|
||
#. module: product_brand | ||
#: model:ir.ui.menu,name:product_brand.menu_product_brand | ||
msgid "Brand management" | ||
msgstr "Gestion des marques" | ||
|
||
#. module: product_brand | ||
#: view:product.brand:0 | ||
#: field:product.brand,description:0 | ||
msgid "Description" | ||
msgstr "Description" | ||
|
||
#. module: product_brand | ||
#: view:product.brand:0 | ||
#: field:product.brand,name:0 | ||
msgid "Brand Name" | ||
msgstr "Marque" | ||
|
||
#. module: product_brand | ||
#: view:product.brand:0 | ||
msgid "Product Brand" | ||
msgstr "Marque d'article" | ||
|
||
#. module: product_brand | ||
#: field:product.brand,logo:0 | ||
msgid "Logo File" | ||
msgstr "Logo" | ||
|
||
#. module: product_brand | ||
#: model:ir.actions.act_window,name:product_brand.action_product_brand | ||
#: view:product.product:0 | ||
#: field:product.template,product_brand_id:0 | ||
msgid "Brand" | ||
msgstr "Marque" | ||
|
||
#. module: product_brand | ||
#: help:product.brand,partner_id:0 | ||
msgid "Select a partner for this brand if it exists." | ||
msgstr "Sélectionnez un partenaire pour cette marque." | ||
|
||
#. module: product_brand | ||
#: view:product.product:0 | ||
msgid "Group by..." | ||
msgstr "Regrouper par..." | ||
|
||
#. module: product_brand | ||
#: field:product.brand,partner_id:0 | ||
msgid "partner" | ||
msgstr "Partenaire" | ||
|
||
#. module: product_brand | ||
#: help:product.template,product_brand_id:0 | ||
msgid "Select a brand for this product." | ||
msgstr "Sélectionnez une marque pour ce produit." |
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,82 @@ | ||
# Translation of OpenERP Server. | ||
# This file contains the translation of the following modules: | ||
# * product_brand | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: OpenERP Server 5.0.7\n" | ||
"Report-Msgid-Bugs-To: [email protected]\n" | ||
"POT-Creation-Date: 2014-03-14 12:55+0000\n" | ||
"PO-Revision-Date: 2014-03-11 12:42+0000\n" | ||
"Last-Translator: Graeme Gellatly <Unknown>\n" | ||
"Language-Team: \n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"X-Launchpad-Export-Date: 2014-05-17 07:08+0000\n" | ||
"X-Generator: Launchpad (build 17007)\n" | ||
|
||
#. module: product_brand | ||
#: model:ir.model,name:product_brand.model_product_brand | ||
#: view:product.brand:0 | ||
msgid "product.brand" | ||
msgstr "" | ||
|
||
#. module: product_brand | ||
#: model:ir.model,name:product_brand.model_product_template | ||
msgid "Product Template" | ||
msgstr "" | ||
|
||
#. module: product_brand | ||
#: model:ir.ui.menu,name:product_brand.menu_product_brand | ||
msgid "Brand management" | ||
msgstr "Gestion des marques" | ||
|
||
#. module: product_brand | ||
#: view:product.brand:0 | ||
#: field:product.brand,description:0 | ||
msgid "Description" | ||
msgstr "Description" | ||
|
||
#. module: product_brand | ||
#: view:product.brand:0 | ||
#: field:product.brand,name:0 | ||
msgid "Brand Name" | ||
msgstr "Marque" | ||
|
||
#. module: product_brand | ||
#: view:product.brand:0 | ||
msgid "Product Brand" | ||
msgstr "" | ||
|
||
#. module: product_brand | ||
#: field:product.brand,logo:0 | ||
msgid "Logo File" | ||
msgstr "" | ||
|
||
#. module: product_brand | ||
#: model:ir.actions.act_window,name:product_brand.action_product_brand | ||
#: view:product.product:0 | ||
#: field:product.template,product_brand_id:0 | ||
msgid "Brand" | ||
msgstr "Marque" | ||
|
||
#. module: product_brand | ||
#: help:product.brand,partner_id:0 | ||
msgid "Select a partner for this brand if it exists." | ||
msgstr "" | ||
|
||
#. module: product_brand | ||
#: view:product.product:0 | ||
msgid "Group by..." | ||
msgstr "" | ||
|
||
#. module: product_brand | ||
#: field:product.brand,partner_id:0 | ||
msgid "partner" | ||
msgstr "Partenaire" | ||
|
||
#. module: product_brand | ||
#: help:product.template,product_brand_id:0 | ||
msgid "Select a brand for this product." | ||
msgstr "" |
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,82 @@ | ||
# Translation of OpenERP Server. | ||
# This file contains the translation of the following modules: | ||
# * product_brand | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: OpenERP Server 7.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2014-03-14 12:55+0000\n" | ||
"PO-Revision-Date: 2014-03-14 12:55+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: product_brand | ||
#: model:ir.model,name:product_brand.model_product_brand | ||
#: view:product.brand:0 | ||
msgid "product.brand" | ||
msgstr "" | ||
|
||
#. module: product_brand | ||
#: model:ir.model,name:product_brand.model_product_template | ||
msgid "Product Template" | ||
msgstr "" | ||
|
||
#. module: product_brand | ||
#: model:ir.ui.menu,name:product_brand.menu_product_brand | ||
msgid "Brand management" | ||
msgstr "" | ||
|
||
#. module: product_brand | ||
#: view:product.brand:0 | ||
#: field:product.brand,description:0 | ||
msgid "Description" | ||
msgstr "" | ||
|
||
#. module: product_brand | ||
#: view:product.brand:0 | ||
#: field:product.brand,name:0 | ||
msgid "Brand Name" | ||
msgstr "" | ||
|
||
#. module: product_brand | ||
#: view:product.brand:0 | ||
msgid "Product Brand" | ||
msgstr "" | ||
|
||
#. module: product_brand | ||
#: field:product.brand,logo:0 | ||
msgid "Logo File" | ||
msgstr "" | ||
|
||
#. module: product_brand | ||
#: model:ir.actions.act_window,name:product_brand.action_product_brand | ||
#: view:product.product:0 | ||
#: field:product.template,product_brand_id:0 | ||
msgid "Brand" | ||
msgstr "" | ||
|
||
#. module: product_brand | ||
#: help:product.brand,partner_id:0 | ||
msgid "Select a partner for this brand if it exists." | ||
msgstr "" | ||
|
||
#. module: product_brand | ||
#: view:product.product:0 | ||
msgid "Group by..." | ||
msgstr "" | ||
|
||
#. module: product_brand | ||
#: field:product.brand,partner_id:0 | ||
msgid "partner" | ||
msgstr "" | ||
|
||
#. module: product_brand | ||
#: help:product.template,product_brand_id:0 | ||
msgid "Select a brand for this product." | ||
msgstr "" | ||
|
Oops, something went wrong.