diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-10-22 12:01:55 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-10-22 12:01:55 +0700 |
| commit | adb901e780bd0f1e9abfefc9f403e335c155115c (patch) | |
| tree | f62e97ab12b07f242952c67820912fea2d4fb9fb | |
| parent | c99e4d67c037a781b79e0ed198899d5f5c4a153b (diff) | |
<iman> ubah state id dari null menjadi 0
| -rw-r--r-- | indoteknik_api/models/res_users.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_api/models/res_users.py b/indoteknik_api/models/res_users.py index 534898e1..2751ca7a 100644 --- a/indoteknik_api/models/res_users.py +++ b/indoteknik_api/models/res_users.py @@ -48,7 +48,7 @@ class ResUsers(models.Model): 'street': user.street or '', 'street2': user.street2 or '', 'city': None, - 'state_id': None, + 'state_id': 0, 'district': None, 'sub_district': None, 'zip': user.zip or '', |
