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
3.2 KiB

[9.0][MIG][mass_mailing_custom_unsubscribe] Migrate. - Imported last updates from v8. - Adapted to v9. - Added a saner default to `mass_mailing.salt` configuration parameter by reusing `database.secret` if available, hoping that some day https://github.com/odoo/odoo/pull/12040 gets merged. - Updated README. - Increase security, drop backwards compatibility. Security got improved upstream, which would again break compatibility among current addon and future master upstream. I choose to break it now and keep it secured future-wise, so I drop the backwards compatibility features. - Includes tour tests. - Removes outdated tests. - Extends the mailing list management form when unsubscriber is a contact. - Adds a reason form even if he is not. - Avoids all methods that were not model-agnostic. [FIX][mass_mailing_custom_unsubscribe] Reasons noupdate After this fix, when you update the addon, you will not lose your customized reasons. [FIX] Compatibilize with mass_mailing_partner Current test code was based on the assumption that the `@api.model` decorator on `create()` ensured an empty recordset when running the method, but that's not true. This was causing an incompatibility betwee these tests and the `mass_mailing_partner` addon, which works assuming 0-1 recordsets. Now records are created from an empty recordset, and thus tests work everywhere. Update instructions If the user does not add the unsubscribe snippet, nothing will happen, so it's added to README to avoid confusion when testing/using the addon. [FIX] Use the right operator to preserve recordsets order Using `|=` sorts records at will each time (treating them as Python's `set`). Using `+=` always appends a record to the end of the set. Since we are using the record position in the set, this caused the test to work sometimes and fail other times. Now it works always.
8 years ago
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <!-- Copyright 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
  3. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
  4. <odoo>
  5. <template id="reason" name="UI for Providing Unsubscription Reasons">
  6. <div t-attf-class="js_unsubscription_reason #{extra_class or ''}">
  7. <div class="col-md-12 mt16">
  8. Before unsubscribing, could you please tell us why do you want to unsubscribe?
  9. </div>
  10. <div class="col-md-12 mb16">
  11. <input
  12. type="hidden"
  13. name="res_id"
  14. t-att-value="res_id"/>
  15. <input
  16. type="hidden"
  17. name="email"
  18. t-att-value="email"/>
  19. <input
  20. type="hidden"
  21. name="token"
  22. t-att-value="token"/>
  23. <t t-foreach="reasons" t-as="reason">
  24. <div class="radio">
  25. <label>
  26. <input
  27. type="radio"
  28. name="reason_id"
  29. t-att-data-details-required="reason.details_required"
  30. t-att-value="reason.id"/>
  31. <t t-esc="reason.display_name"/>
  32. </label>
  33. </div>
  34. </t>
  35. <div t-attf-class="form-group">
  36. <textarea
  37. name="details"
  38. class="form-control"
  39. placeholder="I am unsubscribing because..."
  40. rows="3"/>
  41. </div>
  42. </div>
  43. </div>
  44. </template>
  45. <template id="reason_form"
  46. name="Unsubscription Reason Form">
  47. <t t-call="website.layout">
  48. <div id="wrap" class="oe_structure oe_empty">
  49. <section class="mt16 mb16">
  50. <form
  51. id="reason_form"
  52. class="container"
  53. t-attf-action="/mail/mailing/#{mailing.id}/unsubscribe"
  54. method="post">
  55. <input
  56. type="hidden"
  57. name="csrf_token"
  58. t-att-value="request.csrf_token()"/>
  59. <div class="row">
  60. <div class="col-md-12 text-center mt16 mb32">
  61. <h2>
  62. Mailing Unsubscription
  63. </h2>
  64. </div>
  65. <t t-call="mass_mailing_custom_unsubscribe.reason"/>
  66. <div class="form-group mb16 mt16">
  67. <button type="submit" class="btn btn-danger">
  68. Unsubscribe now
  69. </button>
  70. <p class="help-block">Thank you!</p>
  71. </div>
  72. </div>
  73. </form>
  74. </section>
  75. </div>
  76. </t>
  77. </template>
  78. </odoo>