| Server IP : 162.214.74.102 / Your IP : 216.73.217.80 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/public_html/lrsys_apps/gasch/ui/lib/settings/ |
Upload File : |
$(function() {
var $modal = $('#ajax-modal');
$('[data-toggle="tooltip"]').tooltip();
$.fn.modal.defaults.width = '600px';
var _url = $("#_url").val();
$('#add_currency').on('click', function(e){
e.preventDefault();
$('body').modalmanager('loading');
$modal.load( _url + 'settings/modal_add_currency/', '', function(){
$modal.modal();
});
});
$modal.on('click', '.modal_submit', function(e){
e.preventDefault();
$modal.modal('loading');
$.post( _url + "settings/add_currency_post/", $("#ib_modal_form").serialize())
.done(function( data ) {
if ($.isNumeric(data)) {
location.reload();
}
else {
$modal.modal('loading');
toastr.error(data);
}
});
});
$(".cdelete").click(function (e) {
e.preventDefault();
var id = this.id;
bootbox.confirm(_L['are_you_sure'], function(result) {
if(result){
var _url = $("#_url").val();
window.location.href = _url + "delete/currency/" + id + '/';
}
});
});
$(".cedit").click(function (e) {
e.preventDefault();
var id = this.id;
$('body').modalmanager('loading');
$modal.load( _url + 'settings/modal_add_currency/'+ id + '/', '', function(){
$modal.modal();
});
});
});