Anpassungen an Reports Angebot/Auftrag/Lieferschein/Rechnung
parent
5fd8d8347b
commit
d8c30619e8
|
|
@ -217,7 +217,7 @@
|
||||||
<tbody class="totals-tbody">
|
<tbody class="totals-tbody">
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
Zwischensumme
|
Nettobetrag
|
||||||
</td>
|
</td>
|
||||||
<td class="text-right">
|
<td class="text-right">
|
||||||
<span t-field="o.amount_untaxed"
|
<span t-field="o.amount_untaxed"
|
||||||
|
|
@ -228,6 +228,9 @@
|
||||||
<td>
|
<td>
|
||||||
<span t-field="tax_line.name"/>
|
<span t-field="tax_line.name"/>
|
||||||
</td>
|
</td>
|
||||||
|
<td>
|
||||||
|
<span>MwSt.</span>
|
||||||
|
</td>
|
||||||
<td class="text-right">
|
<td class="text-right">
|
||||||
<span t-field="tax_line.amount"
|
<span t-field="tax_line.amount"
|
||||||
t-options='{"widget": "monetary", "display_currency": o.currency_id}'/>
|
t-options='{"widget": "monetary", "display_currency": o.currency_id}'/>
|
||||||
|
|
@ -235,7 +238,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="amount-total">
|
<tr class="amount-total">
|
||||||
<td>
|
<td>
|
||||||
<strong>Rechnungsbetrag</strong>
|
<strong>Gesamtsumme</strong>
|
||||||
</td>
|
</td>
|
||||||
<td class="text-right">
|
<td class="text-right">
|
||||||
<strong>
|
<strong>
|
||||||
|
|
|
||||||
|
|
@ -199,7 +199,7 @@
|
||||||
<tbody class="totals-tbody">
|
<tbody class="totals-tbody">
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
Zwischensumme
|
Nettobetrag
|
||||||
</td>
|
</td>
|
||||||
<td class="text-right">
|
<td class="text-right">
|
||||||
<span t-field="o.amount_untaxed"
|
<span t-field="o.amount_untaxed"
|
||||||
|
|
|
||||||
|
|
@ -174,7 +174,13 @@
|
||||||
<tbody class="stock-tbody">
|
<tbody class="stock-tbody">
|
||||||
<tr t-foreach="o.move_line_ids" t-as="move_line">
|
<tr t-foreach="o.move_line_ids" t-as="move_line">
|
||||||
<td>
|
<td>
|
||||||
<span t-field="move_line.product_id"/>
|
<p t-if="not move_line.product_id.can_be_sold_unconfigured">
|
||||||
|
<span t-field="move_line.product_id"/><br />
|
||||||
|
<span t-field="move_line.move_id.name" style="max-height: 100px;"/>
|
||||||
|
</p>
|
||||||
|
<p t-if="move_line.product_id.can_be_sold_unconfigured">
|
||||||
|
<span t-field="move_line.move_id.name"/>
|
||||||
|
</p>
|
||||||
<p t-if="o.picking_type_code == 'outgoing'">
|
<p t-if="o.picking_type_code == 'outgoing'">
|
||||||
<span t-field="move_line.product_id.sudo().description_pickingout"/>
|
<span t-field="move_line.product_id.sudo().description_pickingout"/>
|
||||||
</p>
|
</p>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue