django-ledger 0.7.0__py3-none-any.whl → 0.7.1__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 (49) hide show
  1. django_ledger/__init__.py +1 -1
  2. django_ledger/admin/__init__.py +1 -1
  3. django_ledger/admin/{coa.py → chart_of_accounts.py} +1 -1
  4. django_ledger/admin/entity.py +1 -1
  5. django_ledger/forms/account.py +1 -1
  6. django_ledger/forms/bank_account.py +2 -0
  7. django_ledger/forms/chart_of_accounts.py +82 -0
  8. django_ledger/io/io_library.py +1 -1
  9. django_ledger/migrations/0018_transactionmodel_cleared_transactionmodel_reconciled_and_more.py +37 -0
  10. django_ledger/models/__init__.py +1 -1
  11. django_ledger/models/accounts.py +4 -0
  12. django_ledger/models/bank_account.py +6 -2
  13. django_ledger/models/bill.py +7 -3
  14. django_ledger/models/{coa.py → chart_of_accounts.py} +131 -27
  15. django_ledger/models/closing_entry.py +5 -7
  16. django_ledger/models/coa_default.py +1 -1
  17. django_ledger/models/customer.py +6 -2
  18. django_ledger/models/data_import.py +12 -5
  19. django_ledger/models/entity.py +27 -3
  20. django_ledger/models/estimate.py +6 -1
  21. django_ledger/models/invoice.py +14 -8
  22. django_ledger/models/items.py +19 -8
  23. django_ledger/models/journal_entry.py +71 -25
  24. django_ledger/models/ledger.py +8 -5
  25. django_ledger/models/purchase_order.py +9 -5
  26. django_ledger/models/transactions.py +23 -3
  27. django_ledger/models/unit.py +4 -0
  28. django_ledger/models/vendor.py +4 -0
  29. django_ledger/settings.py +28 -3
  30. django_ledger/templates/django_ledger/account/tags/accounts_table.html +3 -2
  31. django_ledger/templates/django_ledger/chart_of_accounts/coa_create.html +25 -0
  32. django_ledger/templates/django_ledger/chart_of_accounts/coa_list.html +25 -6
  33. django_ledger/templates/django_ledger/chart_of_accounts/coa_update.html +2 -2
  34. django_ledger/templates/django_ledger/chart_of_accounts/includes/coa_card.html +10 -4
  35. django_ledger/templates/django_ledger/financial_statements/tags/balance_sheet_statement.html +2 -2
  36. django_ledger/templates/django_ledger/includes/footer.html +2 -2
  37. django_ledger/urls/chart_of_accounts.py +6 -0
  38. django_ledger/utils.py +1 -36
  39. django_ledger/views/__init__.py +1 -1
  40. django_ledger/views/account.py +16 -3
  41. django_ledger/views/{coa.py → chart_of_accounts.py} +48 -44
  42. django_ledger/views/mixins.py +16 -5
  43. {django_ledger-0.7.0.dist-info → django_ledger-0.7.1.dist-info}/METADATA +1 -3
  44. {django_ledger-0.7.0.dist-info → django_ledger-0.7.1.dist-info}/RECORD +48 -46
  45. django_ledger/forms/coa.py +0 -47
  46. {django_ledger-0.7.0.dist-info → django_ledger-0.7.1.dist-info}/AUTHORS.md +0 -0
  47. {django_ledger-0.7.0.dist-info → django_ledger-0.7.1.dist-info}/LICENSE +0 -0
  48. {django_ledger-0.7.0.dist-info → django_ledger-0.7.1.dist-info}/WHEEL +0 -0
  49. {django_ledger-0.7.0.dist-info → django_ledger-0.7.1.dist-info}/top_level.txt +0 -0
@@ -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=jDfSoy77j4pw7sR5oy0HhIDMpZgehSx3E9VTJ2hMYRI,380
51
+ django_ledger/__init__.py,sha256=F00HXUYiLYru2tz50vigBnkAjc7Y_amyDn-nIpAtNDs,380
52
52
  django_ledger/apps.py,sha256=H-zEWUjKGakgSDSZmLIoXChZ2h6e0dth0ZO5SpoT-8U,163
53
53
  django_ledger/exceptions.py,sha256=rML8sQQ0Hq-DYMLZ76dfw2RYSAsXWUoyHuyC_yP9o1o,491
