Anpassungen an Reports Angebot/Auftrag/Lieferschein/Rechnung

develop
Andreas Osim 2018-07-03 19:15:06 +02:00
parent 5fd8d8347b
commit d8c30619e8
3 changed files with 13 additions and 4 deletions

View File

@ -217,7 +217,7 @@
<tbody class="totals-tbody">
<tr>
<td>
Zwischensumme
Nettobetrag
</td>
<td class="text-right">
<span t-field="o.amount_untaxed"
@ -228,6 +228,9 @@
<td>
<span t-field="tax_line.name"/>
</td>
<td>
<span>MwSt.</span>
</td>
<td class="text-right">
<span t-field="tax_line.amount"
t-options='{"widget": "monetary", "display_currency": o.currency_id}'/>
@ -235,7 +238,7 @@
</tr>
<tr class="amount-total">
<td>
<strong>Rechnungsbetrag</strong>
<strong>Gesamtsumme</strong>
</td>
<td class="text-right">
<strong>

View File

@ -199,7 +199,7 @@
<tbody class="totals-tbody">
<tr>
<td>
Zwischensumme
Nettobetrag
</td>
<td class="text-right">
<span t-field="o.amount_untaxed"

View File

@ -174,7 +174,13 @@
<tbody class="stock-tbody">
<tr t-foreach="o.move_line_ids" t-as="move_line">
<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'">
<span t-field="move_line.product_id.sudo().description_pickingout"/>
</p>