summaryrefslogtreecommitdiff
path: root/indoteknik_custom/report/purchase_report.xml
blob: 191a4dfa9025e4eada73336c55a0d70c4a58c9b6 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?xml version="1.0" encoding="utf-8"?>
<odoo>
    <data>
        <!-- Report Action -->
        <record id="action_report_purchaseorder_website" model="ir.actions.report">
            <field name="name">Purchase Order (Website)</field>
            <field name="model">purchase.order</field>
            <field name="report_type">qweb-pdf</field>
            <field name="report_name">indoteknik_custom.report_purchaseorder_website</field>
            <field name="report_file">indoteknik_custom.report_purchaseorder_website</field>
            <field name="print_report_name">
                ('PO - %s - %s' % (object.partner_id.name, object.name))
            </field>
            <field name="binding_model_id" ref="purchase.model_purchase_order"/>
            <field name="binding_type">report</field>
        </record>
    </data>

    <!-- Wrapper Template -->
    <template id="report_purchaseorder_website">
        <t t-call="web.html_container">
            <t t-foreach="docs" t-as="doc">
                <t t-call="indoteknik_custom.report_purchaseorder_website_document" t-lang="doc.partner_id.lang"/>
            </t>
        </t>
    </template>

    <template id="report_purchaseorder_website_document">
        <t t-call="web.html_container">
            <t t-set="doc" t-value="doc.with_context(lang=doc.partner_id.lang)" />

            <!-- Header -->
            <div class="header">
                <img src="https://erp.indoteknik.com/api/image/ir.attachment/datas/2498521"
                    style="width:100%; display: block;"/>
            </div>


            <!-- PAGE CONTENT -->
            <div class="article" style="margin: 0 1.5cm 0 1.5cm; ">
                <!-- TITLE -->
                <h2 style="text-align:center; margin:0; color:#d32f2f; font-weight:bold;">
                    PURCHASE ORDER
                </h2>
                <h4 style="text-align:center; margin:0 0 20px 0;">
                    No. <span t-field="doc.name"/>
                </h4>

                <!-- TOP INFO -->
                <table style="width:100%; margin-bottom:16px; font-size:14px;">
                    <tr>
                        <td><strong>Term Of Payment:</strong> <span t-field="doc.payment_term_id.name"/></td>
                        <td><strong>Order Date:</strong> <span t-field="doc.date_order" t-options='{"widget": "date"}'/></td>
                        <td><strong>Responsible:</strong> <span t-field="doc.user_id"/></td>
                    </tr>
                </table>

                <!-- VENDOR & DELIVERY -->
                <table style="width:100%; margin-bottom:24px; border-collapse:separate; border-spacing:16px 0;">
                    <tr>
                        <td style="width:50%; border:1px solid #ccc; padding:8px; vertical-align:top;">
                            <strong>Alamat Pengiriman:</strong><br/>
                            PT Indoteknik (Bandengan 1 Depan)<br/>
                            Jl. Bandengan Utara Komp A 8 B<br/>
                            RT. Penjaringan, Kec. Penjaringan, Jakarta (BELAKANG INDOMARET)<br/>
                            JK 14440 - Indonesia
                        </td>
                        <td style="width:50%; border:1px solid #ccc; padding:8px; vertical-align:top;">
                            <strong>Nama Vendor:</strong><br/>
                            <span t-field="doc.partner_id.name"/><br/>
                            <span t-field="doc.partner_id.street"/><br/>
                            <span t-field="doc.partner_id.city"/> - <span t-field="doc.partner_id.zip"/>
                        </td>
                    </tr>
                </table>

                <!-- ORDER LINES -->
                <!-- ORDER LINES -->
                <table style="border-collapse:collapse; width:100%; margin-top:16px;">
                    <thead style="display: table-header-group;">
                        <tr style="background:#f2f2f2;">
                            <th style="border:1px solid #ccc; padding:4px;">Description</th>
                            <th style="border:1px solid #ccc; padding:4px; text-align:right;">Quantity</th>
                            <th style="border:1px solid #ccc; padding:4px; text-align:right;">Unit Price</th>
                            <th style="border:1px solid #ccc; padding:4px; text-align:right;">Taxes</th>
                            <th style="border:1px solid #ccc; padding:4px; text-align:right;">Subtotal</th>
                        </tr>
                    </thead>
                    <tbody>
                        <t t-foreach="doc.order_line" t-as="line">
                            <tr style="page-break-inside: avoid;">
                                <td style="border:1px solid #ccc; padding:4px;">
                                    <span t-field="line.name"/>
                                </td>
                                <td style="border:1px solid #ccc; padding:4px; text-align:right;">
                                    <span t-field="line.product_qty"/> <span t-field="line.product_uom"/>
                                </td>
                                <td style="border:1px solid #ccc; padding:4px; text-align:right;">
                                    <span t-field="line.price_unit"/>
                                </td>
                                <td style="border:1px solid #ccc; padding:4px; text-align:right;">
                                    <span t-esc="', '.join(map(lambda x: (x.description or x.name), line.taxes_id))"/>
                                </td>
                                <td style="border:1px solid #ccc; padding:4px; text-align:right;">
                                    <span t-field="line.price_subtotal"/>
                                </td>
                            </tr>

                            <!-- Tambah jarak + border atas buat deskripsi -->
                            <t t-if="line.product_id.website_description">
                                <tr style="page-break-inside: avoid;">
                                    <td colspan="5" style="border:1px solid #ccc; background:#fafafa; padding:10px;">
                                        <span t-field="line.product_id.website_description"/>
                                    <!-- <td colspan="5"
                                        style="
                                            padding:10px 12px;
                                            font-size:11px;
                                            background:#fafafa;
                                            border:1px solid #ccc;
                                            border-top:0;
                                            page-break-inside: avoid;
                                        "> -->
                                            <!-- <div t-raw="line.product_id.website_description"/> -->
                                    </td>
                                </tr>
                            </t>
                        </t>
                    </tbody>
                </table>


                <!-- TOTALS -->
                <table style="margin-top:20px; margin-left:auto; width:40%; font-size:14px;">
                    <tr>
                        <td><strong>Subtotal</strong></td>
                        <td style="text-align:right;"><span t-field="doc.amount_untaxed"/></td>
                    </tr>
                    <tr>
                        <td>Taxes</td>
                        <td style="text-align:right;"><span t-field="doc.amount_tax"/></td>
                    </tr>
                    <tr>
                        <td><strong>Total</strong></td>
                        <td style="text-align:right;"><span t-field="doc.amount_total"/></td>
                    </tr>
                </table>

                <!-- NOTES -->
                <div style="margin-top:24px;">
                    <p t-field="doc.notes"/>
                </div>
            </div>
        <!-- STATIC FOOTER -->
            <div class="footer">
                <img src="https://erp.indoteknik.com/api/image/ir.attachment/datas/2859765"
                    style="width:100%; display: block;"/>
            </div>

        </t>
    </template>


</odoo>