Commit 86c7b9db by iwan

Update daftar.py

1 parent a5b4e353
...@@ -18,7 +18,9 @@ from math import ceil ...@@ -18,7 +18,9 @@ from math import ceil
## Untuk perhitungan bunga ## ## Untuk perhitungan bunga ##
############################# #############################
def hitung_bunga(pokok, jatuh_tempo, tanggal=None, max_denda=24): def hitung_bunga(pokok, jatuh_tempo, tanggal=None, max_denda=24):
persen_denda = 2 # Koreksi 20250106 Om Rifky
# persen_denda = 2
persen_denda = 1
if not tanggal: if not tanggal:
tanggal = datetime.now().date() tanggal = datetime.now().date()
if tanggal <= jatuh_tempo: if tanggal <= jatuh_tempo:
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!