tipi: add possible choices for saisie parameter (#30272)

This commit is contained in:
Benjamin Dauvergne 2019-01-31 16:23:59 +01:00
parent b128e66e41
commit 0d6a6a86d3
1 changed files with 6 additions and 0 deletions

View File

@ -54,6 +54,12 @@ class Payment(PaymentCommon):
'caption': _('Payment type'),
'required': True,
'default': 'T',
'choices': [
('T', _('test')),
('X', _('production')),
('A', _('with user account')),
('M', _('manual entry')),
],
},
],
}