django-ledger 0.6.3__py3-none-any.whl → 0.6.4__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.

Files changed (48) hide show
  1. django_ledger/__init__.py +1 -1
  2. django_ledger/admin/coa.py +1 -2
  3. django_ledger/forms/account.py +22 -11
  4. django_ledger/io/roles.py +6 -0
  5. django_ledger/models/accounts.py +523 -196
  6. django_ledger/models/entity.py +12 -5
  7. django_ledger/report/cash_flow_statement.py +1 -1
  8. django_ledger/static/.DS_Store +0 -0
  9. django_ledger/static/django_ledger/.DS_Store +0 -0
  10. django_ledger/static/django_ledger/logo_2/.DS_Store +0 -0
  11. django_ledger/static/django_ledger/logo_2/django_ledger_logo_dark.png +0 -0
  12. django_ledger/static/django_ledger/logo_2/django_ledger_logo_dark@0.5x.png +0 -0
  13. django_ledger/static/django_ledger/logo_2/django_ledger_logo_dark@2x.png +0 -0
  14. django_ledger/static/django_ledger/logo_2/django_ledger_logo_dark@3x.png +0 -0
  15. django_ledger/static/django_ledger/logo_2/djl-full-vert.png +0 -0
  16. django_ledger/static/django_ledger/logo_2/djl-full-vert@0.5x.png +0 -0
  17. django_ledger/static/django_ledger/logo_2/djl-full-vert@2x.png +0 -0
  18. django_ledger/static/django_ledger/logo_2/djl-full-vert@3x.png +0 -0
  19. django_ledger/static/django_ledger/logo_2/djl-logo-full-horiz.png +0 -0
  20. django_ledger/static/django_ledger/logo_2/djl-logo-full-horiz@0.5x.png +0 -0
  21. django_ledger/static/django_ledger/logo_2/djl-logo-full-horiz@2x.png +0 -0
  22. django_ledger/static/django_ledger/logo_2/djl-logo-full-horiz@3x.png +0 -0
  23. django_ledger/static/django_ledger/logo_2/djl-logo-full-vert.png +0 -0
  24. django_ledger/static/django_ledger/logo_2/djl-logo-full-vert@0.5x.png +0 -0
  25. django_ledger/static/django_ledger/logo_2/djl-logo-full-vert@2x.png +0 -0
  26. django_ledger/static/django_ledger/logo_2/djl-logo-full-vert@3x.png +0 -0
  27. django_ledger/static/django_ledger/logo_2/djl-logo.png +0 -0
  28. django_ledger/static/django_ledger/logo_2/djl-logo@0.5x.png +0 -0
  29. django_ledger/static/django_ledger/logo_2/djl-logo@2x.png +0 -0
  30. django_ledger/static/django_ledger/logo_2/djl-logo@3x.png +0 -0
  31. django_ledger/static/django_ledger/logo_2/djl-txt-full-horiz.png +0 -0
  32. django_ledger/static/django_ledger/logo_2/djl-txt-full-horiz@0.5x.png +0 -0
  33. django_ledger/static/django_ledger/logo_2/djl-txt-full-horiz@2x.png +0 -0
  34. django_ledger/static/django_ledger/logo_2/djl-txt-full-horiz@3x.png +0 -0
  35. django_ledger/static/django_ledger/logo_2/djl-txt-full-vert.png +0 -0
  36. django_ledger/static/django_ledger/logo_2/djl-txt-full-vert@0.5x.png +0 -0
  37. django_ledger/static/django_ledger/logo_2/djl-txt-full-vert@2x.png +0 -0
  38. django_ledger/static/django_ledger/logo_2/djl-txt-full-vert@3x.png +0 -0
  39. django_ledger/static/django_ledger/logo_2/djl-txt-horiz.png +0 -0
  40. django_ledger/static/django_ledger/logo_2/djl-txt-horiz@0.5x.png +0 -0
  41. django_ledger/static/django_ledger/logo_2/djl-txt-horiz@2x.png +0 -0
  42. django_ledger/static/django_ledger/logo_2/djl-txt-horiz@3x.png +0 -0
  43. {django_ledger-0.6.3.dist-info → django_ledger-0.6.4.dist-info}/METADATA +1 -1
  44. {django_ledger-0.6.3.dist-info → django_ledger-0.6.4.dist-info}/RECORD +48 -13
  45. {django_ledger-0.6.3.dist-info → django_ledger-0.6.4.dist-info}/top_level.txt +0 -1
  46. {django_ledger-0.6.3.dist-info → django_ledger-0.6.4.dist-info}/AUTHORS.md +0 -0
  47. {django_ledger-0.6.3.dist-info → django_ledger-0.6.4.dist-info}/LICENSE +0 -0
  48. {django_ledger-0.6.3.dist-info → django_ledger-0.6.4.dist-info}/WHEEL +0 -0
