Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
94 changes: 94 additions & 0 deletions rental_base_extension/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
.. image:: https://odoo-community.org/readme-banner-image
:target: https://odoo-community.org/get-involved?utm_source=readme
:alt: Odoo Community Association

=====================
Rental Base Extension
=====================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:09ab96bf14c0b83294c077459048e953907a79975688866d7ca219537c451e41
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png
:target: https://odoo-community.org/page/development-status
:alt: Alpha
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-nuobit%2Fodoo--addons-lightgray.png?logo=github
:target: https://github.com/nuobit/odoo-addons/tree/16.0/rental_base_extension
:alt: nuobit/odoo-addons

|badge1| |badge2| |badge3|

This module extends ``rental_base`` to improve the rental order experience
with better menu visibility and product filtering.

Rental Positions menu
~~~~~~~~~~~~~~~~~~~~~

The ``rental_base`` module places the Rental Positions screen (the ``sale.rental``
list) under Configuration and restricts it to debug mode. This module moves it
to the top level of the Rentals menu as the first entry, visible to all sales
users, since it is the primary screen for tracking rental status.

Product filter on rental order lines
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

When creating a rental order, the product dropdown on order lines only shows
rental service products (i.e. products linked to a rented physical product
via ``rented_product_id``). This prevents users from accidentally selecting
non-rental products on rental orders.

Catalan and Spanish translations
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Provides Catalan and Spanish translations for ``rental_base``, which does not
ship with these languages.

.. IMPORTANT::
This is an alpha version, the data model and design can change at any time without warning.
Only for development or testing purpose, do not use in production.
`More details on development status <https://odoo-community.org/page/development-status>`_

**Table of contents**

.. contents::
:local:

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/nuobit/odoo-addons/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/nuobit/odoo-addons/issues/new?body=module:%20rental_base_extension%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
~~~~~~~

* NuoBiT Solutions SL

Contributors
~~~~~~~~~~~~

* `NuoBiT <https://www.nuobit.com>`__:

* Eric Antones <[email protected]>

Maintainers
~~~~~~~~~~~

This module is part of the `nuobit/odoo-addons <https://github.com/nuobit/odoo-addons/tree/16.0/rental_base_extension>`_ project on GitHub.

You are welcome to contribute.
Empty file.
20 changes: 20 additions & 0 deletions rental_base_extension/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copyright 2026 NuoBiT Solutions SL - Eric Antones <[email protected]>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl)

{
"name": "Rental Base Extension",
"summary": "Improves rental product form with checkbox visibility,"
" rental sections and translations.",
"version": "16.0.1.0.0",
"development_status": "Alpha",
"category": "Rental",
"author": "NuoBiT Solutions SL",
"website": "https://github.com/nuobit/odoo-addons",
"license": "AGPL-3",
"depends": [
"rental_base",
],
"data": [
"views/product_views.xml",
],
}
Loading
Loading