Skip to content

Commit

Permalink
[MOV] change the module name to portal_ux
Browse files Browse the repository at this point in the history
  • Loading branch information
nicomacr committed Apr 19, 2018
1 parent 4d5b427 commit 94efcab
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
13 changes: 5 additions & 8 deletions portal_usability/README.rst → portal_ux/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
:target: https://www.gnu.org/licenses/agpl
:alt: License: AGPL-3

=============================
Portal Usability Improvements
=============================
================
Portal Usability
================

Several Improvements:
#. Add parameter to allow portal for companies (parents partners), by default odoo does not show parent companies on invite to portal wizard. If you want to enable it, you need to create param "portal_usability.allow_portal_on_companies" with value "True"

#. Add parameter to allow portal for companies (parents partners), by default odoo does not show parent companies on invite to portal wizard. If you want to enable it, you need to create param "portal_ux.allow_portal_on_companies" with value "True"

Installation
============
Expand All @@ -34,10 +35,6 @@ To configure this module, you need to:
Usage
=====

To use this module, you need to:

#. Go to ...

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: http://runbot.adhoc.com.ar/
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#
##############################################################################
{
'name': 'Portal Usability Improvements',
'name': 'Portal Usability',
'version': '11.0.1.0.0',
'category': 'Base',
'sequence': 14,
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def onchange_portal_id(self):
super(PortalWizard, self).onchange_portal_id()
allow_portal_on_companies = safe_eval(
self.env['ir.config_parameter'].sudo().get_param(
'portal_usability.allow_portal_on_companies',
'portal_ux.allow_portal_on_companies',
'False'))
if not allow_portal_on_companies:
return None
Expand Down

0 comments on commit 94efcab

Please sign in to comment.