-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathOrderHistoryPage.html
More file actions
109 lines (104 loc) · 4.28 KB
/
OrderHistoryPage.html
File metadata and controls
109 lines (104 loc) · 4.28 KB
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
<ac:pagelayout id="OrderHistoryPage">
<ac:widgetarea id="Top">
</ac:widgetarea>
$$MYACCOUNTMENU$$
<div class="MyAccountPage">
<div style="float:left;width:100%;">
<h1>My Order History</h1>
<ac:visibilityarea id="OrderHistoryTools">
<div class="MyAccountSection">
<div class="MyAccountSectionInner">
<h3 class="MyAccountSectionHeader">Download</h3>
$$DOWNLOADORDERHISTORY$$ $$DOWNLOADORDERHISTORYWITHITEMS$$
</div>
</div>
<div class="MyAccountSection">
<div class="MyAccountSectionInner">
<h3 class="MyAccountSectionHeader">Filters</h3>
$$ORDERHISTORYLISTSTATUSFILTERS$$
$$ORDERHISTORYLISTDATEFILTERS$$
$$ORDERHISTORYLISTPAIDFILTERS$$
$$ORDERHISTORYLISTFILTERSAPPLYBUTTON$$
</div>
</div>
</ac:visibilityarea>
<div class="MyAccountSection">
<h3 class="MyAccountSectionHeader">Orders</h3>
<div class="MyAccountSectionInner">
$$NORECORDS$$
<table class="OrderHistoryTable MyAccountTable" width="100%" border="0" cellpadding="3" cellspacing="0">
<ac:layoutarea id="ItemHeader">
<tr class="OrderHistoryHeader">
<th class="StatmentHeader" align="left">
$$ORDERNUMBERHEADER$$
</th>
<th class="OrderHistoryHeader" align="left">
$$ORDERSTATUSHEADER$$
</th>
<th class="OrderHistoryHeader" align="center">
$$ORDERDATEHEADER$$
</th>
<th class="OrderHistoryHeader" align="center">
$$ORDERTOTALHEADER$$
</th>
<th class="OrderHistoryHeader" align="center">
$$LASTPAYMENTNOTEHEADER$$
</th>
<th class="OrderHistoryHeader" align="center">
$$LASTPAYMENTAPPROVEDDATEHEADER$$
</th>
<th class="OrderHistoryHeader" align="right">
$$LASTPAYMENTAMOUNTHEADER$$
</th>
</tr>
</ac:layoutarea>
<ac:layoutarea id="ItemDetail">
<tr class="OrderHistoryItem">
<td>
<div class="OrderHistoryOrderNumber">$$ORDERNUMBER$$</div>
</td>
<td>
<span class="OrderHistoryOrderStatus">$$ORDERSTATUS$$</span>
</td>
<td align="center">
<span class="OrderHistoryPaymentDate">$$ORDERDATE$$</span>
</td>
<td align="right">
<div class="OrderHistoryTotal">$$ORDERTOTAL$$</div></td>
<td align="left"><div class="OrderHistoryPaymentType">$$LASTPAYMENTNOTE$$</div></td>
<td align="center">
<div class="OrderHistoryApproveDate">$$LASTPAYMENTAPPROVEDDATE$$</div>
</td>
<td align="right"><div class="OrderHistoryPaymentAmount">$$LASTPAYMENTAMOUNT$$</div></td>
</tr>
</ac:layoutarea>
<ac:layoutarea id="ItemDetailAlt">
<tr class="OrderHistoryItem">
<td>
<div class="OrderHistoryOrderNumber">$$ORDERNUMBER$$</div>
</td>
<td>
<span class="OrderHistoryOrderStatus">$$ORDERSTATUS$$</span>
</td>
<td align="center">
<span class="OrderHistoryPaymentDate">$$ORDERDATE$$</span>
</td>
<td align="right">
<div class="OrderHistoryTotal">$$ORDERTOTAL$$</div></td>
<td align="left"><div class="OrderHistoryPaymentType">$$LASTPAYMENTNOTE$$</div></td>
<td align="center">
<div class="OrderHistoryApproveDate">$$LASTPAYMENTAPPROVEDDATE$$</div>
</td>
<td align="right"><div class="OrderHistoryPaymentAmount">$$LASTPAYMENTAMOUNT$$</div></td>
</tr>
</ac:layoutarea>
<ac:layoutarea id="ItemFooter">
</ac:layoutarea>
</table>
</div>
</div>
</div>
</div>
<ac:widgetarea id="Bottom">
</ac:widgetarea>
</ac:pagelayout>