Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 78e1d7a0

Von Hans Peter Schlaepfer vor mehr als 5 Jahren hinzugefügt

  • ID 78e1d7a0b53cd75a015e74bb004d9a7bf061f632
  • Vorgänger 4b38f376
  • Nachfolger 5d0056d6

Neues kivitendo Design Aenderungen in templates/webpages/reconciliation/..

Unterschiede anzeigen:

templates/webpages/reconciliation/_linked_transactions.html
[% SET debug = 0 %]
[% IF !SELF.LINKED_TRANSACTIONS.size %]
<tbody class="listrow">
<td colspan="11"><p class="message_hint">[% 'No data was found.' | $T8 %]</p></td>
<tbody>
<td colspan="11"><p class="message message_hint">[% 'No data was found.' | $T8 %]</p></td>
</tbody>
[% ELSE %]
[% FOREACH link = SELF.LINKED_TRANSACTIONS %]
[% IF link.type == 'Link' %]
<tbody class="listrow">
<tbody>
[% FOREACH bt = link.BT %]
<tr>
[% IF loop.count == 1 %]
<td rowspan=[% link.BT.size + link.BB.size %] style="valign:center;">
<td rowspan="[% link.BT.size + link.BB.size %]" class="button">
[% L.button_tag('delete_reconciliation(' _ link.rec_group _ ')', LxERP.t8("X")) %]
</td>
[% END %]
......
<td><img width="16px" height="16px" src="image/bank-building.jpg"></td>
<td>[% 'Bank Transaction' | $T8 %]</td>
[% IF debug %]<td>[% HTML.escape(bt.id) %]</td>[% END %]
<td align="right" class="[% HTML.escape(bt.class) %]">[% HTML.escape(bt.transdate_as_date) %]</td>
<td align="right" class="[% HTML.escape(bt.class) %]">[% HTML.escape(bt.amount_as_number) %]</td>
<td class="date right [% HTML.escape(bt.class) %]">[% HTML.escape(bt.transdate_as_date) %]</td>
<td class="numeric right [% HTML.escape(bt.class) %]">[% HTML.escape(bt.amount_as_number) %]</td>
<td></td>
<td>[% HTML.escape(bt.remote_name) %]</td>
<td>[% HTML.escape(bt.purpose) %]</td>
......
<td><div class="icon16 general-ledger--reports--journal"></div></td>
<td>[% 'Acc Transaction' | $T8 %]</td>
[% IF debug %]<td>[% HTML.escape(bb.acc_trans_id) %]</td>[% END %]
<td align="right" class="[% HTML.escape(bb.class) %]">[% HTML.escape(bb.transdate_as_date) %]</td>
<td class="date right [% HTML.escape(bb.class) %]">[% HTML.escape(bb.transdate_as_date) %]</td>
<td></td>
<td align="right" class="[% HTML.escape(bb.class) %]">[% LxERP.format_amount(-1 * bb.amount, 2) %]</td>
<td class="numeric right [% HTML.escape(bb.class) %]">[% LxERP.format_amount(-1 * bb.amount, 2) %]</td>
<td>[% HTML.escape(bb.record.customer.name) %][% HTML.escape(bb.record.vendor.name) %][% HTML.escape(bb.record.description) %]</td>
<td>[% bb.record.link %] [% HTML.escape(bb.source) %] [% HTML.escape(bb.memo) %]</td>
<td></td>
......
<td><img width="16px" height="16px" src="image/bank-building.jpg"></td>
<td>[% 'Bank Transaction' | $T8 %]</td>
[% IF debug %]<td>[% HTML.escape(bt.id) %]</td>[% END %]
<td align="right">[% HTML.escape(bt.transdate_as_date) %]</td>
<td align="right">[% HTML.escape(bt.amount_as_number) %]</td>
<td class="date right">[% HTML.escape(bt.transdate_as_date) %]</td>
<td class="numeric right">[% HTML.escape(bt.amount_as_number) %]</td>
<td></td>
<td>[% HTML.escape(bt.remote_name) %]</td>
<td>[% HTML.escape(bt.purpose) %]</td>
......
<td><div class="icon16 general-ledger--reports--journal"></div></td>
<td>[% 'Acc Transaction' | $T8 %]</td>
[% IF debug %]<td>[% HTML.escape(bb.acc_trans_id) %]</td>[% END %]
<td align="right">[% HTML.escape(bb.transdate_as_date) %]</td>
<td class="date right">[% HTML.escape(bb.transdate_as_date) %]</td>
<td></td>
<td align="right">[% LxERP.format_amount(-1 * bb.amount, 2) %]</td>
<td class="numeric right">[% LxERP.format_amount(-1 * bb.amount, 2) %]</td>
<td>[% HTML.escape(bb.record.customer.name) %][% HTML.escape(bb.record.vendor.name) %][% HTML.escape(bb.record.description) %]</td>
<td>[% bb.record.link %] [% HTML.escape(bb.source) %] [% HTML.escape(bb.memo) %]</td>
<td></td>
templates/webpages/reconciliation/assigning_table.html
[%- USE HTML -%][%- USE LxERP -%][%- USE L -%][%- USE T8 -%]
[% IF SELF.ELEMENTS.size %]
<table>
<table class="tbl-horizontal test">
<thead>
<tr class="listheading">
<tr>
<th></th>
<th>[% 'ID' | $T8 %]</th>
<th>[% 'Type' | $T8 %]</th>
......
<th>[% 'Amount BB' | $T8 %]</th>
</tr>
</thead>
<!-- PENDENT: tbody#assigned_elements war in der foreach-Schlaufe, was falsch ist. Ueberpruefen -->
<tbody id="assigned_elements">
[% FOREACH element = SELF.ELEMENTS %]
<tbody id="assigned_elements">
<tr class="listrow" id='element[% element.type %][% element.id %]'>
<td><a href=# onclick="delete_element('[% element.id %]', '[% element.type %]')">x</a></td>
<td>[% HTML.escape(element.id) %]</td>
<td>[% IF element.type == 'BT' %][% 'Bank transaction' | $T8 %][% ELSE %][% 'Acc transaction' | $T8 %][% END %]</td>
<td>[% HTML.escape(element.transdate_as_date) %]</td>
<td align="right">[% IF element.type == 'BT' %][% HTML.escape(element.amount_as_number) %][% END %]</td>
<td align="right">[% IF element.type == 'BB' %][% LxERP.format_amount(-1 * element.amount, 2) %][% END %]</td>
</tr>
</tbody>
[% END %]
<tbody>
<tr class="listrow">
<td class="listtotal top_border"></td>
<td class="listtotal top_border"></td>
<td class="listtotal top_border"></td>
<td class="listtotal top_border"></td>
<td class="listtotal top_border">[% bt_sum %]</td>
<td class="listtotal top_border">[% bb_sum %]</td>
<tr id="element[% element.type %][% element.id %]">
<td><a href="#" onclick='delete_element("[% element.id %]", "[% element.type %]")'>x</a></td>
<td>[% HTML.escape(element.id) %]</td>
<td>[% IF element.type == 'BT' %][% 'Bank transaction' | $T8 %][% ELSE %][% 'Acc transaction' | $T8 %][% END %]</td>
<td>[% HTML.escape(element.transdate_as_date) %]</td>
<td class="numeric right">[% IF element.type == 'BT' %][% HTML.escape(element.amount_as_number) %][% END %]</td>
<td class="numeric right">[% IF element.type == 'BB' %][% LxERP.format_amount(-1 * element.amount, 2) %][% END %]</td>
</tr>
[% END %]
</tbody>
<tfoot>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td class="numeric">[% bt_sum %]</td>
<td class="numeric">[% bb_sum %]</td>
</tr>
</tfoot>
</table>
[% UNLESS errors %]
[% L.button_tag("submit_with_action('reconcile')", LxERP.t8("Reconcile")) %]
templates/webpages/reconciliation/form.html
[%- USE LxERP %]
[%- USE L %]
<style type="text/css">
<!--
html, body {
height: 100%;
}
.top_border {
border-top: solid black;
border-width: 4px;
}
.bottom_border {
border-bottom: solid black;
border-width: 4px;
}
#content.html-menu { height: 100%; }
.out_of_balance {
color: #888888;
}
-->
</style>
<h1>[% title %]</h1>
<div class="listtop">[% title %]</div>
[%- INCLUDE 'common/flash.html' %]
<form id="reconciliation_form" method="post" action="controller.pl" style="height:100%" id="filter_form">
<table>
<form id="reconciliation_form" method="post" action="controller.pl" id="filter_form">
<table class="tbl-horizontal test">
<tbody>
<tr>
<th align="right">[% 'Bank account' | $T8 %]</th>
<th>[% 'Bank account' | $T8 %]</th>
<td>[% L.select_tag('filter.local_bank_account_id:number',
SELF.BANK_ACCOUNTS,
default=FORM.filter.local_bank_account_id_number,
......
</tr>
<tr>
<th align="right">[% 'From' | $T8 %]</th>
<th>[% 'From' | $T8 %]</th>
<td>[% L.date_tag('filter.fromdate:date::ge', FORM.filter.fromdate_date__ge, onchange='filter_table();') %]</td>
<th align="right">[% 'to (date)' | $T8 %]</th>
<th>[% 'to (date)' | $T8 %]</th>
<td>[% L.date_tag('filter.todate:date::le', FORM.filter.todate_date__le, onchange='filter_table();') %]</td>
</tr>
<tr>
<th align="right">[% 'Cleared/uncleared only' | $T8 %]</th>
<th>[% 'Cleared/uncleared only' | $T8 %]</th>
<td>[% L.select_tag('filter.cleared:eq_ignore_empty', SELF.cleared, value_key = 'value', title_key = 'title', default=FORM.filter.cleared_eq_ignore_empty, onchange='filter_table();') %]</td>
</tr>
<tr>
<th align="right">[% 'Show Stornos' | $T8 %]</th>
<th>[% 'Show Stornos' | $T8 %]</th>
<td>[% L.checkbox_tag('filter.show_stornos', checked=FORM.filter.show_stornos, value='1', onchange='filter_table();') %]</td>
</tr>
<tr>
<th align="right">[% 'Absolute BT Balance' | $T8 %]</th>
<td class='absolut_bt_balance'>[% LxERP.format_amount(SELF.absolut_bt_balance, 2) %]</td>
<th>[% 'Absolute BT Balance' | $T8 %]</th>
<td class="absolut_bt_balance">[% LxERP.format_amount(SELF.absolut_bt_balance, 2) %]</td>
</tr>
<tr>
<th align="right">[% 'Absolute BB Balance' | $T8 %]</th>
<td class='absolut_bb_balance'>[% LxERP.format_amount(-1 * SELF.absolut_bb_balance, 2) %]</td>
<th>[% 'Absolute BB Balance' | $T8 %]</th>
<td class="absolut_bb_balance">[% LxERP.format_amount(-1 * SELF.absolut_bb_balance, 2) %]</td>
</tr>
<tr>
<th align="right">[% 'BT Balance' | $T8 %]</th>
<td class='bt_balance'>[% LxERP.format_amount(SELF.bt_balance, 2) %]</td>
<th>[% 'BT Balance' | $T8 %]</th>
<td class="bt_balance">[% LxERP.format_amount(SELF.bt_balance, 2) %]</td>
</tr>
<tr>
<th align="right">[% 'BB Balance' | $T8 %]</th>
<td class='bb_balance'>[% LxERP.format_amount(-1 * SELF.bb_balance, 2) %]</td>
<th>[% 'BB Balance' | $T8 %]</th>
<td class="bb_balance">[% LxERP.format_amount(-1 * SELF.bb_balance, 2) %]</td>
</tr>
</tbody>
</table>
<div id="reconc_tabs" class="tabwidget" style="height:100%">
<ul>
<li><a href="#overview" onclick="load_overview();">[% 'Overview' | $T8 %]</a></li>
<li><a href="#automatic" onclick="load_proposals();">[% 'Proposals' | $T8 %]</a></li>
<li><a href="#overview" onclick='load_overview();'>[% 'Overview' | $T8 %]</a></li>
<li><a href="#automatic" onclick='load_proposals();'>[% 'Proposals' | $T8 %]</a></li>
</ul>
<div id="overview" style="height:calc(100% - 60px);overflow: auto;">
[%- IF ui_tab == 0 %]
[% PROCESS "reconciliation/tabs/overview.html" %]
[% PROCESS "reconciliation/tabs/overview.html" %]
[%- END %]</div>
<div id="automatic" style="height:calc(100% - 60px);overflow: auto;">
[%- IF ui_tab == 1 %]
[% PROCESS "reconciliation/tabs/automatic.html" %]
[%- END %] </div>
[% PROCESS "reconciliation/tabs/automatic.html" %]
[%- END %]</div>
</div>
</form>
templates/webpages/reconciliation/proposals.html
[% IF !SELF.PROPOSALS.size %]
<tbody class="listrow">
<td colspan="11"><p class="message_hint">[% 'No data was found.' | $T8 %]</p></td>
<td colspan="11"><p class="message message_hint">[% 'No data was found.' | $T8 %]</p></td>
</tbody>
[% ELSE %]
[% FOREACH proposal = SELF.PROPOSALS %]
templates/webpages/reconciliation/search.html
[%- USE T8 %]
[%- USE HTML %]
[%- USE L %]
[%- USE LxERP %]
[% USE T8 %]
[% USE HTML %]
[% USE L %]
[% USE LxERP %]
<h1>[% 'Reconciliation of bank accounts' | $T8 %]</h1>
<form method="post" action="controller.pl" id="search_form">
<div class="listtop">[% 'Choose bank account for reconciliation' | $T8 %]</div>
<p>
<table>
<tr>
<th align="right">[% 'Bank account' | $T8 %]</th>
<td>[% L.select_tag('filter.local_bank_account_id:number', SELF.BANK_ACCOUNTS, title_key='displayable_name', with_empty=0, style='width:450px') %]</td>
</tr>
<tr>
<th align="right">[% 'From' | $T8 %]</th>
<td>[% L.date_tag('filter.fromdate:date::ge') %]</td>
</tr>
<tr>
<th align="right">[% 'to (date)' | $T8 %]</th>
<td>[% L.date_tag('filter.todate:date::le') %]</td>
</tr>
<tr>
<th align="right">[% 'Cleared/uncleared only' | $T8 %]</th>
<td>[% L.select_tag('filter.cleared:eq_ignore_empty', SELF.cleared, value_key = 'value', title_key = 'title', default = 'FALSE' ) %]</td>
</tr>
<tr>
<th align="right">[% 'Show Stornos' | $T8 %]</th>
<td>[% L.checkbox_tag('filter.show_stornos', value='1') %]</td>
</tr>
</table>
</p>
<div class="wrapper">
<table class="tbl-horizontal">
<caption>[% 'Choose bank account for reconciliation' | $T8 %]</caption>
<tbody>
<tr>
<th>[% 'Bank account' | $T8 %]</th>
<td>[% L.select_tag('filter.local_bank_account_id:number', SELF.BANK_ACCOUNTS, title_key='displayable_name', with_empty=0, class='wi-wide') %]</td>
</tr>
<tr>
<th>[% 'From' | $T8 %]</th>
<td><span class="wi-date">[% L.date_tag('filter.fromdate:date::ge') %]</span></td>
</tr>
<tr>
<th>[% 'to (date)' | $T8 %]</th>
<td><span class="wi-date">[% L.date_tag('filter.todate:date::le') %]</span></td>
</tr>
<tr>
<th>[% 'Cleared/uncleared only' | $T8 %]</th>
<td>[% L.select_tag('filter.cleared:eq_ignore_empty', SELF.cleared, value_key = 'value', title_key = 'title', default = 'FALSE', class='wi-wide' ) %]</td>
</tr>
<tr>
<th>[% 'Show Stornos' | $T8 %]</th>
<td>[% L.checkbox_tag('filter.show_stornos', value='1') %]</td>
</tr>
</tbody>
</table>
</div>
</form>
templates/webpages/reconciliation/tabs/automatic.html
[%- USE T8 %]
[%- USE HTML %]
[%- USE LxERP %]
[%- USE L %]
[% USE T8 %]
[% USE HTML %]
[% USE LxERP %]
[% USE L %]
[% SET debug = 0 %]
<table width=100% id="proposal_table">
<thead>
<tr class="listheading">
<tr>
<th>[% L.checkbox_tag('proposal_check_all') %]</th>
<th></th>
templates/webpages/reconciliation/tabs/overview.html
[%- USE T8 %]
[%- USE HTML %]
[%- USE LxERP %]
[%- USE L %]
[% USE T8 %]
[% USE HTML %]
[% USE LxERP %]
[% USE L %]
[% SET debug = 0 %]
<div style="height:500px; overflow:auto;">
<table width=99% id="link_table">
<thead>
<tr class="listheading">
<tr>
<th></th>
<th></th>
......
<td class="top_border"></td>
<td class="top_border"></td>
<td class="top_border"></td>
<td class="bt_balance top_border" align="right">[% LxERP.format_amount(SELF.bt_balance, 2) %]</td>
<td class="bb_balance top_border" align="right">[% LxERP.format_amount(-1 * SELF.bb_balance, 2) %]</td>
<td class="bt_balance top_border">[% LxERP.format_amount(SELF.bt_balance, 2) %]</td>
<td class="bb_balance top_border">[% LxERP.format_amount(-1 * SELF.bb_balance, 2) %]</td>
<td class="top_border"></td>
<td class="top_border"></td>
<td class="top_border"></td>

Auch abrufbar als: Unified diff