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.

82 lines
2.9 KiB

  1. <section class="oe_container">
  2. <div class="oe_row oe_spaced">
  3. <h2 class="oe_slogan">Web Client</h2>
  4. <h3 class="oe_slogan">Web Client Extension</h3>
  5. <h4 class="oe_slogan" style="font-size: 23px;">MuK IT GmbH -
  6. www.mukit.at</h4>
  7. </div>
  8. </section>
  9. <section class="oe_container" style="padding-bottom: 50px;">
  10. <div class="oe_row oe_spaced">
  11. <div style="max-width: 84%; margin: 16px 8%;">
  12. <h3 class="oe_slogan">Overview</h3>
  13. <p class="oe_mt32" style="padding-bottom: 10px; text-align: justify;">
  14. Extends the Odoo web client to include bus channels. Channels can be
  15. created to listen to Odoo bus notifications. To add a channel
  16. listener to the client just extend the web client and declare a new
  17. bus channel.</p>
  18. <pre>
  19. <code>
  20. var WebClient = require('web.WebClient');
  21. var session = require('web.session');
  22. WebClient.include({
  23. show_application: function() {
  24. var channel = 'mychannel';
  25. this.bus_declare_channel(channel, this.doSomething);
  26. return this._super.apply(this, arguments);
  27. },
  28. doSomething: function(message) {
  29. ...
  30. }
  31. });
  32. </code>
  33. </pre>
  34. </div>
  35. </div>
  36. </section>
  37. <section class="oe_container oe_dark"
  38. style="margin-bottom: 20px; border-top: 5px solid #797979; border-bottom: 5px solid #797979;">
  39. <h3 class="oe_slogan" style="margin-bottom: 10px;">Demo</h3>
  40. <div class="row" style="margin: auto; max-width: 250px;">
  41. <div class="col-6 col-xs-6">
  42. <h5 class="oe_slogan" style="font-size: 20px; margin: 2px;">User:</h5>
  43. </div>
  44. <div class="col-6 col-xs-6">
  45. <h5 class="oe_slogan" style="font-size: 20px; margin: 2px;">apps</h5>
  46. </div>
  47. <div class="col-6 col-xs-6">
  48. <h5 class="oe_slogan" style="font-size: 20px; margin: 2px;">Password:</h5>
  49. </div>
  50. <div class="col-6 col-xs-6">
  51. <h5 class="oe_slogan" style="font-size: 20px; margin: 2px;">demo</h5>
  52. </div>
  53. </div>
  54. <div class="oe_slogan" style="margin-top: 5px;">
  55. <a class="btn btn-primary btn-lg mt8"
  56. href="https://demo.mukit.at/web/login"
  57. style="position: relative; overflow: hidden;">
  58. <i class="fa fa-video-camera"></i> Live Preview
  59. </a>
  60. </div>
  61. </section>
  62. <section class="oe_container oe_dark">
  63. <h3 class="oe_slogan">Help and Support</h3>
  64. <h5 class="oe_slogan" style="font-size: 20px;">Feel free to
  65. contact us, if you need any help with your Odoo integration or
  66. addiontal features.</h5>
  67. <div class="oe_slogan">
  68. <a class="btn btn-primary btn-lg mt8" href="mailto:sale@mukit.at">
  69. <i class="fa fa-envelope"></i> Email
  70. </a>
  71. <a class="btn btn-primary btn-lg mt8" href="https://mukit.at/page/contactus">
  72. <i class="fa fa-phone"></i> Contact
  73. </a>
  74. <a class="btn btn-primary btn-lg mt8" href="mailto:support@mukit.at">
  75. <i class="fa fa-life-ring"></i> Support
  76. </a>
  77. </div>
  78. <img src="logo.png" style="width: 200px; margin-bottom: 20px; display: block;" class="mx-auto center-block">
  79. </section>