django-ledger 0.8.2.1__py3-none-any.whl → 0.8.2.3__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/forms/data_import.py +104 -111
- django_ledger/io/roles.py +238 -303
- django_ledger/migrations/0027_alter_accountmodel_role_alter_receiptmodel_amount_and_more.py +159 -0
- django_ledger/models/__init__.py +1 -0
- django_ledger/models/chart_of_accounts.py +32 -90
- django_ledger/models/coa_default.py +1 -0
- django_ledger/models/customer.py +17 -26
- django_ledger/models/data_import.py +562 -182
- django_ledger/models/receipt.py +92 -123
- django_ledger/templates/django_ledger/data_import/data_import_job_txs.html +6 -0
- django_ledger/templates/django_ledger/data_import/tags/data_import_job_txs_imported.html +68 -36
- django_ledger/templates/django_ledger/data_import/tags/data_import_job_txs_table.html +8 -10
- django_ledger/templates/django_ledger/receipt/receipt_detail.html +4 -2
- django_ledger/urls/data_import.py +3 -0
- django_ledger/views/data_import.py +47 -27
- {django_ledger-0.8.2.1.dist-info → django_ledger-0.8.2.3.dist-info}/METADATA +1 -1
- {django_ledger-0.8.2.1.dist-info → django_ledger-0.8.2.3.dist-info}/RECORD +22 -21
- {django_ledger-0.8.2.1.dist-info → django_ledger-0.8.2.3.dist-info}/WHEEL +0 -0
- {django_ledger-0.8.2.1.dist-info → django_ledger-0.8.2.3.dist-info}/licenses/AUTHORS.md +0 -0
- {django_ledger-0.8.2.1.dist-info → django_ledger-0.8.2.3.dist-info}/licenses/LICENSE +0 -0
- {django_ledger-0.8.2.1.dist-info → django_ledger-0.8.2.3.dist-info}/top_level.txt +0 -0
|
@@ -55,9 +55,7 @@ class ImportJobModelCreateView(ImportJobModelViewBaseView, FormView):
|
|
|
55
55
|
form_class = ImportJobModelCreateForm
|
|
56
56
|
|
|
57
57
|
def get_form(self, form_class=None, **kwargs):
|
|
58
|
-
return self.form_class(
|
|
59
|
-
entity_model=self.get_authorized_entity_instance(), **self.get_form_kwargs()
|
|
60
|
-
)
|
|
58
|
+
return self.form_class(entity_model=self.get_authorized_entity_instance(), **self.get_form_kwargs())
|
|
61
59
|
|
|
62
60
|
def get_success_url(self):
|
|
63
61
|
return reverse(
|
|
@@ -74,9 +72,7 @@ class ImportJobModelCreateView(ImportJobModelViewBaseView, FormView):
|
|
|
74
72
|
txs_to_stage = ofx_manager.get_account_txs()
|
|
75
73
|
staged_txs_model_list = [
|
|
76
74
|
StagedTransactionModel(
|
|
77
|
-
date_posted=make_aware(
|
|
78
|
-
value=datetime.combine(date=tx.dtposted.date(), time=time.min)
|
|
79
|
-
),
|
|
75
|
+
date_posted=make_aware(value=datetime.combine(date=tx.dtposted.date(), time=time.min)),
|
|
80
76
|
fit_id=tx.fitid,
|
|
81
77
|
amount=tx.trnamt,
|
|
82
78
|
import_job=import_job,
|
|
@@ -166,21 +162,19 @@ class DataImportJobDetailView(ImportJobModelViewBaseView, DetailView):
|
|
|
166
162
|
'import_job_model': self.get_object(),
|
|
167
163
|
}
|
|
168
164
|
|
|
169
|
-
def get_context_data(
|
|
170
|
-
self, txs_formset: Optional[StagedTransactionModelFormSet] = None, **kwargs
|
|
171
|
-
):
|
|
165
|
+
def get_context_data(self, txs_formset: Optional[StagedTransactionModelFormSet] = None, **kwargs):
|
|
172
166
|
context = super().get_context_data(**kwargs)
|
|
173
|
-
|
|
167
|
+
import_job_model: ImportJobModel = self.object
|
|
174
168
|
|
|
175
|
-
context['page_title'] =
|
|
169
|
+
context['page_title'] = import_job_model.description
|
|
176
170
|
context['header_title'] = self.PAGE_TITLE
|
|
177
|
-
context['header_subtitle'] =
|
|
171
|
+
context['header_subtitle'] = import_job_model.description
|
|
178
172
|
context['header_subtitle_icon'] = 'tabler:table-import'
|
|
179
173
|
|
|
180
174
|
staged_txs_formset = (
|
|
181
175
|
StagedTransactionModelFormSet(
|
|
182
176
|
entity_model=self.get_authorized_entity_instance(),
|
|
183
|
-
import_job_model=
|
|
177
|
+
import_job_model=import_job_model,
|
|
184
178
|
)
|
|
185
179
|
if not txs_formset
|
|
186
180
|
else txs_formset
|
|
@@ -195,35 +189,42 @@ class DataImportJobDetailView(ImportJobModelViewBaseView, DetailView):
|
|
|
195
189
|
import_job_model: ImportJobModel = self.object
|
|
196
190
|
|
|
197
191
|
txs_formset = StagedTransactionModelFormSet(
|
|
198
|
-
entity_model=self.
|
|
192
|
+
entity_model=self.AUTHORIZED_ENTITY_MODEL,
|
|
199
193
|
import_job_model=import_job_model,
|
|
200
194
|
data=request.POST,
|
|
201
195
|
)
|
|
202
196
|
|
|
203
197
|
if txs_formset.has_changed():
|
|
198
|
+
for tx_form in txs_formset:
|
|
199
|
+
if any(
|
|
200
|
+
[
|
|
201
|
+
'account_model' in tx_form.changed_data,
|
|
202
|
+
'tx_split' in tx_form.changed_data,
|
|
203
|
+
]
|
|
204
|
+
):
|
|
205
|
+
staged_transaction_model: StagedTransactionModel = tx_form.instance
|
|
206
|
+
staged_transaction_model.activity = None
|
|
207
|
+
|
|
204
208
|
if txs_formset.is_valid():
|
|
205
209
|
txs_formset.save()
|
|
206
210
|
for tx_form in txs_formset:
|
|
207
211
|
if tx_form.has_changed():
|
|
208
|
-
staged_transaction_model: StagedTransactionModel =
|
|
209
|
-
|
|
210
|
-
)
|
|
212
|
+
staged_transaction_model: StagedTransactionModel = tx_form.instance
|
|
213
|
+
|
|
211
214
|
is_split = tx_form.cleaned_data['tx_split'] is True
|
|
215
|
+
is_import = tx_form.cleaned_data['tx_import'] is True
|
|
216
|
+
is_bundled = tx_form.cleaned_data['bundle_split'] is True
|
|
217
|
+
|
|
212
218
|
if is_split:
|
|
213
219
|
staged_transaction_model.add_split()
|
|
214
|
-
|
|
215
|
-
is_import = tx_form.cleaned_data['tx_import']
|
|
216
|
-
if is_import:
|
|
217
|
-
# all entries in split will be going so the same journal entry... (same unit...)
|
|
218
|
-
is_bundled = tx_form.cleaned_data['bundle_split']
|
|
220
|
+
elif is_import:
|
|
219
221
|
if staged_transaction_model.can_migrate_receipt():
|
|
220
222
|
staged_transaction_model.migrate_receipt(
|
|
221
|
-
receipt_date=staged_transaction_model.date_posted
|
|
223
|
+
receipt_date=staged_transaction_model.date_posted,
|
|
224
|
+
split_amount=not is_bundled,
|
|
222
225
|
)
|
|
223
226
|
else:
|
|
224
|
-
staged_transaction_model.migrate_transactions(
|
|
225
|
-
split_txs=not is_bundled
|
|
226
|
-
)
|
|
227
|
+
staged_transaction_model.migrate_transactions(split_txs=not is_bundled)
|
|
227
228
|
else:
|
|
228
229
|
context = self.get_context_data(txs_formset=txs_formset, **kwargs)
|
|
229
230
|
return self.render_to_response(context)
|
|
@@ -236,7 +237,7 @@ class DataImportJobDetailView(ImportJobModelViewBaseView, DetailView):
|
|
|
236
237
|
)
|
|
237
238
|
|
|
238
239
|
context = self.get_context_data(**kwargs)
|
|
239
|
-
return self.render_to_response(context)
|
|
240
|
+
return self.render_to_response(context=context)
|
|
240
241
|
|
|
241
242
|
|
|
242
243
|
class StagedTransactionUndoView(ImportJobModelViewBaseView, View):
|
|
@@ -268,3 +269,22 @@ class StagedTransactionUndoView(ImportJobModelViewBaseView, View):
|
|
|
268
269
|
kwargs={'entity_slug': entity_slug, 'job_pk': job_pk},
|
|
269
270
|
)
|
|
270
271
|
)
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
class ImportJobModelResetView(ImportJobModelViewBaseView, DetailView):
|
|
275
|
+
pk_url_kwarg = 'job_pk'
|
|
276
|
+
http_method_names = ['post']
|
|
277
|
+
|
|
278
|
+
def post(self, request, **kwargs):
|
|
279
|
+
import_job_model: ImportJobModel = self.get_object()
|
|
280
|
+
imported_staged_txs = import_job_model.stagedtransactionmodel_set.all()
|
|
281
|
+
for staged_tx in imported_staged_txs:
|
|
282
|
+
staged_tx.undo_import(raise_exception=False)
|
|
283
|
+
if staged_tx.is_children():
|
|
284
|
+
staged_tx.delete()
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
return redirect(
|
|
288
|
+
to=import_job_model.get_data_import_url(),
|
|
289
|
+
permanent=False,
|
|
290
|
+
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: django-ledger
|
|
3
|
-
Version: 0.8.2.
|
|
3
|
+
Version: 0.8.2.3
|
|
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>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
django_ledger/__init__.py,sha256=
|
|
1
|
+
django_ledger/__init__.py,sha256=ZL-fuSwWwUj6jcETC_xzBKG2xCheCQcy4KfU6QD3v-U,382
|
|
2
2
|
django_ledger/apps.py,sha256=H-zEWUjKGakgSDSZmLIoXChZ2h6e0dth0ZO5SpoT-8U,163
|
|
3
3
|
django_ledger/context.py,sha256=OBNHHm6qlt3fBc1_EiOcbzwafsqJBXtdZY5ubW_gga0,301
|
|
4
4
|
django_ledger/exceptions.py,sha256=rML8sQQ0Hq-DYMLZ76dfw2RYSAsXWUoyHuyC_yP9o1o,491
|
|
@@ -18,7 +18,7 @@ django_ledger/forms/bill.py,sha256=u5zJWWq4huEsfqukHCCnlGEcUsArOQmrKyBcRtsSWCU,1
|
|
|
18
18
|
django_ledger/forms/chart_of_accounts.py,sha256=wymLQ8iLNPU_LgS79BOdMUapuLqoTvgqVdAyL1Pw0Ro,2414
|
|
19
19
|
django_ledger/forms/closing_entry.py,sha256=kJQtVqira0rpYvlmMlGAaV5L3Wz3XNXSgrcVfZ2VyLM,1948
|
|
20
20
|
django_ledger/forms/customer.py,sha256=xK1tlA1yYvZM2TWeSumcHOfmw0DiiIzgypOoXDK5fF4,2707
|
|
21
|
-
django_ledger/forms/data_import.py,sha256=
|
|
21
|
+
django_ledger/forms/data_import.py,sha256=4phvkT09Gl9xT6FAj3zdW8w1yvxgjbS3Ua6Eqzqrx0E,12390
|
|
22
22
|
django_ledger/forms/entity.py,sha256=b0QirmsFSnaM8YWDO4V6GQXfFgR_MLmdq27I2q2sGQ0,6880
|
|
23
23
|
django_ledger/forms/estimate.py,sha256=oGx4NbIkySA3a9r4bTNCz7t2swsTQgxuOSOdXIrXcZo,5064
|
|
24
24
|
django_ledger/forms/feedback.py,sha256=WUT-kI4uT6q5aqEYaDYwyIFfhXpmtwMv6qf9BFSYsDo,1850
|
|
@@ -39,7 +39,7 @@ django_ledger/io/io_library.py,sha256=GgeVferuSJTO2aVdMAcSBK91ip9vttAS5J9AVCY1_m
|
|
|
39
39
|
django_ledger/io/io_middleware.py,sha256=vbWIBYA4V9nwoiEtB0W9pq19QIwPmaAyVJlo_1Gg2BY,20284
|
|
40
40
|
django_ledger/io/ofx.py,sha256=jx8xUuBK0O6Yj8uJdR7-Rgc1wsQ4bbkb8z9yi-n-nus,3415
|
|
41
41
|
django_ledger/io/ratios.py,sha256=dsuCv9-r73SMLv3OrxeoT5JebfRmrDsRKG_YzHggWFw,3542
|
|
42
|
-
django_ledger/io/roles.py,sha256=
|
|
42
|
+
django_ledger/io/roles.py,sha256=yYF5eZc1SW2w27cbG-BM6Vn5mbHbn-_6qRRMuRUZrHA,21288
|
|
43
43
|
django_ledger/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
44
|
django_ledger/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
45
|
django_ledger/management/commands/generate_oauth2_codes.py,sha256=H92pSOMA0VFjdCLXOqdIWql-aKU12uaAPdXgz2DB9Go,1495
|
|
@@ -69,16 +69,17 @@ django_ledger/migrations/0023_customermodel_customer_code_customermodel_picture_
|
|
|
69
69
|
django_ledger/migrations/0024_billmodel_entity_model_invoicemodel_entity_model.py,sha256=Fq2HiDJGpK7_dXq94INOs63psxf_q29vYZRVOr3qFRs,839
|
|
70
70
|
django_ledger/migrations/0025_alter_billmodel_cash_account_and_more.py,sha256=8pCdTAEEUiLWQm9MbrG4jda2BZkaXlKHQQ_JudpE5zg,3318
|
|
71
71
|
django_ledger/migrations/0026_stagedtransactionmodel_customer_model_and_more.py,sha256=qv2PFWhXgAHWGptb8Xgoq0O4TsGqJelnI0-BRSJqZBE,4470
|
|
72
|
+
django_ledger/migrations/0027_alter_accountmodel_role_alter_receiptmodel_amount_and_more.py,sha256=2lOHxOP6IvizjTwukN4GB0GWrROmDv_mdRM3wf6IXZo,7391
|
|
72
73
|
django_ledger/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
|
-
django_ledger/models/__init__.py,sha256=
|
|
74
|
+
django_ledger/models/__init__.py,sha256=AJTkUumUJzwg5RnbtuHikD7dqX4KaIYj7B8dZYtRz7E,852
|
|
74
75
|
django_ledger/models/accounts.py,sha256=Y0EuVy1xCELOLhIMXnku6VlWFC33JctK7NsnJ-L62QM,38924
|
|
75
76
|
django_ledger/models/bank_account.py,sha256=P-62wjQ94EneCseewDV2tyRt0ghlaEh1jFIowWJdHCU,8942
|
|
76
77
|
django_ledger/models/bill.py,sha256=a15MHAl5HSu536BsWwbcYnGXL8PGo14ToncVNktME2s,64469
|
|
77
|
-
django_ledger/models/chart_of_accounts.py,sha256=
|
|
78
|
+
django_ledger/models/chart_of_accounts.py,sha256=g7NWRCSoj4YFuOPBGUqgBVekwCU7xPOYhISj699IUvY,31843
|
|
78
79
|
django_ledger/models/closing_entry.py,sha256=zxoZOC2ymbrwyPOGPsKXXBwHDGegAtTnqDye0Y-mVAo,20625
|
|
79
|
-
django_ledger/models/coa_default.py,sha256=
|
|
80
|
-
django_ledger/models/customer.py,sha256=
|
|
81
|
-
django_ledger/models/data_import.py,sha256=
|
|
80
|
+
django_ledger/models/coa_default.py,sha256=L3fHc-HvYo_gTvCWv5oZl-rWnH9ZPuloK-bw3_cICo0,27614
|
|
81
|
+
django_ledger/models/customer.py,sha256=JDlCII2r4Ebj08tYc2DfRVBWRb68Nw61ZRDGIEAUjvk,13375
|
|
82
|
+
django_ledger/models/data_import.py,sha256=0vB8n9JwwlGCJ5lTsf14LGCru0RDdxFqQX4MPSmxXtY,79393
|
|
82
83
|
django_ledger/models/deprecations.py,sha256=49sLBeVhHMYSf3F3VPCE6_5iNZH1xmElWZsgGIGUErs,2275
|
|
83
84
|
django_ledger/models/entity.py,sha256=SN73ceuj3kNcfWCrLRZVoMUePGBl6j4SABkwr9OZg_Y,122092
|
|
84
85
|
django_ledger/models/estimate.py,sha256=0DmDs7U5WqaQM9xciuXKR29pGHaLT7z_QmlNvvzUy_0,59406
|
|
@@ -88,7 +89,7 @@ django_ledger/models/journal_entry.py,sha256=X3wRhYqOmDGcRZj4WYGCNDQhBBZ1hp5fnCc
|
|
|
88
89
|
django_ledger/models/ledger.py,sha256=hT5u9IHJy5vun9_bzcC5FKN8ocP0OGdR4RDDe3icgzo,29400
|
|
89
90
|
django_ledger/models/mixins.py,sha256=v5m7MwUcsndLctbTrrof-RSlMyc5tcQqRhcmPjJbOk4,54287
|
|
90
91
|
django_ledger/models/purchase_order.py,sha256=X5ZIfwTAMWUbqL79nQCWWltlOiKSEFGocfaWHK3i154,45128
|
|
91
|
-
django_ledger/models/receipt.py,sha256=
|
|
92
|
+
django_ledger/models/receipt.py,sha256=q5yT5v2c55sPyvIpweHoR6LY5hm7PXlybkAilSobWUQ,37352
|
|
92
93
|
django_ledger/models/signals.py,sha256=3cm_8--Jz-Jb0fPgrVmm5xx_jKFARV6_A29VDjqHeIw,1563
|
|
93
94
|
django_ledger/models/transactions.py,sha256=TmHqTVaPx3d0Flaab_cUbKfa7a1hEpkgbsdV6YZlyVc,26431
|
|
94
95
|
django_ledger/models/unit.py,sha256=iP7gMLCPV82uxsDIWa-BhdgLtm8FwGbQ_kOCSC-tJJo,10227
|
|
@@ -211,13 +212,13 @@ django_ledger/templates/django_ledger/customer/customer_update.html,sha256=z1rzw
|
|
|
211
212
|
django_ledger/templates/django_ledger/customer/includes/card_customer.html,sha256=z_R_NtbYScvrcuqF-uZggTuPasVS-RXN-4ZHWUVaFxQ,1306
|
|
212
213
|
django_ledger/templates/django_ledger/customer/tags/customer_table.html,sha256=HLRq8mtY0Iu5kXp4aatPtPB8DZTx1IZr2PWECnMu2s4,3982
|
|
213
214
|
django_ledger/templates/django_ledger/data_import/data_import_job_list.html,sha256=tFb1nX9Ag6g6RhIISFoqC6J7pjKQTOasEUQ5YLtA3SE,592
|
|
214
|
-
django_ledger/templates/django_ledger/data_import/data_import_job_txs.html,sha256=
|
|
215
|
+
django_ledger/templates/django_ledger/data_import/data_import_job_txs.html,sha256=sZUynnQaimmuFHrKsnQD7m42DNHGFWa5K9JdqC87ytg,1251
|
|
215
216
|
django_ledger/templates/django_ledger/data_import/import_job_create.html,sha256=RpCtH7J2lGujC3kTrYDzWf3hw8Z-0G6LjltTbtRK0JY,3205
|
|
216
217
|
django_ledger/templates/django_ledger/data_import/import_job_delete.html,sha256=qgobtrI-WNYFqhn8de05mcD-FQ0UGSLT6ZoaBlblXAU,944
|
|
217
218
|
django_ledger/templates/django_ledger/data_import/import_job_update.html,sha256=ZDy391RSOXUq3keUs48QrVrI_ZicdNvDeLT_JacH17M,887
|
|
218
219
|
django_ledger/templates/django_ledger/data_import/tags/data_import_job_list_table.html,sha256=y_U1xixMC9YPR4aq6F_cNpyb-dZ5qcVh9D6HSN9Xpps,2919
|
|
219
|
-
django_ledger/templates/django_ledger/data_import/tags/data_import_job_txs_imported.html,sha256=
|
|
220
|
-
django_ledger/templates/django_ledger/data_import/tags/data_import_job_txs_table.html,sha256=
|
|
220
|
+
django_ledger/templates/django_ledger/data_import/tags/data_import_job_txs_imported.html,sha256=NYck3UKL5-eLab_PV3wVnZKf0oaPisgha-2YghVrWd0,5416
|
|
221
|
+
django_ledger/templates/django_ledger/data_import/tags/data_import_job_txs_table.html,sha256=93Pqi8bvLv_x4-cavBtAa6p7gKDn1_UnUjAvKwaatgY,4718
|
|
221
222
|
django_ledger/templates/django_ledger/entity/entitiy_list.html,sha256=onM9uaWTm2oQ00OPIH5ki2FEfgjx7_EIOT8akuAhQM4,1507
|
|
222
223
|
django_ledger/templates/django_ledger/entity/entity_create.html,sha256=TDayIv2qno7cT3xTCapKV6EZKcTTNfIMxXJFQmHHyz0,1387
|
|
223
224
|
django_ledger/templates/django_ledger/entity/entity_dashboard.html,sha256=7iQYLYsP_Q1S2wGcYcZUn3FWJBNJPxZ4OvGQjfctoiw,5435
|
|
@@ -300,7 +301,7 @@ django_ledger/templates/django_ledger/purchase_order/includes/po_table.html,sha2
|
|
|
300
301
|
django_ledger/templates/django_ledger/purchase_order/tags/po_item_table.html,sha256=2DK0aaqG4R-GsOr_I4mHVEI8O614FuggpEBN6r-jcu4,1998
|
|
301
302
|
django_ledger/templates/django_ledger/receipt/customer_receipt_report.html,sha256=Z2M4JnelzRRscVgA7jA3gWvDWMv9wiz5IiVVubqn98E,5197
|
|
302
303
|
django_ledger/templates/django_ledger/receipt/receipt_delete.html,sha256=yB5jHmFUOc1ZMulSU5uq8oc1jomRmIZA0aK91iF0Oxc,1226
|
|
303
|
-
django_ledger/templates/django_ledger/receipt/receipt_detail.html,sha256=
|
|
304
|
+
django_ledger/templates/django_ledger/receipt/receipt_detail.html,sha256=QITtI2VFa7E1Ub9KAR9ParTIPCxUvQOERuyORMykywo,4917
|
|
304
305
|
django_ledger/templates/django_ledger/receipt/receipt_list.html,sha256=KZSxhgA_uZj015Arx_CM8ghbxTlSLUew6v3NP49AXzM,6810
|
|
305
306
|
django_ledger/templates/django_ledger/receipt/vendor_receipt_report.html,sha256=ySVb7twSChUXEuPSujZZaD8PtNBBsEDLdTKEE8zq4qQ,5149
|
|
306
307
|
django_ledger/templates/django_ledger/service/service_create.html,sha256=kGlqz3-txJojmBEnwXat8V6p4mZ0yozKBYDSlMgGcB8,1431
|
|
@@ -349,7 +350,7 @@ django_ledger/urls/bill.py,sha256=wvdRqSgnHp1CLdX6Sudu1IiIx4M1Pe8OupanA-9a-nI,28
|
|
|
349
350
|
django_ledger/urls/chart_of_accounts.py,sha256=DGr7YSfPHuOoUWRX7EhEhteRJTbCdx6xXExK7lrr0x8,1370
|
|
350
351
|
django_ledger/urls/closing_entry.py,sha256=3W0fCuAWGB3h8cWg0cxOb9EClVrydeIdHEX0q9rge60,1765
|
|
351
352
|
django_ledger/urls/customer.py,sha256=o69LRA7f4hNVTHxpY64D69Wl88y7MANlcktReujps14,568
|
|
352
|
-
django_ledger/urls/data_import.py,sha256=
|
|
353
|
+
django_ledger/urls/data_import.py,sha256=qkkjRoa822iXYpelovAyphs4Qu46MnOtglgyQUQkls0,1107
|
|
353
354
|
django_ledger/urls/djl_api.py,sha256=4BOkWI8MyfJlHXRn21hL08KYF39j7Njd1l7FIxTcsuc,952
|
|
354
355
|
django_ledger/urls/entity.py,sha256=8ysVslj0KhzGeOZyfRMJW6SYROyGM_azwGxFkkG4ICQ,1286
|
|
355
356
|
django_ledger/urls/estimate.py,sha256=4dmIv-IElYgl88HsEuwIYBr6XK4Dhbhtj09TmDa5H8k,2058
|
|
@@ -374,7 +375,7 @@ django_ledger/views/bill.py,sha256=dtp8KqyqvDGPy99lB1bz4jHEhHJ_4b87O6jpRFS-oOI,2
|
|
|
374
375
|
django_ledger/views/chart_of_accounts.py,sha256=AlRdX_g-Hjqetv1pVdQRMIYj4D4gnCURUgbAnPt_kpA,5659
|
|
375
376
|
django_ledger/views/closing_entry.py,sha256=JG2uDrqi90S1_Edb6-dsfNgx5xXLQRm6awjf_c8Y8fk,8433
|
|
376
377
|
django_ledger/views/customer.py,sha256=UPdEZ8DJj6FHR-eO2EgqdrYzU6QoAp1QAvPgHK0SXSg,4867
|
|
377
|
-
django_ledger/views/data_import.py,sha256=
|
|
378
|
+
django_ledger/views/data_import.py,sha256=mDQqHj5Z8lAxWwKCSmSkMPHOINm_INPlCy281HkcxlU,10934
|
|
378
379
|
django_ledger/views/djl_api.py,sha256=W4DooOXtTDvcZ6AyBgcwv86CUytQx_KHxxycU6s3e3I,4359
|
|
379
380
|
django_ledger/views/entity.py,sha256=eY7dDY45Mv3M5pdegXtdkbC0TAzJh7LuG0NrZx56lM8,9394
|
|
380
381
|
django_ledger/views/estimate.py,sha256=z5rlNiiXDXR24yPdzCNXVM_yJRDE4CG4ZrItijaXtmY,12648
|
|
@@ -392,9 +393,9 @@ django_ledger/views/receipt.py,sha256=mtiHfk529oVVSIrAR28LgQc696HUVFnV4rYd9HTqoV
|
|
|
392
393
|
django_ledger/views/transactions.py,sha256=3ijtJzdLPFkqG7OYpe-7N4QVjCyR2yl5ht_9RyfquBA,212
|
|
393
394
|
django_ledger/views/unit.py,sha256=IK0KWf_NkTCzJILtA4SDU9tD4OL3kbAktLdvL6fxRhU,10035
|
|
394
395
|
django_ledger/views/vendor.py,sha256=-tUs6-flA_SiXuDWs173Sho4JwQr0zMAhqD_-xM0eeA,4746
|
|
395
|
-
django_ledger-0.8.2.
|
|
396
|
-
django_ledger-0.8.2.
|
|
397
|
-
django_ledger-0.8.2.
|
|
398
|
-
django_ledger-0.8.2.
|
|
399
|
-
django_ledger-0.8.2.
|
|
400
|
-
django_ledger-0.8.2.
|
|
396
|
+
django_ledger-0.8.2.3.dist-info/licenses/AUTHORS.md,sha256=ShPwf-qniJkbjRzX5_lqhmgoLMEYMSHSwKPXHZtWmyk,824
|
|
397
|
+
django_ledger-0.8.2.3.dist-info/licenses/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
|
|
398
|
+
django_ledger-0.8.2.3.dist-info/METADATA,sha256=xvPML8oA6ACobgjGWNeEUXjwDgpvNm2pdf1ToEL2Q3Q,8460
|
|
399
|
+
django_ledger-0.8.2.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
400
|
+
django_ledger-0.8.2.3.dist-info/top_level.txt,sha256=57KG3JBsF9fqPnPGyFfcpKtfFNS9TQONjtfKhUlwiy4,14
|
|
401
|
+
django_ledger-0.8.2.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|