Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision ff967bb6

Von Cem Aydin vor fast 2 Jahren hinzugefügt

  • ID ff967bb687ee1c381e52969c99f7760e0c4e8efb
  • Vorgänger cb8f1528
  • Nachfolger 57850df7

design40: oe/report_for_todo_list.html aktualisiert

- 233800e ToDo-Liste: Angebote schließen können

Unterschiede anzeigen:

templates/design40_webpages/oe/report_for_todo_list.html
1 1
[% USE T8 %]
2 2
[% USE HTML %]
3 3
[% USE LxERP %]
4
[% USE P %]
4 5

  
5 6
<div class="wrapper center">
6 7

  
8
<form method="post" action="controller.pl" id="todo_quotations_form">
9
[% P.hidden_tag('action', 'Order/dispatch') %]
10
[% P.hidden_tag('callback', HTML.escape(callback)) %]
11

  
7 12
<table class="tbl-list wi-moderate">
8 13
  <caption>[% 'Overdue sales quotations and requests for quotations' | $T8 %]</caption>
9 14
  <thead>
10 15
    <tr>
16
     <th>&nbsp;</th>
11 17
     <th>[% 'Date' | $T8 %]</th>
12 18
     <th>[% 'Valid until' | $T8 %]</th>
13 19
     <th>[% 'Sales quotation' | $T8 %] / [% 'Request quotation' | $T8 %]</th>
......
19 25
  </thead>
20 26
  <tbody>
21 27
    [% FOREACH row = QUOTATIONS %]
28
    [% SET RIGHT_TO_EDIT = ((row.vc == 'customer' && AUTH.assert('sales_quotation_edit', 1)) || (row.vc == 'vendor' && AUTH.assert('request_quotation_edit', 1))) %]
22 29
    <tr>
30
     <td>
31
      [% IF RIGHT_TO_EDIT %]
32
        [% P.checkbox_tag("ids[]", value=HTML.escape(row.id), checked="0") %]
33
      [% END %]
34
     </td>
23 35
     <td>[% HTML.escape(row.transdate) %]</td>
24 36
     <td>[% HTML.escape(row.reqdate) %]</td>
25 37
     <td>
......
47 59
  </tbody>
48 60
</table>
49 61

  
50
</div><!-- /.wrapper -->
62
<div>[% P.submit_tag('action_close_quotations', LxERP.t8('Close Quotations')) %]</div>
63
</form>
64

  
65
</div><!-- /.wrapper -->

Auch abrufbar als: Unified diff