54
- django_ledger/settings.py,sha256=bZyPKgjmRcO_Rj7hDi4gGlW0VFr_LP2yKeUVIkmWgQM,6321
55
- django_ledger/utils.py,sha256=ANWeG4QPbmNf90tamF9S-5IJRxvyOAUdKMCmMjyyeVQ,4518
56
- django_ledger/admin/__init__.py,sha256=MipzxmBhXswpx63uf3Ai2amyBMAP5fZL7mKXKxjNRIY,458
57
- django_ledger/admin/coa.py,sha256=_T-F7lQc-66ijErGbSCABO2qqQqfPXVbnGpct6WxWdU,3525
58
- django_ledger/admin/entity.py,sha256=DhH-6o3kjUdkhVPHzwOSF3crtvf5MCzcc1vPCk9O2Bk,6287
54
+ django_ledger/settings.py,sha256=LX2QVtwm4YwAJrfN1VplJlQ310-NeIg-wpRz5QdFJTk,8906
55
+ django_ledger/utils.py,sha256=eGEdrDRrnILIsk69FVN9pjX1VoDVc1nx_MfVAwiY5dg,3519
56
+ django_ledger/admin/__init__.py,sha256=-1h4Qg9dfRq9g-EoDZAq96L8lcOoGlwJXNBsbqVIY7U,472
57
+ django_ledger/admin/chart_of_accounts.py,sha256=tRQXsa5oi9behZc_A_aMsbDoT_wzxR2EvEF-aUuV0H8,3539
58
+ django_ledger/admin/entity.py,sha256=uep7wT5Rq-rf-z70odSplOznv3yz28Ze8IPB4nixNVA,6301
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
61
61
  django_ledger/contrib/django_ledger_graphene/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -93,13 +93,13 @@ 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=eClTuVrZOCeBuOFoe8GGVB9WyfiqKZbWSUaisRQIeiY,5184
96
+ django_ledger/forms/account.py,sha256=L8lDjxqz7GU_qtM2-LEa38iwkiv7eatEziAre07bHUg,5183
97
97
  django_ledger/forms/app_filters.py,sha256=fHmftiuR1Ei28LhGuu7LoxS4Q5pVjj1wiT0fF4GUcUI,2293
98
98
  django_ledger/forms/auth.py,sha256=HaJDEIRFoAHEAv-s_ZfTe0rZbhzIQ7GkKnaBX1qiAW4,736
99
- django_ledger/forms/bank_account.py,sha256=4pWOM-YROrgV88_XsBMEr-P69Q9bBlomJIBOsyVcaXw,4525
99
+ django_ledger/forms/bank_account.py,sha256=kCRZnhxN54MBBinRp_L0N5g7yUIOvIkXbJtuB8Cu2D4,4640
100
100
  django_ledger/forms/bill.py,sha256=vJbLZhHpolhzM0WKZdSAcuBnQAXDGGeKmY3RrswB-ZM,10813
101
+ django_ledger/forms/chart_of_accounts.py,sha256=wymLQ8iLNPU_LgS79BOdMUapuLqoTvgqVdAyL1Pw0Ro,2414
101
102
  django_ledger/forms/closing_entry.py,sha256=AwEEhphjQ-D4pQ6lRk2zGSmMSMkoamIVICnUY8rgqKU,1494
102
- django_ledger/forms/coa.py,sha256=-w0GbVde1ve0lEgWCc7kAIfDDVP_nBYgrxykfC301Gw,1312
103
103
  django_ledger/forms/customer.py,sha256=GrpREV8c3UsNhg5KzwNsofnuW5uv25Ue-Aa-pJeyXUc,2501
104
104
  django_ledger/forms/data_import.py,sha256=57iBUDBISSJAoE0Lj4UbloTCJrwDSTeCIpncGRZPITY,5677
105
105
  django_ledger/forms/entity.py,sha256=b0QirmsFSnaM8YWDO4V6GQXfFgR_MLmdq27I2q2sGQ0,6880
@@ -118,7 +118,7 @@ django_ledger/io/__init__.py,sha256=8m5AoBRiG2ymrX0Y4LVjq0275i7I5Sk7YRa1BTzVofI,
118
118
  django_ledger/io/io_context.py,sha256=xgykRoB6hVSN2q20f62j_4zbOeAHU5ZgbZaSwRaSkOU,4444
