django-ledger 0.6.2__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 (65) hide show
  1. django_ledger/__init__.py +1 -1
  2. django_ledger/admin/coa.py +1 -2
  3. django_ledger/admin/ledger.py +1 -0
  4. django_ledger/forms/account.py +22 -11
  5. django_ledger/forms/data_import.py +2 -1
  6. django_ledger/io/ofx.py +3 -2
  7. django_ledger/io/roles.py +6 -0
  8. django_ledger/models/accounts.py +523 -196
  9. django_ledger/models/bill.py +28 -14
  10. django_ledger/models/closing_entry.py +8 -0
  11. django_ledger/models/entity.py +12 -5
  12. django_ledger/models/estimate.py +93 -21
  13. django_ledger/models/invoice.py +44 -14
  14. django_ledger/models/journal_entry.py +112 -49
  15. django_ledger/models/ledger.py +32 -0
  16. django_ledger/models/purchase_order.py +34 -3
  17. django_ledger/models/signals.py +58 -0
  18. django_ledger/report/cash_flow_statement.py +1 -1
  19. django_ledger/report/core.py +1 -1
  20. django_ledger/static/.DS_Store +0 -0
  21. django_ledger/static/django_ledger/.DS_Store +0 -0
  22. django_ledger/static/django_ledger/logo_2/.DS_Store +0 -0
  23. django_ledger/static/django_ledger/logo_2/django_ledger_logo_dark.png +0 -0
  24. django_ledger/static/django_ledger/logo_2/django_ledger_logo_dark@0.5x.png +0 -0
  25. django_ledger/static/django_ledger/logo_2/django_ledger_logo_dark@2x.png +0 -0
  26. django_ledger/static/django_ledger/logo_2/django_ledger_logo_dark@3x.png +0 -0
  27. django_ledger/static/django_ledger/logo_2/djl-full-vert.png +0 -0
  28. django_ledger/static/django_ledger/logo_2/djl-full-vert@0.5x.png +0 -0
  29. django_ledger/static/django_ledger/logo_2/djl-full-vert@2x.png +0 -0
  30. django_ledger/static/django_ledger/logo_2/djl-full-vert@3x.png +0 -0
  31. django_ledger/static/django_ledger/logo_2/djl-logo-full-horiz.png +0 -0
  32. django_ledger/static/django_ledger/logo_2/djl-logo-full-horiz@0.5x.png +0 -0
  33. django_ledger/static/django_ledger/logo_2/djl-logo-full-horiz@2x.png +0 -0
  34. django_ledger/static/django_ledger/logo_2/djl-logo-full-horiz@3x.png +0 -0
  35. django_ledger/static/django_ledger/logo_2/djl-logo-full-vert.png +0 -0
  36. django_ledger/static/django_ledger/logo_2/djl-logo-full-vert@0.5x.png +0 -0
  37. django_ledger/static/django_ledger/logo_2/djl-logo-full-vert@2x.png +0 -0
  38. django_ledger/static/django_ledger/logo_2/djl-logo-full-vert@3x.png +0 -0
  39. django_ledger/static/django_ledger/logo_2/djl-logo.png +0 -0
  40. django_ledger/static/django_ledger/logo_2/djl-logo@0.5x.png +0 -0
  41. django_ledger/static/django_ledger/logo_2/djl-logo@2x.png +0 -0
  42. django_ledger/static/django_ledger/logo_2/djl-logo@3x.png +0 -0
  43. django_ledger/static/django_ledger/logo_2/djl-txt-full-horiz.png +0 -0
  44. django_ledger/static/django_ledger/logo_2/djl-txt-full-horiz@0.5x.png +0 -0
  45. django_ledger/static/django_ledger/logo_2/djl-txt-full-horiz@2x.png +0 -0
  46. django_ledger/static/django_ledger/logo_2/djl-txt-full-horiz@3x.png +0 -0
  47. django_ledger/static/django_ledger/logo_2/djl-txt-full-vert.png +0 -0
  48. django_ledger/static/django_ledger/logo_2/djl-txt-full-vert@0.5x.png +0 -0
  49. django_ledger/static/django_ledger/logo_2/djl-txt-full-vert@2x.png +0 -0
  50. django_ledger/static/django_ledger/logo_2/djl-txt-full-vert@3x.png +0 -0
  51. django_ledger/static/django_ledger/logo_2/djl-txt-horiz.png +0 -0
  52. django_ledger/static/django_ledger/logo_2/djl-txt-horiz@0.5x.png +0 -0
  53. django_ledger/static/django_ledger/logo_2/djl-txt-horiz@2x.png +0 -0
  54. django_ledger/static/django_ledger/logo_2/djl-txt-horiz@3x.png +0 -0
  55. django_ledger/templates/django_ledger/financial_statements/balance_sheet.html +2 -2
  56. django_ledger/tests/test_io_ofx/__init__.py +0 -0
  57. django_ledger/tests/test_io_ofx/tests.py +52 -0
  58. django_ledger/views/account.py +1 -1
  59. django_ledger/views/bill.py +1 -1
  60. {django_ledger-0.6.2.dist-info → django_ledger-0.6.4.dist-info}/METADATA +1 -1
  61. {django_ledger-0.6.2.dist-info → django_ledger-0.6.4.dist-info}/RECORD +65 -27
  62. {django_ledger-0.6.2.dist-info → django_ledger-0.6.4.dist-info}/top_level.txt +0 -1
  63. {django_ledger-0.6.2.dist-info → django_ledger-0.6.4.dist-info}/AUTHORS.md +0 -0
  64. {django_ledger-0.6.2.dist-info → django_ledger-0.6.4.dist-info}/LICENSE +0 -0
  65. {django_ledger-0.6.2.dist-info → django_ledger-0.6.4.dist-info}/WHEEL +0 -0
@@ -48,15 +48,15 @@ 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=XWsm2GPCPw5ayJIKYpT2rO83Yxp4iYr5a0vNyC4ao3Y,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
- django_ledger/admin/ledger.py,sha256=z33FYDT50ahrK4AGs-bZhnrvdIt-imG0QJpZ_KRGUWw,7914
59
+ django_ledger/admin/ledger.py,sha256=WKJCKDT54B_OWtAGlPKKAOBRZAqJ-SPNYiuvV-Wa9y8,7936
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
62
62
  django_ledger/contrib/django_ledger_graphene/api.py,sha256=exrsmMcX21-Vhpe2_9X0eRLcdlnoE2ut0KUxBLu-TM8,871
@@ -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
@@ -101,7 +101,7 @@ django_ledger/forms/bill.py,sha256=aTAlMWtVA3eI-w0e9Vuxk2GSVey7pmAropPzrQ4OzcI,1
101
101
  django_ledger/forms/closing_entry.py,sha256=AwEEhphjQ-D4pQ6lRk2zGSmMSMkoamIVICnUY8rgqKU,1494
102
102
  django_ledger/forms/coa.py,sha256=-w0GbVde1ve0lEgWCc7kAIfDDVP_nBYgrxykfC301Gw,1312
103
103
  django_ledger/forms/customer.py,sha256=4Ce0J2d3hH5vfT1kdJbspUveIPEsRX_JktzIIu4rNks,2502
104
- django_ledger/forms/data_import.py,sha256=6fAS-_kDm3wMgTyQx0SlrU8Cw_hLTsFrdJ76_thlUxY,5635
104
+ django_ledger/forms/data_import.py,sha256=VF4oJNcWNVW3r0VEGT6MFAC5jN5Aqff5qU35NdO9Wj0,5674
105
105
  django_ledger/forms/entity.py,sha256=b0QirmsFSnaM8YWDO4V6GQXfFgR_MLmdq27I2q2sGQ0,6880
106
106
  django_ledger/forms/estimate.py,sha256=AotWILz-XYiDHEIpey-KQTFfqcLr_CubtzCoaDm3SL4,5171
107
107
  django_ledger/forms/feedback.py,sha256=WUT-kI4uT6q5aqEYaDYwyIFfhXpmtwMv6qf9BFSYsDo,1850
@@ -120,9 +120,9 @@ django_ledger/io/io_core.py,sha256=b_-je0NNPkMOglkJwObxfKA6eWa0YvEod9LODm5RRIg,4
120
120
  django_ledger/io/io_generator.py,sha256=JF4plsABUkCIrtI2X-YD7o5eNghRIgLUseNcBIGOj3U,34613
121
121
  django_ledger/io/io_library.py,sha256=vvQm3IQRLFdH7HS_DYX46Xe-U9IvgZ6MQnHjy0-fyjk,22480
122
122
  django_ledger/io/io_middleware.py,sha256=c-vwpcjg2HbYbb4O36fdf6011dFOnoNsDHOAQXmJgB8,20052
