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.

95 lines
3.1 KiB

  1. .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
  2. :alt: License: AGPL-3
  3. Support branding
  4. ================
  5. If you run an Odoo support company and you support customers without an OPW,
  6. you can brand the Odoo instance accordingly using this module. This module will
  7. add a line `Supported by $yourcompany` in the menu footer and add a button to
  8. mail exception messages to your support email address.
  9. Configuration
  10. =============
  11. This module is controlled by config parameters:
  12. support_branding.company_name
  13. Your company's name
  14. support_branding.company_url
  15. Your company's website
  16. support_branding.company_color
  17. The color to show your company's name in (CSS syntax)
  18. support_branding.support_email
  19. The (optional) mailaddress to contact for support
  20. support_branding.release
  21. The (optional) version number of your deployment
  22. You probably want to depend on this module in your customer specific module and
  23. add the following XML::
  24. <record id="support_branding.config_parameter_company_name" model="ir.config_parameter">
  25. <field name="value">Your company</field>
  26. </record>
  27. <record id="support_branding.config_parameter_company_url" model="ir.config_parameter">
  28. <field name="value">https://yourwebsite.com</field>
  29. </record>
  30. <record id="support_branding.config_parameter_company_color" model="ir.config_parameter">
  31. <field name="value">#000</field>
  32. </record>
  33. <record id="support_branding.config_parameter_support_email" model="ir.config_parameter">
  34. <field name="value">support@yourwebsite.com</field>
  35. </record>
  36. <record id="support_branding.config_parameter_support_email" model="ir.config_parameter">
  37. <field name="value">support@yourwebsite.com</field>
  38. </record>
  39. <record id="config_parameter_release" model="ir.config_parameter">
  40. <field name="value">42</field>
  41. </record>Configuration
  42. Note that the email button is only visible if you configure an email address,
  43. the default is empty!
  44. Bug Tracker
  45. ===========
  46. Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.
  47. In case of trouble, please check there if your issue has already been reported.
  48. If you spotted it first, help us smashing it by providing a detailed and welcomed feedback
  49. `here <https://github.com/OCA/web/issues/new?body=module:%20support_branding%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
  50. Credits
  51. =======
  52. Contributors
  53. ------------
  54. * Holger Brunn <hbrunn@therp.nl>
  55. * Stefan Rijnhart <srijnhart@therp.nl>
  56. * Sébastien Alix <sebastien.alix@osiell.com>
  57. Icon
  58. ----
  59. * https://commons.wikimedia.org/wiki/File:Crystal_Clear_app_khelpcenter.png
  60. Maintainer
  61. ----------
  62. .. image:: https://odoo-community.org/logo.png
  63. :alt: Odoo Community Association
  64. :target: https://odoo-community.org
  65. This module is maintained by the OCA.
  66. OCA, or the Odoo Community Association, is a nonprofit organization whose
  67. mission is to support the collaborative development of Odoo features and
  68. promote its widespread use.
  69. To contribute to this module, please visit http://odoo-community.org.