django-ledger 0.7.5.1__py3-none-any.whl → 0.7.5.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of django-ledger might be problematic. Click here for more details.
- django_ledger/__init__.py +1 -1
- django_ledger/migrations/0021_alter_bankaccountmodel_account_model_and_more.py +2 -3
- {django_ledger-0.7.5.1.dist-info → django_ledger-0.7.5.2.dist-info}/METADATA +9 -32
- {django_ledger-0.7.5.1.dist-info → django_ledger-0.7.5.2.dist-info}/RECORD +8 -8
- {django_ledger-0.7.5.1.dist-info → django_ledger-0.7.5.2.dist-info}/AUTHORS.md +0 -0
- {django_ledger-0.7.5.1.dist-info → django_ledger-0.7.5.2.dist-info}/LICENSE +0 -0
- {django_ledger-0.7.5.1.dist-info → django_ledger-0.7.5.2.dist-info}/WHEEL +0 -0
- {django_ledger-0.7.5.1.dist-info → django_ledger-0.7.5.2.dist-info}/top_level.txt +0 -0
django_ledger/__init__.py
CHANGED
|
@@ -6,7 +6,7 @@ Copyright© EDMA Group Inc licensed under the GPLv3 Agreement.
|
|
|
6
6
|
default_app_config = 'django_ledger.apps.DjangoLedgerConfig'
|
|
7
7
|
|
|
8
8
|
"""Django Ledger"""
|
|
9
|
-
__version__ = '0.7.5.
|
|
9
|
+
__version__ = '0.7.5.2'
|
|
10
10
|
__license__ = 'GPLv3 License'
|
|
11
11
|
|
|
12
12
|
__author__ = 'Miguel Sanda'
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# Generated by Django 5.1.6 on 2025-02-18 22:47
|
|
2
2
|
|
|
3
3
|
import django.db.models.deletion
|
|
4
|
-
from django.conf import settings
|
|
5
4
|
from django.db import migrations, models
|
|
6
5
|
|
|
7
6
|
|
|
@@ -17,7 +16,7 @@ class Migration(migrations.Migration):
|
|
|
17
16
|
field=models.ForeignKey(
|
|
18
17
|
help_text='Account model be used to map transactions from financial institution',
|
|
19
18
|
on_delete=django.db.models.deletion.RESTRICT,
|
|
20
|
-
to=
|
|
19
|
+
to='django_ledger.AccountModel',
|
|
21
20
|
verbose_name='Associated Account Model'
|
|
22
21
|
),
|
|
23
22
|
),
|
|
@@ -26,7 +25,7 @@ class Migration(migrations.Migration):
|
|
|
26
25
|
name='bank_account_model',
|
|
27
26
|
field=models.ForeignKey(
|
|
28
27
|
on_delete=django.db.models.deletion.CASCADE,
|
|
29
|
-
to=
|
|
28
|
+
to='django_ledger.BankAccountModel',
|
|
30
29
|
verbose_name='Associated Bank Account Model'
|
|
31
30
|
),
|
|
32
31
|
),
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: django-ledger
|
|
3
|
-
Version: 0.7.5.
|
|
3
|
+
Version: 0.7.5.2
|
|
4
4
|
Summary: Double entry accounting system built on the Django Web Framework.
|
|
5
5
|
Author-email: Miguel Sanda <msanda@arrobalytics.com>
|
|
6
6
|
Maintainer-email: Miguel Sanda <msanda@arrobalytics.com>
|
|
@@ -45,7 +45,8 @@ Requires-Dist: furo; extra == "dev"
|
|
|
45
45
|
|
|
46
46
|
## A Double Entry Accounting Engine for Django
|
|
47
47
|
|
|
48
|
-
Django Ledger is a powerful financial management system built on the Django Web Framework. It offers a simplified API
|
|
48
|
+
Django Ledger is a powerful financial management system built on the Django Web Framework. It offers a simplified API
|
|
49
|
+
for handling complex accounting tasks in financially driven applications.
|
|
49
50
|
|
|
50
51
|
[FREE Get Started Guide](https://www.djangoledger.com/get-started) | [Join our Discord](https://discord.gg/c7PZcbYgrc) | [Documentation](https://django-ledger.readthedocs.io/en/latest/) | [QuickStart Notebook](https://github.com/arrobalytics/django-ledger/blob/develop/notebooks/QuickStart%20Notebook.ipynb)
|
|
51
52
|
|
|
@@ -70,13 +71,15 @@ Django Ledger is a powerful financial management system built on the Django Web
|
|
|
70
71
|
## Getting Involved
|
|
71
72
|
|
|
72
73
|
- **Feature Requests/Bug Reports**: Open an issue in the repository
|
|
73
|
-
- **For software customization, advanced features and consulting services**:
|
|
74
|
-
[Contact us](https://www.miguelsanda.com/work-with-me/) or email msanda@arrobalytics.com
|
|
75
|
-
- **Contribute**: See
|
|
74
|
+
- **For software customization, advanced features and consulting services**:
|
|
75
|
+
[Contact us](https://www.miguelsanda.com/work-with-me/) or email msanda@arrobalytics.com
|
|
76
|
+
- **Contribute**: See
|
|
77
|
+
our [contribution guidelines](https://github.com/arrobalytics/django-ledger/blob/master/Contribute.md)
|
|
76
78
|
|
|
77
79
|
## Who Should Contribute?
|
|
78
80
|
|
|
79
81
|
We're looking for contributors with:
|
|
82
|
+
|
|
80
83
|
- Python and Django programming skills
|
|
81
84
|
- Finance and accounting expertise
|
|
82
85
|
- Interest in developing a robust accounting engine API
|
|
@@ -130,6 +133,7 @@ pipenv install "django-ledger[graphql,pdf]"
|
|
|
130
133
|
```
|
|
131
134
|
|
|
132
135
|
Alternatively, you can use:
|
|
136
|
+
|
|
133
137
|
```shell script
|
|
134
138
|
pipenv install django-ledger\[graphql,pdf\]
|
|
135
139
|
```
|
|
@@ -150,33 +154,6 @@ INSTALLED_APPS = [
|
|
|
150
154
|
]
|
|
151
155
|
```
|
|
152
156
|
|
|
153
|
-
|
|
154
|
-
* Add django_ledger settings to project settings.py file.
|
|
155
|
-
|
|
156
|
-
```python
|
|
157
|
-
DJANGO_LEDGER_ACCOUNT_MODEL = 'django_ledger.AccountModel'
|
|
158
|
-
DJANGO_LEDGER_CHART_OF_ACCOUNTS_MODEL = 'django_ledger.ChartOfAccountModel'
|
|
159
|
-
DJANGO_LEDGER_TRANSACTION_MODEL = 'django_ledger.TransactionModel'
|
|
160
|
-
DJANGO_LEDGER_JOURNAL_ENTRY_MODEL = 'django_ledger.JournalEntryModel'
|
|
161
|
-
DJANGO_LEDGER_LEDGER_MODEL = 'django_ledger.LedgerModel'
|
|
162
|
-
DJANGO_LEDGER_ENTITY_MODEL = 'django_ledger.EntityModel'
|
|
163
|
-
DJANGO_LEDGER_ENTITY_STATE_MODEL = 'django_ledger.EntityStateModel'
|
|
164
|
-
DJANGO_LEDGER_ENTITY_UNIT_MODEL = 'django_ledger.EntityUnitModel'
|
|
165
|
-
DJANGO_LEDGER_ESTIMATE_MODEL = 'django_ledger.EstimateModel'
|
|
166
|
-
DJANGO_LEDGER_BILL_MODEL = 'django_ledger.BillModel'
|
|
167
|
-
DJANGO_LEDGER_INVOICE_MODEL = 'django_ledger.InvoiceModel'
|
|
168
|
-
DJANGO_LEDGER_PURCHASE_ORDER_MODEL = 'django_ledger.PurchaseOrderModel'
|
|
169
|
-
DJANGO_LEDGER_CUSTOMER_MODEL = 'django_ledger.CustomerModel'
|
|
170
|
-
DJANGO_LEDGER_VENDOR_MODEL = 'django_ledger.VendorModel'
|
|
171
|
-
DJANGO_LEDGER_BANK_ACCOUNT_MODEL = 'django_ledger.BankAccountModel'
|
|
172
|
-
DJANGO_LEDGER_CLOSING_ENTRY_MODEL = 'django_ledger.ClosingEntryModel'
|
|
173
|
-
DJANGO_LEDGER_UNIT_OF_MEASURE_MODEL = 'django_ledger.UnitOfMeasureModel'
|
|
174
|
-
DJANGO_LEDGER_ITEM_TRANSACTION_MODEL = 'django_ledger.ItemTransactionModel'
|
|
175
|
-
DJANGO_LEDGER_ITEM_MODEL = 'django_ledger.ItemModel'
|
|
176
|
-
DJANGO_LEDGER_STAGED_TRANSACTION_MODEL = 'django_ledger.StagedTransactionModel'
|
|
177
|
-
DJANGO_LEDGER_IMPORT_JOB_MODEL = 'django_ledger.ImportJobModel'
|
|
178
|
-
```
|
|
179
|
-
|
|
180
157
|
* Perform database migrations:
|
|
181
158
|
|
|
182
159
|
```shell
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
django_ledger/__init__.py,sha256=
|
|
1
|
+
django_ledger/__init__.py,sha256=fj4DntGD1AocFAxeIBUZQeKEd2qzpUr65BwMehYhIUU,382
|
|
2
2
|
django_ledger/apps.py,sha256=H-zEWUjKGakgSDSZmLIoXChZ2h6e0dth0ZO5SpoT-8U,163
|
|
3
3
|
django_ledger/exceptions.py,sha256=rML8sQQ0Hq-DYMLZ76dfw2RYSAsXWUoyHuyC_yP9o1o,491
|
|
4
4
|
django_ledger/settings.py,sha256=S5AwPEk8JvKMtU230VfP3q8tv6hxzgPd1FDGRD5zYpY,8747
|
|
@@ -96,7 +96,7 @@ django_ledger/migrations/0017_alter_accountmodel_unique_together_and_more.py,sha
|
|
|
96
96
|
django_ledger/migrations/0018_transactionmodel_cleared_transactionmodel_reconciled_and_more.py,sha256=HrwS6Jxs_rgKQm3OeROQi1peEPSF7HtjbYKbTX0DT14,1284
|
|
97
97
|
django_ledger/migrations/0019_alter_transactionmodel_amount_and_more.py,sha256=FFfEOrsqbL_MLYbWgwCtZNcvCepTxN2x8vS5D7NpcLQ,1367
|
|
98
98
|
django_ledger/migrations/0020_remove_bankaccountmodel_django_ledg_cash_ac_59a8af_idx_and_more.py,sha256=KFQExX3UVpeI9WlmRl2AZ9Q7k-24YBNf9ij4VU7tq_o,1741
|
|
99
|
-
django_ledger/migrations/0021_alter_bankaccountmodel_account_model_and_more.py,sha256=
|
|
99
|
+
django_ledger/migrations/0021_alter_bankaccountmodel_account_model_and_more.py,sha256=b3eJA_QzNzvx7BPSaj2RCPIbsrCkZrpkvk_qN7v-4OA,1101
|
|
100
100
|
django_ledger/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
101
101
|
django_ledger/models/__init__.py,sha256=OesBx4My9GnqU1xB5WXuuGLOnmzgxEJxI-WWxRxi658,807
|
|
102
102
|
django_ledger/models/accounts.py,sha256=PR0s0oJntnhFaJsiUuKY50NJWyXaAXu1WgTCso1oovI,34969
|
|
@@ -411,9 +411,9 @@ django_ledger/views/purchase_order.py,sha256=CyftKrQWV1SBz7W0CvZOfZ81OPEiBHPD7b9
|
|
|
411
411
|
django_ledger/views/transactions.py,sha256=3ijtJzdLPFkqG7OYpe-7N4QVjCyR2yl5ht_9RyfquBA,212
|
|
412
412
|
django_ledger/views/unit.py,sha256=MF9tEeWCOt5XrtK-UFmHFisyBM-h3WzgL6v8IX2Ynbk,10446
|
|
413
413
|
django_ledger/views/vendor.py,sha256=qlkd3gsjZ6RYuPrRYDVZp-Im65calM9ed3KxsaT4cxw,3467
|
|
414
|
-
django_ledger-0.7.5.
|
|
415
|
-
django_ledger-0.7.5.
|
|
416
|
-
django_ledger-0.7.5.
|
|
417
|
-
django_ledger-0.7.5.
|
|
418
|
-
django_ledger-0.7.5.
|
|
419
|
-
django_ledger-0.7.5.
|
|
414
|
+
django_ledger-0.7.5.2.dist-info/AUTHORS.md,sha256=ShPwf-qniJkbjRzX5_lqhmgoLMEYMSHSwKPXHZtWmyk,824
|
|
415
|
+
django_ledger-0.7.5.2.dist-info/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
|
|
416
|
+
django_ledger-0.7.5.2.dist-info/METADATA,sha256=oh6gUyIED8VoN1EDraq5t_Wjq5gUvFdBfVl1RhhrpsM,8757
|
|
417
|
+
django_ledger-0.7.5.2.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
418
|
+
django_ledger-0.7.5.2.dist-info/top_level.txt,sha256=g6f6tIwlFvhkDfmttGdJyDja8Scm3-jUhZ0dL-J9h_g,52
|
|
419
|
+
django_ledger-0.7.5.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|