summaryrefslogtreecommitdiff
path: root/addons/purchase/report/purchase_quotation_templates.xml
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/purchase/report/purchase_quotation_templates.xml
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/purchase/report/purchase_quotation_templates.xml')
-rw-r--r--addons/purchase/report/purchase_quotation_templates.xml70
1 files changed, 70 insertions, 0 deletions
diff --git a/addons/purchase/report/purchase_quotation_templates.xml b/addons/purchase/report/purchase_quotation_templates.xml
new file mode 100644
index 00000000..958de3e1
--- /dev/null
+++ b/addons/purchase/report/purchase_quotation_templates.xml
@@ -0,0 +1,70 @@
+<?xml version="1.0" encoding="utf-8"?>
+<odoo>
+<template id="report_purchasequotation_document">
+ <t t-call="web.external_layout">
+ <t t-set="o" t-value="o.with_context(lang=o.partner_id.lang)"/>
+ <t t-set="address">
+ <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 'Tax ID'"/>: <span t-field="o.partner_id.vat"/></p>
+ </t>
+ <t t-if="o.dest_address_id">
+ <t t-set="information_block">
+ <strong>Shipping address:</strong>
+ <div t-field="o.dest_address_id"
+ t-options='{"widget": "contact", "fields": ["address", "name", "phone"], "no_marker": True, "phone_icons": True}' name="purchase_shipping_address"/>
+ </t>
+ </t>
+ <div class="page">
+ <div class="oe_structure"/>
+
+ <h2>Request for Quotation <span t-field="o.name"/></h2>
+
+ <table class="table table-sm">
+ <thead>
+ <tr>
+ <th name="th_description"><strong>Description</strong></th>
+ <th name="th_expected_date" class="text-center"><strong>Expected Date</strong></th>
+ <th name="th_quantity" class="text-right"><strong>Qty</strong></th>
+ </tr>
+ </thead>
+ <tbody>
+ <t t-foreach="o.order_line" t-as="order_line">
+ <tr t-att-class="'bg-200 font-weight-bold o_line_section' if order_line.display_type == 'line_section' else 'font-italic o_line_note' if order_line.display_type == 'line_note' else ''">
+ <t t-if="not order_line.display_type">
+ <td id="product">
+ <span t-field="order_line.name"/>
+ </td>
+ <td class="text-center">
+ <span t-field="order_line.date_planned"/>
+ </td>
+ <td class="text-right">
+ <span t-field="order_line.product_qty"/>
+ <span t-field="order_line.product_uom" groups="uom.group_uom"/>
+ </td>
+ </t>
+ <t t-else="">
+ <td colspan="99" id="section">
+ <span t-field="order_line.name"/>
+ </td>
+ </t>
+ </tr>
+ </t>
+ </tbody>
+ </table>
+
+ <p t-field="o.notes"/>
+
+ <div class="oe_structure"/>
+ </div>
+ </t>
+</template>
+
+<template id="report_purchasequotation">
+ <t t-call="web.html_container">
+ <t t-foreach="docs" t-as="o">
+ <t t-call="purchase.report_purchasequotation_document" t-lang="o.partner_id.lang"/>
+ </t>
+ </t>
+</template>
+</odoo>