119
119
  django_ledger/io/io_core.py,sha256=az1HEBbNWHJiyOoaO1_yWj2ehSMnEjWHMy9Oug5ylXI,46902
120
120
  django_ledger/io/io_generator.py,sha256=JF4plsABUkCIrtI2X-YD7o5eNghRIgLUseNcBIGOj3U,34613
121
- django_ledger/io/io_library.py,sha256=vvQm3IQRLFdH7HS_DYX46Xe-U9IvgZ6MQnHjy0-fyjk,22480
121
+ django_ledger/io/io_library.py,sha256=4So7fmmb6SfDAn4kXHlvPC7FWc3yrzbx2g5ShiY9wG4,22494
122
122
  django_ledger/io/io_middleware.py,sha256=vbWIBYA4V9nwoiEtB0W9pq19QIwPmaAyVJlo_1Gg2BY,20284
123
123
  django_ledger/io/ofx.py,sha256=tsggMXfAz9rslCTUcxlandPapcHXbGqLO9Diel5z_jE,1677
124
124
  django_ledger/io/ratios.py,sha256=dsuCv9-r73SMLv3OrxeoT5JebfRmrDsRKG_YzHggWFw,3542
@@ -143,29 +143,30 @@ 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/0016_remove_accountmodel_django_ledg_coa_mod_e19964_idx_and_more.py,sha256=wpapkPycqZ9drUMlPGBs1IRy7pz6HyDgNvZBaf-E86o,1655
145
145
  django_ledger/migrations/0017_alter_accountmodel_unique_together_and_more.py,sha256=8wFeqrVsCZFi16URzVMvZnCVankBcCmGyb8YfX85_a0,1289
146
+ django_ledger/migrations/0018_transactionmodel_cleared_transactionmodel_reconciled_and_more.py,sha256=HrwS6Jxs_rgKQm3OeROQi1peEPSF7HtjbYKbTX0DT14,1284
146
147
  django_ledger/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