123
- django_ledger/io/ofx.py,sha256=JnmDjhIpLySoixK1WVe6DivRuu02rYsBjqI8yi5Opzs,1488
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,22 +144,23 @@ 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
- django_ledger/models/bill.py,sha256=ZC6PmPYeSFMUBSUqTqebQOZrWEpo59PH6Y4evTO5uy8,63717
150
- django_ledger/models/closing_entry.py,sha256=557vVKhrRZOdzqmmvtVlU48VbzJk8tTV018b0dTfpek,17746
149
+ django_ledger/models/bill.py,sha256=0JaSDu6pA07VVMRjPRiZnMldn50QkPFDbj5MbzDNuXk,64569
150
+ django_ledger/models/closing_entry.py,sha256=s5DvvWnv5SogWtlUdtpdDgKce80FBSjJ6YWQnQxqwV0,17959
151
151
  django_ledger/models/coa.py,sha256=o-VM2XK64djM3px6pJlGrUVTXu5qNb4ENESS70I___0,27154
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
156
- django_ledger/models/estimate.py,sha256=-qB5t2cEdyYpFUq7tOUQnFqvE6EDUiVdTtzjEbESwEQ,55829
157
- django_ledger/models/invoice.py,sha256=h5Jh5KOfYr31Eu9gFW1mdoGoVzx7nW8qBdx7vyiXnZU,61568
155
+ django_ledger/models/entity.py,sha256=_rYtHYK2jFiZIGWVbOzGk3uSSwhiDNIjM22bQElW6bA,122209
156
+ django_ledger/models/estimate.py,sha256=i88GtPqJ4k_Nzgyj7uzbI3tWgALkCuHLaV_Cjg-_mE0,58304
157
+ django_ledger/models/invoice.py,sha256=bdyeyngKuaJ0nA9N0L25-m7QbB7AEK43v1TKJkFWsOY,62896
158
158
  django_ledger/models/items.py,sha256=Wh_zPBnYCdI393nHafT6xd4aSutKBQPwKSjDtXTTPNQ,55042
159
- django_ledger/models/journal_entry.py,sha256=VfXXvm3tUFuy2Z6j3PLlDk9ndHqsZgn_PuhrxTNqaiY,50918
160
- django_ledger/models/ledger.py,sha256=kPxyKo5u0-2viifCY87Ms3xglmgrfiDAg0oJgsOrDwc,23603
159
+ django_ledger/models/journal_entry.py,sha256=2MwSAYjlSn8YVNM0riVBQWALD2lukGyf_gEHAIrn5UU,52788
160
+ django_ledger/models/ledger.py,sha256=CjUVi_KufNsSYKo_ZC5T3j8rioRQXhEl16zf_ipzcLg,24997
161
161
  django_ledger/models/mixins.py,sha256=s8ZjEjYQfmU88cLyFNKoiFi79_g1rTe1knEccV2WUXw,52122
162
- django_ledger/models/purchase_order.py,sha256=CDibi90e7Yhpv_UiyP32mMcsQ0EUElXJ2r8pLzuS7yE,42729
162
+ django_ledger/models/purchase_order.py,sha256=Se62XFyrbDbQzFH_almroIaSZ3y27QcsI2xkYXvPIGc,44184
163
+ django_ledger/models/signals.py,sha256=YfGwq-DUC0dtJEru2Q7MJH5zvPkhmPEb3vQoRJiYc34,1639
163
164
  django_ledger/models/transactions.py,sha256=kOL7s-hiRc6iqS7J62bVJY6ikja9Q8WdkRq0FT0zO2U,22722
164
165
  django_ledger/models/unit.py,sha256=x5FFJXgOi1OdajQejIakW6wGY4DjrJhL3S0Pm5OimMk,8074
165
166
  django_ledger/models/utils.py,sha256=3gkdCrfJp9qwN3Sf8R96AliilzwcKBm31UEao4WJO9o,8436
@@ -171,9 +172,11 @@ django_ledger/models/schemas/net_receivable.py,sha256=JCdi2ZrFy6ORR_6xrze4Yz3Kxh
171
172
  django_ledger/models/schemas/pnl.py,sha256=_M5qZtgXca4LQLsjS0weUAzLX98M4-5HCCGM0HKfKmw,573
172
173
  django_ledger/report/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
173
174
  django_ledger/report/balance_sheet.py,sha256=iw8VOcJfJJHcKwFmdR9p2uYj5iKyX6avUjVSBrT0nZc,8436
