Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision e1170590

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

  • ID e11705901f9e975f57c824ae1c8b1f8d14cc0a3b
  • Vorgänger 73eecff6
  • Nachfolger 45a00398

Neues Design 2019 Standard-Code templates/webpages/bank_transactions/assign_invoice.html

Unterschiede anzeigen:

templates/webpages/bank_transactions/assign_invoice.html
[% SET debug = 0 %]
<form method="post" action="javascript:kivi.BankTransaction.filter_invoices();" id="assign_invoice_window_form" data-bank-transaction-id="[% HTML.escape(SELF.transaction.id) %]">
<b>[%- LxERP.t8("Bank transaction") %]:</b>
<table>
<tr class="listheading">
[% IF debug %]<td>[%- LxERP.t8("ID") %]:</td>[% END %]
<td>[%- LxERP.t8("Transdate") %]:</td>
<td>[%- LxERP.t8("Amount") %]:</td>
<td>[%- LxERP.t8("Remote name") %]:</td>
<td>[%- LxERP.t8("Purpose") %]:</td>
<td>[%- LxERP.t8("Remote account number") %]:</td>
<td>[%- LxERP.t8("Remote bank code") %]:</td>
</tr>
<tr class="listrow">
[% IF debug %]<td>[% SELF.transaction.id %]</td>[% END %]
<td>[% SELF.transaction.transdate_as_date %]</td>
<td>[% LxERP.format_amount(SELF.transaction.amount, 2) %]</td>
<td>[% SELF.transaction.remote_name %]</td>
<td>[% SELF.transaction.purpose %]</td>
<td>[% SELF.transaction.remote_account_number %]</td>
<td>[% SELF.transaction.remote_bank_code %]</td>
</tr>
</table>
<b>[%- LxERP.t8("Invoice filter") %]:</b>
<table>
<tr>
<th align="right">[%- LxERP.t8("Invoice number") %]</th>
<td>[% L.input_tag('invnumber', '', style=style) %]</td>
<th align="right">[%- LxERP.t8("Customer/Vendor Name") %]</th>
<td>[% L.input_tag('vcname', '', style=style) %]</td>
</tr>
<tr>
<th align="right">[%- LxERP.t8("Amount") %]</th>
<td>[% L.input_tag('amount', '', style=style) %]</td>
<th align="right">[%- LxERP.t8("Customer/Vendor Number") %]</th>
<td>[% L.input_tag('vcnumber', '', style=style) %]</td>
</tr>
<div class="wrapper">
<tr>
<th align="right">[%- LxERP.t8("Invdate from") %]</th>
<td>[% L.date_tag('transdatefrom') %]</td>
<th align="right">[%- LxERP.t8("to (date)") %]</th>
<td>[% L.date_tag('transdateto') %]</td>
</tr>
<table class="tbl-liste">
<caption>[% LxERP.t8("Bank transaction") %]</caption>
<thead>
<tr>
[% IF debug %]
<td>[% LxERP.t8("ID") %]:</td>
[% END %]
<td>[% LxERP.t8("Transdate") %]:</td>
<td>[% LxERP.t8("Amount") %]:</td>
<td>[% LxERP.t8("Remote name") %]:</td>
<td>[% LxERP.t8("Purpose") %]:</td>
<td>[% LxERP.t8("Remote account number") %]:</td>
<td>[% LxERP.t8("Remote bank code") %]:</td>
</tr>
</thead>
<tbody>
<tr>
[% IF debug %]
<td>[% SELF.transaction.id %]</td>
[% END %]
<td>[% SELF.transaction.transdate_as_date %]</td>
<td>[% LxERP.format_amount(SELF.transaction.amount, 2) %]</td>
<td>[% SELF.transaction.remote_name %]</td>
<td>[% SELF.transaction.purpose %]</td>
<td>[% SELF.transaction.remote_account_number %]</td>
<td>[% SELF.transaction.remote_bank_code %]</td>
</tr>
</tbody>
</table>
<p>
[% L.submit_tag('', LxERP.t8("Search")) %]
[% L.button_tag('kivi.BankTransaction.add_selected_invoices()', LxERP.t8("Add invoices"), id='add_selected_record_links_button') %]
[% L.button_tag('$("#assign_invoice_window_form").resetForm()', LxERP.t8('Reset')) %]
<a href="#" onclick="$('#assign_invoice_window').dialog('close');">[% LxERP.t8("Cancel") %]</a>
</p>
<table class="tbl-horizontal">
<caption>[% LxERP.t8("Invoice filter") %]</caption>
<tbody>
<tr>
<th>[% LxERP.t8("Invoice number") %]</th>
<td>[% L.input_tag('invnumber', '', style=style) %]</td>
<th>[% LxERP.t8("Customer/Vendor Name") %]</th>
<td>[% L.input_tag('vcname', '', style=style) %]</td>
</tr>
<tr>
<th>[% LxERP.t8("Amount") %]</th>
<td>[% L.input_tag('amount', '', style=style) %]</td>
<th>[% LxERP.t8("Customer/Vendor Number") %]</th>
<td>[% L.input_tag('vcnumber', '', style=style) %]</td>
</tr>
<tr>
<th>[% LxERP.t8("Invdate from") %]</th>
<td>[% L.date_tag('transdatefrom') %]</td>
<th>[% LxERP.t8("to (date)") %]</th>
<td>[% L.date_tag('transdateto') %]</td>
</tr>
</tbody>
</table>
<hr>
<div class="buttons">
[% L.submit_tag('', LxERP.t8("Search")) %]
[% L.button_tag('kivi.BankTransaction.add_selected_invoices()', LxERP.t8("Add invoices"), id='add_selected_record_links_button') %]
[% L.button_tag('$("#assign_invoice_window_form").resetForm()', LxERP.t8('Reset'), class='neutral') %]
<a href="#" onclick="$('#assign_invoice_window').dialog('close');" class="neutral">[% LxERP.t8("Cancel") %]</a>
</div>
<div id="record_list_filtered_list"></div>
</div><!-- /.wrapper -->
</form>
<script type="text/javascript">
<!--
<script type="text/javascript"><!--
$(function() {
$('#invnumber').focus();
});
//-->
</script>
//--></script>

Auch abrufbar als: Unified diff