summaryrefslogtreecommitdiff
path: root/indoteknik_api/controllers/api_v1/user.py
diff options
context:
space:
mode:
authorit-fixcomart <it@fixcomart.co.id>2024-08-30 11:05:04 +0700
committerit-fixcomart <it@fixcomart.co.id>2024-08-30 11:05:04 +0700
commitc3d6ea4ae3ce658a2b01b3b79561d6ebf15f41ef (patch)
tree27462d95abe50b8ab301eeb71063524ff05ea2b7 /indoteknik_api/controllers/api_v1/user.py
parent09ff6a7ea7860698c736afd926b7d249b1509de9 (diff)
<iman> ubah format npwp dan sppkp
Diffstat (limited to 'indoteknik_api/controllers/api_v1/user.py')
-rw-r--r--indoteknik_api/controllers/api_v1/user.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/indoteknik_api/controllers/api_v1/user.py b/indoteknik_api/controllers/api_v1/user.py
index 4e20e2c8..61bb4425 100644
--- a/indoteknik_api/controllers/api_v1/user.py
+++ b/indoteknik_api/controllers/api_v1/user.py
@@ -185,8 +185,8 @@ class User(controller.Controller):
'company_type_id': company_type_id if company_type_id else False,
'industry_id': industry_id,
'customer_type': 'pkp' if is_pkp == 'true' else 'nonpkp',
- 'npwp': npwp if is_pkp == 'true' else (npwp if npwp else '0.000.000.0-000.000'),
- 'sppkp': sppkp if is_pkp == 'true' else (sppkp if sppkp else ''),
+ 'npwp': npwp if is_pkp == 'true' else (npwp if npwp else '00.000.000.0-000.000'),
+ 'sppkp': sppkp if is_pkp == 'true' else (sppkp if sppkp else '-'),
'nama_wajib_pajak': nama_wajib_pajak,
'alamat_lengkap_text': alamat_wajib_pajak,
'email': email_partner,