Some extra code for #1376

This commit is contained in:
James Cole 2020-03-26 07:10:39 +01:00
parent 84bdd47109
commit ee5a4caaab
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
3 changed files with 37 additions and 1 deletions

View File

@ -21,4 +21,22 @@
$(function () {
"use strict";
$(".content-wrapper form input:enabled:visible:first").first().focus().select();
$('#ffInput_auto_budget_type').change(updateAutoBudget);
function updateAutoBudget() {
var value = parseInt($('#ffInput_auto_budget_type').val());
if (0 === value) {
$('#ffInput_auto_budget_currency_id').prop('disabled', true);
$('#ffInput_auto_budget_amount').prop('disabled', true);
$('#ffInput_auto_budget_period').prop('disabled', true);
return;
}
$('#ffInput_auto_budget_currency_id').prop('disabled', false);
$('#ffInput_auto_budget_amount').prop('disabled', false);
$('#ffInput_auto_budget_period').prop('disabled', false);
}
updateAutoBudget();
});

View File

@ -21,4 +21,22 @@
$(function () {
"use strict";
$(".content-wrapper form input[type='text']:enabled:visible:first").first().focus();
$('#ffInput_auto_budget_type').change(updateAutoBudget);
function updateAutoBudget() {
var value = parseInt($('#ffInput_auto_budget_type').val());
if (0 === value) {
$('#ffInput_auto_budget_currency_id').prop('disabled', true);
$('#ffInput_auto_budget_amount').prop('disabled', true);
$('#ffInput_auto_budget_period').prop('disabled', true);
return;
}
$('#ffInput_auto_budget_currency_id').prop('disabled', false);
$('#ffInput_auto_budget_amount').prop('disabled', false);
$('#ffInput_auto_budget_period').prop('disabled', false);
}
updateAutoBudget();
});

View File

@ -150,7 +150,7 @@
<select class="form-control input-sm" name="budget_id[{{ journal.transaction_journal_id }}]">
<option value="0" label="({{ 'no_budget'|_ }})"
{% if journal.budget_id == 0 %}selected="selected"{% endif %}
>({{ 'no_budget'|_ }})
>{{ 'no_budget'|_ }}
</option>
{% for budget in budgets %}
<option value="{{ budget.id }}"{% if budget.id == journal.budget_id %} selected="selected"{% endif %}