Revised the codes in the views with PEP8 and PyCharms inspection for the accounting application.
This commit is contained in:
parent
4f837f942f
commit
184e94e2c6
@ -888,8 +888,9 @@ def txn_store(request, txn_type, txn=None):
|
|||||||
txn_to_sort = []
|
txn_to_sort = []
|
||||||
if txn.date != old_date:
|
if txn.date != old_date:
|
||||||
if old_date is not None:
|
if old_date is not None:
|
||||||
txn_same_day = list(Transaction.objects\
|
txn_same_day = list(
|
||||||
.filter(Q(date=old_date), ~Q(pk=txn.pk))\
|
Transaction.objects
|
||||||
|
.filter(Q(date=old_date), ~Q(pk=txn.pk))
|
||||||
.order_by("ord"))
|
.order_by("ord"))
|
||||||
for i in range(len(txn_same_day)):
|
for i in range(len(txn_same_day)):
|
||||||
txn_same_day[i].ord = i + 1
|
txn_same_day[i].ord = i + 1
|
||||||
@ -937,8 +938,9 @@ def txn_delete(request, txn):
|
|||||||
Returns:
|
Returns:
|
||||||
HttpResponse: The response.
|
HttpResponse: The response.
|
||||||
"""
|
"""
|
||||||
txn_same_day = list(Transaction.objects\
|
txn_same_day = list(
|
||||||
.filter(Q(date=txn.date), ~Q(pk=txn.pk))\
|
Transaction.objects
|
||||||
|
.filter(Q(date=txn.date), ~Q(pk=txn.pk))
|
||||||
.order_by("ord"))
|
.order_by("ord"))
|
||||||
txn_to_sort = []
|
txn_to_sort = []
|
||||||
for i in range(len(txn_same_day)):
|
for i in range(len(txn_same_day)):
|
||||||
|
Loading…
Reference in New Issue
Block a user