/home/techb158/exp.abdallabala.com/ui/theme/ibilling/lib
Edit: /home/techb158/exp.abdallabala.com/ui/theme/ibilling/lib/repeating-view.js (3388B)
$(document).ready(function () {
$('.amount').autoNumeric('init');
$("#a_hide").hide();
$("#emsg").hide();
$("#a_toggle").click(function(e){
e.preventDefault();
$("#a_hide").toggle();
});
var _url = $("#_url").val();
$('#tags').select2({
tags: true,
tokenSeparators: [','],
createSearchChoice: function (term) {
return {
id: $.trim(term),
text: $.trim(term) + ' (new tag)'
};
},
ajax: {
url: _url + 'tags/expense/',
dataType: 'json',
data: function(term, page) {
return {
q: term
};
},
results: function(data, page) {
return {
results: data
};
}
},
// Take default tags from the input value
initSelection: function (element, callback) {
var data = [];
function splitVal(string, separator) {
var val, i, l;
if (string === null || string.length < 1) return [];
val = string.split(separator);
for (i = 0, l = val.length; i < l; i = i + 1) val[i] = $.trim(val[i]);
return val;
}
$(splitVal(element.val(), ",")).each(function () {
data.push({
id: this,
text: this
});
});
callback(data);
},
// Some nice improvements:
// max tags is 3
maximumSelectionSize: 15,
// override message for max tags
formatSelectionTooBig: function (limit) {
return "Max tags is " + limit;
}
});
$("#submit").click(function (e) {
e.preventDefault();
$(this).html('
Working ...');
$(this).addClass("btn-danger");
var _url = $("#_url").val();
$.post(_url + 'repeating/expense-post/', {
account: $('#account').val(),
date: $('#date').val(),
frequency: $('#frequency').val(),
np: $('#np').val(),
amount: $('#amount').val(),
cats: $('#cats').val(),
description: $('#description').val(),
tags: $('#tags').val(),
payee: $('#payee').val(),
pmethod: $('#pmethod').val(),
ref: $('#ref').val()
})
.done(function (data) {
setTimeout(function () {
var sbutton = $("#submit");
var _url = $("#_url").val();
if ($.isNumeric(data)) {
location.reload();
}
else {
sbutton.html('
Submit');
sbutton.removeClass("btn-danger");
var body = $("html, body");
body.animate({scrollTop:0}, '1000', 'swing');
$("#emsgbody").html(data);
$("#emsg").show("slow");
}
}, 2000);
});
});
});