Rodney Elpidio Enciso Arias преди 7 години
ревизия
95d530ef50
променени са 42 файла, в които са добавени 4044 реда и са изтрити 0 реда
  1. 8 0
      __init__.py
  2. BIN
      __init__.pyc
  3. 68 0
      __openerp__.py
  4. 15 0
      account.py
  5. BIN
      account.pyc
  6. 133 0
      i18n/ar.po
  7. 133 0
      i18n/ca.po
  8. 133 0
      i18n/da.po
  9. 133 0
      i18n/de.po
  10. 133 0
      i18n/en.po
  11. 143 0
      i18n/es.po
  12. 133 0
      i18n/es_CR.po
  13. 133 0
      i18n/es_EC.po
  14. 133 0
      i18n/es_VE.po
  15. 133 0
      i18n/fi.po
  16. 133 0
      i18n/fr.po
  17. 133 0
      i18n/gl.po
  18. 133 0
      i18n/hr.po
  19. 133 0
      i18n/hu.po
  20. 133 0
      i18n/it.po
  21. 133 0
      i18n/ja.po
  22. 133 0
      i18n/lv.po
  23. 133 0
      i18n/mk.po
  24. 133 0
      i18n/mn.po
  25. 107 0
      i18n/multi_store.pot
  26. 133 0
      i18n/nl.po
  27. 133 0
      i18n/pl.po
  28. 133 0
      i18n/pt.po
  29. 133 0
      i18n/pt_BR.po
  30. 133 0
      i18n/ro.po
  31. 133 0
      i18n/sv.po
  32. 133 0
      i18n/tr.po
  33. 133 0
      i18n/zh_CN.po
  34. 48 0
      res_store.py
  35. BIN
      res_store.pyc
  36. 31 0
      res_users.py
  37. BIN
      res_users.pyc
  38. 3 0
      security/ir.model.access.csv
  39. 58 0
      security/multi_store_security.xml
  40. 17 0
      views/account_view.xml
  41. 54 0
      views/res_store_view.xml
  42. 34 0
      views/res_users_view.xml

+ 8 - 0
__init__.py

@@ -0,0 +1,8 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+# For copyright and license notices, see __openerp__.py file in module root
+# directory
+##############################################################################
+from . import account
+from . import res_store
+from . import res_users

BIN
__init__.pyc


+ 68 - 0
__openerp__.py

@@ -0,0 +1,68 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+#    Copyright (C) 2015  ADHOC SA  (http://www.adhoc.com.ar)
+#    All Rights Reserved.
+#
+#    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': 'Multi Store',
+    'version': '8.0.2.0.0',
+    'category': 'Accounting',
+    'sequence': 14,
+    'summary': '',
+    'description': """
+Multi Store
+===========
+The main purpose of this module is to restrict journals access for users on different stores. 
+
+This module add a new concept "stores" in some point similar to multicompany. 
+Similar to multicompany:
+* User can have multiple stores available (store_ids)
+* User can be active only in one store (store_id) which can be set up in his own preferences
+* There is a group "multi store" that gives users the availability to see multi store fields
+
+This module also adds a store_id field on journal:
+* If store_id = False then journal can be seen by everyone
+* If store_id is set, then journal can be seen by users on that store and parent stores
+
+It also restrict edition, creation and unlink on: account.move, account.invoice and account.voucher. 
+It is done with the same logic to journal. We do not limitate the "read" of this models because user should need to access those documents, for example, to see partner due.
+    """,
+    'author':  'ADHOC SA - Eiru',
+    'website': 'www.adhoc.com.ar',
+    'license': 'AGPL-3',
+    'images': [
+    ],
+    'depends': [
+        'account_voucher',
+    ],
+    'data': [
+        'views/res_store_view.xml',
+        'views/res_users_view.xml',
+        'views/account_view.xml',
+        'security/multi_store_security.xml',
+        'security/ir.model.access.csv',
+    ],
+    'demo': [
+    ],
+    'test': [
+    ],
+    'installable': True,
+    'auto_install': False,
+    'application': False,
+}
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

+ 15 - 0
account.py

@@ -0,0 +1,15 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+# For copyright and license notices, see __openerp__.py file in module root
+# directory
+##############################################################################
+from openerp import models, fields
+
+
+class account_journal(models.Model):
+    _inherit = 'account.journal'
+
+    store_ids = fields.Many2many(
+        'res.store', 'res_store_journal_rel', 'journal_id', 'store_id',
+        'Store', help="""Users that are not of this store, can see this\
+        journals records but can not post or modify any entry on them.""")