@@ -1292,12 +1292,19 @@ class EntityModelAbstract(MP_Node,
1292
1292
  """
1293
1293
 
1294
1294
  if not coa_model:
1295
- account_model_qs = self.default_coa.accountmodel_set.all().select_related(
1296
- 'coa_model', 'coa_model__entity').not_coa_root()
1297
- else:
1295
+ coa_model = self.default_coa
1296
+ elif isinstance(coa_model, UUID):
1297
+ coa_model = self.chartofaccountmodel_set.get(uuid__exact=coa_model)
1298
+ elif isinstance(coa_model, str):
1299
+ coa_model = self.chartofaccountmodel_set.get(slug__exact=coa_model)
1300
+ elif isinstance(coa_model, ChartOfAccountModel):
1298
1301
  self.validate_chart_of_accounts_for_entity(coa_model=coa_model)
1299
- account_model_qs = coa_model.accountmodel_set.select_related(
1300
- 'coa_model', 'coa_model__entity').not_coa_root()
1302
+ else:
1303
+ raise EntityModelValidationError(
1304
+ f'CoA Model {coa_model} must be an instance of ChartOfAccountModel, UUID, str or None.'
1305
+ )
1306
+
1307
+ account_model_qs = coa_model.accountmodel_set.select_related('coa_model', 'coa_model__entity').not_coa_root()
1301
1308
 
1302
1309
  if active:
1303
1310
  account_model_qs = account_model_qs.active()
@@ -1,7 +1,7 @@
1
1
  from datetime import datetime, date
2
2
  from typing import Optional, Dict, Union
3
3
 
4
- from django_ledger.io.io_digest import IODigestContextManager
4
+ from django_ledger.io.io_context import IODigestContextManager
5
5
  from django_ledger.report.core import BaseReportSupport, PDFReportValidationError
6
6
  from django_ledger.settings import DJANGO_LEDGER_CURRENCY_SYMBOL
7
7
  from django_ledger.templatetags.django_ledger import currency_format
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: django-ledger
3
- Version: 0.6.3
3
+ Version: 0.6.4
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>
@@ -48,13 +48,13 @@ 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=YIkeEEOhmF8tF2yAy5LrIeaNAzkX8i-oaFluYzjuH9I,456
51
+ django_ledger/__init__.py,sha256=zYLCym1ajshzNY-b3ZMeJvL7rzwwDc5RBhY_25VYwas,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=bZyPKgjmRcO_Rj7hDi4gGlW0VFr_LP2yKeUVIkmWgQM,6321
55
55
  django_ledger/utils.py,sha256=l8xq-uSvUdJNpyDjC_0UrsSfjeEpwf7B-tavbnt40a8,4305
56
56
  django_ledger/admin/__init__.py,sha256=MipzxmBhXswpx63uf3Ai2amyBMAP5fZL7mKXKxjNRIY,458
57
- django_ledger/admin/coa.py,sha256=BcBsvNs4Z1hOyZy4YqCtIfk1aw8DejrI1bAEH93Tkjc,3542
57
+ django_ledger/admin/coa.py,sha256=_T-F7lQc-66ijErGbSCABO2qqQqfPXVbnGpct6WxWdU,3525
58
58
  django_ledger/admin/entity.py,sha256=DhH-6o3kjUdkhVPHzwOSF3crtvf5MCzcc1vPCk9O2Bk,6287
59
59
  django_ledger/admin/ledger.py,sha256=WKJCKDT54B_OWtAGlPKKAOBRZAqJ-SPNYiuvV-Wa9y8,7936
60
60
  django_ledger/contrib/__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=-U6OneNfH2bIlMzqXPZk8KmLn-csMhZ4PKzzq-4LdUs,5430
96
+ django_ledger/forms/account.py,sha256=wXJT4KMrVgt6n1GChd-NUz3ITCona9_vUGKXMEvoHOg,5100
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
@@ -122,7 +122,7 @@ django_ledger/io/io_library.py,sha256=vvQm3IQRLFdH7HS_DYX46Xe-U9IvgZ6MQnHjy0-fyj
122
122
  django_ledger/io/io_middleware.py,sha256=c-vwpcjg2HbYbb4O36fdf6011dFOnoNsDHOAQXmJgB8,20052
123
123
  django_ledger/io/ofx.py,sha256=tsggMXfAz9rslCTUcxlandPapcHXbGqLO9Diel5z_jE,1677
124
124
  django_ledger/io/ratios.py,sha256=dsuCv9-r73SMLv3OrxeoT5JebfRmrDsRKG_YzHggWFw,3542
125
- django_ledger/io/roles.py,sha256=J9Z8WtunOQShKORCY97HpFtlAHG4N4hPfBkpUtRQDIY,20223
125
+ django_ledger/io/roles.py,sha256=Rht4MiZ3SS1_uqNTQGt48dLHJxHYdyvw-HEaniUTXz4,20436
126
126
  django_ledger/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
127
127
  django_ledger/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
128
  django_ledger/management/commands/generate_oauth2_codes.py,sha256=H92pSOMA0VFjdCLXOqdIWql-aKU12uaAPdXgz2DB9Go,1495
@@ -144,7 +144,7 @@ django_ledger/migrations/0015_remove_chartofaccountmodel_locked_and_more.py,sha2
144
144
  django_ledger/migrations/0016_remove_accountmodel_django_ledg_coa_mod_e19964_idx_and_more.py,sha256=wpapkPycqZ9drUMlPGBs1IRy7pz6HyDgNvZBaf-E86o,1655
145
145
  django_ledger/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
146
146
  django_ledger/models/__init__.py,sha256=8mn-OGhAVgLs8YASEBwo8dpX6tHyGtMxRHVPGDGECVU,793
147
- django_ledger/models/accounts.py,sha256=0OWMrv89fUdec7RF1EiWE6xZdJMOdEpgYPWechAJYrM,28881
147
+ django_ledger/models/accounts.py,sha256=1L9XYu3VdLI-mmYYHl8fX1klKZGUQ6S2Kp0PSGgyQVw,38838
148
148
  django_ledger/models/bank_account.py,sha256=0-eTBxxRyvUKOVVNcGqWV1kiOKcXA2KPQIdiVHDUDCY,7678
149
149
  django_ledger/models/bill.py,sha256=0JaSDu6pA07VVMRjPRiZnMldn50QkPFDbj5MbzDNuXk,64569
150
150
  django_ledger/models/closing_entry.py,sha256=s5DvvWnv5SogWtlUdtpdDgKce80FBSjJ6YWQnQxqwV0,17959
@@ -152,7 +152,7 @@ django_ledger/models/coa.py,sha256=o-VM2XK64djM3px6pJlGrUVTXu5qNb4ENESS70I___0,2
152
152
  django_ledger/models/coa_default.py,sha256=4Zj8OMhgBiYuREjM82cFfyGWd8uCAeqggVkeNhg4SLU,27338
153
153
  django_ledger/models/customer.py,sha256=JQOktcYKUlENJv4frek9rAW6sRerrQ0xXHlC5KPmhWk,11807
154
154
  django_ledger/models/data_import.py,sha256=2H-4oTVLa7qXq03m9fd7T5zSQLkZKOAn2OAeOQBzMPA,19477
155
- django_ledger/models/entity.py,sha256=VFknz-7FQZu_gVDb5RWqPoCb3eXVzIMgmr4hatUlzBI,121876
155
+ django_ledger/models/entity.py,sha256=_rYtHYK2jFiZIGWVbOzGk3uSSwhiDNIjM22bQElW6bA,122209
156
156
  django_ledger/models/estimate.py,sha256=i88GtPqJ4k_Nzgyj7uzbI3tWgALkCuHLaV_Cjg-_mE0,58304
157
157
  django_ledger/models/invoice.py,sha256=bdyeyngKuaJ0nA9N0L25-m7QbB7AEK43v1TKJkFWsOY,62896
158
158
  django_ledger/models/items.py,sha256=Wh_zPBnYCdI393nHafT6xd4aSutKBQPwKSjDtXTTPNQ,55042
@@ -172,9 +172,11 @@ django_ledger/models/schemas/net_receivable.py,sha256=JCdi2ZrFy6ORR_6xrze4Yz3Kxh
172
172
  django_ledger/models/schemas/pnl.py,sha256=_M5qZtgXca4LQLsjS0weUAzLX98M4-5HCCGM0HKfKmw,573
173
173
  django_ledger/report/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
174
174
  django_ledger/report/balance_sheet.py,sha256=iw8VOcJfJJHcKwFmdR9p2uYj5iKyX6avUjVSBrT0nZc,8436
175
- django_ledger/report/cash_flow_statement.py,sha256=GosnBzMZWlqNGitOlxvDiHxkT4JrNm0FH3uXfjmXPG8,8717
175
+ django_ledger/report/cash_flow_statement.py,sha256=61HlJHu-WguG-aR4dTZ8fs8kNDcPCLdEy1hfK1WLJp8,8718
176
176
  django_ledger/report/core.py,sha256=MSWOHvYrAfAJJtm1_vXv7vZxgAja6ycKxknoaIvJT_g,7436
177
177
  django_ledger/report/income_statement.py,sha256=m4pG0Yjpl7SELx3-yYKT4dCluKt6nT2bkD9gay9tNKI,11156
178
+ django_ledger/static/.DS_Store,sha256=ohv3-BA3m5CUHedTAFiR2MLIeBhMNEz_a0LMOFhljzc,6148
179
+ django_ledger/static/django_ledger/.DS_Store,sha256=EDcdC71oJjK355v2FDhienPd1ek36-Zl8YjoiTltcpk,8196
178
180
  django_ledger/static/django_ledger/bundle/djetler.bundle.js,sha256=1UzHryjoKN43wUa5b6N2ia2yoE-TCrtfNMnuPIf9Im8,547613
179
181
  django_ledger/static/django_ledger/bundle/styles.bundle.js,sha256=myDLVMYHwKTxypheUretM6MZ4HhK8Yn0BqB_OGUW3KU,506543
180
182
  django_ledger/static/django_ledger/img/daniel-weiss-aj2Os9mYgJU-unsplash.jpg,sha256=zYNOMM56QE4AdRkvdGRNifDqj4OJcUA49oebJqsRjuQ,276317
@@ -197,6 +199,39 @@ django_ledger/static/django_ledger/logo/django-ledger-text@2x.png,sha256=QJVyPER
197
199
  django_ledger/static/django_ledger/logo/django-ledger-text@3x.png,sha256=ddWSMY9dXrAMPTS3LZ6K4sDVvJpYFW4KrVUTqJKU-wg,67707
198
200
  django_ledger/static/django_ledger/logo/django-ledger-text@4x.png,sha256=d5hPUkvmJS_5LXPGgJ5VhcI_2CeteVsiNABv1Q2R6aw,99253
199
201
  django_ledger/static/django_ledger/logo/favicon.png,sha256=7QIRzizQUig3PHi9zyV1tK8kXid410_mmin-WZ3zY4M,6434
202
+ django_ledger/static/django_ledger/logo_2/.DS_Store,sha256=c7XYmqnuWTT7tJYaMqpBJGL2BAD8sqK0RwupHKEu__g,6148
203
+ django_ledger/static/django_ledger/logo_2/django_ledger_logo_dark.png,sha256=NtTFrUKckyevB2rIcDqAdqKdaO8QOADf9YoU9BBm-Ao,12705
204
+ django_ledger/static/django_ledger/logo_2/django_ledger_logo_dark@0.5x.png,sha256=HOt8mW4FHF4eEH3LD9YvPs7gpFZn4XC5SKYLB0XSCGs,5873
205
+ django_ledger/static/django_ledger/logo_2/django_ledger_logo_dark@2x.png,sha256=exEY0ViG9EeXxy2V7PGvPOnlaEzMGsMRu4sZnPXhsgE,27393
206
+ django_ledger/static/django_ledger/logo_2/django_ledger_logo_dark@3x.png,sha256=YavVN0BjlVtz3mcr4mM492P1unc3kD0cPMTtOXhq8so,44334
207
+ django_ledger/static/django_ledger/logo_2/djl-full-vert.png,sha256=NtTFrUKckyevB2rIcDqAdqKdaO8QOADf9YoU9BBm-Ao,12705
208
+ django_ledger/static/django_ledger/logo_2/djl-full-vert@0.5x.png,sha256=HOt8mW4FHF4eEH3LD9YvPs7gpFZn4XC5SKYLB0XSCGs,5873
209
+ django_ledger/static/django_ledger/logo_2/djl-full-vert@2x.png,sha256=exEY0ViG9EeXxy2V7PGvPOnlaEzMGsMRu4sZnPXhsgE,27393
210
+ django_ledger/static/django_ledger/logo_2/djl-full-vert@3x.png,sha256=YavVN0BjlVtz3mcr4mM492P1unc3kD0cPMTtOXhq8so,44334
211
+ django_ledger/static/django_ledger/logo_2/djl-logo-full-horiz.png,sha256=EWoHrF4XBZLW7s6XVHtzh4v_FBm27fwpvRBsbaFVZYk,23504
212
+ django_ledger/static/django_ledger/logo_2/djl-logo-full-horiz@0.5x.png,sha256=2-O0U3X4bSZoVzKfIryO_YXTwA0_amkyFitCtmdxHe8,10542
213
+ django_ledger/static/django_ledger/logo_2/djl-logo-full-horiz@2x.png,sha256=Bg4kzgeEd6G25iX87wbynwkvmN5a2O-LcHfyrqe2X7s,53806
214
+ django_ledger/static/django_ledger/logo_2/djl-logo-full-horiz@3x.png,sha256=YltUS3He7a4cXeEvwGEqFs2qA75OXP4E1q3lhL7G1NI,89048
215
+ django_ledger/static/django_ledger/logo_2/djl-logo-full-vert.png,sha256=NtTFrUKckyevB2rIcDqAdqKdaO8QOADf9YoU9BBm-Ao,12705
216
+ django_ledger/static/django_ledger/logo_2/djl-logo-full-vert@0.5x.png,sha256=HOt8mW4FHF4eEH3LD9YvPs7gpFZn4XC5SKYLB0XSCGs,5873
217
+ django_ledger/static/django_ledger/logo_2/djl-logo-full-vert@2x.png,sha256=exEY0ViG9EeXxy2V7PGvPOnlaEzMGsMRu4sZnPXhsgE,27393
218
+ django_ledger/static/django_ledger/logo_2/djl-logo-full-vert@3x.png,sha256=YavVN0BjlVtz3mcr4mM492P1unc3kD0cPMTtOXhq8so,44334
219
+ django_ledger/static/django_ledger/logo_2/djl-logo.png,sha256=e58BX8-b7d6O4pTSmma6O53dplg-Ig19snr61LbFUAk,2679
220
+ django_ledger/static/django_ledger/logo_2/djl-logo@0.5x.png,sha256=tupqHykj1_jciNpCyzPeLaIS1siSI9Qf4v44w0raLIs,1397
221
+ django_ledger/static/django_ledger/logo_2/djl-logo@2x.png,sha256=3v4q-A3MZwBZbIT-nBJ8sHotHs41UYEuOD8Hw8DiUgg,5269
222
+ django_ledger/static/django_ledger/logo_2/djl-logo@3x.png,sha256=rXNQu3A_ATBr4jfcE9fh6isk3kVM-va_8dSuSFCPvkw,9615
223
+ django_ledger/static/django_ledger/logo_2/djl-txt-full-horiz.png,sha256=7xsD_0DPkNbCQ9X_a-f5rK_V485Omel7t8OBo1smgxI,19242
224
+ django_ledger/static/django_ledger/logo_2/djl-txt-full-horiz@0.5x.png,sha256=Sl_rnhDCctUfHjMdZCSk1JIihNks4675mOLQ5YZMmqw,8400
225
+ django_ledger/static/django_ledger/logo_2/djl-txt-full-horiz@2x.png,sha256=oeaqZ3Dd-gBq3EwIL8xtosP1LkTFaHwUOORbEsfHnUc,43276
226
+ django_ledger/static/django_ledger/logo_2/djl-txt-full-horiz@3x.png,sha256=arUQi5nxsOHbWoM5OxH9h_W6eP5dgz3AcYWE7l0GdPA,70908
227
+ django_ledger/static/django_ledger/logo_2/djl-txt-full-vert.png,sha256=SvtIpgjZdj9wHZpkRD0webCDMyL7vXlbmoh51DkA2iw,9723
228
+ django_ledger/static/django_ledger/logo_2/djl-txt-full-vert@0.5x.png,sha256=lmo5PIW7VgHVIv4rLzfgmVRf3gRwBG3Bb4k-txh9QxY,4065
229
+ django_ledger/static/django_ledger/logo_2/djl-txt-full-vert@2x.png,sha256=oYktCKEcnPQfXu8qRi4HqhhkBVtZEWMvCElOXDkexK0,21114
230
+ django_ledger/static/django_ledger/logo_2/djl-txt-full-vert@3x.png,sha256=BnpQIkuN2UFzF650RNi93ez0ch2D7fxzyjwf9xaWxEc,33477
231
+ django_ledger/static/django_ledger/logo_2/djl-txt-horiz.png,sha256=_3yqiJ2n7D_g5Fl9atw9fWT0HTJIZWk8YEI_SynaWtM,12613
232
+ django_ledger/static/django_ledger/logo_2/djl-txt-horiz@0.5x.png,sha256=JJkthFAjROLoT9271hxxYVjpjmXqF1Ru48N-N-_jDT8,5473
233
+ django_ledger/static/django_ledger/logo_2/djl-txt-horiz@2x.png,sha256=vXc8SoZAEpDU-f7Gp384wftOAND9zVrqRnI4OnPX93c,28644
234
+ django_ledger/static/django_ledger/logo_2/djl-txt-horiz@3x.png,sha256=5YgNwxCiCBhfOzCZ5AUNI824Go16kx2HZ4DDNt13R94,47304
200
235
  django_ledger/templates/django_ledger/account/account_create.html,sha256=3-5LgVrvOm6YhryVGgtYltyHMA98dSNt7_vOvsxSRvU,1166
201
236
  django_ledger/templates/django_ledger/account/account_create_child.html,sha256=i1tBc-N44D2mKnm61nrI11pXxo2STF1ezV9fVckB_qY,1089
202
237
  django_ledger/templates/django_ledger/account/account_detail.html,sha256=m-UTWD9YqoM9JWKug4alY4DIql13jYFrJG2BmdYSZ7s,934
@@ -419,9 +454,9 @@ django_ledger/views/purchase_order.py,sha256=1J3u4QnCkM7z1Y6DePijVdM67x4CQgfmQJc
419
454
  django_ledger/views/transactions.py,sha256=5taQRGLSMkM_N8paQJ07HMspI_Nl7PawF8OohCiRmao,206
420
455
  django_ledger/views/unit.py,sha256=_RgPJO9mR6v5ohBXlnL3T8nTWgS1lwlCvERQcHk0wHE,10232
421
456
  django_ledger/views/vendor.py,sha256=gUdBPTFLeSwlNfdHSA1KFdE_y3QpwpkFhEB0r3-UYdI,3461
422
- django_ledger-0.6.3.dist-info/AUTHORS.md,sha256=SRM2cynD89ZfEsL09zrbUVeO17r9zE2ZM7y6ReMqVRo,713
423
- django_ledger-0.6.3.dist-info/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
424
- django_ledger-0.6.3.dist-info/METADATA,sha256=hSjmos-2S46tN0421i8xYk_7M6zhPmQBMlYyCTfTL1s,9641
425
- django_ledger-0.6.3.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
426
- django_ledger-0.6.3.dist-info/top_level.txt,sha256=0U3SjF63ND36grQNWDONVe-T9-T07lFl5e6QkG7bR2E,44
427
- django_ledger-0.6.3.dist-info/RECORD,,
457
+ django_ledger-0.6.4.dist-info/AUTHORS.md,sha256=SRM2cynD89ZfEsL09zrbUVeO17r9zE2ZM7y6ReMqVRo,713
458
+ django_ledger-0.6.4.dist-info/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
459
+ django_ledger-0.6.4.dist-info/METADATA,sha256=qMJesmE6i51gyIllKfjF11mgvVJ_YILYrrUfk5oCSVg,9641
460
+ django_ledger-0.6.4.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
461
+ django_ledger-0.6.4.dist-info/top_level.txt,sha256=fmHWehb2HfoDncQ3eQtYzeYc-gJMywf6q_ZpKBjwzoQ,38
462
+ django_ledger-0.6.4.dist-info/RECORD,,
@@ -2,4 +2,3 @@ assets
2
2
  django_ledger
3
3
  docs
4
4
  screenshots
5
- tests