-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
179 lines (157 loc) · 4.36 KB
/
options.html
File metadata and controls
179 lines (157 loc) · 4.36 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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!doctype html>
<html>
<head>
<title>Options | Repricing Console</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-theme.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/font-awesome.min.css">
<script type="text/javascript" src="lib/options.js"></script>
<script type="text/javascript" src="lib/math-processor.js"></script>
<script src="js/jquery-2.1.0.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<style>
#content {
width:750px;
margin:0px auto;
text-align:left;
padding-top:5px;
}
body {
background: #fff;
font-size: small;
margin:5px 0px; padding:0px;
text-align:center;
}
#newExclude {
width: 200px !important;
display: inherit !important;
}
.popover {
position: absolute;
top: 0;
left: 0;
z-index: 1010;
display: none;
max-width: 600px;
padding: 1px;
text-align: left;
white-space: normal;
background-color: #ffffff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
}
</style>
</head>
<body>
<div id="content">
<table class="table table-bordered table-condensed">
<tr><th colspan="2"><h4>RepricingConsole for Amazon.com Options</h4></th></tr>
<tr><th colspan="2">Exclusions</th></tr>
<tr>
<td>Exclude sellers</td>
<td>
<input type="text" class="form-control" value="" id="newExclude"> <button id="addExclude" type="button" class="btn btn-primary btn-sm">Add</button>
</td>
</tr>
<tr>
<td>Currently excluded:</td>
<td>
<div><span id="ownStore">Own store: </span> <button id="addOwn" type="button" class="btn btn-primary btn-sm" style="margin-left: 20px;">Load From Amazon</button> <img src="images/loader.gif" id="loader" style="vertical-align:text-top; display:none;"></div>
<hr/>
<div id="excludeList">
</div>
</td>
</tr>
<tr><th colspan="2">Formulas <i id="formula-vars" class="fa fa-question-circle" style="cursor:pointer;"></i></th></tr>
<tr>
<td>AFN Minimum Price</td>
<td>
<input type="text" value="" id="afnMinimumFormula" class="form-control">
<div id="afnMinimumFormulaString"></div>
<div id="afnMinimumFormulaExample"></div>
</td>
</tr>
<tr>
<td>Merchant Minimum Price</td>
<td>
<input type="text" value="" id="merchantMinimumFormula" class="form-control">
<div id="merchantMinimumFormulaString"></div>
<div id="merchantMinimumFormulaExample"></div>
</td>
</tr>
<tr><th colspan="2">Percentages</th></tr>
<tr>
<td>AFN overhead</td>
<td>
<input type="text" value="" id="afnPercentage" class="form-control">
</td>
</tr>
<tr>
<td>Merchant overhead</td>
<td>
<input type="text" value="" id="merchantPercentage" class="form-control">
</td>
</tr>
<tr><th colspan="2">Other</th></tr>
<tr>
<td>Step in cents (¢)</td>
<td>
<input type="text" value="" id="step" class="form-control">
</td>
</tr>
<tr>
<td>Default margin ($)</td>
<td>
<input type="text" value="" id="defaultMargin" class="form-control">
</td>
</tr>
<tr>
<td>Default shipping ($)</td>
<td>
<input type="text" value="" id="defaultShipping" class="form-control">
</td>
</tr>
<tr>
<td>Compare buckets</td>
<td>
<input type="checkbox" id="bucketFeatured"> Featured |
<input type="checkbox" id="bucketNew"> New |
<input type="checkbox" id="bucketUsed"> Used |
<input type="checkbox" id="bucketItem"> Use items bucket
</td>
</tr>
<tr><th colspan="2">Amazon Information</th></tr>
<tr>
<td>SellerCentral Login</td>
<td>
<input type="text" value="" id="amazonLogin" class="form-control" style="width:200px;">
</td>
</tr>
<tr>
<td>SellerCentral Password</td>
<td>
<input type="password" value="" id="amazonPass" class="form-control" style="width:200px;">
</td>
</tr>
<tr><th colspan="2">Subscription Status</th></tr>
<tr>
<td>Tier</td>
<td><span id="tier" style="font-weight: bold;"></span> <button id="buy" type="button" class="btn btn-primary btn-sm">Buy</button></td>
</tr>
<tr>
<td>Expiration</td>
<td id="expiry">DATE</td>
</tr>
</table>
</div>
</body>
</html>