Commit 80c7a59e by Owo Sugiana

Tambah Kabupaten Serang

1 parent 61663a90
0.4.4 2022-12-22 0.4.4 2022-12-22
---------------- ----------------
- Tambah Kabupaten Serang
- bin/inquiry tambah --ntp dan --tgl-bayar bisa ada jam - bin/inquiry tambah --ntp dan --tgl-bayar bisa ada jam
0.4.3 2022-03-12 0.4.3 2022-03-12
......
...@@ -12,6 +12,8 @@ help_tgl_bayar = 'format dd-mm-yyyy' ...@@ -12,6 +12,8 @@ help_tgl_bayar = 'format dd-mm-yyyy'
def show_val(label, value): def show_val(label, value):
if value is None:
value = ''
print('{}: {}'.format(label, value)) print('{}: {}'.format(label, value))
......
INVOICE_ID = [
['thn', 4, 'N'],
['bln', 2, 'N'],
['tgl', 2, 'N'],
['no_urut', 4, 'N'],
]
INVOICE_ID_LENGTH = 0
for nama, size, tipe in INVOICE_ID:
INVOICE_ID_LENGTH += size
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!