blob: 0f3926305b0c7f3032e46f13209497a66afc486c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<odoo>
<template id="report_purchase_order_npwp" inherit_id="purchase.report_purchaseorder_document">
<xpath expr="//p[@t-field='o.notes']" position="after">
<div class="col-12" name="right_box">
<b>NPWP</b><br/>74.226.022.7-086.000<br/><b>PT. INDOTEKNIK DOTCOM GEMILANG</b><br/>JALAN BANDENGAN UTARA BLOK 85A NO 8-9<br/>PENJARINGAN, PENJARINGAN<br/>KOTA ADM, JAKARTA UTARA DKI JAKARTA 14440
</div>
</xpath>
<xpath expr="//div[@id='informations']" position="inside">
<div t-if="o.date_planned" class="col-3 bm-2">
<strong>Receipt Date:</strong>
<p t-field="o.date_planned" class="m-0"/>
</div>
</xpath>
</template>
</odoo>
|