A reusable Django app that allows you to enter salary data of your employees so that authorized persons can view, print and export (PDF) their payslips.
Project description
A reusable Django app that allows you to enter salary data of your employees so that authorized persons can view, print and export (PDF) their payslips.
Installation
You need to install the following prerequisites in order to use this app:
pip install Django pip install django-libs pip install python-dateutil pip install WeasyPrint
If you want to install the latest stable release from PyPi:
$ pip install django-payslip
If you feel adventurous and want to install the latest commit from GitHub:
$ pip install -e git://github.com/bitmazk/django-payslip.git#egg=payslip
Add payslip to your INSTALLED_APPS:
INSTALLED_APPS = ( ..., 'payslip', )
Hook this app into your urls.py:
urlpatterns = patterns('', ... url(r'^payslip/', include('payslip.urls')), )
Features & Usage
You can:
Define companies
Assign employees (a user model is created automatically)
Define payment types
Create payments
Create custom extra fields for COMPANIES, EMPLOYEES and PAYMENTS
Create global attributes for those custom fields (dropdown fields)
Generate custom payslips
Print those payslips or export them as styled PDF documents
There’s already a print-ready template for your payslips, which should cover mainly used payslips. If you want to you can override the template with your own styles. Find it here payslip/templates/payslip/payslip.html.
You can also create your own CSS, but be sure to cover print styles. Find it here static/payslip/css/payslip.css.
After you have added the basic company information needed in your template, you can add payments and employees and start paysliping. :) Have fun with it.
Settings
PAYSLIP_CURRENCY
Default: ‘EUR’
Your preferred currency acronym.
Contribute
If you want to contribute to this project, please perform the following steps:
# Fork this repository # Clone your fork $ mkvirtualenv -p python2.7 payslip $ pip install -r requirements.txt $ ./payslip/tests/runtests.sh # You should get no failing tests $ git co -b feature_branch master # Implement your feature and tests # Describe your change in the CHANGELOG.txt $ git add . && git commit $ git push origin feature_branch # Send us a pull request for your feature branch
Whenever you run the tests a coverage output will be generated in tests/coverage/index.html. When adding new features, please make sure that you keep the coverage at 100%.
If you are making changes that need to be tested in a browser (i.e. to the CSS or JS files), you might want to setup a Django project, follow the installation instructions above, then run python setup.py develop. This will just place an egg-link to your cloned fork in your project’s virtualenv.
Roadmap
Add employee and manager dashboards
Check the issue tracker on github for further milestones and features to come.
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
File details
Details for the file django-payslip-0.3.2.tar.gz
.
File metadata
- Download URL: django-payslip-0.3.2.tar.gz
- Upload date:
- Size: 25.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2332a460495c719a97f2982589c57c75d2f8a35f0342898630ba8d29be5be14b |
|
MD5 | 1f78f27687c4c14cf84f5f8ebaaf9a0e |
|
BLAKE2b-256 | 89fa5f964b4f5323d2e71e1d3caf768898c6560819c9b31f19fb5d04870a266c |