2014-09-21 08:25:30 +02:00
|
|
|
if ($('input[name="expense_account"]').length > 0) {
|
|
|
|
|
$.getJSON('json/expense-accounts').success(function (data) {
|
|
|
|
|
$('input[name="expense_account"]').typeahead({source: data});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
if ($('input[name="revenue_account"]').length > 0) {
|
|
|
|
|
$.getJSON('json/revenue-accounts').success(function (data) {
|
|
|
|
|
$('input[name="revenue_account"]').typeahead({source: data});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
if ($('input[name="category"]').length > 0) {
|
|
|
|
|
$.getJSON('json/categories').success(function (data) {
|
|
|
|
|
$('input[name="category"]').typeahead({source: data});
|
|
|
|
|
});
|
|
|
|
|
}
|
2014-07-29 20:30:50 +02:00
|
|
|
|
2014-09-21 08:25:30 +02:00
|
|
|
$(document).ready(function () {
|
2014-11-14 08:40:16 +01:00
|
|
|
if(typeof googleTablePaged != 'undefined') {
|
|
|
|
|
googleTablePaged('table/transactions/' + what,'transaction-table');
|
2014-11-12 15:22:01 +01:00
|
|
|
}
|
2014-11-30 14:52:17 +01:00
|
|
|
if($('#relateTransaction').length == 1) {
|
|
|
|
|
$('#relateTransaction').click(relateTransaction);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function relateTransaction(e) {
|
|
|
|
|
var target = $(e.target);
|
|
|
|
|
var ID = target.data('id');
|
2014-12-04 20:38:45 +01:00
|
|
|
alert("TODO remove me");
|
2014-11-30 14:52:17 +01:00
|
|
|
$('#relationModal').empty().load('transaction/relate/' + ID).modal('show');
|
|
|
|
|
return false;
|
|
|
|
|
}
|