diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2025-06-18 11:50:20 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2025-06-18 11:50:20 +0700 |
| commit | 27ae2de4c1deea61dc0891379c8c294e4399b5f7 (patch) | |
| tree | a5a53cfde32ccc9ffd96ce93966c73d457e7bdab /fixco_custom/models/partner.py | |
| parent | a79927c64928c71208a8f97ce80c5ea54b662295 (diff) | |
sale pricelist, customer type, end line bundling
Diffstat (limited to 'fixco_custom/models/partner.py')
| -rwxr-xr-x | fixco_custom/models/partner.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fixco_custom/models/partner.py b/fixco_custom/models/partner.py index 52e89de..17d2fd0 100755 --- a/fixco_custom/models/partner.py +++ b/fixco_custom/models/partner.py @@ -9,4 +9,9 @@ class Partner(models.Model): [('digunggung', 'Digunggung'), ('difaktur', 'Faktur Pajak')], string='Transaction Type' + ) + customer_type = fields.Selection( + [('online', 'Online'), + ('offline', 'Offline')], + string='Customer Type' )
\ No newline at end of file |
