Commit b3eacbf0 by iwan

Penyesuaian get_listkdbayar

1 parent 5ceb25ad
...@@ -43,7 +43,11 @@ def get_listkdbayar(): ...@@ -43,7 +43,11 @@ def get_listkdbayar():
ARSspd.ntb.notin_(['BJBQRIS','BJBVA']), ARSspd.ntb.notin_(['BJBQRIS','BJBVA']),
ARSspd.tgl_bayar >= datenow, ARSspd.tgl_bayar >= datenow,
ARSspd.posted == 0).all() ARSspd.posted == 0).all()
list_kd_bayar = [kode for d in getdata] if not getdata:
return
for row in getdata:
kode = row
list_kd_bayar = kode # [kode for d in getdata]
return list_kd_bayar return list_kd_bayar
def sendrpc(kd_bayar): def sendrpc(kd_bayar):
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!