+ [%- IF SELF.type == "sales_order" %]
+ <tr>
+ <th align="right">[%- 'Periodic Invoices' | $T8 %]</th>
+ <td>[% L.button_tag('kivi.Order.show_periodic_invoices_config_dialog()', LxERP.t8('Configure')) %]
+ (<span id='periodic_invoices_status'>[%- SELF.periodic_invoices_status -%]</span>)
+ <a href="doc/html/ch03.html#features.periodic-invoices.variables" target="_blank">?</a>
+ </td>
+ </tr>
+ [%- END %]
+ </table>
+ </td>
+
+ [%- IF (SELF.type == "sales_order" || SELF.type == "sales_quotation") -%]
+ [%- SET marge_class = (SELF.order.marge_total < 0) ? 'plus0' : '' -%]
+ <td>
+ <table>
+ <tr>
+ <th align="left">[% 'Ertrag' | $T8 %]</th>
+ <td align="right">
+ [%- L.div_tag(SELF.order.marge_total_as_number, id='marge_total_id', class=marge_class) %]
+ </td>
+ </tr>
+ <tr>
+ <th align="left">[% 'Ertrag prozentual' | $T8 %]</th>
+ <td align="right">
+ [%- L.div_tag(LxERP.format_amount(SELF.order.marge_percent, 2), id='marge_percent_id', class=marge_class) %]
+ </td>
+ <td>[%- L.div_tag('%', id='marge_percent_sign_id', class=marge_class) %]</td>
+ </tr>