mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-27 23:32:00 +02:00
Initial commit: Sale packages
This commit is contained in:
commit
14e3d26998
6469 changed files with 2479670 additions and 0 deletions
|
|
@ -0,0 +1,45 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<template id="report_saleorder_document_inherit_sale_management" inherit_id="sale.report_saleorder_document">
|
||||
<xpath expr="//div[@name='signature']" position="after">
|
||||
<div t-if="doc.sale_order_option_ids and doc.state in ['draft', 'sent']">
|
||||
<t t-set="has_option_discount" t-value="any(option.discount != 0.0 for option in doc.sale_order_option_ids)" />
|
||||
<h4 name="h_optional_products">
|
||||
<span>Options</span>
|
||||
</h4>
|
||||
<table name="table_optional_products" class="table table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th name="th_option_name" class="text-start">Description</th>
|
||||
<th t-if="has_option_discount" name="th_option_discount" groups="product.group_discount_per_so_line" class="text-start">Disc.%</th>
|
||||
<th name="th_option_price_unit" class="text-end">Unit Price</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="sale_tbody">
|
||||
<tr t-foreach="doc.sale_order_option_ids" t-as="option">
|
||||
<td name="td_option_name">
|
||||
<span t-field="option.name"/>
|
||||
</td>
|
||||
<td t-if="has_option_discount" name="td_option_discount" groups="product.group_discount_per_so_line">
|
||||
<strong t-if="option.discount != 0.0" class="text-info">
|
||||
<t t-out="((option.discount % 1) and '%s' or '%d') % option.discount"/>%
|
||||
</strong>
|
||||
</td>
|
||||
<td name="td_option_price_unit">
|
||||
<strong class="text-end">
|
||||
<div t-field="option.price_unit"
|
||||
t-options='{"widget": "monetary", "display_currency": doc.pricelist_id.currency_id}'
|
||||
t-att-style="option.discount and 'text-decoration: line-through' or None"
|
||||
t-att-class="option.discount and 'text-danger' or None"/>
|
||||
<div t-if="option.discount">
|
||||
<t t-out="((1-option.discount / 100.0) * option.price_unit)" t-options='{"widget": "monetary", "display_currency": doc.currency_id}'/>
|
||||
</div>
|
||||
</strong>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</xpath>
|
||||
</template>
|
||||
</odoo>
|
||||
Loading…
Add table
Add a link
Reference in a new issue