diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2024-05-07 11:41:52 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2024-05-07 11:41:52 +0700 |
| commit | 71a36d6f5bb8688f0d8907818fb90026c5dac5d3 (patch) | |
| tree | 55bd3947a6bf00d5c7e00c0db462507982000edf | |
| parent | 1edb9ae0da36e33b1e0b1124ce5c6f9a515b732b (diff) | |
add status non pareto
| -rw-r--r-- | indoteknik_custom/models/res_partner.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indoteknik_custom/models/res_partner.py b/indoteknik_custom/models/res_partner.py index 81f49cdf..abb7f739 100644 --- a/indoteknik_custom/models/res_partner.py +++ b/indoteknik_custom/models/res_partner.py @@ -33,7 +33,8 @@ class ResPartner(models.Model): pareto_status = fields.Selection([ ('PR', 'Pareto Repeating'), ('PPR', 'Potensi Pareto Repeating'), - ('PNR', 'Pareto Non Repeating') + ('PNR', 'Pareto Non Repeating'), + ('NP', 'Non Pareto') ]) def get_child_ids(self): |
