47 lines
2.8 KiB
XML
47 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<record id="ir_mail_server_view_form" model="ir.ui.view">
|
|
<field name="name">ir.mail_server.view.form.inherit.outlook</field>
|
|
<field name="model">ir.mail_server</field>
|
|
<field name="inherit_id" ref="base.ir_mail_server_form"/>
|
|
<field name="arch" type="xml">
|
|
<field name="smtp_user" position="after">
|
|
<field name="is_microsoft_outlook_configured" invisible="1"/>
|
|
<field name="microsoft_outlook_refresh_token" invisible="1"/>
|
|
<field name="microsoft_outlook_access_token" invisible="1"/>
|
|
<field name="microsoft_outlook_access_token_expiration" invisible="1"/>
|
|
<div invisible="smtp_authentication != 'outlook'"
|
|
class="d-flex flex-row align-items-center" colspan="8">
|
|
<span invisible="smtp_authentication != 'outlook' or not microsoft_outlook_refresh_token"
|
|
class="badge text-bg-success">
|
|
Outlook Token Valid
|
|
</span>
|
|
<button type="object"
|
|
name="open_microsoft_outlook_uri" class="btn-link px-0"
|
|
invisible="not is_microsoft_outlook_configured or smtp_authentication != 'outlook' or microsoft_outlook_refresh_token">
|
|
<i class="oi oi-arrow-right"/>
|
|
Connect your Outlook account
|
|
</button>
|
|
<button type="object"
|
|
name="open_microsoft_outlook_uri" class="btn-link px-0 ms-2"
|
|
invisible="not is_microsoft_outlook_configured or smtp_authentication != 'outlook' or not microsoft_outlook_refresh_token">
|
|
<i class="fa fa-cog" title="Edit Settings"/>
|
|
</button>
|
|
<button class="alert alert-warning d-block mt-2 text-start"
|
|
icon="oi-arrow-right" type="action" role="alert"
|
|
name="%(base.res_config_setting_act_window)d"
|
|
invisible="is_microsoft_outlook_configured or smtp_authentication != 'outlook'">
|
|
Setup your Outlook API credentials in the general settings to link a Outlook account.
|
|
</button>
|
|
</div>
|
|
</field>
|
|
<field name="smtp_authentication_info" position="after">
|
|
<a href="https://www.odoo.com/documentation/15.0/applications/general/email_communication/email_servers.html?highlight=outgoing email server#use-a-default-from-email-address"
|
|
invisible="smtp_authentication != 'outlook'" target="_blank">
|
|
Read More
|
|
</a>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
</odoo>
|