You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.2 KiB
28 lines
1.2 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Inherited the res.config.setting to add the fields-->
|
|
<record id="res_config_settings_view_form" model="ir.ui.view">
|
|
<field name="name">res.config.setting.view.form.inherit.task.overdue.email.odoo
|
|
</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id" ref="project.res_config_settings_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//block[@name='analytic']"
|
|
position="after">
|
|
<block title="Task Overdue Notification"
|
|
name="project_task_overdue_notification">
|
|
<setting id="notification"
|
|
string="Overdue Notification"
|
|
help="Overdue tasks notification sent by email">
|
|
<field name="is_notification"/>
|
|
<span invisible="is_notification == False">Overdue
|
|
Days
|
|
</span>
|
|
<field name="overdue_days"
|
|
invisible="is_notification == False"/>
|
|
</setting>
|
|
</block>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|