147
- django_ledger/models/__init__.py,sha256=8mn-OGhAVgLs8YASEBwo8dpX6tHyGtMxRHVPGDGECVU,793
148
- django_ledger/models/accounts.py,sha256=G-2cU8A_LqgUeGt8qhSHytPxi_7c9WWgRLixNISu1rE,34850
149
- django_ledger/models/bank_account.py,sha256=r5zTgvNDFmrcHtEKIuiVwLhJu8jZSGXolPYiX4_eqdA,7554
150
- django_ledger/models/bill.py,sha256=SAWRkCbVgHpLetuyBzyrxUQIOLOIohsDvMar117JTIY,64493
151
- django_ledger/models/closing_entry.py,sha256=DQ6I4AEIOs3iWGQ31ptNyKHs39tz_eg-eFBkPH-fano,17883
152
- django_ledger/models/coa.py,sha256=e8P1_sPR6sDrQcdMuCJYeySQAGqB6yBbVXDduRbfQFM,27400
153
- django_ledger/models/coa_default.py,sha256=Aw66p1gAE7-akdhEk_sjjSL5xbqCV-J91P6AHtCbWyI,27482
154
- django_ledger/models/customer.py,sha256=wZZICoxvNfgOVCE1Zg9AGG0Yej8uo6CyUN3bvnq1z38,11683
155
- django_ledger/models/data_import.py,sha256=kkVadPXZmnHpkuTbFdcRnEipF07DHol544bCGLGPUlI,19407
156
- django_ledger/models/entity.py,sha256=90e5iQpyy5A6ovYEad2E6AyzfynH08_MvC0PKm-EuFA,123095
157
- django_ledger/models/estimate.py,sha256=GTwtEB5kVtys8k80JH4FTg7msNcnkEpAxIMfow15Vks,57965
158
- django_ledger/models/invoice.py,sha256=caV6yXR06opjy9KgIHV78qdJ8D64vDX4ixjwPcj0yc4,62820
159
- django_ledger/models/items.py,sha256=SGY7jQJPJo6J3zuwXfgf0ZDSnA4BQNdkP0HuzgMEAQ0,54903
160
- django_ledger/models/journal_entry.py,sha256=a37qbnVfsXPoifEPbx9qTcDhL46k1M6k6qbvGpVxth8,52714
161
- django_ledger/models/ledger.py,sha256=57oC8QQ_AwieFKEAchoj5EjYNMcru8kcT7mx3nUYDoU,24921
148
+ django_ledger/models/__init__.py,sha256=OesBx4My9GnqU1xB5WXuuGLOnmzgxEJxI-WWxRxi658,807
149
+ django_ledger/models/accounts.py,sha256=PR0s0oJntnhFaJsiUuKY50NJWyXaAXu1WgTCso1oovI,34969
150
+ django_ledger/models/bank_account.py,sha256=YQSarOR3yahHYv_JIBPgz6SJE9gj079uNmNiiAjXiLY,7682
151
+ django_ledger/models/bill.py,sha256=nNjoZLHT5jqhDiBpCeFdJP59TKwLTBTlbZMg4lGqhPE,64611
152
+ django_ledger/models/chart_of_accounts.py,sha256=YxTmqy3FrTmqUCub-18GTtTRDCqVpWTzC_FmDPTlVJ4,30227
153
+ django_ledger/models/closing_entry.py,sha256=MKCy-q0LJUL2LP3g3y-OwP0SdcJAPssXwhLCKgp1nM0,17912
154
+ django_ledger/models/coa_default.py,sha256=CK4vOZ73QePciZUL93wigDXpxKamdXAKBaQR7r-G7tk,27482
155
+ django_ledger/models/customer.py,sha256=jhNQzBJXU6tawEpGWlXyg-hdRjlZIg8oIpUldf-nKiM,11778
156
+ django_ledger/models/data_import.py,sha256=O7zH9O4mVtuWBUJw_V0NB2ygXgQ7lKM6yxRdzATng24,19675
157
+ django_ledger/models/entity.py,sha256=XXvpD-AMcNQP6k6JlHy9dAHUfIQQesvaRol9sJCBais,123770
158
+ django_ledger/models/estimate.py,sha256=EPkGMJwn3bkyYYeVHOfyLeWqtlJIyjF8fUc36dLz_18,58107
159
+ django_ledger/models/invoice.py,sha256=rrQBn0tXkLRw2RD74Hv-gj3t97ePAyHxGJHIrkxnQc8,62840
160
+ django_ledger/models/items.py,sha256=-l_ibAiJTu4dO7TZUdGD4sq524Ew8oIwhq_hiHVUDeY,55251
161
+ django_ledger/models/journal_entry.py,sha256=KlATZhW7lT4L5hy0GRQMdkrqcgaiGVREwQU7kEO09sI,54293
162
+ django_ledger/models/ledger.py,sha256=68OHNANMK050_7s5NEj-n2FBY8JUnBaVsHDm2LItrMs,25034
162
163
  django_ledger/models/mixins.py,sha256=HtT76Su3HkJy8j-18rUeqe01kJC95EsJFP_QeWxssJ8,52046
163
- django_ledger/models/purchase_order.py,sha256=FWa7KiyP4kyxKuZJEKpEkQuP79URI5pK3FdK7TTw-rM,44060
164
+ django_ledger/models/purchase_order.py,sha256=YFbtRGO0FW4nOnKy2OAQoI6pdA-kt3IhqjpyxKxNvwg,44197
164
165
  django_ledger/models/signals.py,sha256=3cm_8--Jz-Jb0fPgrVmm5xx_jKFARV6_A29VDjqHeIw,1563
165
- django_ledger/models/transactions.py,sha256=ETFisqA25nosN6LXzhMdGW8Nb5aP-8MD3rhUHWWvx5w,22645
166
- django_ledger/models/unit.py,sha256=YfLmE2G5njDyLe9NzjjrF6-8y8D18DafRZ-YYjbD-Ho,7998
166
+ django_ledger/models/transactions.py,sha256=FWITorLpDyGm2Wunw7WVXizP2xadaBEYhtx5LcL6Vb4,23333
167
+ django_ledger/models/unit.py,sha256=PJFfn_dUzx3-8RtvhrsTlOd_fCcu6bzQgzRcMIH8jUo,8124
167
168
  django_ledger/models/utils.py,sha256=Weta2Cwsn4wRqvxMecIuD7aHYiiXBwUeMqpUDK4CokE,8360
168
- django_ledger/models/vendor.py,sha256=4nfMtHmsjrmQerHXcrEvMkPOxDbxIXgpMQiqcaGZJu8,11244
169
+ django_ledger/models/vendor.py,sha256=74SIqtnRsEMXhjFwEHSWq5yF0vlSaytiR31Rv5mUCxw,11361
169
170
  django_ledger/models/schemas/__init__.py,sha256=8Tvw33tVJtCvxoXje2lrs9C1bsP_iuGcVi1JqzdPUao,157