BIN
account.pyc


+ 133 - 0
i18n/ar.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Arabic (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/ar/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ar\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "الاسم"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "المستخدمون"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/ca.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Catalan (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/ca/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ca\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr "Diari"
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Nom"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr ""
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/da.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Danish (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/da/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: da\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Navn"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Brugere"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/de.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: German (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/de/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: de\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Bezeichnung"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Benutzer"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/en.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-09-09 23:57+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: Juan Jose Scarafia <scarafia.juanjose@gmail.com>\n"
+"Language-Team: English (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/en/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: en\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr "Accepted Users"
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr "Allowed Companies"
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr "Allowed Stores"
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr "Child Stores"
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr "Company"
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr "Created by"
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr "Created on"
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr "Error! You can not create recursive stores."
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr "Journal"
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr "Journals"
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr "Last Updated by"
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr "Last Updated on"
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr "Multi Stores"
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Name"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr "Parent Store"
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr "Store"
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr "Stores"
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr "The company name must be unique !"
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr "The store this user is currently working for."
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Users"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr "Users that are not of this store, can see this        journals records but can not post or modify any entry on them."

+ 143 - 0
i18n/es.po

@@ -0,0 +1,143 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: account-financial-tools (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-05-20 18:58+0000\n"
+"PO-Revision-Date: 2016-05-24 23:23+0000\n"
+"Last-Translator: Juan José Scarafía <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Spanish (http://www.transifex.com/adhoc/ingadhoc-account-financial-tools-8-0/language/es/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr "Usuarios Aceptados"
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr "Compañías permitidas"
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr "Sucursales Permitidas"
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr "Sucursales Hijas"
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr "Compañía"
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr "Creadon en"
+
+#. module: multi_store
+#: field:res.store,display_name:0
+msgid "Display Name"
+msgstr "Nombre a Mostrar"
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr "Error! No puede crear sucursales recursivas."
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr "Diario"
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr "Diarios"
+
+#. module: multi_store
+#: field:res.store,__last_update:0
+msgid "Last Modified on"
+msgstr "Última Modificación en"
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr "Last Updated by"
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr "Last Updated on"
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr "Multi Sucursal"
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Nombre"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr "Sucursal Padre"
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr "Sucursal"
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr "Sucursales"
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr "El nombre de la compañía debe ser único!"
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr "La sucursal donde el usuario está trabajando."
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Usuarios"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/es_CR.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/es_CR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_CR\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Nombre"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Usuarios"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/es_EC.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Spanish (Ecuador) (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/es_EC/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_EC\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Nombre"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Usuarios"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/es_VE.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Spanish (Venezuela) (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/es_VE/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_VE\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Nombre"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr ""
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/fi.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Finnish (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/fi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr "Luonut"
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr "Luotu"
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr "Viimeksi päivittänyt"
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr "Viimeksi päivitetty"
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Nimi"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Käyttäjät"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/fr.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: French (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/fr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Nom"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Utilisateurs"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/gl.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-10-03 15:12+0000\n"
+"Last-Translator: Juan Jose Scarafia <scarafia.juanjose@gmail.com>\n"
+"Language-Team: Galician (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/gl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: gl\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr "Diario"
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr ""
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/hr.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Croatian (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/hr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hr\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Naziv"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Korisnici"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/hu.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Hungarian (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/hu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Név"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Felhasználók"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/it.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Italian (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/it/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: it\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Nome"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Utenti"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/ja.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Japanese (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/ja/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ja\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "名前"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "ユーザ"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/lv.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Latvian (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/lv/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: lv\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Nosaukums"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr ""
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/mk.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Macedonian (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/mk/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: mk\n"
+"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Име"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Корисници"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/mn.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Mongolian (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/mn/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: mn\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Нэр"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Хэрэглэгчид"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 107 - 0
i18n/multi_store.pot

@@ -0,0 +1,107 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+#	* multi_store
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: OpenERP Server 8.0alpha1\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2014-06-14 19:35+0000\n"
+"PO-Revision-Date: 2014-06-14 19:35+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: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:0
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:0
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_id:0
+#: field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:0
+#: field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr ""
+
+#. module: multi_store
+#: help:account.journal,store_id:0
+msgid "Users that are not of this store, can see this journals records but can not post or modify any entry on them."
+msgstr ""
+

+ 133 - 0
i18n/nl.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Dutch (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/nl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: nl\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Naam"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Gebruikers"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/pl.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Polish (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/pl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pl\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Nazwa"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Użytkownicy"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/pt.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Portuguese (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/pt/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pt\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Nome"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Utilizadores"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/pt_BR.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Portuguese (Brazil) (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/pt_BR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pt_BR\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Nome"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Usuários"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/ro.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Romanian (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/ro/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ro\n"
+"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Nume"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Utilizatori"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/sv.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Swedish (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/sv/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sv\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Namn"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Användare"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/tr.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Turkish (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/tr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: tr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "Adı"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "Kullanıcılar"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 133 - 0
i18n/zh_CN.po

@@ -0,0 +1,133 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * multi_store
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: odoo-addons (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-05 13:55+0000\n"
+"PO-Revision-Date: 2015-09-01 18:01+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Chinese (China) (http://www.transifex.com/adhoc/ingadhoc-odoo-addons-8-0/language/zh_CN/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: zh_CN\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: multi_store
+#: field:res.store,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Companies"
+msgstr ""
+
+#. module: multi_store
+#: view:res.users:multi_store.view_journal_security_users_form
+msgid "Allowed Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,child_ids:0
+msgid "Child Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: multi_store
+#: constraint:res.store:0
+msgid "Error! You can not create recursive stores."
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,id:0
+msgid "ID"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_account_journal
+msgid "Journal"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,journal_ids:0
+msgid "Journals"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: multi_store
+#: model:res.groups,name:multi_store.group_multi_store
+msgid "Multi Stores"
+msgstr ""
+
+#. module: multi_store
+#: field:res.store,name:0
+msgid "Name"
+msgstr "名称"
+
+#. module: multi_store
+#: field:res.store,parent_id:0
+msgid "Parent Store"
+msgstr ""
+
+#. module: multi_store
+#: field:account.journal,store_ids:0 field:res.users,store_id:0
+msgid "Store"
+msgstr ""
+
+#. module: multi_store
+#: model:ir.actions.act_window,name:multi_store.action_store
+#: model:ir.model,name:multi_store.model_res_store
+#: model:ir.ui.menu,name:multi_store.menu_action_res_store
+#: view:res.store:multi_store.view_res_store_tree field:res.users,store_ids:0
+msgid "Stores"
+msgstr ""
+
+#. module: multi_store
+#: sql_constraint:res.store:0
+msgid "The company name must be unique !"
+msgstr ""
+
+#. module: multi_store
+#: help:res.users,store_id:0
+msgid "The store this user is currently working for."
+msgstr ""
+
+#. module: multi_store
+#: model:ir.model,name:multi_store.model_res_users
+msgid "Users"
+msgstr "用户"
+
+#. module: multi_store
+#: help:account.journal,store_ids:0
+msgid ""
+"Users that are not of this store, can see this        journals records but "
+"can not post or modify any entry on them."
+msgstr ""

+ 48 - 0
res_store.py

@@ -0,0 +1,48 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+# For copyright and license notices, see __openerp__.py file in module root
+# directory
+##############################################################################
+from openerp import models, fields, SUPERUSER_ID
+from openerp.osv import osv
+
+
+class res_store(models.Model):
+    _name = "res.store"
+    _description = 'Stores'
+    _order = 'parent_id desc, name'
+
+    name = fields.Char('Name', size=128, required=True,)
+    parent_id = fields.Many2one('res.store', 'Parent Store', select=True)
+    child_ids = fields.One2many('res.store', 'parent_id', 'Child Stores')
+    journal_ids = fields.Many2many(
+        'account.journal', 'res_store_journal_rel', 'store_id',
+        'journal_id', 'Journals')
+    company_id = fields.Many2one(
+        'res.company', 'Company', required=True,
+        default=lambda self: self.env[
+            'res.company']._company_default_get('res.store'))
+    user_ids = fields.Many2many(
+        'res.users', 'res_store_users_rel', 'cid', 'user_id', 'Accepted Users')
+
+    _sql_constraints = [
+        ('name_uniq', 'unique (name)', 'The company name must be unique !')
+    ]
+
+    _constraints = [
+        (osv.osv._check_recursion,
+         'Error! You can not create recursive stores.', ['parent_id'])
+    ]
+
+    def name_search(self, cr, uid, name='', args=None, operator='ilike', context=None, limit=100):
+        context = dict(context or {})
+        if context.pop('user_preference', None):
+            # We browse as superuser. Otherwise, the user would be able to
+            # select only the currently visible stores (according to rules,
+            # which are probably to allow to see the child stores) even if
+            # she belongs to some other stores.
+            user = self.pool.get('res.users').browse(cr, SUPERUSER_ID, uid, context=context)
+            store_ids = list(set([user.store_id.id] + [cmp.id for cmp in user.store_ids]))
+            uid = SUPERUSER_ID
+            args = (args or []) + [('id', 'in', store_ids)]
+        return super(res_store, self).name_search(cr, uid, name=name, args=args, operator=operator, context=context, limit=limit)

BIN
res_store.pyc


+ 31 - 0
res_users.py

@@ -0,0 +1,31 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+# For copyright and license notices, see __openerp__.py file in module root
+# directory
+##############################################################################
+from openerp import models, fields
+
+
+class res_users(models.Model):
+    _inherit = 'res.users'
+
+    store_id = fields.Many2one(
+        'res.store', 'Store', context={'user_preference': True},
+        help='The store this user is currently working for.')
+    store_ids = fields.Many2many(
+        'res.store', 'res_store_users_rel', 'user_id', 'cid', 'Stores')
+
+    def __init__(self, pool, cr):
+        """ Override of __init__ to add access rights on
+        store fields. Access rights are disabled by
+        default, but allowed on some specific fields defined in
+        self.SELF_{READ/WRITE}ABLE_FIELDS.
+        """
+        init_res = super(res_users, self).__init__(pool, cr)
+        # duplicate list to avoid modifying the original reference
+        self.SELF_WRITEABLE_FIELDS = list(self.SELF_WRITEABLE_FIELDS)
+        self.SELF_WRITEABLE_FIELDS.append('store_id')
+        # duplicate list to avoid modifying the original reference
+        self.SELF_READABLE_FIELDS = list(self.SELF_READABLE_FIELDS)
+        self.SELF_READABLE_FIELDS.append('store_id')
+        return init_res

BIN
res_users.pyc


+ 3 - 0
security/ir.model.access.csv

@@ -0,0 +1,3 @@
+id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
+access_res_store_manager,model_res_store_manager,model_res_store,base.group_erp_manager,1,1,1,1
+access_res_store_all,model_res_store_all,model_res_store,,1,0,0,0

+ 58 - 0
security/multi_store_security.xml

@@ -0,0 +1,58 @@
+<?xml version="1.0"?>
+<openerp>
+    <data noupdate="1">
+
+    <record model="res.groups" id="group_multi_store">
+        <field name="name">Multi Stores</field>
+        <field name="category_id" ref="base.module_category_usability"/>
+        <field name="users" eval="[(4, ref('base.user_root'))]"/>
+    </record>
+
+    <record id="res_store_rule" model="ir.rule">
+        <field name="name">multi-store store rule</field>
+        <field name="model_id" ref="model_res_store"/>
+        <field name="domain_force">[('id','child_of',[user.store_id.id])]</field>
+    </record>
+
+    <record id="journal_store_rule" model="ir.rule">
+        <field name="name">Journal multi-store</field>
+        <field name="model_id" ref="account.model_account_journal"/>
+        <field name="global" eval="True"/>
+        <!-- <field name="perm_read" eval="False"/> -->
+        <field name="domain_force">['|',('store_ids','=',False),('store_ids','child_of',[user.store_id.id])]</field>
+    </record>
+    
+    <record id="account_move_store_rule" model="ir.rule">
+        <field name="name">Account Entry</field>
+        <field name="model_id" ref="account.model_account_move"/>
+        <field name="global" eval="True"/>
+        <!-- <field name="perm_read" eval="False"/> -->
+        <field name="domain_force">['|',('journal_id.store_ids','=',False),('journal_id.store_ids','child_of',[user.store_id.id])]</field>
+    </record>
+
+    <record id="invoice_store_rule" model="ir.rule">
+        <field name="name">Invoice multi-store</field>
+        <field name="model_id" ref="account.model_account_invoice"/>
+        <field name="global" eval="True"/>
+        <!-- <field name="perm_read" eval="False"/>         -->
+        <field name="domain_force">['|',('journal_id.store_ids','=',False),('journal_id.store_ids','child_of',[user.store_id.id])]</field>
+    </record>
+
+    <record id="voucher_store_rule" model="ir.rule">
+        <field name="name">Voucher multi-store</field>
+        <field name="model_id" ref="account_voucher.model_account_voucher"/>
+        <field name="global" eval="True"/>
+        <!-- <field name="perm_read" eval="False"/>         -->
+        <field name="domain_force">['|',('journal_id.store_ids','=',False),('journal_id.store_ids','child_of',[user.store_id.id])]</field>
+    </record>
+    
+    <record id="account_bank_statement_store_rule" model="ir.rule">
+        <field name="name">Account Bank Statement multi-store</field>
+        <field name="model_id" ref="account.model_account_bank_statement"/>
+        <field name="global" eval="True"/>
+        <!-- <field name="perm_read" eval="False"/>         -->
+        <field name="domain_force">['|',('journal_id.store_ids','=',False),('journal_id.store_ids','child_of',[user.store_id.id])]</field>
+    </record>
+    </data>
+</openerp>
+

+ 17 - 0
views/account_view.xml

@@ -0,0 +1,17 @@
+<?xml version="1.0"?>
+<openerp>
+    <data>
+        <!-- Form -->
+        <record id="view_account_journal_form" model="ir.ui.view">
+            <field name="name">journal_security.account.journal.form</field>
+            <field name="model">account.journal</field>
+            <field name="inherit_id" ref="account.view_account_journal_form"/>
+            <field name="arch" type="xml">
+                <field name="company_id" position="after">
+                    <field name="store_ids" widget="many2many_tags" groups="multi_store.group_multi_store"/>
+                </field>                
+            </field>
+        </record>
+        
+    </data>
+</openerp>

+ 54 - 0
views/res_store_view.xml

@@ -0,0 +1,54 @@
+<?xml version="1.0"?>
+<openerp>
+    <data>
+        <!-- Tree -->
+        <record id="view_res_store_tree" model="ir.ui.view">
+            <field name="name">res.store.tree</field>
+            <field name="model">res.store</field>
+            <field name="arch" type="xml">
+                <tree string="Stores">
+                    <field name="name"/>
+                    <field name="parent_id"/>
+                    <field name="company_id" groups="base.group_multi_company"/>
+                </tree>
+            </field>
+        </record>
+
+        <!-- Form -->
+        <record id="view_res_store_form" model="ir.ui.view">
+            <field name="name">res.store.form</field>
+            <field name="model">res.store</field>
+            <field name="arch" type="xml">
+                <form>
+                    <sheet>
+                        <div class="oe_title">
+                            <div class="oe_edit_only">
+                                <label for="name" string="Nombre"></label>
+                            </div>
+                            <h1>
+                               <field name="name"/> 
+                            </h1>
+                        </div>
+                        <group>
+                            <field name="parent_id"/>
+                            <field name="company_id" groups="base.group_multi_company"/>
+                            <field name="journal_ids"/>
+                        </group>
+                    </sheet>
+                </form>
+            </field>
+        </record>
+
+        <record id="action_store" model="ir.actions.act_window">
+            <field name="name">Stores</field>
+            <field name="type">ir.actions.act_window</field>
+            <field name="res_model">res.store</field>
+            <field name="view_type">form</field>
+            <field name="view_mode">tree,form</field>
+            <field name="domain"></field>
+        </record>
+
+        <menuitem action="action_store" id="menu_action_res_store" parent="base.menu_res_company_global" sequence="20"/>
+
+    </data>
+</openerp>

+ 34 - 0
views/res_users_view.xml

@@ -0,0 +1,34 @@
+<?xml version="1.0"?>
+<openerp>
+    <data>
+        <!-- Form -->
+        <record id="view_journal_security_users_form" model="ir.ui.view">
+            <field name="name">journal_security.users.form</field>
+            <field name="model">res.users</field>
+            <field name="inherit_id" ref="base.view_users_form"/>
+            <field name="arch" type="xml">
+                <field name="company_id" position="after">
+                    <label for="store_id" class="oe_edit_only" groups="multi_store.group_multi_store"/>
+                    <field name="store_id" context="{'user_preference': 0}" groups="multi_store.group_multi_store"/>                    
+                </field>
+                <group string="Allowed Companies" position="after">
+                    <group string="Allowed Stores" groups="multi_store.group_multi_store">
+                        <field name="store_ids" nolabel="1" widget="many2many_tags"/>
+                    </group>
+                </group>
+            </field>
+        </record>
+
+        <record id="view_journal_security_user_preference_form" model="ir.ui.view">
+            <field name="name">journal_security.user.preference.form</field>
+            <field name="model">res.users</field>
+            <field name="inherit_id" ref="base.view_users_form_simple_modif"/>
+            <field name="arch" type="xml">
+                <field name="company_id" position="after">
+                    <field name="store_id" readonly="0" contest="{'user_preference':0}" options="{'no_create': True}" groups="multi_store.group_multi_store"/>                
+                </field>
+            </field>
+        </record>
+        
+    </data>
+</openerp>