mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-03 11:08:28 +00:00
Update views and JS for edit single transaction.
This commit is contained in:
@@ -241,7 +241,7 @@ class SingleController extends Controller
|
|||||||
Session::forget('transactions.edit.fromUpdate');
|
Session::forget('transactions.edit.fromUpdate');
|
||||||
|
|
||||||
return view(
|
return view(
|
||||||
'transactions.edit',
|
'transactions.single.edit',
|
||||||
compact('journal', 'optionalFields', 'assetAccounts', 'what', 'budgetList', 'subTitle')
|
compact('journal', 'optionalFields', 'assetAccounts', 'what', 'budgetList', 'subTitle')
|
||||||
)->with('data', $preFilled);
|
)->with('data', $preFilled);
|
||||||
}
|
}
|
||||||
|
96
public/js/ff/transactions/single/edit.js
Normal file
96
public/js/ff/transactions/single/edit.js
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
/*
|
||||||
|
* 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";
|
||||||
|
// no special JS for edit transaction.
|
||||||
|
|
||||||
|
// 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});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// also for multi input
|
||||||
|
if ($('input[name="destination_account_name[]"]').length > 0) {
|
||||||
|
$.getJSON('json/expense-accounts').done(function (data) {
|
||||||
|
$('input[name="destination_account_name[]"]').typeahead({source: data});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($('input[name="tags"]').length > 0) {
|
||||||
|
$.getJSON('json/tags').done(function (data) {
|
||||||
|
|
||||||
|
var opt = {
|
||||||
|
typeahead: {
|
||||||
|
source: data,
|
||||||
|
afterSelect: function(val) { this.$element.val(""); }
|
||||||
|
}
|
||||||
|
};
|
||||||
|
$('input[name="tags"]').tagsinput(
|
||||||
|
opt
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 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});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// also for multi-input:
|
||||||
|
if ($('input[name="source_account_name[]"]').length > 0) {
|
||||||
|
$.getJSON('json/revenue-accounts').done(function (data) {
|
||||||
|
$('input[name="source_account_name[]"]').typeahead({source: data});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// and for split:
|
||||||
|
if ($('input[name="journal_source_account_name"]').length > 0) {
|
||||||
|
$.getJSON('json/revenue-accounts').done(function (data) {
|
||||||
|
$('input[name="journal_source_account_name"]').typeahead({source: data});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if ($('input[name="description"]').length > 0 && !(typeof what === "undefined")) {
|
||||||
|
$.getJSON('json/transaction-journals/' + what).done(function (data) {
|
||||||
|
$('input[name="description"]').typeahead({source: data});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// also for multi input:
|
||||||
|
if ($('input[name="description[]"]').length > 0 && !(typeof what === "undefined")) {
|
||||||
|
$.getJSON('json/transaction-journals/' + what).done(function (data) {
|
||||||
|
$('input[name="description[]"]').typeahead({source: data});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// and for the (rare) journal_description:
|
||||||
|
if ($('input[name="journal_description"]').length > 0 && !(typeof what === "undefined")) {
|
||||||
|
$.getJSON('json/transaction-journals/' + what).done(function (data) {
|
||||||
|
$('input[name="journal_description"]').typeahead({source: data});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($('input[name="category"]').length > 0) {
|
||||||
|
$.getJSON('json/categories').done(function (data) {
|
||||||
|
$('input[name="category"]').typeahead({source: data});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// also for multi input:
|
||||||
|
if ($('input[name^="category["]').length > 0) {
|
||||||
|
$.getJSON('json/categories').done(function (data) {
|
||||||
|
$('input[name^="category["]').typeahead({source: data});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
});
|
@@ -233,8 +233,7 @@
|
|||||||
</script>
|
</script>
|
||||||
<script type="text/javascript" src="js/lib/bootstrap3-typeahead.min.js"></script>
|
<script type="text/javascript" src="js/lib/bootstrap3-typeahead.min.js"></script>
|
||||||
<script type="text/javascript" src="js/lib/bootstrap-tagsinput.min.js"></script>
|
<script type="text/javascript" src="js/lib/bootstrap-tagsinput.min.js"></script>
|
||||||
<script type="text/javascript" src="js/ff/transactions/create-edit.js"></script>
|
<script type="text/javascript" src="js/ff/transactions/single/edit.js"></script>
|
||||||
<script type="text/javascript" src="js/ff/transactions/edit.js"></script>
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block styles %}
|
{% block styles %}
|
||||||
<link href="css/bootstrap-tagsinput.css" type="text/css" rel="stylesheet" media="all">
|
<link href="css/bootstrap-tagsinput.css" type="text/css" rel="stylesheet" media="all">
|
Reference in New Issue
Block a user