Commit 90862098 by Owo Sugiana

Kota Bekasi 2024 juga dapat discount denda

1 parent f53f9a45
...@@ -72,7 +72,7 @@ class Inquiry(BaseInquiry): ...@@ -72,7 +72,7 @@ class Inquiry(BaseInquiry):
self.discount_pokok = potongan * self.tagihan self.discount_pokok = potongan * self.tagihan
self.discount_pokok = int(self.discount_pokok) self.discount_pokok = int(self.discount_pokok)
break break
elif self.invoice.thn_pajak_sppt < '2024': if self.invoice.thn_pajak_sppt <= '2024':
if AWAL_DISC_DENDA <= self.tgl_bayar <= AKHIR_DISC_DENDA: if AWAL_DISC_DENDA <= self.tgl_bayar <= AKHIR_DISC_DENDA:
self.discount_denda = self.denda self.discount_denda = self.denda
self.discount = self.discount_denda + self.discount_pokok self.discount = self.discount_denda + self.discount_pokok
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!