Moved the journal entry editor from the transaction-form.js to a new independent JavaScript file journal-entry-editor.js.

This commit is contained in:
2023-03-13 20:00:58 +08:00
parent 232f73172f
commit 3ce34803f3
3 changed files with 388 additions and 361 deletions

View File

@ -24,6 +24,7 @@ First written: 2023/2/26
{% block accounting_scripts %}
<script src="{{ url_for("accounting.static", filename="js/drag-and-drop-reorder.js") }}"></script>
<script src="{{ url_for("accounting.static", filename="js/transaction-form.js") }}"></script>
<script src="{{ url_for("accounting.static", filename="js/journal-entry-editor.js") }}"></script>
<script src="{{ url_for("accounting.static", filename="js/account-selector.js") }}"></script>
<script src="{{ url_for("accounting.static", filename="js/summary-editor.js") }}"></script>
{% endblock %}