Send and manage bills in juntagrico.
Project description
juntagrico-billing
This is an extension for juntagrico. You can find more information about juntagrico here (https://github.com/juntagrico/juntagrico).
It provides the following features for juntagrico:
- creating managing bills (invoices) for juntagrico subscriptions
- display of bills as HTML or PDF
- support for swiss qr bill with reference number
- manage payments for bills
- reading camt.054 payment files (in connection with qr bills and refnumer)
- bookkeeping export covering bills and payments
Installation
Install juntagrico-billing via pip
pip install juntagrico-billing
or add it to your main django projects requirements.txt
:
juntagrico-billing
You may also install from github source (or add it to requirements.txt
):
pip install git+https://github.com/juntagrico/juntagrico-billing.git
In your juntagrico.settings.py
add juntagrico_billing
somewhere above juntagrico
:
INSTALLED_APPS = (
'juntagrico_billing',
'juntagrico',
...
In your urls.py you also need to add the new pattern:
urlpatterns = [
...
path('',include('juntagrico_billing.urls')),
]
As the billing app introduces its own database tables, you need to apply migrations after installing.
Execute python manage.py migrate
in your main django project.
Configuration
Set these in your settings.py
to modify juntagrico-billing
BILLS_USERMENU
Set to True to add "bills" to the user menu.
default value: False
DUEDATE_NOTICE_URL
Set the url of a page that explains the due date policy of your bills, if you have any.
default value: ''
Create settings object
juntagrico-billing
uses a singleton Settings
object to store some setting.
You need to create this settings object once in django admin.
-
Log in to juntagrico and go to the admin UI at
https://<my juntagrico site>/admin
. -
You should see in admin a new section for juntagrico_billing
-
Add a new Settings object
-
You need to specify a debtors account, just specify any digit code (e.g.
1100
) -
A default paymenttype is mandatory too. You may create one directly from the settings dialog:
-
Save your settings object. There must be only one settings object.
Create a business year
Billing is done on the base of a business-year. A business-year denotes the time period for creating bills. Usually this will correspond to a calendar year (1.1 - 31.1 of a year). It is possible to use different timespans though. Business-years should be consecutive.
Business years are managed in django admin UI.
- Log in to
/admin
and create a new businessyear object
Billing
Billing is based on the activation and deactivation dates of subscriptions (and extrasubscriptions) in juntagrico. At any time you may create all needed invoices (bills) for a certain business-year.
In juntagrico you should see the Bills and Bookkeeping
Menu, if you are assigned bookkeeping rights.
Go to Bills
and choose the desired business-year.
Switch to the Generate bills
tab. The amount of pending bills for the businessyear should then be displayed.
This may take some time depending on the number of subscriptions and members in your system.
Pressing the Generate
button will create these bills.
They may be viewed afterwards on the all
tab of the bills list.
Modifying or adding bills
There are two modes to view an existing bill object:
- admin view of the bill. click on the first column of a bill row to open the bill in django admin.
- user view of the bill. click on the last columdn of a bill row to open the bill as the user will see it.
If a bill created via Generate
is incorrect, proceed as follows:
- delete the bill in the django admin UI
- correct the subscription settings
- in most cases this will involve adjusting the activation or deactivation date of the subscription / extrasubscription
- re-create the bill by going to the
Generate bills
tab on theBills
list.- if you only modified one subscription, it should say
1 pending bill
- click on
Generate
to re-create the bill based on the modified settings
- if you only modified one subscription, it should say
The same procedure applies if a new subscription or subscription part (extrasubscription) is added after bills for a business-year have been generated. If there already is a bill for the same member and you want the additional parts to appear on the same bill, you may delete the existing bill and regenerate it like described above. Deleting a bill is only possible if there are no payments on it. If you add parts without deleting an existing bill, then a new bill will be added for the member.
Adding custom items to a bill
In addition to subscription and extrasubscription parts, a bill may also contain custom items. Custom items may be used for stuff like
- correcting overpaid bills
- adding special credit for a certain member (work instead of paying)
- adding additional contributions (solidarity contributions)
For each kind of custom item you need to define a custom Bill item type in django admin:
You need to specify a description and a booking account for the custom item type.
You may then add custom item types on a bill in the django admin view of the bill:
Bookkeeping Export
TBD
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file juntagrico_billing-1.6.4.tar.gz
.
File metadata
- Download URL: juntagrico_billing-1.6.4.tar.gz
- Upload date:
- Size: 53.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a975f5d180236fd898e9069def32dff0e845529e6d84bac3b3d3f49c21db2e62 |
|
MD5 | e10fb1247b2b78eca9a076d8a675ece9 |
|
BLAKE2b-256 | b9b3a1ba1f35537e223ea19e55a7274316616bcc5ca1551319c3ffe5f02c9f66 |
File details
Details for the file juntagrico_billing-1.6.4-py3-none-any.whl
.
File metadata
- Download URL: juntagrico_billing-1.6.4-py3-none-any.whl
- Upload date:
- Size: 68.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b85d2af2bdce3734a24c031a89ca64125ba22bbbef5d342e6d195c220933e410 |
|
MD5 | ada4212e554f9b17d6e6f1ef19229eef |
|
BLAKE2b-256 | 251aaeff114fd7f7f905bbd801b4492b511cd29fe4e4194b4446f004a03244f1 |