django-ledger 0.7.3__py3-none-any.whl → 0.7.4.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.
- django_ledger/__init__.py +1 -1
- django_ledger/contrib/django_ledger_graphene/journal_entry/schema.py +2 -3
- django_ledger/contrib/django_ledger_graphene/transaction/schema.py +9 -7
- django_ledger/forms/journal_entry.py +19 -12
- django_ledger/forms/transactions.py +8 -12
- django_ledger/io/io_core.py +14 -11
- django_ledger/io/io_library.py +3 -3
- django_ledger/migrations/0001_initial.py +1 -1
- django_ledger/migrations/0019_alter_transactionmodel_amount_and_more.py +33 -0
- django_ledger/models/bill.py +17 -2
- django_ledger/models/chart_of_accounts.py +4 -0
- django_ledger/models/closing_entry.py +8 -6
- django_ledger/models/invoice.py +12 -4
- django_ledger/models/journal_entry.py +843 -481
- django_ledger/models/ledger.py +45 -4
- django_ledger/models/transactions.py +303 -305
- django_ledger/models/unit.py +42 -22
- django_ledger/templates/django_ledger/account/tags/accounts_table.html +1 -1
- django_ledger/templates/django_ledger/bills/bill_detail.html +1 -1
- django_ledger/templates/django_ledger/invoice/invoice_detail.html +1 -1
- django_ledger/templates/django_ledger/journal_entry/je_create.html +2 -3
- django_ledger/templates/django_ledger/journal_entry/je_delete.html +2 -3
- django_ledger/templates/django_ledger/journal_entry/je_detail.html +1 -1
- django_ledger/templates/django_ledger/journal_entry/je_detail_txs.html +8 -8
- django_ledger/templates/django_ledger/journal_entry/je_list.html +16 -13
- django_ledger/templates/django_ledger/journal_entry/je_update.html +2 -3
- django_ledger/templates/django_ledger/journal_entry/tags/je_table.html +24 -24
- django_ledger/templates/django_ledger/journal_entry/tags/je_txs_table.html +17 -14
- django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html +38 -37
- django_ledger/templates/django_ledger/transactions/tags/txs_table.html +69 -0
- django_ledger/templatetags/django_ledger.py +25 -45
- django_ledger/urls/account.py +4 -4
- django_ledger/views/account.py +7 -7
- django_ledger/views/journal_entry.py +84 -101
- django_ledger/views/ledger.py +16 -21
- django_ledger/views/mixins.py +11 -10
- {django_ledger-0.7.3.dist-info → django_ledger-0.7.4.1.dist-info}/METADATA +8 -3
- {django_ledger-0.7.3.dist-info → django_ledger-0.7.4.1.dist-info}/RECORD +42 -40
- {django_ledger-0.7.3.dist-info → django_ledger-0.7.4.1.dist-info}/AUTHORS.md +0 -0
- {django_ledger-0.7.3.dist-info → django_ledger-0.7.4.1.dist-info}/LICENSE +0 -0
- {django_ledger-0.7.3.dist-info → django_ledger-0.7.4.1.dist-info}/WHEEL +0 -0
- {django_ledger-0.7.3.dist-info → django_ledger-0.7.4.1.dist-info}/top_level.txt +0 -0
django_ledger/views/ledger.py
CHANGED
|
@@ -17,6 +17,7 @@ from django.views.generic.detail import SingleObjectMixin
|
|
|
17
17
|
|
|
18
18
|
from django_ledger.forms.ledger import LedgerModelCreateForm, LedgerModelUpdateForm
|
|
19
19
|
from django_ledger.io.io_core import get_localdate
|
|
20
|
+
from django_ledger.models import EntityModel
|
|
20
21
|
from django_ledger.models.ledger import LedgerModel
|
|
21
22
|
from django_ledger.views.mixins import (
|
|
22
23
|
YearlyReportMixIn, QuarterlyReportMixIn,
|
|
@@ -25,19 +26,17 @@ from django_ledger.views.mixins import (
|
|
|
25
26
|
)
|
|
26
27
|
|
|
27
28
|
|
|
28
|
-
class
|
|
29
|
+
class LedgerModelModelBaseView(DjangoLedgerSecurityMixIn):
|
|
29
30
|
queryset = None
|
|
30
31
|
|
|
31
32
|
def get_queryset(self):
|
|
32
33
|
if self.queryset is None:
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
user_model=self.request.user
|
|
36
|
-
).select_related('entity')
|
|
34
|
+
entity_model: EntityModel = self.get_authorized_entity_instance()
|
|
35
|
+
self.queryset = entity_model.get_ledgers()
|
|
37
36
|
return self.queryset
|
|
38
37
|
|
|
39
38
|
|
|
40
|
-
class LedgerModelListView(
|
|
39
|
+
class LedgerModelListView(LedgerModelModelBaseView, ArchiveIndexView):
|
|
41
40
|
allow_empty = True
|
|
42
41
|
context_object_name = 'ledger_list'
|
|
43
42
|
template_name = 'django_ledger/ledger/ledger_list.html'
|
|
@@ -91,7 +90,7 @@ class LedgerModelMonthListView(MonthArchiveView, LedgerModelListView):
|
|
|
91
90
|
make_object_list = True
|
|
92
91
|
|
|
93
92
|
|
|
94
|
-
class LedgerModelCreateView(
|
|
93
|
+
class LedgerModelCreateView(LedgerModelModelBaseView, CreateView):
|
|
95
94
|
template_name = 'django_ledger/ledger/ledger_create.html'
|
|
96
95
|
PAGE_TITLE = _('Create Ledger')
|
|
97
96
|
extra_context = {
|
|
@@ -118,7 +117,7 @@ class LedgerModelCreateView(DjangoLedgerSecurityMixIn, LedgerModelModelViewQuery
|
|
|
118
117
|
})
|
|
119
118
|
|
|
120
119
|
|
|
121
|
-
class LedgerModelDetailView(
|
|
120
|
+
class LedgerModelDetailView(LedgerModelModelBaseView, RedirectView):
|
|
122
121
|
|
|
123
122
|
def get_redirect_url(self, *args, **kwargs):
|
|
124
123
|
return reverse('django_ledger:je-list',
|
|
@@ -128,7 +127,7 @@ class LedgerModelDetailView(DjangoLedgerSecurityMixIn, LedgerModelModelViewQuery
|
|
|
128
127
|
})
|
|
129
128
|
|
|
130
129
|
|
|
131
|
-
class LedgerModelUpdateView(
|
|
130
|
+
class LedgerModelUpdateView(LedgerModelModelBaseView, UpdateView):
|
|
132
131
|
context_object_name = 'ledger'
|
|
133
132
|
pk_url_kwarg = 'ledger_pk'
|
|
134
133
|
template_name = 'django_ledger/ledger/ledger_update.html'
|
|
@@ -153,7 +152,7 @@ class LedgerModelUpdateView(DjangoLedgerSecurityMixIn, LedgerModelModelViewQuery
|
|
|
153
152
|
})
|
|
154
153
|
|
|
155
154
|
|
|
156
|
-
class LedgerModelDeleteView(
|
|
155
|
+
class LedgerModelDeleteView(LedgerModelModelBaseView, DeleteView):
|
|
157
156
|
template_name = 'django_ledger/ledger/ledger_delete.html'
|
|
158
157
|
pk_url_kwarg = 'ledger_pk'
|
|
159
158
|
context_object_name = 'ledger_model'
|
|
@@ -167,9 +166,8 @@ class LedgerModelDeleteView(DjangoLedgerSecurityMixIn, LedgerModelModelViewQuery
|
|
|
167
166
|
|
|
168
167
|
# ACTIONS....
|
|
169
168
|
|
|
170
|
-
class LedgerModelModelActionView(
|
|
169
|
+
class LedgerModelModelActionView(LedgerModelModelBaseView,
|
|
171
170
|
RedirectView,
|
|
172
|
-
LedgerModelModelViewQuerySetMixIn,
|
|
173
171
|
SingleObjectMixin):
|
|
174
172
|
http_method_names = ['get']
|
|
175
173
|
pk_url_kwarg = 'ledger_pk'
|
|
@@ -200,7 +198,7 @@ class LedgerModelModelActionView(DjangoLedgerSecurityMixIn,
|
|
|
200
198
|
|
|
201
199
|
|
|
202
200
|
# Ledger Balance Sheet Views...
|
|
203
|
-
class BaseLedgerModelBalanceSheetView(
|
|
201
|
+
class BaseLedgerModelBalanceSheetView(LedgerModelModelBaseView, RedirectView):
|
|
204
202
|
|
|
205
203
|
def get_redirect_url(self, *args, **kwargs):
|
|
206
204
|
year = get_localdate().year
|
|
@@ -211,8 +209,7 @@ class BaseLedgerModelBalanceSheetView(DjangoLedgerSecurityMixIn, RedirectView):
|
|
|
211
209
|
})
|
|
212
210
|
|
|
213
211
|
|
|
214
|
-
class FiscalYearLedgerModelBalanceSheetView(
|
|
215
|
-
LedgerModelModelViewQuerySetMixIn,
|
|
212
|
+
class FiscalYearLedgerModelBalanceSheetView(LedgerModelModelBaseView,
|
|
216
213
|
BaseDateNavigationUrlMixIn,
|
|
217
214
|
EntityUnitMixIn,
|
|
218
215
|
YearlyReportMixIn,
|
|
@@ -249,7 +246,7 @@ class DateLedgerModelBalanceSheetView(FiscalYearLedgerModelBalanceSheetView, Dat
|
|
|
249
246
|
|
|
250
247
|
|
|
251
248
|
# Ledger Income Statement Views...
|
|
252
|
-
class BaseLedgerIncomeStatementView(
|
|
249
|
+
class BaseLedgerIncomeStatementView(LedgerModelModelBaseView, RedirectView):
|
|
253
250
|
|
|
254
251
|
def get_redirect_url(self, *args, **kwargs):
|
|
255
252
|
year = get_localdate().year
|
|
@@ -261,8 +258,7 @@ class BaseLedgerIncomeStatementView(DjangoLedgerSecurityMixIn, RedirectView):
|
|
|
261
258
|
})
|
|
262
259
|
|
|
263
260
|
|
|
264
|
-
class FiscalYearLedgerIncomeStatementView(
|
|
265
|
-
LedgerModelModelViewQuerySetMixIn,
|
|
261
|
+
class FiscalYearLedgerIncomeStatementView(LedgerModelModelBaseView,
|
|
266
262
|
BaseDateNavigationUrlMixIn,
|
|
267
263
|
EntityUnitMixIn,
|
|
268
264
|
YearlyReportMixIn,
|
|
@@ -298,7 +294,7 @@ class DateLedgerIncomeStatementView(FiscalYearLedgerIncomeStatementView, DateRep
|
|
|
298
294
|
|
|
299
295
|
|
|
300
296
|
# CASH FLOW STATEMENT ----
|
|
301
|
-
class BaseLedgerModelCashFlowStatementRedirectView(
|
|
297
|
+
class BaseLedgerModelCashFlowStatementRedirectView(LedgerModelModelBaseView, RedirectView):
|
|
302
298
|
|
|
303
299
|
def get_redirect_url(self, *args, **kwargs):
|
|
304
300
|
year = get_localdate().year
|
|
@@ -310,8 +306,7 @@ class BaseLedgerModelCashFlowStatementRedirectView(DjangoLedgerSecurityMixIn, Re
|
|
|
310
306
|
})
|
|
311
307
|
|
|
312
308
|
|
|
313
|
-
class FiscalYearLedgerModelCashFlowStatementView(
|
|
314
|
-
LedgerModelModelViewQuerySetMixIn,
|
|
309
|
+
class FiscalYearLedgerModelCashFlowStatementView(LedgerModelModelBaseView,
|
|
315
310
|
BaseDateNavigationUrlMixIn,
|
|
316
311
|
EntityUnitMixIn,
|
|
317
312
|
YearlyReportMixIn,
|
django_ledger/views/mixins.py
CHANGED
|
@@ -315,7 +315,6 @@ class DjangoLedgerSecurityMixIn(LoginRequiredMixin, PermissionRequiredMixin):
|
|
|
315
315
|
context[self.ENTITY_MODEL_CONTEXT_NAME] = self.get_authorized_entity_instance(raise_exception=False)
|
|
316
316
|
return context
|
|
317
317
|
|
|
318
|
-
|
|
319
318
|
def get_login_url(self):
|
|
320
319
|
return reverse('django_ledger:login')
|
|
321
320
|
|
|
@@ -448,15 +447,17 @@ class DigestContextMixIn:
|
|
|
448
447
|
context[self.get_io_digest_unbounded_context_name()] = io_digest.get_io_data()
|
|
449
448
|
|
|
450
449
|
if self.IO_DIGEST_BOUNDED:
|
|
451
|
-
io_digest_equity = entity_model.digest(
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
450
|
+
io_digest_equity = entity_model.digest(
|
|
451
|
+
user_model=self.request.user,
|
|
452
|
+
equity_only=True,
|
|
453
|
+
to_date=to_date,
|
|
454
|
+
from_date=from_date,
|
|
455
|
+
unit_slug=unit_slug,
|
|
456
|
+
by_period=True if by_period else False,
|
|
457
|
+
process_ratios=True,
|
|
458
|
+
process_roles=True,
|
|
459
|
+
process_groups=True
|
|
460
|
+
)
|
|
460
461
|
|
|
461
462
|
context[self.get_io_manager_bounded_context_name()] = io_digest_equity
|
|
462
463
|
context[self.get_io_digest_bounded_context_name()] = io_digest_equity.get_io_data()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: django-ledger
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.4.1
|
|
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>
|
|
@@ -47,7 +47,7 @@ Requires-Dist: furo ; extra == 'dev'
|
|
|
47
47
|
|
|
48
48
|
Django Ledger is a powerful financial management system built on the Django Web Framework. It offers a simplified API for handling complex accounting tasks in financially driven applications.
|
|
49
49
|
|
|
50
|
-
[Join our Discord](https://discord.gg/c7PZcbYgrc) | [Documentation](https://django-ledger.readthedocs.io/en/latest/) | [QuickStart Notebook](https://github.com/arrobalytics/django-ledger/blob/develop/notebooks/QuickStart%20Notebook.ipynb)
|
|
50
|
+
[FREE Get Started Guide](https://www.djangoledger.com/get-started) | [Join our Discord](https://discord.gg/c7PZcbYgrc) | [Documentation](https://django-ledger.readthedocs.io/en/latest/) | [QuickStart Notebook](https://github.com/arrobalytics/django-ledger/blob/develop/notebooks/QuickStart%20Notebook.ipynb)
|
|
51
51
|
|
|
52
52
|
## Key Features
|
|
53
53
|
|
|
@@ -126,7 +126,12 @@ pipenv install django
|
|
|
126
126
|
* Install Django Ledger
|
|
127
127
|
|
|
128
128
|
```shell script
|
|
129
|
-
pipenv install django-ledger[graphql,pdf]
|
|
129
|
+
pipenv install "django-ledger[graphql,pdf]"
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
Alternatively, you can use:
|
|
133
|
+
```shell script
|
|
134
|
+
pipenv install django-ledger\[graphql,pdf\]
|
|
130
135
|
```
|
|
131
136
|
|
|
132
137
|
* Activate your new virtual environment:
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
django_ledger/__init__.py,sha256=
|
|
1
|
+
django_ledger/__init__.py,sha256=hXROiNmzHw_xj0OaMo5A74YrSXTMB6PU0EMZcgTq5Q0,382
|
|
2
2
|
django_ledger/apps.py,sha256=H-zEWUjKGakgSDSZmLIoXChZ2h6e0dth0ZO5SpoT-8U,163
|
|
3
3
|
django_ledger/exceptions.py,sha256=rML8sQQ0Hq-DYMLZ76dfw2RYSAsXWUoyHuyC_yP9o1o,491
|
|
4
4
|
django_ledger/settings.py,sha256=LX2QVtwm4YwAJrfN1VplJlQ310-NeIg-wpRz5QdFJTk,8906
|
|
@@ -31,13 +31,13 @@ django_ledger/contrib/django_ledger_graphene/entity/schema.py,sha256=7xqiOAlIfEn
|
|
|
31
31
|
django_ledger/contrib/django_ledger_graphene/item/mutations.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
32
|
django_ledger/contrib/django_ledger_graphene/item/schema.py,sha256=efKrMc7WRYw3vctGYFnzuM6ci_DVY1cogm5UA_pj3yU,1068
|
|
33
33
|
django_ledger/contrib/django_ledger_graphene/journal_entry/mutations.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
-
django_ledger/contrib/django_ledger_graphene/journal_entry/schema.py,sha256
|
|
34
|
+
django_ledger/contrib/django_ledger_graphene/journal_entry/schema.py,sha256=uNMdSQ1pHMpEja5f64-5PF5TxwR08E8gshxD6MUQasY,1234
|
|
35
35
|
django_ledger/contrib/django_ledger_graphene/ledger/mutations.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
36
|
django_ledger/contrib/django_ledger_graphene/ledger/schema.py,sha256=EzGMq6bHUpcZ-u9ChR0f4TuQUXrRvAlXNLYuPkx5WdI,1000
|
|
37
37
|
django_ledger/contrib/django_ledger_graphene/purchase_order/mutations.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
38
|
django_ledger/contrib/django_ledger_graphene/purchase_order/schema.py,sha256=-y7HMVpV9xhUMkKsLDUNRpJpGsgE_4fNz4Y9Z1j1v-M,1008
|
|
39
39
|
django_ledger/contrib/django_ledger_graphene/transaction/mutations.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
-
django_ledger/contrib/django_ledger_graphene/transaction/schema.py,sha256=
|
|
40
|
+
django_ledger/contrib/django_ledger_graphene/transaction/schema.py,sha256=IwYgjUuaNrnXqL_CRglnTI9H3CAu7Ip8BI_naVFnH-E,1282
|
|
41
41
|
django_ledger/contrib/django_ledger_graphene/unit/mutations.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
42
|
django_ledger/contrib/django_ledger_graphene/unit/schema.py,sha256=orR4tn1ORTfzLHBzlCnYcpQXMfjYbYbwOq4n0MInjQM,889
|
|
43
43
|
django_ledger/contrib/django_ledger_graphene/vendor/mutations.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -57,18 +57,18 @@ django_ledger/forms/estimate.py,sha256=0A30F4mosT4uvIde61lAWbPV4JePUQIX87VAcTtby
|
|
|
57
57
|
django_ledger/forms/feedback.py,sha256=WUT-kI4uT6q5aqEYaDYwyIFfhXpmtwMv6qf9BFSYsDo,1850
|
|
58
58
|
django_ledger/forms/invoice.py,sha256=Y7m5DxlNYsjBoZKWb99SFquwIW_tbVuLkJBgqSZmt1g,9675
|
|
59
59
|
django_ledger/forms/item.py,sha256=i2pMhneb27a2HyQ9I48dYeHdSd1cgsZsjWYWDjGJ5UQ,12457
|
|
60
|
-
django_ledger/forms/journal_entry.py,sha256=
|
|
60
|
+
django_ledger/forms/journal_entry.py,sha256=JQj7QTj6_fhpeGI2eXeitsSZWvm49h8uvlx52Ir4AjM,3227
|
|
61
61
|
django_ledger/forms/ledger.py,sha256=jz2Ipdj-6hDBGeU4X0rodFT0yPQcFwTQ0EeUqDpKC6g,1739
|
|
62
62
|
django_ledger/forms/purchase_order.py,sha256=XIi7v6ZaBd9nYgcWLmgNKm9751XBXpbwmUtlpPJklHI,7479
|
|
63
|
-
django_ledger/forms/transactions.py,sha256=
|
|
63
|
+
django_ledger/forms/transactions.py,sha256=ockQjKihNY07m9NWL9nJtHBQMzROaQQO18QZSuiFn8s,3210
|
|
64
64
|
django_ledger/forms/unit.py,sha256=rXUefjpuAmUU0vPOqu1ObO4k-bN-_Q6kOqHJ4kp_Vlg,1131
|
|
65
65
|
django_ledger/forms/utils.py,sha256=sgkwBZs15_rZ5NT7h-8Z7wi3-ItM1E1sqoVDo3NQ5Jc,513
|
|
66
66
|
django_ledger/forms/vendor.py,sha256=Nuh8MmSpz4ycMZwiVe--U9Ec6ezIsfACHDkhA2SyiZ4,2215
|
|
67
67
|
django_ledger/io/__init__.py,sha256=8m5AoBRiG2ymrX0Y4LVjq0275i7I5Sk7YRa1BTzVofI,369
|
|
68
68
|
django_ledger/io/io_context.py,sha256=xgykRoB6hVSN2q20f62j_4zbOeAHU5ZgbZaSwRaSkOU,4444
|
|
69
|
-
django_ledger/io/io_core.py,sha256=
|
|
69
|
+
django_ledger/io/io_core.py,sha256=uVNmwZVKazI_cVqm3qYe2gocACHNbDu1mknin7aV4mc,46990
|
|
70
70
|
django_ledger/io/io_generator.py,sha256=JF4plsABUkCIrtI2X-YD7o5eNghRIgLUseNcBIGOj3U,34613
|
|
71
|
-
django_ledger/io/io_library.py,sha256=
|
|
71
|
+
django_ledger/io/io_library.py,sha256=CGZABR4P80VfIube4QEryNOi01llrPq0Gh-8vVbtZDY,22496
|
|
72
72
|
django_ledger/io/io_middleware.py,sha256=vbWIBYA4V9nwoiEtB0W9pq19QIwPmaAyVJlo_1Gg2BY,20284
|
|
73
73
|
django_ledger/io/ofx.py,sha256=tsggMXfAz9rslCTUcxlandPapcHXbGqLO9Diel5z_jE,1677
|
|
74
74
|
django_ledger/io/ratios.py,sha256=dsuCv9-r73SMLv3OrxeoT5JebfRmrDsRKG_YzHggWFw,3542
|
|
@@ -76,7 +76,7 @@ django_ledger/io/roles.py,sha256=Rht4MiZ3SS1_uqNTQGt48dLHJxHYdyvw-HEaniUTXz4,204
|
|
|
76
76
|
django_ledger/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
77
|
django_ledger/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
78
78
|
django_ledger/management/commands/generate_oauth2_codes.py,sha256=H92pSOMA0VFjdCLXOqdIWql-aKU12uaAPdXgz2DB9Go,1495
|
|
79
|
-
django_ledger/migrations/0001_initial.py,sha256=
|
|
79
|
+
django_ledger/migrations/0001_initial.py,sha256=tQZKIb_KWz65pxhP6iuz4FNoQUXWZnkTgI29Tu7ckO8,85653
|
|
80
80
|
django_ledger/migrations/0002_alter_journalentrymodel_managers_and_more.py,sha256=-lH3NCGoUX2zJ3GT5VakvPx7VR7lXz4S_FkTccJQzzE,703
|
|
81
81
|
django_ledger/migrations/0003_remove_accountmodel_django_ledg_role_1bff96_idx_and_more.py,sha256=tw1ZrXynmuUfy8G_NtRJ7ojLFCSk89oDTsLpHWCst1Y,6069
|
|
82
82
|
django_ledger/migrations/0004_remove_itemmodel_depth_remove_itemmodel_numchild_and_more.py,sha256=w9-ReO6JP7bMYvBX0Ne3_0jIeLUbuVV4J7V_1lT4zR8,586
|
|
@@ -94,27 +94,28 @@ django_ledger/migrations/0015_remove_chartofaccountmodel_locked_and_more.py,sha2
|
|
|
94
94
|
django_ledger/migrations/0016_remove_accountmodel_django_ledg_coa_mod_e19964_idx_and_more.py,sha256=wpapkPycqZ9drUMlPGBs1IRy7pz6HyDgNvZBaf-E86o,1655
|
|
95
95
|
django_ledger/migrations/0017_alter_accountmodel_unique_together_and_more.py,sha256=8wFeqrVsCZFi16URzVMvZnCVankBcCmGyb8YfX85_a0,1289
|
|
96
96
|
django_ledger/migrations/0018_transactionmodel_cleared_transactionmodel_reconciled_and_more.py,sha256=HrwS6Jxs_rgKQm3OeROQi1peEPSF7HtjbYKbTX0DT14,1284
|
|
97
|
+
django_ledger/migrations/0019_alter_transactionmodel_amount_and_more.py,sha256=FFfEOrsqbL_MLYbWgwCtZNcvCepTxN2x8vS5D7NpcLQ,1367
|
|
97
98
|
django_ledger/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
98
99
|
django_ledger/models/__init__.py,sha256=OesBx4My9GnqU1xB5WXuuGLOnmzgxEJxI-WWxRxi658,807
|
|
99
100
|
django_ledger/models/accounts.py,sha256=PR0s0oJntnhFaJsiUuKY50NJWyXaAXu1WgTCso1oovI,34969
|
|
100
101
|
django_ledger/models/bank_account.py,sha256=YQSarOR3yahHYv_JIBPgz6SJE9gj079uNmNiiAjXiLY,7682
|
|
101
|
-
django_ledger/models/bill.py,sha256=
|
|
102
|
-
django_ledger/models/chart_of_accounts.py,sha256=
|
|
103
|
-
django_ledger/models/closing_entry.py,sha256=
|
|
102
|
+
django_ledger/models/bill.py,sha256=iMdON5tLOcolkm2c9XTJzXGWqqxyLZOYB2MkPd__9EY,65047
|
|
103
|
+
django_ledger/models/chart_of_accounts.py,sha256=t7E4rHToyeM2IV5JSQJBYE0FkDFG_zzuzhyUrxorT8Q,30368
|
|
104
|
+
django_ledger/models/closing_entry.py,sha256=b0EwuYFdGH1GbwWdT_rtQqHSQO8Je62BUJHQLNmeJ8w,17914
|
|
104
105
|
django_ledger/models/coa_default.py,sha256=CK4vOZ73QePciZUL93wigDXpxKamdXAKBaQR7r-G7tk,27482
|
|
105
106
|
django_ledger/models/customer.py,sha256=EeynuiYFx7ME7iCtUzvaURUnY4yRqKA-9hrSiv6Bs0Y,11806
|
|
106
107
|
django_ledger/models/data_import.py,sha256=3NHL5mrSLXSG-NDn8EK8KCJiX35Z8gRWExc4fZcQhz8,20496
|
|
107
108
|
django_ledger/models/entity.py,sha256=XXvpD-AMcNQP6k6JlHy9dAHUfIQQesvaRol9sJCBais,123770
|
|
108
109
|
django_ledger/models/estimate.py,sha256=EPkGMJwn3bkyYYeVHOfyLeWqtlJIyjF8fUc36dLz_18,58107
|
|
109
|
-
django_ledger/models/invoice.py,sha256=
|
|
110
|
+
django_ledger/models/invoice.py,sha256=me_3JunnYYQYNhaPeytK9Ts4fgwBPj6vU-w7V3xV0RM,63272
|
|
110
111
|
django_ledger/models/items.py,sha256=-l_ibAiJTu4dO7TZUdGD4sq524Ew8oIwhq_hiHVUDeY,55251
|
|
111
|
-
django_ledger/models/journal_entry.py,sha256=
|
|
112
|
-
django_ledger/models/ledger.py,sha256=
|
|
112
|
+
django_ledger/models/journal_entry.py,sha256=ULYRhqIbqyuqWMbcRv0u1hUeFnjETllmtZbkfBx06-E,66755
|
|
113
|
+
django_ledger/models/ledger.py,sha256=3C_q3xj06XtZyHDEo4BwMFHyTeMfPeRFXqodyxkG9KA,26315
|
|
113
114
|
django_ledger/models/mixins.py,sha256=hsM5XC6LzSYHqv0hg1yxia8qirm8pZGafGPNmGOrGEg,52056
|
|
114
115
|
django_ledger/models/purchase_order.py,sha256=YFbtRGO0FW4nOnKy2OAQoI6pdA-kt3IhqjpyxKxNvwg,44197
|
|
115
116
|
django_ledger/models/signals.py,sha256=3cm_8--Jz-Jb0fPgrVmm5xx_jKFARV6_A29VDjqHeIw,1563
|
|
116
|
-
django_ledger/models/transactions.py,sha256=
|
|
117
|
-
django_ledger/models/unit.py,sha256=
|
|
117
|
+
django_ledger/models/transactions.py,sha256=P8i6ngy5Ywb6E73lPxOSpkaC4hCzLo-gEvQzL64g0Es,23214
|
|
118
|
+
django_ledger/models/unit.py,sha256=QbQYXqq5KxddzkOausWVyxgtBeXkU3ebYIDnI-YH4FY,8429
|
|
118
119
|
django_ledger/models/utils.py,sha256=Weta2Cwsn4wRqvxMecIuD7aHYiiXBwUeMqpUDK4CokE,8360
|
|
119
120
|
django_ledger/models/vendor.py,sha256=74SIqtnRsEMXhjFwEHSWq5yF0vlSaytiR31Rv5mUCxw,11361
|
|
120
121
|
django_ledger/models/schemas/__init__.py,sha256=8Tvw33tVJtCvxoXje2lrs9C1bsP_iuGcVi1JqzdPUao,157
|
|
@@ -190,7 +191,7 @@ django_ledger/templates/django_ledger/account/account_detail.html,sha256=m-UTWD9
|
|
|
190
191
|
django_ledger/templates/django_ledger/account/account_list.html,sha256=0kDNrzcMgMewiBQGqjkPCUHErmOiVz6uy1FnwzclMjc,1019
|
|
191
192
|
django_ledger/templates/django_ledger/account/account_update.html,sha256=FzNFcARbhZUUTTi6Sv-PQJi7XzjLsOfrUnR7lIvIlhc,1113
|
|
192
193
|
django_ledger/templates/django_ledger/account/tags/account_txs_table.html,sha256=CNl3i5jp_7UPNV2bm60MN5w2SRGph-w_3PgzBzZpUxI,3483
|
|
193
|
-
django_ledger/templates/django_ledger/account/tags/accounts_table.html,sha256=
|
|
194
|
+
django_ledger/templates/django_ledger/account/tags/accounts_table.html,sha256=zJEUvMBre-wK563ThpoOpxSfgzhV1qn_3khLLWeiWrM,7520
|
|
194
195
|
django_ledger/templates/django_ledger/auth/login.html,sha256=UYV2rxjEn9cXBbG6Ww93k6yMPJtOo5vpX6sod61ewKs,1849
|
|
195
196
|
django_ledger/templates/django_ledger/bank_account/bank_account_create.html,sha256=zoCvV-_2aBAXCnCfHTFI18Pn7hbEcOkgtcgYOQ2IJIg,1258
|
|
196
197
|
django_ledger/templates/django_ledger/bank_account/bank_account_list.html,sha256=FuwnbPZ8J6paQw02ddSYEpKUy97SKP-00mFDPMghgJI,701
|
|
@@ -198,7 +199,7 @@ django_ledger/templates/django_ledger/bank_account/bank_account_update.html,sha2
|
|
|
198
199
|
django_ledger/templates/django_ledger/bank_account/tags/bank_accounts_table.html,sha256=dCqqUmQ49jRvllj0A8DzQnD6L38DaD8SQ2FAchUOky8,3476
|
|
199
200
|
django_ledger/templates/django_ledger/bills/bill_create.html,sha256=fUskaN-ORsj_WhIYxr1cUvgr4j9b7rgC8nBR9d2TI0Y,2106
|
|
200
201
|
django_ledger/templates/django_ledger/bills/bill_delete.html,sha256=IHqXETgrbmMWnrymJv7iAAcDcBvRV9tFgoqHWAUKlQE,1606
|
|
201
|
-
django_ledger/templates/django_ledger/bills/bill_detail.html,sha256=
|
|
202
|
+
django_ledger/templates/django_ledger/bills/bill_detail.html,sha256=FvssQo6Y_3jQXxieCFaXySSGch4IbUDo5ONUjFB8HFw,11760
|
|
202
203
|
django_ledger/templates/django_ledger/bills/bill_list.html,sha256=-KAmz0bghVZ81DMzFbqaeu_93XmuuMEI6REtYc_P0PE,6336
|
|
203
204
|
django_ledger/templates/django_ledger/bills/bill_update.html,sha256=Sluzm-Dgcr1S9QgT_ermkT-P6UyQ1AR7meL33kSa3RM,8638
|
|
204
205
|
django_ledger/templates/django_ledger/bills/bill_void.html,sha256=iQt9Nq1DL-LovkrMrvUwI87LO8jXZ3R0dL7YKPoZKDM,1354
|
|
@@ -285,21 +286,21 @@ django_ledger/templates/django_ledger/inventory/tags/inventory_item_table.html,s
|
|
|
285
286
|
django_ledger/templates/django_ledger/inventory/tags/inventory_table.html,sha256=TgmdV6CFmePT4e6ClvDyETKrRKToz0p52dEQC7r-cKc,945
|
|
286
287
|
django_ledger/templates/django_ledger/invoice/invoice_create.html,sha256=p6I2SF-tW8Gq6vez_5jG1phudOjVqia6F-TNrTMM4_I,2125
|
|
287
288
|
django_ledger/templates/django_ledger/invoice/invoice_delete.html,sha256=qkhsW6lPiA4BxbWzHgncN8A6p8EU7MjjFyXZnQa1tF0,1482
|
|
288
|
-
django_ledger/templates/django_ledger/invoice/invoice_detail.html,sha256=
|
|
289
|
+
django_ledger/templates/django_ledger/invoice/invoice_detail.html,sha256=Z2iNxBY5hEJ6qz7pkqxakPFoYlCchv_h4N7cBjWv8sU,10690
|
|
289
290
|
django_ledger/templates/django_ledger/invoice/invoice_list.html,sha256=b5ysuDP-avrls4OSarSusySAKDFT1sM-jkQgWPPxpNw,5888
|
|
290
291
|
django_ledger/templates/django_ledger/invoice/invoice_update.html,sha256=cVuth_WbELKi3RWDrIKLcfDAe0RH3OV8N5AireHK298,8640
|
|
291
292
|
django_ledger/templates/django_ledger/invoice/includes/card_invoice.html,sha256=MwHTCGqTWTyzIICuyfR173tIu9k8I0IdYHtGsKtZAs8,12749
|
|
292
293
|
django_ledger/templates/django_ledger/invoice/tags/invoice_item_formset.html,sha256=ba4J_WINrpYmCaHAyKWDKwZ6ETQXI3NkQ_AV6Y5-2uM,3413
|
|
293
294
|
django_ledger/templates/django_ledger/invoice/tags/invoice_table.html,sha256=fO1EKOAg26LxIztnfbT41I8N_wyIga-tGsCQ9tBoS5A,2596
|
|
294
|
-
django_ledger/templates/django_ledger/journal_entry/je_create.html,sha256=
|
|
295
|
-
django_ledger/templates/django_ledger/journal_entry/je_delete.html,sha256=
|
|
296
|
-
django_ledger/templates/django_ledger/journal_entry/je_detail.html,sha256=
|
|
297
|
-
django_ledger/templates/django_ledger/journal_entry/je_detail_txs.html,sha256=
|
|
298
|
-
django_ledger/templates/django_ledger/journal_entry/je_list.html,sha256=
|
|
299
|
-
django_ledger/templates/django_ledger/journal_entry/je_update.html,sha256=
|
|
295
|
+
django_ledger/templates/django_ledger/journal_entry/je_create.html,sha256=VHMBnJ_ovi9ovuUyBqJr5-wfFRP9-sHnnzN6t1Cue1w,930
|
|
296
|
+
django_ledger/templates/django_ledger/journal_entry/je_delete.html,sha256=WcVhR16oCsL8eOEyL3g3NPLgkvl2CdBpOkHo5-N5zz4,949
|
|
297
|
+
django_ledger/templates/django_ledger/journal_entry/je_detail.html,sha256=Lr9IdchYJ5rtJhJSXKzeUX3WQrR6yQPj1ao8KTkT6t0,1999
|
|
298
|
+
django_ledger/templates/django_ledger/journal_entry/je_detail_txs.html,sha256=QocIKC-XhtoKtg7banpDLKHSKnZpDCSXZoyXs7qfPkI,4584
|
|
299
|
+
django_ledger/templates/django_ledger/journal_entry/je_list.html,sha256=blJNSwcrjxvi21mVyZqNZU25jRsprN1N95iurFqdI10,7579
|
|
300
|
+
django_ledger/templates/django_ledger/journal_entry/je_update.html,sha256=XXxhA31Ltivxkqqa40z9IWh1JeLjWk9NNrp32t7Ee7U,712
|
|
300
301
|
django_ledger/templates/django_ledger/journal_entry/includes/card_journal_entry.html,sha256=PU-tOMBuQcwxP73uXyNePaCF8aY0KutWuuAdYUWJofw,2547
|
|
301
|
-
django_ledger/templates/django_ledger/journal_entry/tags/je_table.html,sha256=
|
|
302
|
-
django_ledger/templates/django_ledger/journal_entry/tags/je_txs_table.html,sha256=
|
|
302
|
+
django_ledger/templates/django_ledger/journal_entry/tags/je_table.html,sha256=IQyHXHA3goBjdGM0Hzih46Z82JVhMGPpCRgMVCNGmaA,5747
|
|
303
|
+
django_ledger/templates/django_ledger/journal_entry/tags/je_txs_table.html,sha256=6gqASIlyKmeTgV-0Lp_DVB7SGLcL1y_U8cpR4sJFLyU,3366
|
|
303
304
|
django_ledger/templates/django_ledger/layouts/base.html,sha256=SaqRxA4MvJZTOkM94gJvJVAY5KF0zwGFcQChLHmaZFM,1773
|
|
304
305
|
django_ledger/templates/django_ledger/layouts/content_layout_1.html,sha256=U-32AnGwhIOGHtSTlSst580OwrUBIoDIt93_xZRtOTw,936
|
|
305
306
|
django_ledger/templates/django_ledger/layouts/content_layout_2.html,sha256=gqXgaGj3ByTI7EziEw0Wo-XBPZEB82selzrXDuCNz_Y,355
|
|
@@ -307,7 +308,7 @@ django_ledger/templates/django_ledger/ledger/ledger_create.html,sha256=eyfmLniuA
|
|
|
307
308
|
django_ledger/templates/django_ledger/ledger/ledger_delete.html,sha256=StFckXTo5OSGYzw9XaVvwjnm4aIdJ5aGZIwbxwsexj4,1073
|
|
308
309
|
django_ledger/templates/django_ledger/ledger/ledger_list.html,sha256=AI-Nf9r_PtHmMtfBa17RX7N2lI--H_1HH8jLzP7zWho,8834
|
|
309
310
|
django_ledger/templates/django_ledger/ledger/ledger_update.html,sha256=7uim15tUJQsbo61f_nn3uwqztjK8rJE9q6oqBTccLoY,921
|
|
310
|
-
django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html,sha256=
|
|
311
|
+
django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html,sha256=ah2iLvp-dkLXlxMvu9UHkGdDKmpDHkHRa37Y64-0wOA,8525
|
|
311
312
|
django_ledger/templates/django_ledger/product/product_create.html,sha256=IE7g53HKPajeQIotebATuX6TH1QAao2ApWTkRAOgenQ,1431
|
|
312
313
|
django_ledger/templates/django_ledger/product/product_delete.html,sha256=ufGF2LkroxYjdiWW7Am-jkPntu6zFB_uYSqCS7s3qE0,1147
|
|
313
314
|
django_ledger/templates/django_ledger/product/product_list.html,sha256=3ScXpeZ8ALK3EuHYkT-eFyaaAjV-zfykrjiNIiRbUFg,855
|
|
@@ -327,6 +328,7 @@ django_ledger/templates/django_ledger/service/service_delete.html,sha256=9h8fR5c
|
|
|
327
328
|
django_ledger/templates/django_ledger/service/service_list.html,sha256=NO6f4zmOnAmjrHd-lsYDksKJtVuoeXYC6s2g1MUibOs,854
|
|
328
329
|
django_ledger/templates/django_ledger/service/service_update.html,sha256=IceH87Na-xxg1p-V5VdR93aHO0_VaBDXkx1U5ev8qcs,1440
|
|
329
330
|
django_ledger/templates/django_ledger/service/tags/services_table.html,sha256=pP4K0KvFfmZ9BESrMcNnTv-faFovCHYBhhn_PcXAurM,2434
|
|
331
|
+
django_ledger/templates/django_ledger/transactions/tags/txs_table.html,sha256=6gqASIlyKmeTgV-0Lp_DVB7SGLcL1y_U8cpR4sJFLyU,3366
|
|
330
332
|
django_ledger/templates/django_ledger/unit/unit_create.html,sha256=7dmsu0TUxsexJyxKCz3cICddN0DGGjQOTM89ddQm9r8,1194
|
|
331
333
|
django_ledger/templates/django_ledger/unit/unit_detail.html,sha256=wttq1WzsNxa5ZIrblpPmw5zl2xuyOjSCyxtqGHJimUA,1709
|
|
332
334
|
django_ledger/templates/django_ledger/unit/unit_list.html,sha256=n_XWrs2zvSafGzJnFzgwMTaMFfMsY-MRld8JtxIJ1Ug,1973
|
|
@@ -342,7 +344,7 @@ django_ledger/templates/django_ledger/vendor/vendor_update.html,sha256=4kBUlGgrg
|
|
|
342
344
|
django_ledger/templates/django_ledger/vendor/includes/card_vendor.html,sha256=oCXyuqyF7CnJnDQdK0G0jdYLqtPWYSzwlv8oddyGJg8,1290
|
|
343
345
|
django_ledger/templates/django_ledger/vendor/tags/vendor_table.html,sha256=YC-3T5x4oua3VBg1q690CRzoogKL8qFgQRp5jTKLFgk,3400
|
|
344
346
|
django_ledger/templatetags/__init__.py,sha256=N7iaeMO5xTU-q7RXTVYUy-fu8nMZbiIJ9QEtDCjsTdI,205
|
|
345
|
-
django_ledger/templatetags/django_ledger.py,sha256=
|
|
347
|
+
django_ledger/templatetags/django_ledger.py,sha256=fpl_GeYyHzoFNUCCRM3EanKjufuS9SZei8OnO4VZETk,31260
|
|
346
348
|
django_ledger/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
347
349
|
django_ledger/tests/base.py,sha256=ddsMTzv0-17JD1QRobpTN2CVKL1v0lNplo78JaB36oQ,10842
|
|
348
350
|
django_ledger/tests/test_accounts.py,sha256=bASqtQjp6twya8JrNkBXVMsOnK8E8Hl7B0J6RfDJGB0,6345
|
|
@@ -359,7 +361,7 @@ django_ledger/tests/bdd/features/steps/README.py,sha256=4HMdVjjflcKQBf0LeZbc5i3T
|
|
|
359
361
|
django_ledger/tests/test_io_ofx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
360
362
|
django_ledger/tests/test_io_ofx/tests.py,sha256=v-2xY410a6Tr2TwG5oqc_UkFzXBIAFxWYasZkeiXAfE,1993
|
|
361
363
|
django_ledger/urls/__init__.py,sha256=98Dk0iQPeK2chSTY8H-7yuk9OycoUoZJdbpuR0Wv2rw,1994
|
|
362
|
-
django_ledger/urls/account.py,sha256=
|
|
364
|
+
django_ledger/urls/account.py,sha256=OhNj8kBGdrp-1mottTwCJ45gC26FEQ9KWIZaom9D6jg,2448
|
|
363
365
|
django_ledger/urls/auth.py,sha256=8dY2h6PQkMayUL81guu9JCxm--Tj0rglvvxg9Qh03aY,230
|
|
364
366
|
django_ledger/urls/bank_account.py,sha256=-dJsrnwej8H96Gc8xltLf3NwUxKk_xG0Mq4mxhe8Cqs,887
|
|
365
367
|
django_ledger/urls/bill.py,sha256=wvdRqSgnHp1CLdX6Sudu1IiIx4M1Pe8OupanA-9a-nI,2890
|
|
@@ -383,7 +385,7 @@ django_ledger/urls/transactions.py,sha256=e_x_z5qbkR6i7o8OWWdXshDiY_WVmu9WVhR9A9
|
|
|
383
385
|
django_ledger/urls/unit.py,sha256=QEVKrgcw2dqMaaXsUHfqYecTa5-iaPlS9smrYJ1QsgM,1506
|
|
384
386
|
django_ledger/urls/vendor.py,sha256=ODHpAwe5lomluj8ZCqbMtugTeeRsv0Yo9SqkZEmfYaw,393
|
|
385
387
|
django_ledger/views/__init__.py,sha256=fY9eBoPkx50p-kSalskd4QW1tHm3e64WpwOFuJzn4Xo,1178
|
|
386
|
-
django_ledger/views/account.py,sha256=
|
|
388
|
+
django_ledger/views/account.py,sha256=mxFmBu9RsFfd_lQK1JJevmAVHMEW4SBeAJ0prZNK57E,9083
|
|
387
389
|
django_ledger/views/auth.py,sha256=I8Mv_aAfW-8Z5VYPOX7P3IUO4Fp5jJPkSuu1ZSVpWtI,777
|
|
388
390
|
django_ledger/views/bank_account.py,sha256=9eeo2Y71PGt0yTOK1qIojV7024AZIQybynWAsw7Nd9Q,5024
|
|
389
391
|
django_ledger/views/bill.py,sha256=5tNb3pyh8GQM4hjV0FXqCXrEQF2LwpEWLkOkpknEdjA,22239
|
|
@@ -400,16 +402,16 @@ django_ledger/views/home.py,sha256=wfcwDaVnARxoI4HTIIl9QXdRhUkJTOBxQSlpdz5cto0,1
|
|
|
400
402
|
django_ledger/views/inventory.py,sha256=tflgHZiGRTMBySe00k6dWc6AwNC1xZxGHdt60IsQFL4,4985
|
|
401
403
|
django_ledger/views/invoice.py,sha256=BCCvQCtB1p7WBRQZeJakUhDJy4Fr5jvEYIDgLnZDh34,20434
|
|
402
404
|
django_ledger/views/item.py,sha256=WvwvNWe4Wu9tZWbm75iciNvaSxh9b8h_P_FHt4jsKXs,20604
|
|
403
|
-
django_ledger/views/journal_entry.py,sha256=
|
|
404
|
-
django_ledger/views/ledger.py,sha256=
|
|
405
|
-
django_ledger/views/mixins.py,sha256=
|
|
405
|
+
django_ledger/views/journal_entry.py,sha256=7qWagPqk8Nc8E9ylThYfCnvB4o8dsW1GQApMLG3Jb_8,11277
|
|
406
|
+
django_ledger/views/ledger.py,sha256=_-y8_Na5JyLYzkYIGrOJzAMWC3Hk8hzsikqXsxf8MkM,12178
|
|
407
|
+
django_ledger/views/mixins.py,sha256=xUGguHo9xVLe9XaBZ3dy6PFFDScM_N3OqgYVsa6xx9s,23015
|
|
406
408
|
django_ledger/views/purchase_order.py,sha256=CyftKrQWV1SBz7W0CvZOfZ81OPEiBHPD7b9zt1k6CFY,21088
|
|
407
409
|
django_ledger/views/transactions.py,sha256=3ijtJzdLPFkqG7OYpe-7N4QVjCyR2yl5ht_9RyfquBA,212
|
|
408
410
|
django_ledger/views/unit.py,sha256=MF9tEeWCOt5XrtK-UFmHFisyBM-h3WzgL6v8IX2Ynbk,10446
|
|
409
411
|
django_ledger/views/vendor.py,sha256=qlkd3gsjZ6RYuPrRYDVZp-Im65calM9ed3KxsaT4cxw,3467
|
|
410
|
-
django_ledger-0.7.
|
|
411
|
-
django_ledger-0.7.
|
|
412
|
-
django_ledger-0.7.
|
|
413
|
-
django_ledger-0.7.
|
|
414
|
-
django_ledger-0.7.
|
|
415
|
-
django_ledger-0.7.
|
|
412
|
+
django_ledger-0.7.4.1.dist-info/AUTHORS.md,sha256=ShPwf-qniJkbjRzX5_lqhmgoLMEYMSHSwKPXHZtWmyk,824
|
|
413
|
+
django_ledger-0.7.4.1.dist-info/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
|
|
414
|
+
django_ledger-0.7.4.1.dist-info/METADATA,sha256=QLu4lowTwEKpCYi2avzuM8hNAVWDl9bD9A5pVZ52_cw,8773
|
|
415
|
+
django_ledger-0.7.4.1.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
|
416
|
+
django_ledger-0.7.4.1.dist-info/top_level.txt,sha256=fmHWehb2HfoDncQ3eQtYzeYc-gJMywf6q_ZpKBjwzoQ,38
|
|
417
|
+
django_ledger-0.7.4.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|