fix accounting
This commit is contained in:
parent
24a8099b83
commit
3c500baf99
@ -56,11 +56,12 @@ class Client(models.Model):
|
||||
|
||||
def accounting_for(self, desk_no, pht, pnt):
|
||||
t = Accounting.objects.filter(client_id=self.id, desk_no=desk_no)[:3][::-1]
|
||||
a = t[t.__len__() - 1]
|
||||
if a.time_to is None:
|
||||
prize = utils.get_prize_for(start=a.time_from, end=datetime.now(timezone.utc), pph=pht)
|
||||
if prize != a.prize:
|
||||
a.prize = prize
|
||||
if t.__len__() > 0:
|
||||
a = t[t.__len__() - 1]
|
||||
if a.time_to is None:
|
||||
prize = utils.get_prize_for(start=a.time_from, end=datetime.now(timezone.utc), pph=pht)
|
||||
if prize != a.prize:
|
||||
a.prize = prize
|
||||
return t
|
||||
|
||||
def accounting_1(self):
|
||||
|
Loading…
Reference in New Issue
Block a user