Search 1.9 billion lines of Odoo code on GitHub

tko_support_branding

Author: ThinkOpen Solutions Brasil
License: AGPL-3
Branch: 8.0
Repository: brain-tec/tkobr-addons
Dependencies: support_branding
Languages: Python (14, 18.2%), XML (25, 32.5%), and reStructuredText (38, 49.4%)
Other repositories: Hinoga/tko-addons, TimLai125/tko-addons, hinfo506/tko-addons, itsalgeria/tko-addons, thinkopensolutions/oca-web, thinkopensolutions/tko-addons, and waynejid/tko-addons

<img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.svg"> <a name="support-branding"></a> <h2>Support branding</h2> <p>If you run an Odoo support company and you support customers without an OPW, you can brand the Odoo instance accordingly using this module. This module will add a line <cite>Supported by $yourcompany</cite> in the menu footer and add a button to mail exception messages to your support email address.</p> <a name="configuration"></a> <h2>Configuration</h2> <p>This module is controlled by config parameters:</p> <dl class="docutils"> <dt>support_branding.company_name</dt> <dd>Your company's name</dd> <dt>support_branding.company_url</dt> <dd>Your company's website</dd> <dt>support_branding.company_color</dt> <dd>The color to show your company's name in (CSS syntax)</dd> <dt>support_branding.support_email</dt> <dd>The (optional) mailaddress to contact for support</dd> <dt>support_branding.release</dt> <dd>The (optional) version number of your deployment</dd> </dl> <p>You probably want to depend on this module in your customer specific module and add the following XML:</p> <pre> <code>&lt;record id=&quot;support_branding.config_parameter_company_name&quot; model=&quot;ir.config_parameter&quot;&gt; &lt;field name=&quot;value&quot;&gt;Your company&lt;/field&gt; &lt;/record&gt; &lt;record id=&quot;support_branding.config_parameter_company_url&quot; model=&quot;ir.config_parameter&quot;&gt; &lt;field name=&quot;value&quot;&gt;https://yourwebsite.com&lt;/field&gt; &lt;/record&gt; &lt;record id=&quot;support_branding.config_parameter_company_color&quot; model=&quot;ir.config_parameter&quot;&gt; &lt;field name=&quot;value&quot;&gt;#000&lt;/field&gt; &lt;/record&gt; &lt;record id=&quot;support_branding.config_parameter_support_email&quot; model=&quot;ir.config_parameter&quot;&gt; &lt;field name=&quot;value&quot;&gt;support&#64;yourwebsite.com&lt;/field&gt; &lt;/record&gt; &lt;record id=&quot;config_parameter_release&quot; model=&quot;ir.config_parameter&quot;&gt; &lt;field name=&quot;value&quot;&gt;42&lt;/field&gt; &lt;/record&gt;Configuration</code> </pre> <p>Note that the email button is only visible if you configure an email address, the default is empty!</p>