-
Notifications
You must be signed in to change notification settings - Fork 0
/
foxpost_carrier.tpl
executable file
·98 lines (83 loc) · 3.54 KB
/
foxpost_carrier.tpl
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
<div id='fox_div' style='display:none;'>
<h3>Foxpost Csomagautomata kiválasztása</h3>
Kérem válasszon egy csomagautomatát, ahol szeretné átvenni a csomagot!<br />
<br />
<select type='text' name='fox_select' id='fox_select'>
<option value='-1'>Kérjük válasszon csomagautomatát!</option>
{$options}
</select>
<br />
<div>
<div id='foxpost_info' style='width: 640px;margin-bottom:10px;margin-top:10px;'></div>
<img id="foxpost_map" src="img/bg_loader.png" style="" />
</div>
<br>
<div style="clear:both;"> </div>
</div>
<script type="text/javascript">
function fox_myCallbackFunction(name, objMachine, openIndex) {
fox_megjelenit();
}
function fox_megjelenit() {
var selected = $('#fox_select').find('option:selected');
$("#foxpost_map").attr('src', selected.data('map'));
$("#foxpost_info").html(selected.data('info'));
$.ajax({
type: "GET",
url: "{$modules_dir}foxpost/foxpost_ajax.php",
data: "shop=" + selected.val(),
dataType: "json",
cache: false,
success: function (json) {}
});
}
$('document').ready(function () {
$('#fox_select').change(function () {
fox_megjelenit();
});
if ($('input:radio[name=delivery_option\\[{$id_address_d}\\]]:checked').val() == '{$foxpost_ID}' + ',') {
$('div#fox_div').show();
}
if ($("#fox_select").val() > '0') {
fox_megjelenit();
}
});
</script>
{if $opc}
<script type="text/javascript">
function fox_finishcheck(event) {
if ($('input:radio[name=delivery_option\\[{$id_address_d}\\]]:checked').val() == '{$foxpost_ID}' + ',') {
if ($('#fox_select').val() < '1') {
alert("Foxposttal történő szállítást választott,\nde nem jelölt meg átvételi pontot.\nKérjük válasszon egy átvételi pontot!");
event.preventDefault();
}
}
}
$(window).load(function () {
$('#HOOK_PAYMENT .payment_module a').click(function (event) {
fox_finishcheck(event);
}
);
$('#HOOK_PAYMENT').bind("DOMSubtreeModified", function () {
$('#HOOK_PAYMENT .payment_module a').click(function (event) {
fox_finishcheck(event);
}
);
});
});
</script>
{else}
<script type="text/javascript">
$('document').ready(function () {
$("#form").submit(function (event) {
if ($('input:radio[name=delivery_option\\[{$id_address_d}\\]]:checked').val() == '{$foxpost_ID}' + ',') {
if ($('#fox_select').val() < '1') {
alert("Foxposttal történő szállítást választott,\nde nem jelölt meg átvételi pontot.\nKérjük válasszon egy átvételi pontot!");
event.preventDefault();
}
}
});
});
</script>
{/if}