Compare commits

..

No commits in common. "9276775dcbf4275813efda6290b353e2d235061c" and "14365ca255550b9832f4e0b4651e7131db2eb015" have entirely different histories.

3 changed files with 2 additions and 14 deletions

View File

@ -2,18 +2,6 @@ Change Log
==========
Version 1.5.8
-------------
Released 2023/10/24
Bug fixes.
* Fixed an icon in the detail of the cash receipt journal entry.
Released at Jaipur, India on vacation.
Version 1.5.7
-------------

View File

@ -24,7 +24,7 @@ from flask_sqlalchemy import SQLAlchemy
from accounting.utils.user import UserUtilityInterface
VERSION: str = "1.5.8"
VERSION: str = "1.5.7"
"""The package version."""
db: SQLAlchemy = SQLAlchemy()
"""The database instance."""

View File

@ -23,7 +23,7 @@ First written: 2023/2/26
{% block as_trasfer %}
<a class="btn btn-primary" role="button" href="{{ url_for("accounting.journal-entry.edit", journal_entry=obj)|accounting_journal_entry_to_transfer|accounting_inherit_next }}">
<i class="fa-solid fa-table-columns"></i>
<i class="fa-solid fa-bars-staggered"></i>
<span class="d-none d-md-inline">{{ A_("As Transfer") }}</span>
</a>
{% endblock %}