2018-01-16 06:58:15 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-01-16 11:34:37 +01:00
|
|
|
<flectra>
|
2018-01-16 06:58:15 +01:00
|
|
|
<template id="report_purchaseorder_document">
|
|
|
|
<t t-call="web.external_layout">
|
|
|
|
<t t-set="o" t-value="o.with_context({'lang':o.partner_id.lang})"/>
|
|
|
|
<div class="page">
|
|
|
|
<div class="oe_structure"/>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-6">
|
|
|
|
<strong>Shipping address:</strong>
|
|
|
|
<div t-if="o.dest_address_id">
|
|
|
|
<div t-field="o.dest_address_id"
|
|
|
|
t-options='{"widget": "contact", "fields": ["address", "name", "phone"], "no_marker": True, "phone_icons": True}'/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div t-if="not o.dest_address_id and o.picking_type_id and o.picking_type_id.warehouse_id">
|
|
|
|
<span t-field="o.picking_type_id.warehouse_id.name"/>
|
|
|
|
<div t-field="o.picking_type_id.warehouse_id.partner_id"
|
|
|
|
t-options='{"widget": "contact", "fields": ["address", "phone"], "no_marker": True, "phone_icons": True}'/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-xs-5 col-xs-offset-1">
|
|
|
|
<div t-field="o.partner_id"
|
|
|
|
t-options='{"widget": "contact", "fields": ["address", "name", "phone"], "no_marker": True, "phone_icons": True}'/>
|
|
|
|
<p t-if="o.partner_id.vat"><t t-esc="o.company_id.country_id.vat_label or 'TIN'"/>: <span t-field="o.partner_id.vat"/></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h2 t-if="o.state != 'draft'">Purchase Order Confirmation #<span t-field="o.name"/></h2>
|
|
|
|
<h2 t-if="o.state == 'draft'">Request for Quotation #<span t-field="o.name"/></h2>
|
|
|
|
|
|
|
|
<div class="row mt32 mb32">
|
|
|
|
<div t-if="o.name" class="col-xs-3">
|
|
|
|
<strong>Our Order Reference:</strong>
|
|
|
|
<p t-field="o.name"/>
|
|
|
|
</div>
|
|
|
|
<div t-if="o.partner_ref" class="col-xs-3">
|
|
|
|
<strong>Your Order Reference:</strong>
|
|
|
|
<p t-field="o.partner_ref"/>
|
|
|
|
</div>
|
|
|
|
<div t-if="o.date_order" class="col-xs-3">
|
|
|
|
<strong>Order Date:</strong>
|
|
|
|
<p t-field="o.date_order"/>
|
|
|
|
</div>
|
2018-01-18 10:57:39 +01:00
|
|
|
<div name="branch" t-if="o.branch_id" class="col-xs-3">
|
|
|
|
<strong>Branch:</strong>
|
|
|
|
<p t-field="o.branch_id"/>
|
|
|
|
</div>
|
2018-01-16 06:58:15 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<table class="table table-condensed">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th><strong>Description</strong></th>
|
|
|
|
<th><strong>Taxes</strong></th>
|
|
|
|
<th class="text-center"><strong>Date Req.</strong></th>
|
|
|
|
<th class="text-right"><strong>Qty</strong></th>
|
|
|
|
<th class="text-right"><strong>Unit Price</strong></th>
|
|
|
|
<th class="text-right"><strong>Amount</strong></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr t-foreach="o.order_line" t-as="line">
|
|
|
|
<td>
|
|
|
|
<span t-field="line.name"/>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span t-esc="', '.join(map(lambda x: x.name, line.taxes_id))"/>
|
|
|
|
</td>
|
|
|
|
<td class="text-center">
|
|
|
|
<span t-field="line.date_planned"/>
|
|
|
|
</td>
|
|
|
|
<td class="text-right">
|
|
|
|
<span t-field="line.product_qty"/>
|
|
|
|
<span t-field="line.product_uom.name" groups="product.group_uom"/>
|
|
|
|
</td>
|
|
|
|
<td class="text-right">
|
|
|
|
<span t-field="line.price_unit"/>
|
|
|
|
</td>
|
|
|
|
<td class="text-right">
|
|
|
|
<span t-field="line.price_subtotal"
|
|
|
|
t-options='{"widget": "monetary", "display_currency": o.currency_id}'/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-4 pull-right">
|
|
|
|
<table class="table table-condensed">
|
|
|
|
<tr class="border-black">
|
|
|
|
<td><strong>Subtotal</strong></td>
|
|
|
|
<td class="text-right">
|
|
|
|
<span t-field="o.amount_untaxed"
|
|
|
|
t-options='{"widget": "monetary", "display_currency": o.currency_id}'/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Taxes</td>
|
|
|
|
<td class="text-right">
|
|
|
|
<span t-field="o.amount_tax"
|
|
|
|
t-options='{"widget": "monetary", "display_currency": o.currency_id}'/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr class="border-black">
|
|
|
|
<td><strong>Total</strong></td>
|
|
|
|
<td class="text-right">
|
|
|
|
<span t-field="o.amount_total"
|
|
|
|
t-options='{"widget": "monetary", "display_currency": o.currency_id}'/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p t-field="o.notes"/>
|
|
|
|
<div class="oe_structure"/>
|
|
|
|
</div>
|
|
|
|
</t>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template id="report_purchaseorder">
|
|
|
|
<t t-call="web.html_container">
|
|
|
|
<t t-foreach="docs" t-as="o">
|
|
|
|
<t t-call="purchase.report_purchaseorder_document" t-lang="o.partner_id.lang"/>
|
|
|
|
</t>
|
|
|
|
</t>
|
|
|
|
</template>
|
2018-01-16 11:34:37 +01:00
|
|
|
</flectra>
|