Releases: juntagrico/juntagrico-billing
Releases · juntagrico/juntagrico-billing
1.6.4
- fix path to datatables static (juntagrico)
1.6.3
1.6.2
- Bugfix with rounding of decimal digits. Prevents error displaying QR-code for certain amounts.
1.6.1
- Fixed a bug that prevented displaying an invoice when the open amount was negative (overpaid)
1.6.0
Upgrade notes
This release of juntagrico-billing may only be used with juntagrico 1.6.x as there are some breaking changes that come with juntagrico 1.6.0.
It is recommended to reference this package with semantic versioning in requirements.txt
:
juntagrico-billing~=1.6.0
App reference in settings.py
In your settings.py
file you need to move juntagrico_billing
up, so it appears before juntagrico
.
INSTALLED_APPS = (
'juntagrico_billing',
'juntagrico',
...
)
Use new URL path pattern
Update your urls.py
to use the path
function instead of re_path
:
urlpatterns = [
...
path('', include('juntagrico_billing.urls')),
]
1.5.6
- Show a swiss QR payslip for "normal" IBAN accounts too
- Bugfix on CAMT payment files import for QR-IBAN payment processing
- Several small bugfixes and some cleanup
1.5.5
- improved support for reading camt054 payment files
- billing mail notification now contains referencenumber (only for QR iban accounts)