170
171
  django_ledger/models/schemas/digest.py,sha256=ME_dJ4g2p3dQ97Skh_RTZMwuNLmwTi19BdLM1G6tyAo,1077
171
172
  django_ledger/models/schemas/net_payable.py,sha256=2FcfLaaJySjZ3Yk_IMu8SxYWNO_sngEtbuFCXInrQUU,958
@@ -239,7 +240,7 @@ django_ledger/templates/django_ledger/account/account_detail.html,sha256=m-UTWD9
239
240
  django_ledger/templates/django_ledger/account/account_list.html,sha256=0kDNrzcMgMewiBQGqjkPCUHErmOiVz6uy1FnwzclMjc,1019
240
241
  django_ledger/templates/django_ledger/account/account_update.html,sha256=FzNFcARbhZUUTTi6Sv-PQJi7XzjLsOfrUnR7lIvIlhc,1113
241
242
  django_ledger/templates/django_ledger/account/tags/account_txs_table.html,sha256=pkRweHkUAIBYsRyjj0onjg-wdrlfsHir2hnzwD8xWiU,3495
242
- django_ledger/templates/django_ledger/account/tags/accounts_table.html,sha256=fITjFvesF2HRT_wRUq-QKjTbgz1dHP24pY3MqYMzSkA,7554
243
+ django_ledger/templates/django_ledger/account/tags/accounts_table.html,sha256=yPf2gB77_sgSGfbRQPDWco1kHSbbnQ7H4ujrMm1Q9yA,7532
243
244
  django_ledger/templates/django_ledger/auth/login.html,sha256=UYV2rxjEn9cXBbG6Ww93k6yMPJtOo5vpX6sod61ewKs,1849
244
245
  django_ledger/templates/django_ledger/bank_account/bank_account_create.html,sha256=zoCvV-_2aBAXCnCfHTFI18Pn7hbEcOkgtcgYOQ2IJIg,1258
245
246
  django_ledger/templates/django_ledger/bank_account/bank_account_list.html,sha256=FuwnbPZ8J6paQw02ddSYEpKUy97SKP-00mFDPMghgJI,701
@@ -254,9 +255,10 @@ django_ledger/templates/django_ledger/bills/bill_void.html,sha256=iQt9Nq1DL-Lovk
254
255
  django_ledger/templates/django_ledger/bills/includes/card_bill.html,sha256=7bUT7Sx7oFHAs9ko1x3wBBhrOZnTAmrGR55S1vksm8g,14029
255
256
  django_ledger/templates/django_ledger/bills/tags/bill_item_formset.html,sha256=tmBNZoaHhk6EsCtcdqAQdHJ0XyDFaFRYqxdCf2Xi5KU,4082
256
257
  django_ledger/templates/django_ledger/bills/tags/bill_table.html,sha256=aGy5iMUmlZ1D7L3qnQlOC2L8ScQCoLENEfBqHV-vJvE,2864
257
- django_ledger/templates/django_ledger/chart_of_accounts/coa_list.html,sha256=v-g1zdj-0JT8FWUcvmfGgJUqpuIIsYoCciettI3UdgE,490
258
- django_ledger/templates/django_ledger/chart_of_accounts/coa_update.html,sha256=S5RX0z_BGhCwdMuwjLWqWDihkKlhI2d3r_zgDfX1n9k,863
259
- django_ledger/templates/django_ledger/chart_of_accounts/includes/coa_card.html,sha256=pWqa53tUwf2t0pR8tqu-8S0XMPz0dgw-JI0Rw0Tv66o,3166
258
+ django_ledger/templates/django_ledger/chart_of_accounts/coa_create.html,sha256=FOVnoRn09GEbiG5q7pycK766L7PVeAEGXqNbZxcQLdY,997
259
+ django_ledger/templates/django_ledger/chart_of_accounts/coa_list.html,sha256=bOjBpybVJt0weKJz1iPGdNu03QXFNSULJZ04m6DpCtE,1424
260
+ django_ledger/templates/django_ledger/chart_of_accounts/coa_update.html,sha256=tcVW9_heWLt73bpeeLLResGLpwbJM8AyLpAXRo2ECJU,847
261
+ django_ledger/templates/django_ledger/chart_of_accounts/includes/coa_card.html,sha256=iAqvVzhcECV950tjlM0M6TqHs0y31tfB4lEmhUC-kEU,3501
260
262
  django_ledger/templates/django_ledger/closing_entry/closing_entry_create.html,sha256=lBx2gKnKLT_12g-dJn1N6xmR_Nnk3Nm2kXjIK0PorMs,1338
