amazon_settings.tpl
12 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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<?php echo $header; ?><?php echo $column_left; ?>
<div id="content">
<div class="page-header">
<div class="container-fluid">
<div class="pull-right">
<button type="submit" form="settings-form" data-toggle="tooltip" title="<?php echo $button_save; ?>" class="btn btn-primary"><i class="fa fa-save"></i></button>
<a href="<?php echo $cancel; ?>" data-toggle="tooltip" title="<?php echo $button_cancel; ?>" class="btn btn-default"><i class="fa fa-reply"></i></a></div>
<h1><?php echo $heading_title; ?></h1>
<ul class="breadcrumb">
<?php foreach ($breadcrumbs as $breadcrumb) { ?>
<li><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a></li>
<?php } ?>
</ul>
</div>
</div>
<div class="container-fluid">
<form action="" method="post" enctype="multipart/form-data" id="settings-form" class="form-horizontal">
<ul class="nav nav-tabs">
<li class="active"><a href="#tab-settings" data-toggle="tab"><?php echo $tab_settings; ?></a></li>
<li><a href="#tab-product" data-toggle="tab"><?php echo $tab_listing; ?></a></li>
<li><a href="#tab-orders" data-toggle="tab"><?php echo $tab_orders; ?></a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="tab-settings">
<div class="form-group">
<label class="col-sm-2 control-label" for="amazon-status"><?php echo $entry_status; ?></label>
<div class="col-sm-10">
<select name="openbay_amazon_status" id="amazon-status" class="form-control">
<?php if ($openbay_amazon_status) { ?>
<option value="1" selected="selected"><?php echo $text_enabled; ?></option>
<option value="0"><?php echo $text_disabled; ?></option>
<?php } else { ?>
<option value="1"><?php echo $text_enabled; ?></option>
<option value="0" selected="selected"><?php echo $text_disabled; ?></option>
<?php } ?>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="entry-token"><?php echo $entry_token; ?></label>
<div class="col-sm-10">
<input type="text" name="openbay_amazon_token" value="<?php echo $openbay_amazon_token; ?>" placeholder="<?php echo $entry_token; ?>" id="entry-token" class="form-control" />
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="entry-string1"><?php echo $entry_string1; ?></label>
<div class="col-sm-10">
<input type="text" name="openbay_amazon_enc_string1" value="<?php echo $openbay_amazon_enc_string1; ?>" placeholder="<?php echo $entry_string1; ?>" id="entry-string1" class="form-control" />
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="entry-string2"><?php echo $entry_string2; ?></label>
<div class="col-sm-10">
<input type="text" name="openbay_amazon_enc_string2" value="<?php echo $openbay_amazon_enc_string2; ?>" placeholder="<?php echo $entry_string2; ?>" id="entry-string2" class="form-control" />
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label"><?php echo $text_api_status; ?></label>
<div class="col-sm-10">
<?php if (!$API_status) { ?>
<h4><span class="label label-danger"><i class="fa fa-minus-square"></i> <?php echo $text_api_error; ?></span></h4>
<?php } else if (!$API_auth) { ?>
<h4><span class="label label-danger"><i class="fa fa-minus-square"></i> <?php echo $text_api_auth_error; ?></span></h4>
<?php } else { ?>
<h4><span class="label label-success"><i class="fa fa-check-square-o"></i> <?php echo $text_api_ok; ?></span></h4>
<?php } ?>
</div>
</div>
</div>
<div class="tab-pane" id="tab-product">
<div class="form-group">
<label class="col-sm-2 control-label" for="entry-tax-percentage"><span data-toggle="tooltip" data-container="#tab-product" title="<?php echo $help_tax_percentage; ?>"><?php echo $entry_tax_percentage; ?></span></label>
<div class="col-sm-10">
<div class="input-group col-xs-2">
<input type="text" name="openbay_amazon_listing_tax_added" value="<?php echo $openbay_amazon_listing_tax_added; ?>" placeholder="<?php echo $entry_tax_percentage; ?>" id="entry-tax-percentage" class="form-control" />
<span class="input-group-addon">%</span> </div>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label"><span data-toggle="tooltip" data-container="#tab-product" title="<?php echo $help_entry_marketplace_default; ?>"><?php echo $entry_marketplace_default; ?></span></label>
<div class="col-sm-10">
<?php foreach ($marketplaces as $marketplace) { ?>
<?php if ($marketplace['code'] == $openbay_amazon_default_listing_marketplace) { ?>
<?php echo '<input id="p_code_'.$marketplace['code'].'" type="radio" name="openbay_amazon_default_listing_marketplace" value="'.$marketplace['code'].'" checked="checked" />'; ?>
<?php } else { ?>
<?php echo '<input id="p_code_'.$marketplace['code'].'" type="radio" name="openbay_amazon_default_listing_marketplace" value="'.$marketplace['code'].'" />'; ?>
<?php } ?>
<label for="p_code_<?php echo $marketplace['code'] ?>"><?php echo $marketplace['name'] ?></label>
<br />
<?php } ?>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="entry-default-condition"><?php echo $entry_default_condition; ?></label>
<div class="col-sm-10">
<select name="openbay_amazon_listing_default_condition" id="entry-default-condition" class="form-control">
<option></option>
<?php foreach ($conditions as $value => $condition) { ?>
<?php if ($value == $openbay_amazon_listing_default_condition) { ?>
<option selected="selected" value="<?php echo $value; ?>"><?php echo $condition; ?></option>
<?php } else { ?>
<option value="<?php echo $value; ?>"><?php echo $condition; ?></option>
<?php } ?>
<?php } ?>
</select>
</div>
</div>
</div>
<div class="tab-pane" id="tab-orders">
<fieldset>
<legend><?php echo $text_order_statuses ?></legend>
<?php foreach ($amazon_order_statuses as $key => $amazon_order_status) { ?>
<div class="form-group">
<label class="col-sm-2 control-label"><?php echo $amazon_order_status['name'] ?></label>
<div class="col-sm-10">
<select name="openbay_amazon_order_status_<?php echo $key ?>" class="form-control">
<?php foreach ($order_statuses as $order_status) { ?>
<?php if ($amazon_order_status['order_status_id'] == $order_status['order_status_id']) { ?>
<option value="<?php echo $order_status['order_status_id'] ?>" selected="selected"><?php echo $order_status['name'] ?></option>
<?php } else { ?>
<option value="<?php echo $order_status['order_status_id'] ?>"><?php echo $order_status['name'] ?></option>
<?php } ?>
<?php } ?>
</select>
</div>
</div>
<?php } ?>
</fieldset>
<fieldset>
<legend><?php echo $text_marketplaces ?></legend>
<?php foreach ($marketplaces as $marketplace) { ?>
<div class="form-group">
<label class="col-sm-2 control-label" for="code-<?php echo $marketplace['code']; ?>"><?php echo $marketplace['name'] ?></label>
<div class="col-sm-10">
<?php if (in_array($marketplace['id'], $marketplace_ids)) { ?>
<?php echo '<input id="code-'.$marketplace['code'].'" type="checkbox" name="openbay_amazon_orders_marketplace_ids[]" value="'.$marketplace['id'].'" checked="checked" />'; ?>
<?php } else { ?>
<?php echo '<input id="code-'.$marketplace['code'].'" type="checkbox" name="openbay_amazon_orders_marketplace_ids[]" value="'.$marketplace['id'].'" />'; ?>
<?php } ?>
</div>
</div>
<?php } ?>
</fieldset>
<fieldset>
<legend><?php echo $text_other ?></legend>
<div class="form-group">
<label class="col-sm-2 control-label" for="entry-import-tax"><span data-toggle="tooltip" data-container="#tab-orders" title="<?php echo $help_import_tax; ?>"><?php echo $entry_import_tax; ?></span></label>
<div class="col-sm-10">
<div class="input-group col-xs-2">
<input type="text" name="openbay_amazon_order_tax" value="<?php echo $openbay_amazon_order_tax;?>" id="entry-import-tax" class="form-control" placeholder="<?php echo $entry_import_tax; ?>" />
<span class="input-group-addon">%</span> </div>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="entry-customer-group"><span data-toggle="tooltip" data-container="#tab-orders" title="<?php echo $help_customer_group; ?>"><?php echo $entry_customer_group; ?></span></label>
<div class="col-sm-10">
<select name="openbay_amazon_order_customer_group" id="entry-customer-group" class="form-control">
<?php foreach($customer_groups as $customer_group) { ?>
<?php if ($openbay_amazon_order_customer_group == $customer_group['customer_group_id']) { ?>
<?php echo '<option value="'.$customer_group['customer_group_id'].'" selected="selected">'.$customer_group['name'].'</option>'; ?>
<?php } else { ?>
<?php echo '<option value="'.$customer_group['customer_group_id'].'">'.$customer_group['name'].'</option>'; ?>
<?php } ?>
<?php } ?>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="entry-notify-admin"><?php echo $entry_notify_admin; ?></label>
<div class="col-sm-10">
<select name="openbay_amazon_notify_admin" id="entry-notify-admin" class="form-control">
<?php if ($openbay_amazon_notify_admin) { ?>
<option value="1" selected="selected"><?php echo $text_yes ?></option>
<option value="0"><?php echo $text_no ?></option>
<?php } else { ?>
<option value="1"><?php echo $text_yes ?></option>
<option value="0" selected="selected"><?php echo $text_no ?></option>
<?php } ?>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="entry-default-shipping"><span data-toggle="tooltip" data-container="#tab-orders" title="<?php echo $help_default_shipping; ?>"><?php echo $entry_default_shipping; ?></span></label>
<div class="col-sm-10">
<select name="openbay_amazon_default_carrier" id="entry-default-shipping" class="form-control">
<?php foreach($carriers as $carrier) { ?>
<?php echo '<option'.($carrier == $openbay_amazon_default_carrier ? ' selected' : '').'>'.$carrier.'</option>'; ?>
<?php } ?>
</select>
</div>
</div>
</fieldset>
</div>
</div>
</form>
</div>
</div>
<?php echo $footer; ?>