Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision a030b276

Von Hans P. Schlaepfer vor etwa 4 Jahren hinzugefügt

  • ID a030b2768236807b8607d6c06290d2aec141e3f5
  • Vorgänger bb718178
  • Nachfolger c3eb7cba

Neues Design 2019 Standard-Code templates/webpages/payment_term/form.html

Unterschiede anzeigen:

templates/webpages/payment_term/form.html
[% USE HTML %][% USE T8 %][% USE L %][% USE LxERP %][%- USE P -%]
<h1>[% FORM.title %]</h1>
<form method="post" action="controller.pl" id="form">
[%- INCLUDE 'common/flash.html' %]
<table>
<tr class="listheading">
<th></th>
<th>[% LxERP.t8("General settings") %]</th>
</tr>
<tr>
<td>[%- 'Description' | $T8 %]</td>
<td>
[% P.input_tag("payment_term.description", SELF.payment_term.description, "data-validate"="required", "data-title"=LxERP.t8("Description")) %]
</td>
</tr>
<tr>
<td>[% LxERP.t8("Calculate due date automatically") %]</td>
<td>[% L.yes_no_tag("payment_term.auto_calculation", SELF.payment_term.auto_calculation, "data-auto-calculation-toggle"="1") %]</td>
</tr>
<tr>
<td>[%- 'Netto Terms' | $T8 %]</td>
<td>
[% L.input_tag("payment_term.terms_netto_as_number", SELF.payment_term.terms_netto_as_number, size="6", disabled=(SELF.payment_term.auto_calculation ? '' : 1)) %]
</td>
</tr>
<tr>
<td>[%- 'Skonto Terms' | $T8 %]</td>
<td>
<input name="payment_term.terms_skonto_as_number" value="[%- HTML.escape(SELF.payment_term.terms_skonto_as_number) %]" size="6">
</td>
</tr>
<form method="post" action="controller.pl" id="form">
[%- INCLUDE 'common/flash.html' %]
<div class="wrapper">
<table class="tbl-horizontal">
<caption> [% LxERP.t8("General settings") %] </caption>
<colgroup><col class="wi-mediumsmall"><col></colgroup>
<tbody>
<tr>
<th> </th>
<th> </th>
</tr>
<tr>
<td> [%- 'Description' | $T8 %] </td>
<td> [% P.input_tag("payment_term.description", SELF.payment_term.description, "data-validate"="required", "data-title"=LxERP.t8("Description")) %] </td>
</tr>
<tr>
<td> [% LxERP.t8("Calculate due date automatically") %] </td>
<td> [% L.yes_no_tag("payment_term.auto_calculation", SELF.payment_term.auto_calculation, "data-auto-calculation-toggle"="1") %] </td>
</tr>
<tr>
<td> [%- 'Netto Terms' | $T8 %] </td>
<td> [% L.input_tag("payment_term.terms_netto_as_number", SELF.payment_term.terms_netto_as_number, size="6", disabled=(SELF.payment_term.auto_calculation ? '' : 1)) %] </td>
</tr>
<tr>
<td> [%- 'Skonto Terms' | $T8 %] </td>
<td>
<input type="text" name="payment_term.terms_skonto_as_number" value="[%- HTML.escape(SELF.payment_term.terms_skonto_as_number) %]" size="6">
</td>
</tr>
<tr>
<td> [%- 'Skonto' | $T8 %] </td>
<td>
<input type="text" name="payment_term.percent_skonto_as_percent" value="[%- HTML.escape(SELF.payment_term.percent_skonto_as_percent) %]" size="6">
% </td>
</tr>
[% IF SELF.payment_term.id %]
<tr>
<td> [% 'Obsolete' | $T8 %] </td>
<td> [% L.checkbox_tag('payment_term.obsolete', checked = SELF.payment_term.obsolete, for_submit=1) %] </td>
</tr>
[% END %]
</tbody>
</table>
<tr>
<td>[%- 'Skonto' | $T8 %]</td>
<td>
<input name="payment_term.percent_skonto_as_percent" value="[%- HTML.escape(SELF.payment_term.percent_skonto_as_percent) %]" size="6">%
</td>
</tr>
<table class="tbl-horizontal">
<caption> [%- 'Long Description' | $T8 %] </caption>
<tbody>
<tr>
<th> [% LxERP.t8("Texts for quotations & orders") %] </th>
<td> [% P.input_tag("payment_term.description_long", SELF.payment_term.description_long, size="60", "data-validate"="required", "data-title"=LxERP.t8("Long Description for quotations & orders")) %] </td>
</tr>
<tr>
<th> [% LxERP.t8("Texts for invoices") %] </th>
<td> [% P.input_tag("payment_term.description_long_invoice", SELF.payment_term.description_long_invoice, size="60", "data-validate"="required", "data-title"=LxERP.t8("Long Description for invoices")) %] </td>
</tr>
[%- FOREACH language = SELF.languages %]
<tr><th class="caption" colspan="2">[%- HTML.escape(language.description) %] ([%- LxERP.t8('Translation') %])</th></tr>
<tr>
<th> [% LxERP.t8("Texts for quotations & orders") %] </th>
<td>
<input type="text" name="translation_[% language.id %]" value="[%- HTML.escape(SELF.payment_term.translated_attribute('description_long', language, 1)) %]" size="60">
</td>
</tr>
<tr>
<th> [% LxERP.t8("Texts for invoices") %] </th>
<td>
<input type="text" name="translation_invoice_[% language.id %]" value="[%- HTML.escape(SELF.payment_term.translated_attribute('description_long_invoice', language, 1)) %]" size="60">
</td>
</tr>
[%- END %]
</tbody>
</table>
[% P.hidden_tag("id", SELF.payment_term.id) %]
</div>
[% IF SELF.payment_term.id %]
<tr>
<td>[% 'Obsolete' | $T8 %]</td>
<td>[% L.checkbox_tag('payment_term.obsolete', checked = SELF.payment_term.obsolete, for_submit=1) %]</td>
</tr>
</tr>
[% END %]
<tr class="listheading">
<th></th>
<th>[% LxERP.t8("Texts for quotations & orders") %]</th>
<th>[% LxERP.t8("Texts for invoices") %]</th>
</tr>
<tr>
<td>[%- 'Long Description' | $T8 %]</td>
<td>
[% P.input_tag("payment_term.description_long", SELF.payment_term.description_long, size="60", "data-validate"="required", "data-title"=LxERP.t8("Long Description for quotations & orders")) %]
</td>
<td>
[% P.input_tag("payment_term.description_long_invoice", SELF.payment_term.description_long_invoice, size="60", "data-validate"="required", "data-title"=LxERP.t8("Long Description for invoices")) %]
</td>
</tr>
<div class="instructions">
<p>[% LxERP.t8("You can use the following strings in the long description and all translations. They will be replaced by their actual values by kivitendo before they're output.") %]</p>
[%- FOREACH language = SELF.languages %]
<table class="tbl-list-plain">
<thead>
<tr>
<td>[%- HTML.escape(language.description) %] ([%- LxERP.t8('Translation') %])</td>
<td>
<input name="translation_[% language.id %]" value="[%- HTML.escape(SELF.payment_term.translated_attribute('description_long', language, 1)) %]" size="60">
</td>
<td>
<input name="translation_invoice_[% language.id %]" value="[%- HTML.escape(SELF.payment_term.translated_attribute('description_long_invoice', language, 1)) %]" size="60">
</td>
<th> [%- LxERP.t8('Field') %] </th>
<th> [%- LxERP.t8('Description') %] </th>
</tr>
[%- END %]
</table>
[% P.hidden_tag("id", SELF.payment_term.id) %]
<hr size="3" noshade>
</thead>
<tbody>
<tr>
......
</tbody>
</table>
</div>
</form>
</form>

Auch abrufbar als: Unified diff