Commit 66bdebd2 by Odoo

Add unsubscribed to admitted value of working_state

parent 7bfade61
......@@ -35,7 +35,7 @@ EXTRA_COOPERATIVE_STATE_SELECTION = [
class ResPartner(models.Model):
_inherit = 'res.partner'
COOPERATIVE_STATE_CUSTOMER = ['up_to_date', 'alert', 'delay', 'exempted', 'gone', 'associated']
COOPERATIVE_STATE_CUSTOMER = ['up_to_date', 'alert', 'delay', 'exempted', 'unsubscribed', 'gone', 'associated']
SEX_SELECTION = [
('m', 'male'),
......
......@@ -45,6 +45,7 @@ class ResPartner(models.Model):
('up_to_date', 'Up to date'),
('alert', 'Alert'),
('suspended', 'Suspended'),
('unsubscribed', 'Unsubscribed'),
('delay', 'Delay'),
('blocked', 'Blocked'),
('gone', 'Gone'), # Used by La Cagette and followers
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment