Subversion-Projekte lars-tiefland.content-management

Revision

Revision 1 | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 1 Revision 2
Zeile 1... Zeile 1...
1
<form method="post" action="{$smarty.server.SCRIPT_NAME}" id="order_form">
1
<form method="post" action="{$smarty.server.SCRIPT_NAME}" id="order_form">
2
<table width="1000">
2
<table width="100%">
3
    <tr class="links">
3
    <tr class="links">
4
        <td>Lieferant</td>
4
        <td>Lieferant</td>
-
 
5
        <td>Status</td>
-
 
6
        <td>Erstellungsdatum</td>
-
 
7
        <td>&nbsp;</td>
5
    </tr>
8
    </tr>
6
    <tr class="rechts">
9
    <tr class="rechts">
7
        <td>
10
        <td>
8
            {html_options name="filter[lieferant]" id="lieferant" options=$lieferanten selected=$filter.lieferant}
11
            {html_options name="filter[lieferant]" id="lieferant" options=$lieferanten selected=$filter.lieferant}
-
 
12
        </td>
-
 
13
        <td>
-
 
14
            {html_options name="filter[status]" id="statusfilter" options=$status selected=$filter.status}
-
 
15
        </td>
-
 
16
        <td>
-
 
17
            {html_options name="filter[zeit]" id="zeitfilter" options=$zeiten selected=$filter.zeit}
-
 
18
        </td>
-
 
19
        <td>
9
            <input type="submit">
20
            <input type="submit">
10
        </td>
21
        </td>
11
    </tr>
22
    </tr>
12
</table>
23
</table>
13
</form>
24
</form>
14
<table width="100%">
25
<table width="100%">
15
    <tr class="links">
26
    <tr class="links">
16
        <td>Artikel</td>
27
        <td>Artikel</td>
-
 
28
        <td>Shop</td>
-
 
29
        <td>Bestellnummer</td>
17
        <td>Menge</td>
30
        <td>Menge</td>
18
        <td>Lager</td>
31
        <td>Lager</td>
19
        <td>Kommissionstext</td>
32
        <td>Kommissionstext</td>
20
        <td>Betsellzeit</td>
33
        <td>Betsellzeit</td>
21
        <td>Dokument</td>
34
        <td>Dokument</td>
-
 
35
        <td>Erstellt am</td>
-
 
36
        <td>Erstellt von</td>
22
        <td>Aktion</td>
37
        <td>Aktion</td>
23
    </tr>
38
    </tr>
24
    {foreach $bestellungen as $key => $bestellung}
39
    {foreach $bestellungen as $key => $bestellung}
25
    <tr class="rechts">
40
    <tr class="rechts">
26
        <td>{$bestellung.bezeichnung|default:$bestellung.kurzbezeichnung}</td>
41
        <td>{$bestellung.bezeichnung|default:$bestellung.kurzbezeichnung}</td>
-
 
42
        <td>
-
 
43
            {$bestellung.shop_name}
-
 
44
        </td>
-
 
45
        <td>
-
 
46
            {$bestellung.order_id}
-
 
47
        </td>
27
        <td width="50">{$bestellung.menge}</td>
48
        <td width="50">{$bestellung.menge}</td>
28
        <td width="200">{$bestellung.lager_name}</td>
49
        <td width="200">{$bestellung.lager_name}</td>
29
        <td width="200">
50
        <td width="200">
30
            <a href="/Warenwirtschaft/bestellungen.php?Bestellung={$bestellung.order_id}">
51
            <a href="/Warenwirtschaft/bestellungen.php?Bestellung={$bestellung.order_id}">
31
                {$bestellung.text}
52
                {$bestellung.text}
Zeile 40... Zeile 61...
40
        </td>
61
        </td>
41
        <td>
62
        <td>
42
            <a href="http://www.{$site}/images/dokumente/{$bestellung.document.file}" target="_blank">{$bestellung.document.file|basename}</a>
63
            <a href="http://www.{$site}/images/dokumente/{$bestellung.document.file}" target="_blank">{$bestellung.document.file|basename}</a>
43
        </td>
64
        </td>
44
        <td>
65
        <td>
-
 
66
            {$bestellung.erstellt_am|date_format:"%x %X"}
-
 
67
        </td>
-
 
68
        <td>
-
 
69
            {$bestellung.erstellt_von}
-
 
70
        </td>
-
 
71
        <td>
45
            {if $bestellung.bestellzeit==0}
72
            {if $bestellung.bestellzeit==0}
46
                <button class="del_order" id="del_order_{$bestellung.order_id}_{$bestellung.artikel_id}_{$bestellung.lager_id}"></button>
73
                <button class="del_order" id="del_order_{$bestellung.order_id}_{$bestellung.artikel_id}_{$bestellung.lager_id}"></button>
47
            {/if}
74
            {/if}
48
        </td>
75
        </td>
49
    </tr>
76
    </tr>
50
    {foreachelse}
77
    {foreachelse}
51
    <tr class="rechts">
78
    <tr class="rechts">
52
        <td colspan="6" class="rechts">Keine Betellungen gefunden!</td>
79
        <td colspan="11" class="rechts">Keine Betellungen gefunden!</td>
53
    </tr>
80
    </tr>
54
    {/foreach}
81
    {/foreach}
55
</table>
82
</table>
Zeile 56... Zeile 83...
56
 
83