174
- django_ledger/report/cash_flow_statement.py,sha256=GosnBzMZWlqNGitOlxvDiHxkT4JrNm0FH3uXfjmXPG8,8717
175
- django_ledger/report/core.py,sha256=tpVdAOXTx4DGEcTeG-SWRO9af7ZTXdmW0-vhwJDY8hQ,7435
175
+ django_ledger/report/cash_flow_statement.py,sha256=61HlJHu-WguG-aR4dTZ8fs8kNDcPCLdEy1hfK1WLJp8,8718
176
+ django_ledger/report/core.py,sha256=MSWOHvYrAfAJJtm1_vXv7vZxgAja6ycKxknoaIvJT_g,7436
176
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
177
180
  django_ledger/static/django_ledger/bundle/djetler.bundle.js,sha256=1UzHryjoKN43wUa5b6N2ia2yoE-TCrtfNMnuPIf9Im8,547613
178
181
  django_ledger/static/django_ledger/bundle/styles.bundle.js,sha256=myDLVMYHwKTxypheUretM6MZ4HhK8Yn0BqB_OGUW3KU,506543
179
182
  django_ledger/static/django_ledger/img/daniel-weiss-aj2Os9mYgJU-unsplash.jpg,sha256=zYNOMM56QE4AdRkvdGRNifDqj4OJcUA49oebJqsRjuQ,276317
@@ -196,6 +199,39 @@ django_ledger/static/django_ledger/logo/django-ledger-text@2x.png,sha256=QJVyPER
196
199
  django_ledger/static/django_ledger/logo/django-ledger-text@3x.png,sha256=ddWSMY9dXrAMPTS3LZ6K4sDVvJpYFW4KrVUTqJKU-wg,67707
197
200
  django_ledger/static/django_ledger/logo/django-ledger-text@4x.png,sha256=d5hPUkvmJS_5LXPGgJ5VhcI_2CeteVsiNABv1Q2R6aw,99253
198
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
199
235
  django_ledger/templates/django_ledger/account/account_create.html,sha256=3-5LgVrvOm6YhryVGgtYltyHMA98dSNt7_vOvsxSRvU,1166
200
236
  django_ledger/templates/django_ledger/account/account_create_child.html,sha256=i1tBc-N44D2mKnm61nrI11pXxo2STF1ezV9fVckB_qY,1089
201
237
  django_ledger/templates/django_ledger/account/account_detail.html,sha256=m-UTWD9YqoM9JWKug4alY4DIql13jYFrJG2BmdYSZ7s,934
@@ -272,7 +308,7 @@ django_ledger/templates/django_ledger/expense/expense_create.html,sha256=ozRliR0
272
308
  django_ledger/templates/django_ledger/expense/expense_list.html,sha256=d7IwuA2qrDPYKmg8a0b4T2CIzIfHB6ximk8Ak4VR4xY,867
273
309
  django_ledger/templates/django_ledger/expense/expense_update.html,sha256=7YTGqytGb1KFAiP7x3jZ-ljkXziqir6KnMiFrl_s8Kk,1439
274
310
  django_ledger/templates/django_ledger/expense/tags/expense_item_table.html,sha256=uKUB-1eIvA5KWKZ7kwu0hGf-64ly_onjWgKokQ0S9dI,1962
275
- django_ledger/templates/django_ledger/financial_statements/balance_sheet.html,sha256=rFzmK2-AjV_11fp7b6ou-KtMSwm7jN3vfpd4Ki_9-s0,2793
311
+ django_ledger/templates/django_ledger/financial_statements/balance_sheet.html,sha256=_trd5e282eMsC5VfzP9tL7zPJ_kTGMxlrh77RWwLlY4,2793
276
312
  django_ledger/templates/django_ledger/financial_statements/cash_flow.html,sha256=zeu7OcXl2T_vDoFyJvb0htFIjQz0IfyJBiOcck2skus,3031
277
313
  django_ledger/templates/django_ledger/financial_statements/income_statement.html,sha256=pfrv12Bu_PmU-MrL7JXYX7Wv4PZ06fKvOdydzzgeEnw,2731
278
314
  django_ledger/templates/django_ledger/financial_statements/tags/balance_sheet_statement.html,sha256=u2o3krlo_I7w-erXI9DO4gNChbYn0KpdeLRZs7UckOQ,6430
@@ -367,6 +403,8 @@ django_ledger/tests/test_purchase_order.py,sha256=vPjPthS6nS8Q1KmZW5zUFogqQKR1MZ
367
403
  django_ledger/tests/test_transactions.py,sha256=qeIJr0q43IpI_9YrzjVcnltnk_7puGvdhmH-hDePgEc,11721
368
404
  django_ledger/tests/bdd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
