-
Notifications
You must be signed in to change notification settings - Fork 0
/
mauve.phtml
136 lines (135 loc) · 3.84 KB
/
mauve.phtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<div class = 'panel mauve' id = 'orders_mauve'>
<div class = 'header'>
<span class = 'sprite sprite_inbox'></span>
Orders
</div>
<div class = 'pager'>
Page
<img src = '/media/img/sprites/mauve/pager_arrow_left_off.gif' class = 'prev off'></img>
<input type = 'text' class = 'page' value = '1' />
<img src = '/media/img/sprites/mauve/pager_arrow_right_off.gif' class = 'next off'></img>
of
<span class = 'total_pages'>1</span>
pages
<span class = 'seperator'>|</span>
View
<select class = 'per_page'>
<option value = '5'>5</option>
<option value = '10'>10</option>
<option value = '25'>25</option>
<option value = '50'>50</option>
<option value = '100'>100</option>
<option value = '200'>200</option>
</select>
per page
<span class = 'seperator'>|</span>
Total
<span class = 'total_records'>0</span>
records found
</div>
<table>
<caption>
<span class = 'link reset_filter fl_r'>Reset Filter</span>
<?php if ($twist == 'dealer') : ?>
<strong class = 'margin_right'>Extra Filters</strong>
<span class = 'link extra_filter' rel = 'shipme'>Needs Shipped</span>
<span class = 'seperator'>|</span>
<span class = 'link extra_filter' rel = 'invoiceme'>Needs Invoiced</span>
<span class = 'seperator'>|</span>
<span class = 'link extra_filter' rel = 'backordered'>Has Backordered Items</span>
<?php endif; ?>
</caption>
<colgroup>
<col rel = 'id'></col>
<col rel = 'date'></col>
<col rel = 'orderedby'></col>
<col rel = 'salesperson'></col>
<col rel = 'status'></col>
<col rel = 'customerpo'></col>
<col rel = 'items'></col>
<col rel = 'price'></col>
<col width = '63'></col>
</colgroup>
<thead>
<tr class = 'heading'>
<th rel = 'id'>
<div><span></span>Order #</div>
</th>
<th class = 'sort' rel = 'date'>
<div class = 'desc'><span></span>Date</div>
</th>
<th rel = 'orderedby'>
<div><span></span>Ordered By</div>
</th>
<th rel = 'salesperson'>
<div><span></span>Sales Person</div>
</th>
<th rel = 'status'>
<div><span></span>Status</div>
</th>
<th rel = 'customerpo'>
<div><span></span>PO#</div>
</th>
<th rel = 'items'>
<div><span></span>Items</div>
</th>
<th rel = 'price'>
<div><span></span>Total</div>
</th>
<th class = 'nosort action'>
<div><span></span>Action</div>
</th>
</tr>
<tr class = 'filter'>
<th rel = 'id'>
<input type = 'text' class = 'text_center' />
</th>
<th rel = 'date'>
<select>
<?php echo $basicDateFilter; ?>
<optgroup label = ' Month of'>
<?php echo $fe->make_select('', $fe->fix_select($orderDateFilter, 'mmyyyy', 'month_yy'), '', '', '', false, '', true); ?>
</optgroup>
</select>
</th>
<th rel = 'orderedby'>
<input type = 'text' />
</th>
<th rel = 'salesperson'>
<input type = 'text' />
</th>
<th rel = 'status'>
<select>
<option value = ''>All</option>
<?php if ($twist == 'dealer') : ?>
<option value = 'Accounting' title = 'Pending & Processing'<?php echo SELECTED; ?>>Accounting</option>
<?php endif; ?>
<option value = 'Pending'>Pending</option>
<option value = 'Processing'>Processing</option>
<option value = 'Cancelled'>Cancelled</option>
<option value = 'Complete'>Complete</option>
</select>
</th>
<th rel = 'customerpo'>
<input type = 'text' />
</th>
<th rel = 'items'>
<input type = 'text' class = 'text_center' />
</th>
<th rel = 'price'>
<input type = 'text' class = 'text_right' />
</th>
<th class = 'action text_center'>
<button class = 'green filtrate'>Filter</button>
</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan = '9' class = 'text_center w_b'>
To load data, press "Filter"
</td>
</tr>
</tbody>
</table>
</div>