| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Lines of code | 32 |
| Technical Name |
view_multicompany_country_filter |
| License | OPL-1 |
| Website | https://www.ganemo.com |
| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Lines of code | 32 |
| Technical Name |
view_multicompany_country_filter |
| License | OPL-1 |
| Website | https://www.ganemo.com |
L10n Country Filter
Dynamic Localization UI Cleaner
Clean up your Odoo forms by automatically hiding fields that are irrelevant to your specific country. Essential for multi-country setups.
What We're Solving
----------------
Multi-Country Clutter
In a multi-company environment (e.g., Peru + USA), users often see fields relevant only to the other country (like 'RUC' or 'Ubigeo' when in the USA). This causes confusion and errors.
Context-Aware Hiding
This module intelligently detects the current company's country and automatically hides fields that don't belong there. Your forms stay clean and relevant.
Setup & Implementation Manual
Comprehensive Developer Guide
1. Installation
This is a technical library module. It does not provide end-user features out of the box but serves as a dependency for other modules.
-
Ensure the module
l10n_country_filteris available in your addons path. - Add it as a dependency in your module's manifest:
'depends': [
'l10n_country_filter',
# ... other dependencies
],
2. Code Implementation
Implement the filter in your model's
_get_view method. This ensures fields are hidden dynamically before the
view is served to the user.
Step-by-Step Example:
Suppose you want to hide the l10n_pe_vat_code field and the
l10n_pe_group group for companies that are NOT in Peru.
from odoo import models, api
class ResPartner(models.Model):
_inherit = ['res.partner', 'l10n.country.filter.mixin'] # Mandatory Mixin
@api.model
def _get_view(self, view_id=None, view_type='form', **options):
# 1. Get the standard view architecture
arch, view = super()._get_view(view_id, view_type, **options)
# 2. Define the country (Peru) where fields SHOULD be visible
peru = self.env.ref('base.pe', raise_if_not_found=False)
if not peru:
return arch, view
# 3. Apply the filter
# If the current company's country is NOT in the allowed list (Peru),
# the specified tags will be hidden.
arch, view = self._tags_invisible_per_country(
arch, view, view_type,
tags=[
'l10n_pe_vat_code', # Field Name
('group', 'l10n_pe_group_vat') # specific XML group
],
countries=[peru] # List of countries where fields are VISIBLE
)
return arch, view
l10n.country.filter.mixin. This
mixin ensures Odoo creates separate view caches per company. Without it, switching
companies will not update the view!
3. Critical Considerations
View Caching
Odoo caches views aggressively.
This module automatically handles cache invalidation by including the
company_id in the cache key. No manual cache clearing
is required when switching companies.
View Types
- Form/Kanban: Uses invisible="1".
- Tree/List: Uses column_invisible="True"
(Odoo 19+ standard).
Global Ready | Multi-Language Support
This module is fully translated into English and Spanish (en_US, es_ES, es_PE, es_MX), ensuring a professional experience for international organizations.
QA & Validation Scenarios
Enterprise Testing Protocols
| Scenario | Action | Expected Result |
|---|---|---|
| 1. Cross-Company Context | Log in as a user with access to both Company A (Peru) and Company B (USA). Open a Partner form in Company A. Then switch to Company B. | Fields restricted to Peru (e.g., VAT Code) must be visible in Company A and hidden immediately upon switching to Company B. |
| 2. List (Tree) View Integrity | Navigate to the Partner List view in a restricted company (e.g., USA). | The column header for the restricted field must not appear.
Odoo 19's column_invisible should prevent blank columns. |
| 3. Cache Reliability | Switch companies rapidly (A -> B -> A) and reload the page between switches. | The correct visibility state must persist reliably. No "leaking" of fields from one company to another due to browser or server-side caching. |
FAQ & Troubleshooting
Common Resolutions
Fields are not hiding. Why?
Check if the current Company's country is correctly set in Settings > Companies. If the country is blank or matches the allowed list, fields will remain visible. Also, ensure you restarted the server after adding the Python code.
Can I use Odoo Studio?
No. This module is a code-level utility. It works at the Python Controller/Model level (`_get_view`). Odoo Studio modifications apply to the XML architecture stored in the database but do not invoke dynamic Python logic for field suppression.
"Column Invisible" Warning?
If you see warnings about column_invisible in the
logs, ensure you are running Odoo 17/18/19+. Older versions used
invisible="1" for trees using `tree` view type. This module auto-detects
`list` vs `tree` types.
Does it work with Multi-Website?
Yes. The logic is tied to the company_id of the
current environment user. It is independent of the Website scope, making it safe for
backend operations in multi-site setups.
Why Choose Ganemo?
----------------
Ganemo is the world's leading Odoo App developer and a multi-award-winning Gold Partner. For over 5 years, we have been recognized as the #1 seller of high-quality apps on the Odoo App Store. Trusted as the "Best Partner" in USA, Mexico, Chile, Spain, Colombia, Ecuador, and Peru, we deliver robust, secure, and localization-compliant solutions for global businesses.
Get a Quote & Resolve Commercial Doubts
Join thousands of satisfied clients on Odoo. Contact our sales team directly.
Official WhatsApp
Fastest response time.
LINK
+1 (828) 672-6150
Book a Demo
Let's explore your needs.
LINK
Schedule Meeting
Need More? We Do It All
Professional Odoo Services
ERP Implementation
Transform your business with a full Odoo implementation. We analyze, configure, and train your team to maximize productivity. From Accounting to Inventory, we handle the complexity so you can focus on growth.
Module Dev & Migration
Need a custom feature? Or stuck on an older version? We develop high-performance custom modules and migrate your existing code to Odoo 19 with zero data loss. Expert developers at your service.
Commercial & Sales
For inquiries about licenses, demos, or partnerships.
Official WhatsApp
Fastest response time.
LINK
+1 (828) 672-6150
Book a Demo
Let's explore your needs.
LINK
Technical Support
Existing customers regarding module functionality.
Help Desk
Exclusive channel for technical assistance and bug reports.
help@ganemo.com
Odoo Proprietary License v1.0 This software and associated files (the "Software") may only be used (executed, modified, executed after modifications) if you have purchased a valid license from the authors, typically via Odoo Apps, or if you have received a written agreement from the authors of the Software (see the COPYRIGHT file). You may develop Odoo modules that use the Software as a library (typically by depending on it, importing it and using its resources), but without copying any source code or material from the Software. You may distribute those modules under the license of your choice, provided that this license is compatible with the terms of the Odoo Proprietary License (For example: LGPL, MIT, or proprietary licenses similar to this one). It is forbidden to publish, distribute, sublicense, or sell copies of the Software or modified copies of the Software. The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please log in to comment on this module