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.
41 lines
2.1 KiB
41 lines
2.1 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!--View for the new fields in the settings like followup and expiry-->
|
|
<record id="res_config_settings_view_form" model="ir.ui.view">
|
|
<field name="name">res.config.settings.view.form.inherit.quotation.customer.followup</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id" ref="base.res_config_settings_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//block[@id='emails']" position="inside">
|
|
<setting help="Set followup mail to customer after quotation sent." id="quotation_followup_mail">
|
|
<field name="quotation_followup_mail"/>
|
|
<div class="content-group" invisible="not quotation_followup_mail">
|
|
<div class="row mt16" id="mail_template_id">
|
|
<label for="mail_template_id" class="col-lg-3"/>
|
|
<field name="mail_template_id"/>
|
|
</div>
|
|
<div class="row mt16" id="mail_send_days">
|
|
<label for="days" class="col-lg-3"/>
|
|
<field name="days"/>
|
|
</div>
|
|
</div>
|
|
</setting>
|
|
</xpath>
|
|
<xpath expr="//block[@id='emails']" position="inside">
|
|
<setting help="Set Expiry Mail to customer." id="quotation_expiry_mail">
|
|
<field name="quotation_expiry_mail"/>
|
|
<div class="content-group" invisible="not quotation_expiry_mail">
|
|
<div class="row mt16" id="expiry_mail">
|
|
<label for="expiry_mail_id" class="col-lg-3"/>
|
|
<field name="expiry_mail_id"/>
|
|
</div>
|
|
<div class="row mt16" id="mail_expiry_days">
|
|
<label for="expiry_days" class="col-lg-3"/>
|
|
<field name="expiry_days"/>
|
|
</div>
|
|
</div>
|
|
</setting>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|