261
263
  django_ledger/templates/django_ledger/closing_entry/closing_entry_delete.html,sha256=4PzrIVBUnI6k7NBPiQto3TPM18T2jmTk5rZbx-RRqZo,1087
262
264
  django_ledger/templates/django_ledger/closing_entry/closing_entry_detail.html,sha256=mnyVPRoQh9L6F5dB87ZfuoXjkreac9JRMK4cH6FUnqE,1599
@@ -312,12 +314,12 @@ django_ledger/templates/django_ledger/expense/tags/expense_item_table.html,sha25
312
314
  django_ledger/templates/django_ledger/financial_statements/balance_sheet.html,sha256=_trd5e282eMsC5VfzP9tL7zPJ_kTGMxlrh77RWwLlY4,2793
313
315
  django_ledger/templates/django_ledger/financial_statements/cash_flow.html,sha256=zeu7OcXl2T_vDoFyJvb0htFIjQz0IfyJBiOcck2skus,3031
314
316
  django_ledger/templates/django_ledger/financial_statements/income_statement.html,sha256=pfrv12Bu_PmU-MrL7JXYX7Wv4PZ06fKvOdydzzgeEnw,2731
315
- django_ledger/templates/django_ledger/financial_statements/tags/balance_sheet_statement.html,sha256=u2o3krlo_I7w-erXI9DO4gNChbYn0KpdeLRZs7UckOQ,6430
317
+ django_ledger/templates/django_ledger/financial_statements/tags/balance_sheet_statement.html,sha256=fak-N9y_vtv2OeGj34iCaTaio5yPtpvXhAU5YmdC4IQ,6276
316
318
  django_ledger/templates/django_ledger/financial_statements/tags/cash_flow_statement.html,sha256=elJsMVmVJHZbZVhuo-bSykrrLoSZrN0JpUYm0LukY80,8961
317
319
  django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html,sha256=kLmnxHN5G9H7xYKFANLbfM0jAtNsmfhIrdltW-bhoPY,10442
318
320
  django_ledger/templates/django_ledger/includes/breadcrumbs.html,sha256=mSzAPpn7uCx33oXuNhbM-MQdam3QFOxl9TRH93hrS4w,183
319
321
  django_ledger/templates/django_ledger/includes/card_markdown.html,sha256=wKihCko89-F_gU4jJzsqjxDrjxgzVYFXK39cQPv8Sjc,804
320
- django_ledger/templates/django_ledger/includes/footer.html,sha256=k6NGiXxLldvQPZMRGxnCHzu72pWHtm8__uShZIzwhkw,523
322
+ django_ledger/templates/django_ledger/includes/footer.html,sha256=etnULJWQRmSdtMFgxY-vT2-JQYyxxixa7xQ2K6qD1Wo,528
321
323
  django_ledger/templates/django_ledger/includes/messages.html,sha256=N_7BlYw9pJfzsv9gTUE4FFoUppWhbkxShd4UnQ81IfM,322
322
324
  django_ledger/templates/django_ledger/includes/nav.html,sha256=Vo0ois6-bQiuHvPixqtXqTuxPp6IeesZSHkPJsZArwU,1818
323
325
  django_ledger/templates/django_ledger/includes/page_header.html,sha256=q2tL3SvFebET4CB_gJB_qRocMbDdijrNCoowoHCgthM,2353
@@ -411,7 +413,7 @@ django_ledger/urls/account.py,sha256=wQQHYf6TRj5VphNlOHUPnruHWl2Rfos1hjJeDwK4ZN0
411
413
  django_ledger/urls/auth.py,sha256=8dY2h6PQkMayUL81guu9JCxm--Tj0rglvvxg9Qh03aY,230
412
414
  django_ledger/urls/bank_account.py,sha256=-dJsrnwej8H96Gc8xltLf3NwUxKk_xG0Mq4mxhe8Cqs,887
413
415
  django_ledger/urls/bill.py,sha256=wvdRqSgnHp1CLdX6Sudu1IiIx4M1Pe8OupanA-9a-nI,2890
