This Simplify Access Management Odoo module gives administrators granular control to manage user access rights, security, and interface visibility. Implement precise role-based access control, restrict menus, models, fields, buttons, and chatter components, and enforce system-wide security rules to enhance data integrity and simplify the user experience.
Snippets, website, theme
odoo appp manage Salon/Spa Management easily manage with Salon Employee, customer , Salon Orders, Salon Appoitment,Spa/Salon Package with services, Spa/Salon With chair management, Spa/Salon Booking Appoitment, Salon Spa Reporting like Salon Orders, Salon Appitment History, Salon Spa Odoo management
Bill of Quantities Stock, We collect only the necessary company data (Comapny Name, E-Mail and Contact Number) from your Odoo database to provide tailored services and improve performance. Your information is kept strictly confidential, secured with encryption, and never shared, sold, or misused. Copy the link to view our full Privacy Policy: https://business4x.com/organization-privacy-policy
Subscription Management
Synchronize the project's blocked task deadline date with its parent task.
This widget allows you to edit text fields in a modal dialog on list or form with optional validation and autofocus support. If a field is read-only, the widget opens only for viewing. # view <form>; .... <field name="comment" widget="textarea_dialog_widget" />; .... </form>; <tree>; .... <field name="comment" widget="textarea_dialog_widget" />; .... </tree>;
Manage Tours and Travels Easily
Tour and Travel Management Tours and Travels Management Booking Management Tours Booking Travels Booking Itinerary Planning Management Hotel Booking Management Tours Travels Website Travelling Planner travel agency management tour agency management advanced dashboard
Odoo Tours & Travel Management odoo Tours Travel Management Tour Travel Management odoo transport Tour Management transport Management truck
When this module is installed, users can schedule trainings directly in the system. The training details are stored and can be easily accessed through a smart button for quick reference and management.
Schedule training for internal & erternal particpents and track thier attandences. We collect only the necessary company data from your Odoo database to provide tailored services and improve performance. Your information is kept strictly confidential, secured with encryption, and never shared, sold, or misused. Copy the link to view our full Privacy Policy: https://business4x.com/organization-privacy-policy
odoo app to manage Transport Management with delivery order and vehicles Vehicles transport routes Transport vehicles Transport routes delivery orders logistics solution freight management fleet management Transport planning supply chain management route optimization Manage Freight Transportation Management and Logistics System which has key features which include transporter details. Vehicle,route LR number of parcele information for all delivery order details. Create auto entry transport entry with reporting those entries make it more easy to operate Transport details in Odoo. crew managmenet expense and invoice for route purchase order for fuel Manage Trans-shipment and vehicle by transporter and Transport Delivery Charge. Freight Transport Management and Delivery Routes Delivery Transport Mangement with Freight Transport for Delivery and Picking Order Transport Management Fleet Management Logistics Management Transport Delivery Charge Transport Delivery Charge Trans-shipment Auto entry transport Delivery Routes Picking Transport Sale Transport Manual Transport Picking carriers Transportation Management crew managmenet expense and invoice for route purchase order for fuel Apps for Freight Delivery management Transport Delivery Routes Vehicles Transport Vehicles Freight TMS freight transportation logistic transport management delivery transport picking transport logistics System Transport Routes Delivery
This widget allows you to display tree-like hierarchical references, making it easier to organize and navigate complex structures. It works seamlessly on both forms and tree views, allowing users to select and manage hierarchical data directly within Odoo. Usage: # foreign model class YourReferenceModel(models.Model): _name = "your_reference_model" _description = "YourReferenceModel" _inherit = ["tree_widget.mixin"] # main model class YourMainModel(models.Model): _name = "your_main_model" _description = "YourMainModel" name = fields.Char(string="Name") reference_id = fields.Many2one( "your_reference_model", string="Reference", context={"display_full_name": True}, # Set display_full_name=True if you want # the full path of the reference to be displayed. ) # view form <form> .... <field name="reference_id" widget="many2one_tree"/> .... </form> # view list <tree> .... <field name="reference_id" widget="many2one_tree"/> .... </tree>
Map US zip codes, counties and states.
Update CRM Pipeline status based on Orders, Deliveries and Payments
User Activity Log, User Activity Audit, Session Management, Record Log, Activity Traces, User Activity Record, Record History, Login History, Login location, Login IP, user session history, User activity tracking user activity logs user actions history user action login alert track user activity history user session tracking audit log history User Audit Trail user audit rules audit trail rules activity monitoring user
This module adds tools for working with vaults. Two types of vaults are available: HashiCorp and Secret Manager. Only one type of secret storage is available: key and value. There are json schemas for storing a single key value (KeySecretType), a pair of secrets (KeyPairSecretType) and a login/password (LoginPasswordType) 1. The module provides a new field type VaultSecretField. Thanks to this field the filled data will be stored in the vault and the secret path will be stored in the database. The field can be used in any model, including res.config.settings to store module settings. # Examples of working with vault field: # model class ResConfigSettings(models.TransientModel): _inherit = “res.config.settings” secret = VaultSecretField(secret_type=KeyPairSecretType.type) # view <field name=“arch” type=“xml”> .... <field name=“secret” /> .... </field> 2. The module provides a VaultSecret API class that performs standard CRUD interaction with a vault. # Examples of working with the API class: # Create new_secret = VaultSecret.save_secret( LoginPasswordType.type, login=login, password=password ) # or new_secret = VaultSecret(path="custom/path", secret_type=LoginPasswordType) new_secret.write_secret({"login": login, "password": password}) # Get secret = new_secret.get_secret() login = secret['login'] password = secret['password'] # Write new_secret.write_secret({"login": login, "password": password}) # Delete new_secret.delete_secret()