forked from darkrain/woo-export-yml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
executable file
·91 lines (62 loc) · 2.27 KB
/
script.js
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
(function($) {
$(document).ready(function(){
$('#updateoffers').click(function() {
$(this).parents('li').hide();
$('#ymlprogress').show();
window.offerunlock = 'yes';
updateoffers();
return false;
});
var updateoffers = function(){
var data = {action: $('.woocommerce form input[name="key_source"]').val()+'_ajaxUpdateOffers', unlock: offerunlock};
console.log(data);
$.ajax({
url: ajaxurl,
type: 'POST',
dataType: 'json',
data: data,
success: function(data){
console.log(data);
window.offerunlock = 'no';
if( !data.ismakeyml ){
updateoffers();
}else{
$('#ymlprogress').hide();
$('#updateoffers').parents('li').show();
}
}
})
.done(function() {
console.log("success");
})
.fail(function(data) {
$.post(ajaxurl, {action: 'yml_send_log'});
alert('Случилась беда. Логи работы скрипта уже ушли на почту разработчику, он их обрабатывает и скоро с Вами свяжется');
})
.always(function() {
console.log("complete");
});
}
$('#add_source').click(function(){
var name = prompt( 'Введите имя нового источника' );
if( typeof name != 'object' ){
$.post(ajaxurl, {action: 'add_yml_source', name : name}, function(data, textStatus, xhr) {
window.location.href = window.location.href;
});
}
return false;
});
if( $('.woocommerce form input[name="key_surce"]').val() != '_yandex_market' )
$('.woocommerce form p.submit input[name="save"]').replaceWith(
'<input name="save" class="button-primary" type="submit" value="Сохранить изменения"> <input name="delete" class="button-primary delete" type="submit" value="Удалить">'
);
$('.woocommerce form p.submit input[name="delete"]').live('click', function(event) {
if( confirm('Вы действительно хотите удалить источник?') ){
$.post(ajaxurl, {action: 'del_yml_source', key : $('.woocommerce form input[name="key_source"]').val() }, function(data, textStatus, xhr) {
window.location.href = window.location.href+"&source=_yandex_market";
});
}
return false;
});
});
})(jQuery);