414
- django_ledger/urls/chart_of_accounts.py,sha256=c9b32U-GY8Ddhy2W7zW8IMnNtQzZHF1bs1SGJ4Ylr3U,1097
416
+ django_ledger/urls/chart_of_accounts.py,sha256=DGr7YSfPHuOoUWRX7EhEhteRJTbCdx6xXExK7lrr0x8,1370
415
417
  django_ledger/urls/closing_entry.py,sha256=3W0fCuAWGB3h8cWg0cxOb9EClVrydeIdHEX0q9rge60,1765
416
418
  django_ledger/urls/customer.py,sha256=I3tWSb5Gmdr-boBSlCst_5cvCHz6JhpGxuwglqJeaG0,426
417
419
  django_ledger/urls/data_import.py,sha256=bOi6U8gN2adxQUjOeNCJGuDRB--hwWeUIQOYTMbFarw,780
@@ -430,13 +432,13 @@ django_ledger/urls/purchase_order.py,sha256=iUNdzy8dcxkkmDAOt2fO4Up3e0pHDqZNSf9J
430
432
  django_ledger/urls/transactions.py,sha256=e_x_z5qbkR6i7o8OWWdXshDiY_WVmu9WVhR9A96fnhI,80
431
433
  django_ledger/urls/unit.py,sha256=QEVKrgcw2dqMaaXsUHfqYecTa5-iaPlS9smrYJ1QsgM,1506
432
434
  django_ledger/urls/vendor.py,sha256=ODHpAwe5lomluj8ZCqbMtugTeeRsv0Yo9SqkZEmfYaw,393
433
- django_ledger/views/__init__.py,sha256=1TULFur1eAAcYKQ6lLqTaP7ffTn1dLIAR74u713cpak,1164
434
- django_ledger/views/account.py,sha256=0ecfjsjA_AkRUdMhjESp5Qouztu2Z8WsocPDeZ8tGps,8667
435
+ django_ledger/views/__init__.py,sha256=fY9eBoPkx50p-kSalskd4QW1tHm3e64WpwOFuJzn4Xo,1178
436
+ django_ledger/views/account.py,sha256=GBIJBy2ykhXl8x_5mfZjB6U5bCdhf81mWifn4a6nEuw,9067
435
437
  django_ledger/views/auth.py,sha256=I8Mv_aAfW-8Z5VYPOX7P3IUO4Fp5jJPkSuu1ZSVpWtI,777
436
438
  django_ledger/views/bank_account.py,sha256=9eeo2Y71PGt0yTOK1qIojV7024AZIQybynWAsw7Nd9Q,5024
437
439
  django_ledger/views/bill.py,sha256=5tNb3pyh8GQM4hjV0FXqCXrEQF2LwpEWLkOkpknEdjA,22239
440
+ django_ledger/views/chart_of_accounts.py,sha256=wMdnXRNWzdPgxl1YeHbdAQXbCBU2VkmxVxxtUuk9NAQ,5485
438
441
  django_ledger/views/closing_entry.py,sha256=_6y-0QjNPYBD-E3KlFXi8SavDtBXA9K2qgBa_EL6VbA,8316
439
- django_ledger/views/coa.py,sha256=M8pUSMsl9g4e6Zq3MKBvV0AMWU_yGbppgQCe0RFWtI4,4941
440
442
  django_ledger/views/customer.py,sha256=FYnwhRx6JXE4bsjXQqFp8b9H8a4m7zv6ohoSj1OkZD8,3678
441
443
  django_ledger/views/data_import.py,sha256=z8biQCHGor2Fq9LIlVhI31_1gBmpnNV05kExzrEyRV0,11956
442
444
  django_ledger/views/djl_api.py,sha256=6ADX9fBK8DroTeg8UIeCf2x4wt6-AF5xLlDQnqXBfsM,4411
@@ -450,14 +452,14 @@ django_ledger/views/invoice.py,sha256=BCCvQCtB1p7WBRQZeJakUhDJy4Fr5jvEYIDgLnZDh3
450
452
  django_ledger/views/item.py,sha256=WvwvNWe4Wu9tZWbm75iciNvaSxh9b8h_P_FHt4jsKXs,20604
451
453
  django_ledger/views/journal_entry.py,sha256=QaUz_HuUpbZCulpS7fsg2Q8nuKbxf8bXnQhcWRkAa-s,12141
