diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/purchase_product_matrix/report | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/purchase_product_matrix/report')
| -rw-r--r-- | addons/purchase_product_matrix/report/purchase_order_templates.xml | 10 | ||||
| -rw-r--r-- | addons/purchase_product_matrix/report/purchase_quotation_templates.xml | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/addons/purchase_product_matrix/report/purchase_order_templates.xml b/addons/purchase_product_matrix/report/purchase_order_templates.xml new file mode 100644 index 00000000..91a1d077 --- /dev/null +++ b/addons/purchase_product_matrix/report/purchase_order_templates.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <template id="grid_purchaseorder_inherit" inherit_id="purchase.report_purchaseorder_document"> + <xpath expr="//div[@id='informations']" position="after"> + <t t-call="product_matrix.matrix"> + <t t-set="order" t-value="o"/> + </t> + </xpath> + </template> +</odoo> diff --git a/addons/purchase_product_matrix/report/purchase_quotation_templates.xml b/addons/purchase_product_matrix/report/purchase_quotation_templates.xml new file mode 100644 index 00000000..a00c15bc --- /dev/null +++ b/addons/purchase_product_matrix/report/purchase_quotation_templates.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <template id="grid_report_purchaseorder_template_inherit" inherit_id="purchase.report_purchasequotation_document"> + <xpath expr="//table[hasclass('table')]" position="before"> + <t t-call="product_matrix.matrix"> + <t t-set="order" t-value="o"/> + </t> + </xpath> + </template> +</odoo> |
