blob: 9163d9417f5c3da7d2e5c8cd0a1aa96b74e7f955 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<?xml version="1.0" ?>
<odoo>
<data>
<record id="mail_template_po_sync_price" model="mail.template">
<field name="name">PO: Sync Unit Price Purchase Pricelist</field>
<field name="model_id" ref="model_purchase_order" />
<field name="subject">Your PO ${object.name}</field>
<field name="email_from"></field>
<!-- <field name="email_to">darren@indoteknik.co.id, azkan4elll@gmail.com</field> -->
<field name="email_to">azkan4elll@gmail.com</field>
<field name="body_html" type="html">
<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">
<table border="0" cellpadding="0" cellspacing="0" width="100%"
style="min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse: separate;">
<tr>
<td valign="top" style="font-size: 13px;">
<div>
Dear Stefanus Darren & Tyas K Putra,
<br /><br />
Terdapat PO yang harga Unit Price nya tidak sama dengan yang ada di purchase pricelist nya.
<br /><br />
Berikut adalah rincian PO:
</div>
<table border="1" cellpadding="5" cellspacing="0"
style="border-collapse: collapse; width: 100%; font-size: 13px;">
<tr>
<th>Nama Produk</th>
<th>Brand</th>
<th>Harga Unit dalam PO</th>
<th>Harga Unit dalam Purchase Pricelist</th>
</tr>
% for line in object.order_line:
% if line.price_vendor != 0 and line.price_unit != line.price_vendor
<tr>
<td>${line.product_id.name}</td>
<td>${line.product_id.x_manufacture.x_name}</td>
<td>Rp ${'{:,.2f}'.format(line.price_unit)}</td>
<td>Rp ${'{:,.2f}'.format(line.price_vendor)}</td>
</tr>
% endif
% endfor
</table>
<div>
Silahkan periksa dan lakukan koreksi jika diperlukan.
<br /><br />
Terima kasih.
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</field>
<field name="auto_delete" eval="True" />
</record>
</data>
</odoo>
|