Plug-and-play double-entry accounting for Django (GST, multi-currency, APIViews).
Project description
🧾 django-finacc
Plug-and-Play Financial Accounting for Django — a reusable double-entry bookkeeping engine with REST APIs, period locking, GST/VAT support, and chart of accounts templates.
Works with Django 5.x and Python 3.11+.
Built for modular integration into ERP, CRM, or eCommerce projects.
🚀 Features
- 🧮 True Double-Entry Accounting — balanced journal entries enforced at DB level
- 🧑💼 Multi-Company & Multi-Currency (with FX rate tables)
- 🧾 Chart of Accounts (CoA) templates (India GST ready)
- 🧷 Period Locking & Year Close helpers
- 💰 GST/VAT Tax Models — inclusive/exclusive with CGST/SGST/IGST splits
- ⚙️ DRF APIViews — clean JSON endpoints for accounting automation
- 📊 Trial Balance / Ledger Helpers
- 🔐 Immutable Entries (reversal-only edits, planned)
- 🧱 Plug-and-Play — drop into any Django project as an app
📦 Installation
pip install django-finacc
setting.py entry
INSTALLED_APPS += ["rest_framework", "finacc"]
urls.py
path("api/finacc/", include("finacc.api.urls")) python manage.py finacc_bootstrap_coa --company=1 --template=india_basic
example
POST /api/finacc/journal/entries/ { "company": 1, "date": "2025-11-08", "currency": "INR", "memo": "Opening capital", "lines": [ {"account": 1, "debit": "100000.00", "credit": "0.00"}, {"account": 2, "debit": "0.00", "credit": "100000.00"} ] }
installed app
INSTALLED_APPS += ["rest_framework", "finacc"]
other settings
FINACC = { "BASE_CURRENCY": "INR", "AUTO_POST_ON_CREATE": True, }
urls.py
from django.urls import include, path
urlpatterns = [ path("api/finacc/", include("finacc.api.urls")), ]
example
from decimal import Decimal from finacc.posting.rules import create_simple_entry from finacc.posting.engine import post_entry
je = create_simple_entry(company, date, "INR", "Sale", [ {"account": ar_acc, "debit": Decimal("1180.00")}, {"account": rev_acc, "credit": Decimal("1000.00")}, {"account": gst_payable_acc, "credit": Decimal("180.00")}, ]) post_entry(je)
def post_invoice(company, invoice): # map lines -> AR, Revenue, Tax ... return post_entry(je)
Implementation Notes & Roadmap
- Immutable posted entries: disable updates/deletes; allow reversal entries only (planned: reverse_entry(entry_id)).
- Reports: Add Ledger, Balance Sheet, and P&L helpers with tree aggregation.
- Tax: Load taxes_india_gst.json via setup script; provide posting helpers that split CGST/SGST/IGST to mapped accounts.
- FX: Add revaluation utilities for period end.
- Permissions: Add IsCompanyMember mixin to filter by company_id.
- Docs site: MkDocs with Quickstart, API reference, and diagrams.
- CI: GitHub Actions matrix for Python 3.11/3.12 and Django 5.0/5.1.
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_finacc-0.1.1.tar.gz.
File metadata
- Download URL: django_finacc-0.1.1.tar.gz
- Upload date:
- Size: 9.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73e9cf9e0ff3e9d0748da762d985fce52dc21751f648524cdbe6ae97eeac8cbc
|
|
| MD5 |
d6604205fc7ed1d5d9e36b6b87843ec5
|
|
| BLAKE2b-256 |
176cb1d3dfc0446bfdb0828a22376188af62073a948d5c3049d61f5bb0e5291c
|
File details
Details for the file django_finacc-0.1.1-py3-none-any.whl.
File metadata
- Download URL: django_finacc-0.1.1-py3-none-any.whl
- Upload date:
- Size: 15.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2527290425db5c19d53e502dd94ab216beeef7e569aacbffabd1690eb0c50da
|
|
| MD5 |
764e2d0906595fc681b5b31d69296c9a
|
|
| BLAKE2b-256 |
0ad0d5359787529935780f6a5ff9c8c355636d28b6bccc522126c2f6f5f99ced
|