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.

108 lines
3.5 KiB

8 years ago
8 years ago
  1. .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
  2. :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
  3. :alt: License: AGPL-3
  4. ================
  5. Support branding
  6. ================
  7. If you run an Odoo support company and you support customers without an OPW,
  8. you can brand the Odoo instance accordingly using this module. This module will
  9. add a line `Supported by $yourcompany` in the menu footer and add a button to
  10. mail exception messages to your support email address.
  11. Configuration
  12. =============
  13. This module is controlled by config parameters:
  14. support_branding.company_name
  15. Your company's name
  16. support_branding.company_url
  17. Your company's website
  18. support_branding.company_color
  19. The color to show your company's name in (CSS syntax)
  20. support_branding.support_email
  21. The (optional) mailaddress to contact for support
  22. support_branding.release
  23. The (optional) version number of your deployment
  24. You probably want to depend on this module in your customer specific module and
  25. add the following XML::
  26. <record id="support_branding.config_parameter_company_name" model="ir.config_parameter">
  27. <field name="value">Your company</field>
  28. </record>
  29. <record id="support_branding.config_parameter_company_url" model="ir.config_parameter">
  30. <field name="value">https://yourwebsite.com</field>
  31. </record>
  32. <record id="support_branding.config_parameter_company_color" model="ir.config_parameter">
  33. <field name="value">#000</field>
  34. </record>
  35. <record id="support_branding.config_parameter_support_email" model="ir.config_parameter">
  36. <field name="value">support@yourwebsite.com</field>
  37. </record>
  38. <record id="config_parameter_release" model="ir.config_parameter">
  39. <field name="value">42</field>
  40. </record>Configuration
  41. Note that the email button is only visible if you configure an email address,
  42. the default is empty!
  43. Usage
  44. =====
  45. To use this module, you need to:
  46. #. In developer mode go to Settings > Technical > Paremeters > System Parameters
  47. #. Configure parameters related with support branding
  48. #. Support branding is shown in the lower part of the left menu and when an exception is raised, the user is asked to provide some details in order to send a mail to the configured support email address.
  49. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
  50. :alt: Try me on Runbot
  51. :target: https://runbot.odoo-community.org/runbot/162/9.0
  52. Bug Tracker
  53. ===========
  54. Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.
  55. In case of trouble, please check there if your issue has already been reported.
  56. If you spotted it first, help us smashing it by providing a detailed and welcomed feedback
  57. `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**>`_.
  58. Credits
  59. =======
  60. Contributors
  61. ------------
  62. * Holger Brunn <hbrunn@therp.nl>
  63. * Stefan Rijnhart <srijnhart@therp.nl>
  64. * Angel Moya <odoo@tecnativa.com>
  65. Icon
  66. ----
  67. * https://commons.wikimedia.org/wiki/File:Crystal_Clear_app_khelpcenter.png
  68. Maintainer
  69. ----------
  70. .. image:: https://odoo-community.org/logo.png
  71. :alt: Odoo Community Association
  72. :target: https://odoo-community.org
  73. This module is maintained by the OCA.
  74. OCA, or the Odoo Community Association, is a nonprofit organization whose
  75. mission is to support the collaborative development of Odoo features and
  76. promote its widespread use.
  77. To contribute to this module, please visit http://odoo-community.org.