mail_template_data.xml 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <data noupdate="0">
  4. <record id="lunch_order_mail_supplier" model="mail.template">
  5. <field name="name">Lunch: Supplier Order</field>
  6. <field name="model_id" ref="lunch.model_lunch_supplier"/>
  7. <field name="email_from">{{ ctx['order']['email_from'] }}</field>
  8. <field name="partner_to">{{ ctx['order']['supplier_id'] }}</field>
  9. <field name="subject">Orders for {{ ctx['order']['company_name'] }}</field>
  10. <field name="lang">{{ ctx.get('default_lang') }}</field>
  11. <field name="description">Sent to vendor with the order of the day</field>
  12. <field name="body_html" type="html">
  13. <table border="0" cellpadding="0" cellspacing="0" style="padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;"><tr><td align="center">
  14. <table border="0" cellpadding="0" cellspacing="0" width="590" style="padding: 16px; background-color: white; color: #454748; border-collapse:separate;">
  15. <tbody>
  16. <!-- HEADER -->
  17. <tr>
  18. <td align="center" style="min-width: 590px;">
  19. <table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;">
  20. <tr><td valign="middle">
  21. <span style="font-size: 10px;">Lunch Order</span><br/>
  22. </td><td valign="middle" align="right">
  23. <img t-attf-src="/logo.png?company={{ user.company_id.id }}" style="padding: 0px; margin: 0px; height: auto; width: 80px;" t-att-alt="user.company_id.name"/>
  24. </td></tr>
  25. <tr><td colspan="2" style="text-align:center;">
  26. <hr width="100%" style="background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;"/>
  27. </td></tr>
  28. </table>
  29. </td>
  30. </tr>
  31. <!-- CONTENT -->
  32. <tr>
  33. <td align="center" style="min-width: 590px;">
  34. <table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;">
  35. <tr>
  36. <td valign="top" style="font-size: 13px;">
  37. <div>
  38. <t t-set="lines" t-value="ctx.get('lines', [])"/>
  39. <t t-set="order" t-value="ctx.get('order')"/>
  40. <t t-set="currency" t-value="user.env['res.currency'].browse(order.get('currency_id'))"/>
  41. <p>
  42. Dear <t t-out="order.get('supplier_name', '')">Laurie Poiret</t>,
  43. </p><p>
  44. Here is, today orders for <t t-out="order.get('company_name', '')">LunchCompany</t>:
  45. </p>
  46. <t t-if="sites">
  47. <br/>
  48. <p>Location</p>
  49. <t t-foreach="site" t-as="site">
  50. <p><t t-out="site['name'] or ''"></t> : <t t-out="site['address'] or ''"></t></p>
  51. </t>
  52. <br/>
  53. </t>
  54. <table>
  55. <thead>
  56. <tr style="background-color:rgb(233,232,233);">
  57. <th style="width: 100%; min-width: 96px; font-size: 13px;"><strong>Product</strong></th>
  58. <th style="width: 100%; min-width: 96px; font-size: 13px;"><strong>Comments</strong></th>
  59. <th style="width: 100%; min-width: 96px; font-size: 13px;"><strong>Person</strong></th>
  60. <th style="width: 100%; min-width: 96px; font-size: 13px;"><strong>Site</strong></th>
  61. <th style="width: 100%; min-width: 96px; font-size: 13px;" align="center"><strong>Qty</strong></th>
  62. <th style="width: 100%; min-width: 96px; font-size: 13px;" align="center"><strong>Price</strong></th>
  63. </tr>
  64. </thead>
  65. <tbody>
  66. <tr t-foreach="lines" t-as="line">
  67. <td style="width: 100%; font-size: 13px;" valign="top" t-out="line['product'] or ''">Sushi salmon</td>
  68. <td style="width: 100%; font-size: 13px;" valign="top">
  69. <t t-if="line['toppings']">
  70. <t t-out="line['toppings'] or ''">Soy sauce</t>
  71. </t>
  72. <t t-if="line['note']">
  73. <div style="color: rgb(173,181,189);" t-out="line['note'] or ''">With wasabi.</div>
  74. </t>
  75. </td>
  76. <td style="width: 100%; font-size: 13px;" valign="top" t-out="line['username'] or ''">lap</td>
  77. <td style="width: 100%; font-size: 13px;" valign="top" t-out="line['site'] or ''">Office 1</td>
  78. <td style="width: 100%; font-size: 13px;" valign="top" align="right" t-out="line['quantity'] or ''">10</td>
  79. <td style="width: 100%; font-size: 13px;" valign="top" align="right" t-out="format_amount(line['price'], currency) or ''">$ 1.00</td>
  80. </tr>
  81. <tr>
  82. <td></td>
  83. <td></td>
  84. <td></td>
  85. <td></td>
  86. <td style="width: 100%; font-size: 13px; border-top: 1px solid black;"><strong>Total</strong></td>
  87. <td style="width: 100%; font-size: 13px; border-top: 1px solid black;" align="right"><strong t-out="format_amount(order['amount_total'], currency) or ''">$ 10.00</strong></td>
  88. </tr>
  89. </tbody>
  90. </table>
  91. <p>Do not hesitate to contact us if you have any questions.</p>
  92. </div>
  93. </td>
  94. </tr>
  95. <tr>
  96. <td style="text-align:center;">
  97. <hr width="100%" style="background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;"/>
  98. </td>
  99. </tr>
  100. </table>
  101. </td>
  102. </tr>
  103. <!-- FOOTER -->
  104. <tr>
  105. <td align="center" style="min-width: 590px;">
  106. <table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;">
  107. <tr><td valign="middle" align="left">
  108. <t t-out="user.company_id.name or ''">YourCompany</t>
  109. </td></tr>
  110. <tr><td valign="middle" align="left" style="opacity: 0.7;">
  111. <t t-out="user.company_id.phone or ''">+1 650-123-4567</t>
  112. <t t-if="user.company_id.phone and (user.company_id.email or user.company_id.website)">|</t>
  113. <t t-if="user.company_id.email">
  114. <a t-attf-href="'mailto:%s' % {{ user.company_id.email }}" style="text-decoration:none; color: #454748;" t-out="user.company_id.email or ''">info@yourcompany.com</a>
  115. </t>
  116. <t t-if="user.company_id.email and user.company_id.website">|</t>
  117. <t t-if="user.company_id.website">
  118. <a t-attf-href="'%s' % {{ user.company_id.website }}" style="text-decoration:none; color: #454748;" t-out="user.company_id.website or ''">http://www.example.com</a>
  119. </t>
  120. </td></tr>
  121. </table>
  122. </td>
  123. </tr>
  124. </tbody>
  125. </table>
  126. </td></tr>
  127. <!-- POWERED BY -->
  128. <tr><td align="center" style="min-width: 590px;">
  129. <table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;">
  130. <tr><td style="text-align: center; font-size: 13px;">
  131. Powered by <a target="_blank" href="https://www.odoo.com" style="color: #875A7B;">Odoo</a>
  132. </td></tr>
  133. </table>
  134. </td></tr>
  135. </table>
  136. </field>
  137. </record>
  138. </data></odoo>