django-ledger 0.5.6.4__py3-none-any.whl → 0.6.0__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/admin/entity.py +14 -0
- django_ledger/forms/account.py +13 -4
- django_ledger/io/io_core.py +20 -16
- django_ledger/io/io_digest.py +1 -1
- django_ledger/io/io_middleware.py +2 -4
- django_ledger/models/accounts.py +11 -1
- django_ledger/models/closing_entry.py +4 -4
- django_ledger/models/coa.py +269 -90
- django_ledger/models/entity.py +21 -2
- django_ledger/models/mixins.py +1 -1
- django_ledger/models/transactions.py +209 -111
- django_ledger/models/utils.py +117 -116
- django_ledger/templates/django_ledger/account/account_list.html +2 -2
- django_ledger/templates/django_ledger/account/account_update.html +18 -16
- django_ledger/urls/chart_of_accounts.py +3 -3
- django_ledger/views/account.py +36 -10
- django_ledger/views/coa.py +8 -9
- django_ledger/views/mixins.py +10 -8
- {django_ledger-0.5.6.4.dist-info → django_ledger-0.6.0.dist-info}/METADATA +81 -131
- {django_ledger-0.5.6.4.dist-info → django_ledger-0.6.0.dist-info}/RECORD +25 -26
- django_ledger/static/django_ledger/bundle/djetler.bundle.js.LICENSE.txt +0 -28
- {django_ledger-0.5.6.4.dist-info → django_ledger-0.6.0.dist-info}/AUTHORS.md +0 -0
- {django_ledger-0.5.6.4.dist-info → django_ledger-0.6.0.dist-info}/LICENSE +0 -0
- {django_ledger-0.5.6.4.dist-info → django_ledger-0.6.0.dist-info}/WHEEL +0 -0
- {django_ledger-0.5.6.4.dist-info → django_ledger-0.6.0.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: django-ledger
|
|
3
|
-
Version: 0.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.6.0
|
|
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>
|
|
7
7
|
License: GPLv3 License
|
|
@@ -17,22 +17,20 @@ Classifier: Framework :: Django :: 4.0
|
|
|
17
17
|
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
18
18
|
Classifier: Intended Audience :: End Users/Desktop
|
|
19
19
|
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
20
|
-
Requires-Python: >=3.
|
|
20
|
+
Requires-Python: >=3.10
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
License-File: LICENSE
|
|
23
23
|
License-File: AUTHORS.md
|
|
24
|
-
Requires-Dist:
|
|
25
|
-
Requires-Dist:
|
|
26
|
-
Requires-Dist:
|
|
27
|
-
Requires-Dist:
|
|
28
|
-
Requires-Dist:
|
|
29
|
-
Requires-Dist:
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist:
|
|
32
|
-
Requires-Dist:
|
|
33
|
-
Requires-Dist: sqlparse >=0.
|
|
34
|
-
Requires-Dist: asgiref >=3.5.2 ; python_version >= "3.7"
|
|
35
|
-
Requires-Dist: tzdata >=2022.2 ; sys_platform == "win32"
|
|
24
|
+
Requires-Dist: python-dateutil ==2.9.0.post0 ; python_version >= "2.7" and python_version not in "3.0, 3.1, 3.2, 3.3"
|
|
25
|
+
Requires-Dist: six ==1.16.0 ; python_version >= "2.7" and python_version not in "3.0, 3.1, 3.2, 3.3"
|
|
26
|
+
Requires-Dist: django >=2.2 ; python_version >= "3.10"
|
|
27
|
+
Requires-Dist: asgiref ==3.8.1 ; python_version >= "3.8"
|
|
28
|
+
Requires-Dist: django-treebeard >=4.7.1 ; python_version >= "3.8"
|
|
29
|
+
Requires-Dist: faker >=24.11.0 ; python_version >= "3.8"
|
|
30
|
+
Requires-Dist: markdown >=3.6 ; python_version >= "3.8"
|
|
31
|
+
Requires-Dist: ofxtools ==0.9.5 ; python_version >= "3.8"
|
|
32
|
+
Requires-Dist: pillow >=10.3.0 ; python_version >= "3.8"
|
|
33
|
+
Requires-Dist: sqlparse >=0.5.0 ; python_version >= "3.8"
|
|
36
34
|
Provides-Extra: dev
|
|
37
35
|
Requires-Dist: sphinx ~=4.5.0 ; extra == 'dev'
|
|
38
36
|
Requires-Dist: behave ~=1.2.6 ; extra == 'dev'
|
|
@@ -44,29 +42,13 @@ Requires-Dist: furo ; extra == 'dev'
|
|
|
44
42
|
|
|
45
43
|
### An Accounting, Bookkeeping & Financial Analysis Engine for the Django Framework.
|
|
46
44
|
|
|
47
|
-
__Django Ledger__
|
|
48
|
-
the [Django Web Framework](https://www.djangoproject.com),
|
|
49
|
-
|
|
50
|
-
|
|
45
|
+
Introducing __Django Ledger__, a powerful double entry accounting system designed for financially driven applications
|
|
46
|
+
using the [Django Web Framework](https://www.djangoproject.com). Developed by lead developer Miguel Sanda, this system
|
|
47
|
+
offers a simplified, high-level API, making it easier for users to navigate the complexities of accounting. If you have
|
|
48
|
+
prior experience with Django, you'll find this software even more effective. And, for those interested in contributing,
|
|
49
|
+
consider joining our new discord channel for further collaboration and discussions.
|
|
51
50
|
|
|
52
|
-
|
|
53
|
-
If you want to contribute please consider joining our new discord channel here.
|
|
54
|
-
|
|
55
|
-
### Join our Discord Channel [Here](https://discord.gg/c7PZcbYgrc)
|
|
56
|
-
|
|
57
|
-
The software is still in early stages of development. For more information, please check the
|
|
58
|
-
[Roadmap](https://github.com/arrobalytics/django-ledger/blob/develop/ROADMAP.md).
|
|
59
|
-
|
|
60
|
-
### How long until all features are implemented?
|
|
61
|
-
|
|
62
|
-
Finance and Accounting is a complicated subject. Django Ledger is different from other Django projects
|
|
63
|
-
as it aims to provide a developer-friendly accounting engine while providing a reliable and extensible API to
|
|
64
|
-
power financially driven applications. This project in particular, not only requires Python AND Django programming
|
|
65
|
-
experience, but also finance and accounting experience. So, that's the long way of saying, we need your help!
|
|
66
|
-
Join our Discord Channel [here](https://discord.gg/J7KDFgCCsw) to learn more.
|
|
67
|
-
|
|
68
|
-
__This project can greatly benefit from contributions towards Documentation and Unit Tests.__
|
|
69
|
-
__This is the best way to get started with this project if you are not familiar with the models.__
|
|
51
|
+
### Questions? Join our Discord Channel [Here](https://discord.gg/c7PZcbYgrc)
|
|
70
52
|
|
|
71
53
|
### Documentation
|
|
72
54
|
|
|
@@ -74,117 +56,49 @@ Access the latest documentation and QuickStart guide [here](https://django-ledge
|
|
|
74
56
|
Also, you may download the QuickStart Jupyter Notebook
|
|
75
57
|
[here](https://github.com/arrobalytics/django-ledger/blob/develop/notebooks/QuickStart%20Notebook.ipynb).
|
|
76
58
|
|
|
77
|
-
|
|
59
|
+
# Main Features
|
|
78
60
|
|
|
79
|
-
-
|
|
80
|
-
-
|
|
61
|
+
- High Level API.
|
|
62
|
+
- Double entry accounting system.
|
|
63
|
+
- Multiple Hierarchical Chart of Accounts.
|
|
81
64
|
- Financial Statements (Income Statement, Balance Sheet & Cash Flow Statement).
|
|
82
65
|
- Purchase Orders, Sales Orders (Estimates), Bills and Invoices.
|
|
83
66
|
- Automatic financial ratio & insight calculations.
|
|
84
|
-
- High Level Entity API.
|
|
85
67
|
- Multi tenancy (multiple companies/users/clients).
|
|
86
68
|
- Self-contained Ledgers, Journal Entries & Transactions.
|
|
87
69
|
- Basic OFX & QFX file import.
|
|
88
|
-
-
|
|
89
|
-
- Basic navigational templates.
|
|
90
|
-
- Entity administration & entity manager support.
|
|
70
|
+
- Closing Entries.
|
|
91
71
|
- Items, lists & inventory management.
|
|
92
72
|
- Unit of Measures.
|
|
93
|
-
- Bank Accounts.
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
* __0.4.0__: Items, resources and & lists for bills & invoices itemization:
|
|
100
|
-
* __0.4.0__: Enhance and optimize Django Ledger the random data generation functionality to properly populate relevant
|
|
101
|
-
random data for testing.
|
|
102
|
-
* __0.4.1__: Entity internal organizations, department, branches, etc.
|
|
103
|
-
* __0.4.2__: Custom Accounting Periods.
|
|
104
|
-
* __0.4.3__: Purchase Order Model implementation.
|
|
105
|
-
* Bugfixes & UI/UX Enhancements.
|
|
106
|
-
|
|
107
|
-
### Version 0.5
|
|
108
|
-
|
|
109
|
-
More details available in the [Django Ledger v0.5 Page](https://www.arrobalytics.com/blog/2021/12/07/django-ledger-v05/)
|
|
110
|
-
.
|
|
111
|
-
|
|
112
|
-
* __0.5__: Testing framework implementation that will include:
|
|
113
|
-
* Unit tests using the [Built-in Django](https://docs.djangoproject.com/en/3.1/topics/testing/) unit test modules.
|
|
114
|
-
* Behavioral Driven Testing using [behave](https://behave.readthedocs.io/en/latest/) library.
|
|
115
|
-
* __Need help!!!! If you want to contribute PLEASE ADD UNIT TESTS!!!__
|
|
116
|
-
* Start creating basic package documentation via [Sphinx](https://www.sphinx-doc.org/en/master/)
|
|
117
|
-
* Document code and functions within code base.
|
|
118
|
-
* Generate HTML documentation.
|
|
119
|
-
* Work with Accountants, Subject Experts and Developers to define an initial list of Unit Tests to validate output _
|
|
120
|
-
_(
|
|
121
|
-
help needed!)__.
|
|
122
|
-
* Update package and code documentation.
|
|
123
|
-
* Bugfixes & UI/UX Enhancements.
|
|
124
|
-
* ~~__0.5.0__~~: Inventory tracking.
|
|
125
|
-
* Average Cost.
|
|
126
|
-
* ~~__0.5.1__~~: Customer estimates & contract tracking.
|
|
127
|
-
* Link Estimate/PO/Bill/Invoice workflow.
|
|
128
|
-
* Journal Entry activity determination & validation (for cash flow).
|
|
129
|
-
* ~~__0.5.2__~~: Cash flow statement.
|
|
130
|
-
* Human Readable Journal Entry document numbers.
|
|
131
|
-
* Hierarchical Account Model Management.
|
|
132
|
-
* Generate all Django Ledger Model documentation.
|
|
133
|
-
* ~~__0.5.3__~~: High Level EntityModel API.
|
|
134
|
-
* ~~__0.5.4__~~: Balance Sheet Statement, Income Statement & Cash Flow Statement API & PDF report export.
|
|
135
|
-
* ~~__0.5.5__~~: Closing Entries.
|
|
136
|
-
* ~~0.5.5.1~~: Open Financial Exchange Imports (OFX) Bugfixes and Optimizations.
|
|
137
|
-
* ~~0.5.5.2~~: BugFixes and Optimizations..
|
|
138
|
-
* ~~0.5.5.3~~: Closing Entries will be used if requested date is present. Documentation Update.
|
|
139
|
-
* __0.5.6__: Transaction Library & Blueprints.
|
|
140
|
-
* __0.5.7__: Chart of Accounts Import.
|
|
141
|
-
* __0.5.8__: Trial Balance Import.
|
|
142
|
-
|
|
143
|
-
### Version 0.6
|
|
144
|
-
|
|
145
|
-
* Credit Line Models.
|
|
146
|
-
* Time tracking.
|
|
147
|
-
* Transaction tagging.
|
|
148
|
-
* Update package and code documentation.
|
|
149
|
-
* Bugfixes & UI/UX Enhancements.
|
|
150
|
-
|
|
151
|
-
### Version 0.7
|
|
152
|
-
|
|
153
|
-
* Currency Models implementation as a way to define EntityModel default currency.
|
|
154
|
-
* Produce financial statements in different currencies.
|
|
155
|
-
* Update package and code documentation.
|
|
156
|
-
* Bugfixes & UI/UX Enhancements.
|
|
157
|
-
|
|
158
|
-
### Version 0.8
|
|
159
|
-
|
|
160
|
-
* User roles and permissions on views to support read/write permissions for assigned managers to entities.
|
|
161
|
-
* User preferences and settings & account creation views.
|
|
162
|
-
* Update package and code documentation.
|
|
163
|
-
|
|
164
|
-
### Version 0.9
|
|
165
|
-
|
|
166
|
-
* Enable Hierarchical Entity Structures.
|
|
167
|
-
* Consolidated financial statements.
|
|
168
|
-
* InterCompany transactions.
|
|
169
|
-
* Update package and code documentation.
|
|
170
|
-
|
|
171
|
-
### Version 1.0
|
|
172
|
-
|
|
173
|
-
* Complete Internationalization of all user-related fields.
|
|
174
|
-
|
|
175
|
-
*** Roadmap subject to change based on user feedback and backlog priorities.
|
|
73
|
+
- Bank Accounts Information.
|
|
74
|
+
- Django Admin Classes.
|
|
75
|
+
- Built In Entity Management UI.
|
|
76
|
+
|
|
77
|
+
## Need a new feature or report a bug?
|
|
78
|
+
Feel free to initiate an Issue describing your new feature request.
|
|
176
79
|
|
|
177
80
|
# Want to contribute?
|
|
178
81
|
|
|
179
|
-
|
|
180
|
-
|
|
82
|
+
Finance and Accounting is a complicated subject. Django Ledger stands out from other Django projects due to its focus
|
|
83
|
+
on providing a developer-friendly accounting engine and a reliable, extensible API for financially driven applications.
|
|
84
|
+
The project requires expertise in Python, Django programming, finance, and accounting. In essence, the project is
|
|
85
|
+
seeking assistance from individuals with the specific skill set needed to contribute effectively. So, it's clear that
|
|
86
|
+
they are in need of support from individuals with the right expertise.
|
|
87
|
+
|
|
88
|
+
The project is actively seeking contributors with financial and/or accounting experience. Prior accounting experience
|
|
89
|
+
is a big plus for potential contributors. If you have the relevant experience and want to contribute, feel free to
|
|
90
|
+
reach out to me. You can find the contribution guidelines at the specified link. The project welcomes anyone interested
|
|
91
|
+
in making a contribution.
|
|
92
|
+
|
|
181
93
|
See __[contribution guidelines](https://github.com/arrobalytics/django-ledger/blob/develop/Contribute.md)__.
|
|
182
94
|
|
|
183
95
|
# Installation
|
|
96
|
+
|
|
184
97
|
Django Ledger is a [Django](https://www.djangoproject.com/) application. If you haven't, you need working knowledge of
|
|
185
|
-
Django and a working Django project before you can use Django Ledger.
|
|
98
|
+
Django and a working Django project before you can use Django Ledger. A good place to start
|
|
186
99
|
is [here](https://docs.djangoproject.com/en/4.2/intro/tutorial01/#creating-a-project).
|
|
187
|
-
|
|
100
|
+
|
|
101
|
+
Make sure you refer to the django version you are using.
|
|
188
102
|
|
|
189
103
|
The easiest way to start is to use the zero-config Django Ledger starter template. See
|
|
190
104
|
details [here](https://github.com/arrobalytics/django-ledger-starter). Otherwise, you may create your
|
|
@@ -329,6 +243,42 @@ python manage.py createsuperuser
|
|
|
329
243
|
python manage.py runserver
|
|
330
244
|
```
|
|
331
245
|
|
|
246
|
+
# How To Set Up Django Ledger for Development using Docker
|
|
247
|
+
|
|
248
|
+
1. Navigate to your projects directory.
|
|
249
|
+
|
|
250
|
+
2. Give executable permissions to entrypoint.sh
|
|
251
|
+
|
|
252
|
+
```shell
|
|
253
|
+
sudo chmod +x entrypoint.sh
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
3. Add host '0.0.0.0' into ALLOWED_HOSTS in settings.py.
|
|
257
|
+
|
|
258
|
+
4. Build the image and run the container.
|
|
259
|
+
|
|
260
|
+
```shell
|
|
261
|
+
docker compose up --build
|
|
262
|
+
```
|
|
263
|
+
|
|
264
|
+
5. Add Django Superuser by running command in seprate terminal
|
|
265
|
+
|
|
266
|
+
```shell
|
|
267
|
+
docker ps
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
Select container id of running container and execute following command
|
|
271
|
+
|
|
272
|
+
```shell
|
|
273
|
+
docker exec -it containerId /bin/sh
|
|
274
|
+
```
|
|
275
|
+
|
|
276
|
+
```shell
|
|
277
|
+
python manage.py createsuperuser
|
|
278
|
+
```
|
|
279
|
+
|
|
280
|
+
6. Navigate to http://0.0.0.0:8000/ on browser.
|
|
281
|
+
|
|
332
282
|
# Run Test Suite
|
|
333
283
|
|
|
334
284
|
After setting up your development environment you may run tests.
|
|
@@ -48,14 +48,14 @@ assets/node_modules/node-gyp/gyp/tools/pretty_gyp.py,sha256=2ZCRPW-MZfK7gdnCIaqh
|
|
|
48
48
|
assets/node_modules/node-gyp/gyp/tools/pretty_sln.py,sha256=b_Fxm-SXUCPL3Tix4EyNwZNmQ-zkeRIFFmuL0R5wFhw,5482
|
|
49
49
|
assets/node_modules/node-gyp/gyp/tools/pretty_vcproj.py,sha256=AwQrxK1F-jhjsbbT35XQjrvWNbc3IBFaKXoJogqMh_o,10633
|
|
50
50
|
assets/node_modules/node-gyp/test/fixtures/test-charmap.py,sha256=5raXzaQnO2eJnrlFtlDtWftryhZX7Fj0amFW3hdSnhE,547
|
|
51
|
-
django_ledger/__init__.py,sha256=
|
|
51
|
+
django_ledger/__init__.py,sha256=xREl-STKi-FZ0E1x38tl7fMrbx8yZ-tcDqEY2wIWMow,456
|
|
52
52
|
django_ledger/apps.py,sha256=H-zEWUjKGakgSDSZmLIoXChZ2h6e0dth0ZO5SpoT-8U,163
|
|
53
53
|
django_ledger/exceptions.py,sha256=rML8sQQ0Hq-DYMLZ76dfw2RYSAsXWUoyHuyC_yP9o1o,491
|
|
54
54
|
django_ledger/settings.py,sha256=KLujLYwEC3fxfj5u9HnVDsr1rBjE5OAI--bu0MYi4JE,6221
|
|
55
55
|
django_ledger/utils.py,sha256=l8xq-uSvUdJNpyDjC_0UrsSfjeEpwf7B-tavbnt40a8,4305
|
|
56
56
|
django_ledger/admin/__init__.py,sha256=MipzxmBhXswpx63uf3Ai2amyBMAP5fZL7mKXKxjNRIY,458
|
|
57
57
|
django_ledger/admin/coa.py,sha256=BcBsvNs4Z1hOyZy4YqCtIfk1aw8DejrI1bAEH93Tkjc,3542
|
|
58
|
-
django_ledger/admin/entity.py,sha256=
|
|
58
|
+
django_ledger/admin/entity.py,sha256=DhH-6o3kjUdkhVPHzwOSF3crtvf5MCzcc1vPCk9O2Bk,6287
|
|
59
59
|
django_ledger/admin/ledger.py,sha256=ecwmnuW4119StZDR_1QaK9jdZXw2dEvza-dnx1bHWDM,7876
|
|
60
60
|
django_ledger/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
61
|
django_ledger/contrib/django_ledger_graphene/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -93,7 +93,7 @@ django_ledger/contrib/django_ledger_graphene/unit/schema.py,sha256=orR4tn1ORTfzL
|
|
|
93
93
|
django_ledger/contrib/django_ledger_graphene/vendor/mutations.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
94
94
|
django_ledger/contrib/django_ledger_graphene/vendor/schema.py,sha256=Y20FR0gut0yNsROL_f1LSHdzn7wM4_voKQv--evVGG4,1453
|
|
95
95
|
django_ledger/forms/__init__.py,sha256=N7iaeMO5xTU-q7RXTVYUy-fu8nMZbiIJ9QEtDCjsTdI,205
|
|
96
|
-
django_ledger/forms/account.py,sha256
|
|
96
|
+
django_ledger/forms/account.py,sha256=-U6OneNfH2bIlMzqXPZk8KmLn-csMhZ4PKzzq-4LdUs,5430
|
|
97
97
|
django_ledger/forms/app_filters.py,sha256=fHmftiuR1Ei28LhGuu7LoxS4Q5pVjj1wiT0fF4GUcUI,2293
|
|
98
98
|
django_ledger/forms/auth.py,sha256=HaJDEIRFoAHEAv-s_ZfTe0rZbhzIQ7GkKnaBX1qiAW4,736
|
|
99
99
|
django_ledger/forms/bank_account.py,sha256=dmmx1BzGq9IeD0jpYOmE83Gat6D3IUeTc0z0jJ7roR4,4513
|
|
@@ -115,11 +115,11 @@ django_ledger/forms/unit.py,sha256=rXUefjpuAmUU0vPOqu1ObO4k-bN-_Q6kOqHJ4kp_Vlg,1
|
|
|
115
115
|
django_ledger/forms/utils.py,sha256=sgkwBZs15_rZ5NT7h-8Z7wi3-ItM1E1sqoVDo3NQ5Jc,513
|
|
116
116
|
django_ledger/forms/vendor.py,sha256=Nuh8MmSpz4ycMZwiVe--U9Ec6ezIsfACHDkhA2SyiZ4,2215
|
|
117
117
|
django_ledger/io/__init__.py,sha256=Y9R-mY4peg8EpxmlXKaBER1IHMU-Nos8_dII41Kj0Ho,445
|
|
118
|
-
django_ledger/io/io_core.py,sha256=
|
|
119
|
-
django_ledger/io/io_digest.py,sha256=
|
|
118
|
+
django_ledger/io/io_core.py,sha256=fvMZYLlutL7Pn6F_p7U3whRA4ZeS7IDangm1v6Hcjvw,46479
|
|
119
|
+
django_ledger/io/io_digest.py,sha256=W_bCH6JxGw6eASDb1k43JuGAejvOVfyA7WkCS7AEqDQ,4280
|
|
120
120
|
django_ledger/io/io_generator.py,sha256=JF4plsABUkCIrtI2X-YD7o5eNghRIgLUseNcBIGOj3U,34613
|
|
121
121
|
django_ledger/io/io_library.py,sha256=kZt61TV6McxH2Ly1INYRmb-T1hNuEKe4WI0YB_YHeKk,20564
|
|
122
|
-
django_ledger/io/io_middleware.py,sha256=
|
|
122
|
+
django_ledger/io/io_middleware.py,sha256=c-vwpcjg2HbYbb4O36fdf6011dFOnoNsDHOAQXmJgB8,20052
|
|
123
123
|
django_ledger/io/ofx.py,sha256=JnmDjhIpLySoixK1WVe6DivRuu02rYsBjqI8yi5Opzs,1488
|
|
124
124
|
django_ledger/io/ratios.py,sha256=dsuCv9-r73SMLv3OrxeoT5JebfRmrDsRKG_YzHggWFw,3542
|
|
125
125
|
django_ledger/io/roles.py,sha256=RrErn0-cDOr90UrMBGl-PM_PxG2o_KYbGYeK4Dpwsek,20690
|
|
@@ -143,25 +143,25 @@ django_ledger/migrations/0014_ledgermodel_ledger_xid_and_more.py,sha256=UHuEQrnF
|
|
|
143
143
|
django_ledger/migrations/0015_remove_chartofaccountmodel_locked_and_more.py,sha256=GZDKJDjpqo52pY7sXusHpyvXsUwsuvoZqTQNda9Eo1I,560
|
|
144
144
|
django_ledger/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
145
145
|
django_ledger/models/__init__.py,sha256=8mn-OGhAVgLs8YASEBwo8dpX6tHyGtMxRHVPGDGECVU,793
|
|
146
|
-
django_ledger/models/accounts.py,sha256=
|
|
146
|
+
django_ledger/models/accounts.py,sha256=GQoVBCN_UeXnA2zj4bejXthr2mmL9a_8iS-gDPKI5KY,28937
|
|
147
147
|
django_ledger/models/bank_account.py,sha256=0-eTBxxRyvUKOVVNcGqWV1kiOKcXA2KPQIdiVHDUDCY,7678
|
|
148
148
|
django_ledger/models/bill.py,sha256=vaXdTEfow9SPzactNs6mZdm4tJc8uamKufT9tQGFpJg,63541
|
|
149
|
-
django_ledger/models/closing_entry.py,sha256=
|
|
150
|
-
django_ledger/models/coa.py,sha256=
|
|
149
|
+
django_ledger/models/closing_entry.py,sha256=557vVKhrRZOdzqmmvtVlU48VbzJk8tTV018b0dTfpek,17746
|
|
150
|
+
django_ledger/models/coa.py,sha256=Eue4XTRjM9irR-2z2P-Ynrw0ZrfAMub1m69mBdqok7s,27097
|
|
151
151
|
django_ledger/models/coa_default.py,sha256=4Zj8OMhgBiYuREjM82cFfyGWd8uCAeqggVkeNhg4SLU,27338
|
|
152
152
|
django_ledger/models/customer.py,sha256=JQOktcYKUlENJv4frek9rAW6sRerrQ0xXHlC5KPmhWk,11807
|
|
153
153
|
django_ledger/models/data_import.py,sha256=2H-4oTVLa7qXq03m9fd7T5zSQLkZKOAn2OAeOQBzMPA,19477
|
|
154
|
-
django_ledger/models/entity.py,sha256=
|
|
154
|
+
django_ledger/models/entity.py,sha256=1btxPOJxKmSpT1T12bisVE_QVZmQoniyfpya1JURBt4,121692
|
|
155
155
|
django_ledger/models/estimate.py,sha256=-qB5t2cEdyYpFUq7tOUQnFqvE6EDUiVdTtzjEbESwEQ,55829
|
|
156
156
|
django_ledger/models/invoice.py,sha256=FZ7ZxAjyrM2NUwiR3wIX0PnbPXV27F63u8sESb4qM20,61389
|
|
157
157
|
django_ledger/models/items.py,sha256=JLPFGPQvTKiq3r09wgG2cxBB4ZmcEXK6LyqMUhzWj3k,54938
|
|
158
158
|
django_ledger/models/journal_entry.py,sha256=VfXXvm3tUFuy2Z6j3PLlDk9ndHqsZgn_PuhrxTNqaiY,50918
|
|
159
159
|
django_ledger/models/ledger.py,sha256=qjORKpXHn7d393OLS62F2joyyfZyh7tCg7wc67nAu50,23042
|
|
160
|
-
django_ledger/models/mixins.py,sha256=
|
|
160
|
+
django_ledger/models/mixins.py,sha256=SBcSMfFuFzLqFQv298aDOfAJrF5kT91oXyo384auKqc,51903
|
|
161
161
|
django_ledger/models/purchase_order.py,sha256=CDibi90e7Yhpv_UiyP32mMcsQ0EUElXJ2r8pLzuS7yE,42729
|
|
162
|
-
django_ledger/models/transactions.py,sha256=
|
|
162
|
+
django_ledger/models/transactions.py,sha256=lCwJ68vPy2ePX8dTzDsEwHPk87VN-vYGdxfwSNF60Po,24229
|
|
163
163
|
django_ledger/models/unit.py,sha256=x5FFJXgOi1OdajQejIakW6wGY4DjrJhL3S0Pm5OimMk,8074
|
|
164
|
-
django_ledger/models/utils.py,sha256=
|
|
164
|
+
django_ledger/models/utils.py,sha256=3gkdCrfJp9qwN3Sf8R96AliilzwcKBm31UEao4WJO9o,8436
|
|
165
165
|
django_ledger/models/vendor.py,sha256=akJCO86GIwjlZ_jPUZCDXlMeuJe-8zKTm-52aJXGFpg,11320
|
|
166
166
|
django_ledger/models/schemas/__init__.py,sha256=8Tvw33tVJtCvxoXje2lrs9C1bsP_iuGcVi1JqzdPUao,157
|
|
167
167
|
django_ledger/models/schemas/digest.py,sha256=ME_dJ4g2p3dQ97Skh_RTZMwuNLmwTi19BdLM1G6tyAo,1077
|
|
@@ -174,7 +174,6 @@ django_ledger/report/cash_flow_statement.py,sha256=GosnBzMZWlqNGitOlxvDiHxkT4JrN
|
|
|
174
174
|
django_ledger/report/core.py,sha256=tpVdAOXTx4DGEcTeG-SWRO9af7ZTXdmW0-vhwJDY8hQ,7435
|
|
175
175
|
django_ledger/report/income_statement.py,sha256=m4pG0Yjpl7SELx3-yYKT4dCluKt6nT2bkD9gay9tNKI,11156
|
|
176
176
|
django_ledger/static/django_ledger/bundle/djetler.bundle.js,sha256=1UzHryjoKN43wUa5b6N2ia2yoE-TCrtfNMnuPIf9Im8,547613
|
|
177
|
-
django_ledger/static/django_ledger/bundle/djetler.bundle.js.LICENSE.txt,sha256=YMfGVlI2rGhmdUNumICn7hTQB2SpYAvQ07nJ_F-tAgE,513
|
|
178
177
|
django_ledger/static/django_ledger/bundle/styles.bundle.js,sha256=myDLVMYHwKTxypheUretM6MZ4HhK8Yn0BqB_OGUW3KU,506543
|
|
179
178
|
django_ledger/static/django_ledger/img/daniel-weiss-aj2Os9mYgJU-unsplash.jpg,sha256=zYNOMM56QE4AdRkvdGRNifDqj4OJcUA49oebJqsRjuQ,276317
|
|
180
179
|
django_ledger/static/django_ledger/img/made-with-bulma.png,sha256=eHFH1XGGq3Wn9sN35Jok2jxaCQu7nIravVVHNTAr7n0,19456
|
|
@@ -199,8 +198,8 @@ django_ledger/static/django_ledger/logo/favicon.png,sha256=7QIRzizQUig3PHi9zyV1t
|
|
|
199
198
|
django_ledger/templates/django_ledger/account/account_create.html,sha256=3-5LgVrvOm6YhryVGgtYltyHMA98dSNt7_vOvsxSRvU,1166
|
|
200
199
|
django_ledger/templates/django_ledger/account/account_create_child.html,sha256=i1tBc-N44D2mKnm61nrI11pXxo2STF1ezV9fVckB_qY,1089
|
|
201
200
|
django_ledger/templates/django_ledger/account/account_detail.html,sha256=m-UTWD9YqoM9JWKug4alY4DIql13jYFrJG2BmdYSZ7s,934
|
|
202
|
-
django_ledger/templates/django_ledger/account/account_list.html,sha256=
|
|
203
|
-
django_ledger/templates/django_ledger/account/account_update.html,sha256=
|
|
201
|
+
django_ledger/templates/django_ledger/account/account_list.html,sha256=0kDNrzcMgMewiBQGqjkPCUHErmOiVz6uy1FnwzclMjc,1019
|
|
202
|
+
django_ledger/templates/django_ledger/account/account_update.html,sha256=QR4kT3cv2d00Hlh0j6UUbhtAxJ6J_mQVzGDYCVDnaWE,1151
|
|
204
203
|
django_ledger/templates/django_ledger/account/tags/account_txs_table.html,sha256=ywGyB-LdCLAfT5vbFyTjPD7tNGwdQEZwrHq0Dtp6zoA,3373
|
|
205
204
|
django_ledger/templates/django_ledger/account/tags/accounts_table.html,sha256=33rqgVfnfi43l6u3JGOyydF0xH6QXNM2-QQqNK9Cnkg,7476
|
|
206
205
|
django_ledger/templates/django_ledger/auth/login.html,sha256=UYV2rxjEn9cXBbG6Ww93k6yMPJtOo5vpX6sod61ewKs,1849
|
|
@@ -372,7 +371,7 @@ django_ledger/urls/account.py,sha256=9G6m2mkki8sNtC_mlNIHcn2SCSoG7ienbQ5qg2kHWg0
|
|
|
372
371
|
django_ledger/urls/auth.py,sha256=8dY2h6PQkMayUL81guu9JCxm--Tj0rglvvxg9Qh03aY,230
|
|
373
372
|
django_ledger/urls/bank_account.py,sha256=-dJsrnwej8H96Gc8xltLf3NwUxKk_xG0Mq4mxhe8Cqs,887
|
|
374
373
|
django_ledger/urls/bill.py,sha256=wvdRqSgnHp1CLdX6Sudu1IiIx4M1Pe8OupanA-9a-nI,2890
|
|
375
|
-
django_ledger/urls/chart_of_accounts.py,sha256=
|
|
374
|
+
django_ledger/urls/chart_of_accounts.py,sha256=c9b32U-GY8Ddhy2W7zW8IMnNtQzZHF1bs1SGJ4Ylr3U,1097
|
|
376
375
|
django_ledger/urls/closing_entry.py,sha256=3W0fCuAWGB3h8cWg0cxOb9EClVrydeIdHEX0q9rge60,1765
|
|
377
376
|
django_ledger/urls/customer.py,sha256=I3tWSb5Gmdr-boBSlCst_5cvCHz6JhpGxuwglqJeaG0,426
|
|
378
377
|
django_ledger/urls/data_import.py,sha256=bOi6U8gN2adxQUjOeNCJGuDRB--hwWeUIQOYTMbFarw,780
|
|
@@ -392,12 +391,12 @@ django_ledger/urls/transactions.py,sha256=e_x_z5qbkR6i7o8OWWdXshDiY_WVmu9WVhR9A9
|
|
|
392
391
|
django_ledger/urls/unit.py,sha256=EaBd1EcSeQYbOH1rTQZdyDEEtLVi7-QfC_wpRPwTpuE,1499
|
|
393
392
|
django_ledger/urls/vendor.py,sha256=ODHpAwe5lomluj8ZCqbMtugTeeRsv0Yo9SqkZEmfYaw,393
|
|
394
393
|
django_ledger/views/__init__.py,sha256=l5Pm2_oAW6Q_jJbXf-BiHA3ilCbiGb6gkXCm73K5DGY,1158
|
|
395
|
-
django_ledger/views/account.py,sha256=
|
|
394
|
+
django_ledger/views/account.py,sha256=d2pzYXKPOF74hCD4ehsQ_WNFsgqyGXXekCh22gDawAM,10523
|
|
396
395
|
django_ledger/views/auth.py,sha256=-zTjMlLpyxHGPlY9EXFQyeVHMmyeJ2H9RptcW7PDeDg,771
|
|
397
396
|
django_ledger/views/bank_account.py,sha256=bMgqrDydz6WuXina4L27uV-cmQicW0_JoPaXxlO7uN4,5176
|
|
398
397
|
django_ledger/views/bill.py,sha256=-WWAPF6PKqfaApAJBFwNMmIveDajXD-5a12d-LbcqFA,23087
|
|
399
398
|
django_ledger/views/closing_entry.py,sha256=y78azZesVgdUoQmaSEYiP7MBaPRE45qAAHPDlcThlUs,8103
|
|
400
|
-
django_ledger/views/coa.py,sha256=
|
|
399
|
+
django_ledger/views/coa.py,sha256=WnWQVz-4Ik9v28KHzD_WiKcgix7l6bBj1A60p4k-eos,4934
|
|
401
400
|
django_ledger/views/customer.py,sha256=RoBsXBxZC9b79DSNNHaoSZtQ2AoXf7DJAGmZEO3xdxs,3672
|
|
402
401
|
django_ledger/views/data_import.py,sha256=_H8gjGRIE2Jm97ivvEQn0uEWrM3VvKkYQeXQ1GbKn3g,11950
|
|
403
402
|
django_ledger/views/djl_api.py,sha256=6ADX9fBK8DroTeg8UIeCf2x4wt6-AF5xLlDQnqXBfsM,4411
|
|
@@ -411,14 +410,14 @@ django_ledger/views/invoice.py,sha256=iUzTG-EbdYqNX-eYwHBnQRUD_1wTOGutw0BfDMKcI6
|
|
|
411
410
|
django_ledger/views/item.py,sha256=FY53vk_giTRgvJ47FRqChQ8vyDYPDp4DGTvVhGAb36E,21347
|
|
412
411
|
django_ledger/views/journal_entry.py,sha256=21kuiRBlhlkgv8xZKM4mj9djv0Fu0BhB80QOEOHCa-w,12135
|
|
413
412
|
django_ledger/views/ledger.py,sha256=k3cK9zgGNnPwMPx0uqj_pRMFbM71lbYi7bi-l6B2M5s,12681
|
|
414
|
-
django_ledger/views/mixins.py,sha256=
|
|
413
|
+
django_ledger/views/mixins.py,sha256=Zgx85WJ87IQ0yTRdVgVQp70puWaRloUObLgqeCoQLTM,21283
|
|
415
414
|
django_ledger/views/purchase_order.py,sha256=1J3u4QnCkM7z1Y6DePijVdM67x4CQgfmQJcs3Y4kclU,21082
|
|
416
415
|
django_ledger/views/transactions.py,sha256=5taQRGLSMkM_N8paQJ07HMspI_Nl7PawF8OohCiRmao,206
|
|
417
416
|
django_ledger/views/unit.py,sha256=_RgPJO9mR6v5ohBXlnL3T8nTWgS1lwlCvERQcHk0wHE,10232
|
|
418
417
|
django_ledger/views/vendor.py,sha256=gUdBPTFLeSwlNfdHSA1KFdE_y3QpwpkFhEB0r3-UYdI,3461
|
|
419
|
-
django_ledger-0.
|
|
420
|
-
django_ledger-0.
|
|
421
|
-
django_ledger-0.
|
|
422
|
-
django_ledger-0.
|
|
423
|
-
django_ledger-0.
|
|
424
|
-
django_ledger-0.
|
|
418
|
+
django_ledger-0.6.0.dist-info/AUTHORS.md,sha256=SRM2cynD89ZfEsL09zrbUVeO17r9zE2ZM7y6ReMqVRo,713
|
|
419
|
+
django_ledger-0.6.0.dist-info/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
|
|
420
|
+
django_ledger-0.6.0.dist-info/METADATA,sha256=Mz1rbJmCYv-ekyLhXqfYmlF8VNjrArigooAHmYSGrE4,9861
|
|
421
|
+
django_ledger-0.6.0.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
422
|
+
django_ledger-0.6.0.dist-info/top_level.txt,sha256=fmHWehb2HfoDncQ3eQtYzeYc-gJMywf6q_ZpKBjwzoQ,38
|
|
423
|
+
django_ledger-0.6.0.dist-info/RECORD,,
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* Chart.js v2.9.4
|
|
3
|
-
* https://www.chartjs.org
|
|
4
|
-
* (c) 2020 Chart.js Contributors
|
|
5
|
-
* Released under the MIT License
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
|
-
/*!
|
|
9
|
-
* Pikaday
|
|
10
|
-
*
|
|
11
|
-
* Copyright © 2014 David Bushell | BSD & MIT license | https://github.com/Pikaday/Pikaday
|
|
12
|
-
*/
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* (c) Iconify
|
|
16
|
-
*
|
|
17
|
-
* For the full copyright and license information, please view the license.txt or license.gpl.txt
|
|
18
|
-
* files at https://github.com/iconify/iconify
|
|
19
|
-
*
|
|
20
|
-
* Licensed under MIT.
|
|
21
|
-
*
|
|
22
|
-
* @license MIT
|
|
23
|
-
* @version 3.1.1
|
|
24
|
-
*/
|
|
25
|
-
|
|
26
|
-
//! moment.js
|
|
27
|
-
|
|
28
|
-
//! moment.js locale configuration
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|