Customize Entitlement
Contents
Customize Entitlement#
The following article guides the reader in understanding how the entitlement can be customized by providing a sample scenario and a working example.
Prerequisites#
Knowledge of Python, Odoo, XML, Xpaths.
To set up OpenSPP for development, please refer to the Developer Guide.
If the Programs module is not installed#
Log into OpenSPP with administrative rights.
Access the “Apps” menu from the dashboard to manage OpenSPP modules.
Choose “Update Apps List” to refresh the module list.
Search for “Programs” and initiate installation. This will also install the other modules required.
Utilising the Entitlement#
For more detailed guidance on utilizing the Entitlement module in OpenSPP, please refer to the information available at the provided link which will be published soon.
Customize Entitlement#
The duration of the validity of the entitlement is not shown currently in OpenSPP. Let’s look at a step by step guide on how the duration can be shown within an entitlement.
A working sample module for the described scenario can be accessed at the provided link.
The key steps in module development are as follows:
To customize entitlement, a new module can be developed.
To initiate the development of a custom module for entitlement customization, begin by creating a manifest file. This file should include fields like name, category, and version. Additionally, it's crucial to define the dependencies of the new module as outlined below.
"depends": [
"spp_programs",
],
To add the new field in the new module, develop a Python file named
entitlement.py
that extendsg2p.entitlement
and incorporate this file intomodels/init.py
. The definition of the fields should be implemented as demonstrated below.
from odoo import api, fields, models
class G2PEntitlementCustom(models.Model):
_inherit = "g2p.entitlement"
day_duration = fields.Integer("Valid Duration (Days)", compute="_compute_day_duration")
@api.depends("valid_from", "valid_until")
def _compute_day_duration(self):
for rec in self:
valid_from = rec.valid_from or fields.Date.today()
delta = rec.valid_until - valid_from
rec.day_duration = delta.days
The code mentioned above will introduce a new field to the g2p_entitlement
table for storing the duration of an entitlement. To understand further, refer to the following documentation Link 1, Link 2, Link 3
Here the values of valid_until
, valid_from
fields are derived from the values of cycle’s start date and end date fields. The mentioned fields are from the table g2p.cycle
.
To integrate new fields into the UI, the following steps should be followed. Create a new file called
views/entitlement_view.xml
in the module. Add the below code to the manifest file.
"data": [
"views/entitlement_view.xml",
],
The following code can be added to the
entitlement_view.xml
file to show the duration in the UI.
<record id="view_custom_entitlement_form" model="ir.ui.view">
<field name="name">view_custom_entitlement_form</field>
<field name="model">g2p.entitlement</field>
<field name="inherit_id" ref="g2p_programs.view_entitlement_form" />
<field name="priority">1000</field>
<field name="arch" type="xml">
<xpath expr="//field[@name='valid_until']" position="after">
<field name="day_duration" />
</xpath>
</field>
</record>
Install the module to include the new changes. The following screenshot shows the added field duration in the newly developed module.