2017-01-15 19:00:06 +01:00
|
|
|
/*
|
|
|
|
|
* edit.js
|
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
|
*
|
|
|
|
|
* This software may be modified and distributed under the terms of the
|
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
|
*
|
|
|
|
|
* See the LICENSE file for details.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
$(document).ready(function () {
|
|
|
|
|
"use strict";
|
2017-01-15 20:05:40 +01:00
|
|
|
// give date a datepicker if not natively supported.
|
|
|
|
|
if (!Modernizr.inputtypes.date) {
|
|
|
|
|
$('input[type="date"]').datepicker(
|
|
|
|
|
{
|
|
|
|
|
dateFormat: 'yy-mm-dd'
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-15 19:00:06 +01:00
|
|
|
// the destination account name is always an expense account name.
|
|
|
|
|
if ($('input[name="destination_account_name"]').length > 0) {
|
|
|
|
|
$.getJSON('json/expense-accounts').done(function (data) {
|
|
|
|
|
$('input[name="destination_account_name"]').typeahead({source: data});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-15 20:10:34 +01:00
|
|
|
$.getJSON('json/tags').done(function (data) {
|
2017-01-15 19:00:06 +01:00
|
|
|
|
2017-01-15 20:10:34 +01:00
|
|
|
var opt = {
|
|
|
|
|
typeahead: {
|
|
|
|
|
source: data,
|
|
|
|
|
afterSelect: function (val) {
|
|
|
|
|
this.$element.val("");
|
2017-01-15 19:00:06 +01:00
|
|
|
}
|
2017-01-15 20:10:34 +01:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
$('input[name="tags"]').tagsinput(
|
|
|
|
|
opt
|
|
|
|
|
);
|
|
|
|
|
});
|
2017-01-15 19:00:06 +01:00
|
|
|
|
|
|
|
|
// the source account name is always a revenue account name.
|
|
|
|
|
if ($('input[name="source_account_name"]').length > 0) {
|
|
|
|
|
$.getJSON('json/revenue-accounts').done(function (data) {
|
|
|
|
|
$('input[name="source_account_name"]').typeahead({source: data});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-15 20:10:34 +01:00
|
|
|
$.getJSON('json/transaction-journals/' + what).done(function (data) {
|
|
|
|
|
$('input[name="description"]').typeahead({source: data});
|
|
|
|
|
});
|
2017-01-15 19:00:06 +01:00
|
|
|
|
|
|
|
|
|
2017-01-15 20:10:34 +01:00
|
|
|
$.getJSON('json/categories').done(function (data) {
|
|
|
|
|
$('input[name="category"]').typeahead({source: data});
|
|
|
|
|
});
|
|
|
|
|
|
2017-01-15 19:00:06 +01:00
|
|
|
});
|