369
405
  django_ledger/tests/bdd/features/steps/README.py,sha256=4HMdVjjflcKQBf0LeZbc5i3TXbe5qGxYBcGmHn4i3jU,599
406
+ django_ledger/tests/test_io_ofx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
407
+ django_ledger/tests/test_io_ofx/tests.py,sha256=v-2xY410a6Tr2TwG5oqc_UkFzXBIAFxWYasZkeiXAfE,1993
370
408
  django_ledger/urls/__init__.py,sha256=98Dk0iQPeK2chSTY8H-7yuk9OycoUoZJdbpuR0Wv2rw,1994
371
409
  django_ledger/urls/account.py,sha256=9G6m2mkki8sNtC_mlNIHcn2SCSoG7ienbQ5qg2kHWg0,2399
372
410
  django_ledger/urls/auth.py,sha256=8dY2h6PQkMayUL81guu9JCxm--Tj0rglvvxg9Qh03aY,230
@@ -392,10 +430,10 @@ django_ledger/urls/transactions.py,sha256=e_x_z5qbkR6i7o8OWWdXshDiY_WVmu9WVhR9A9
392
430
  django_ledger/urls/unit.py,sha256=QEVKrgcw2dqMaaXsUHfqYecTa5-iaPlS9smrYJ1QsgM,1506
393
431
  django_ledger/urls/vendor.py,sha256=ODHpAwe5lomluj8ZCqbMtugTeeRsv0Yo9SqkZEmfYaw,393
394
432
  django_ledger/views/__init__.py,sha256=l5Pm2_oAW6Q_jJbXf-BiHA3ilCbiGb6gkXCm73K5DGY,1158
395
- django_ledger/views/account.py,sha256=d2pzYXKPOF74hCD4ehsQ_WNFsgqyGXXekCh22gDawAM,10523
433
+ django_ledger/views/account.py,sha256=cz9bgEyTY05lN997Zln7M4xwBzh45CXo0OTgqnXtdEY,10529
396
434
  django_ledger/views/auth.py,sha256=-zTjMlLpyxHGPlY9EXFQyeVHMmyeJ2H9RptcW7PDeDg,771
397
435
  django_ledger/views/bank_account.py,sha256=bMgqrDydz6WuXina4L27uV-cmQicW0_JoPaXxlO7uN4,5176
398
- django_ledger/views/bill.py,sha256=-WWAPF6PKqfaApAJBFwNMmIveDajXD-5a12d-LbcqFA,23087
436
+ django_ledger/views/bill.py,sha256=AaDdb1RLJDbHhuRdWXaYAIkCOVMtW2U3KcNgDKJKm8Y,23093
399
437
  django_ledger/views/closing_entry.py,sha256=y78azZesVgdUoQmaSEYiP7MBaPRE45qAAHPDlcThlUs,8103
400
438
  django_ledger/views/coa.py,sha256=WnWQVz-4Ik9v28KHzD_WiKcgix7l6bBj1A60p4k-eos,4934
401
439
  django_ledger/views/customer.py,sha256=RoBsXBxZC9b79DSNNHaoSZtQ2AoXf7DJAGmZEO3xdxs,3672
@@ -416,9 +454,9 @@ django_ledger/views/purchase_order.py,sha256=1J3u4QnCkM7z1Y6DePijVdM67x4CQgfmQJc
416
454
  django_ledger/views/transactions.py,sha256=5taQRGLSMkM_N8paQJ07HMspI_Nl7PawF8OohCiRmao,206
417
455
  django_ledger/views/unit.py,sha256=_RgPJO9mR6v5ohBXlnL3T8nTWgS1lwlCvERQcHk0wHE,10232
418
456
  django_ledger/views/vendor.py,sha256=gUdBPTFLeSwlNfdHSA1KFdE_y3QpwpkFhEB0r3-UYdI,3461
419
- django_ledger-0.6.2.dist-info/AUTHORS.md,sha256=SRM2cynD89ZfEsL09zrbUVeO17r9zE2ZM7y6ReMqVRo,713
420
- django_ledger-0.6.2.dist-info/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
421
- django_ledger-0.6.2.dist-info/METADATA,sha256=hGmUnvHJ9byl1Du4AKDEwNxw5aWk1ibCATLKSjM2sDc,9641
422
- django_ledger-0.6.2.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
423
- django_ledger-0.6.2.dist-info/top_level.txt,sha256=0U3SjF63ND36grQNWDONVe-T9-T07lFl5e6QkG7bR2E,44
424
- django_ledger-0.6.2.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