Commit 21d4f347 by Owo Sugiana

Bug fixed saat reversal field bunga belum di-nol-kan

1 parent 551a3222
0.2.3 2023-04-11
----------------
- Bug fixed saat reversal field bunga belum di-nol-kan
0.2.2 2022-08-03 0.2.2 2022-08-03
---------------- ----------------
- Bug fixed saat inquiry yang sudah lunas - Bug fixed saat inquiry yang sudah lunas
......
...@@ -183,7 +183,7 @@ class Reversal(Inquiry): ...@@ -183,7 +183,7 @@ class Reversal(Inquiry):
self.invoice.status = 0 self.invoice.status = 0
DBSession.add(self.invoice) DBSession.add(self.invoice)
if self.payment: if self.payment:
self.payment.bayar = 0 self.payment.bayar = self.payment.bunga = 0
DBSession.add(self.payment) DBSession.add(self.payment)
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!