Commit bed79833 by Owo Sugiana

Penggunaan pkgutil

1 parent 86a04410
...@@ -2,3 +2,4 @@ dist ...@@ -2,3 +2,4 @@ dist
build build
*egg-info *egg-info
test-* test-*
__pycache__
0.4.1 2021-12-31
----------------
- Penggunaan pkgutil agar lebih fleksibel saat pip install -e
- Bug fixed Kota Bekasi saat self test inquiry yaitu tampilkan tanggal jatuh
tempo meski kosong
0.4 2021-06-14 0.4 2021-06-14
-------------- --------------
- Tambah Kota Bogor - Tambah Kota Bogor
......
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
...@@ -35,6 +35,9 @@ class Common: ...@@ -35,6 +35,9 @@ class Common:
self.invoice = q.first() self.invoice = q.first()
self.payment = self.invoice and self.get_payment() self.payment = self.invoice and self.get_payment()
def get_jatuh_tempo(self):
pass
def is_available(self): def is_available(self):
# Meski reversal tetap tidak bisa dibayarkan lagi karena kd_booking # Meski reversal tetap tidak bisa dibayarkan lagi karena kd_booking
# unique. # unique.
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!