452
454
  django_ledger/views/ledger.py,sha256=DrPXgC4iMvj1jY4x6Ka8elwaOnLUe1yM-bAkuJC9bLU,12677
453
- django_ledger/views/mixins.py,sha256=Lqa5hCqu1jg6kwQdcv6QYyLRc6FlF6LU_WDU2Skm0Q8,23260
455
+ django_ledger/views/mixins.py,sha256=_v8y9RHOpSXhGdXoFU1LldDrOgso64MKDBNWUyWulzc,23648
454
456
  django_ledger/views/purchase_order.py,sha256=CyftKrQWV1SBz7W0CvZOfZ81OPEiBHPD7b9zt1k6CFY,21088
455
457
  django_ledger/views/transactions.py,sha256=3ijtJzdLPFkqG7OYpe-7N4QVjCyR2yl5ht_9RyfquBA,212
456
458
  django_ledger/views/unit.py,sha256=MF9tEeWCOt5XrtK-UFmHFisyBM-h3WzgL6v8IX2Ynbk,10446
457
459
  django_ledger/views/vendor.py,sha256=qlkd3gsjZ6RYuPrRYDVZp-Im65calM9ed3KxsaT4cxw,3467
458
- django_ledger-0.7.0.dist-info/AUTHORS.md,sha256=ShPwf-qniJkbjRzX5_lqhmgoLMEYMSHSwKPXHZtWmyk,824
459
- django_ledger-0.7.0.dist-info/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
460
- django_ledger-0.7.0.dist-info/METADATA,sha256=Dvq_CQKhqQ6dLz1ZyCZBQ9tIuYdL0r5svQrzLrHSyRQ,8680
461
- django_ledger-0.7.0.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
462
- django_ledger-0.7.0.dist-info/top_level.txt,sha256=fmHWehb2HfoDncQ3eQtYzeYc-gJMywf6q_ZpKBjwzoQ,38
463
- django_ledger-0.7.0.dist-info/RECORD,,
460
+ django_ledger-0.7.1.dist-info/AUTHORS.md,sha256=ShPwf-qniJkbjRzX5_lqhmgoLMEYMSHSwKPXHZtWmyk,824
461
+ django_ledger-0.7.1.dist-info/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
462
+ django_ledger-0.7.1.dist-info/METADATA,sha256=4f7K_hEZLKSR3V6tyn2jLM5zOqMxLNtX1eMOwww3YOU,8607
463
+ django_ledger-0.7.1.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
464
+ django_ledger-0.7.1.dist-info/top_level.txt,sha256=fmHWehb2HfoDncQ3eQtYzeYc-gJMywf6q_ZpKBjwzoQ,38
465
+ django_ledger-0.7.1.dist-info/RECORD,,
@@ -1,47 +0,0 @@
1
- from django.forms import ModelForm, TextInput, Textarea
2
- from django.utils.translation import gettext_lazy as _
3
-
4
- from django_ledger.models.coa import ChartOfAccountModel
5
- from django_ledger.settings import DJANGO_LEDGER_FORM_INPUT_CLASSES
6
-
7
-
8
- class ChartOfAccountsModelForm(ModelForm):
9
- class Meta:
10
- model = ChartOfAccountModel
11
- fields = [
12
- 'name',
13
- 'description'
14
- ]
15
- labels = {
16
- 'name': _('Name'),
17
- 'description': _('Description'),
18
- }
19
- widgets = {
20
- 'name': TextInput(attrs={
21
- 'class': DJANGO_LEDGER_FORM_INPUT_CLASSES
22
- }),
23
- 'description': Textarea(attrs={
24
- 'class': DJANGO_LEDGER_FORM_INPUT_CLASSES
25
- }),
26
- }
27
-
28
-
29
- class ChartOfAccountsModelUpdateForm(ModelForm):
30
- class Meta:
31
- model = ChartOfAccountModel
32
- fields = [
33
- 'name',
34
- 'active'
35
- ]
36
- labels = {
37
- 'name': _('Name'),
38
- 'description': _('Description'),
39
- }
40
- widgets = {
41
- 'name': TextInput(attrs={
42
- 'class': DJANGO_LEDGER_FORM_INPUT_CLASSES
43
- }),
44
- 'description': Textarea(attrs={
45
- 'class': DJANGO_LEDGER_FORM_INPUT_CLASSES
46
- }),
47
- }