Revision ff967bb6
Von Cem Aydin vor etwa 2 Jahren hinzugefügt
templates/design40_webpages/oe/report_for_todo_list.html | ||
---|---|---|
[% USE T8 %]
|
||
[% USE HTML %]
|
||
[% USE LxERP %]
|
||
[% USE P %]
|
||
|
||
<div class="wrapper center">
|
||
|
||
<form method="post" action="controller.pl" id="todo_quotations_form">
|
||
[% P.hidden_tag('action', 'Order/dispatch') %]
|
||
[% P.hidden_tag('callback', HTML.escape(callback)) %]
|
||
|
||
<table class="tbl-list wi-moderate">
|
||
<caption>[% 'Overdue sales quotations and requests for quotations' | $T8 %]</caption>
|
||
<thead>
|
||
<tr>
|
||
<th> </th>
|
||
<th>[% 'Date' | $T8 %]</th>
|
||
<th>[% 'Valid until' | $T8 %]</th>
|
||
<th>[% 'Sales quotation' | $T8 %] / [% 'Request quotation' | $T8 %]</th>
|
||
... | ... | |
</thead>
|
||
<tbody>
|
||
[% FOREACH row = QUOTATIONS %]
|
||
[% SET RIGHT_TO_EDIT = ((row.vc == 'customer' && AUTH.assert('sales_quotation_edit', 1)) || (row.vc == 'vendor' && AUTH.assert('request_quotation_edit', 1))) %]
|
||
<tr>
|
||
<td>
|
||
[% IF RIGHT_TO_EDIT %]
|
||
[% P.checkbox_tag("ids[]", value=HTML.escape(row.id), checked="0") %]
|
||
[% END %]
|
||
</td>
|
||
<td>[% HTML.escape(row.transdate) %]</td>
|
||
<td>[% HTML.escape(row.reqdate) %]</td>
|
||
<td>
|
||
... | ... | |
</tbody>
|
||
</table>
|
||
|
||
</div><!-- /.wrapper -->
|
||
<div>[% P.submit_tag('action_close_quotations', LxERP.t8('Close Quotations')) %]</div>
|
||
</form>
|
||
|
||
</div><!-- /.wrapper -->
|
Auch abrufbar als: Unified diff
design40: oe/report_for_todo_list.html aktualisiert
- 233800e ToDo-Liste: Angebote schließen können