asset: currency_digits limit --> 6
This commit is contained in:
parent
6b3b44e9af
commit
c73584af32
1 changed files with 1 additions and 1 deletions
2
asset.py
2
asset.py
|
@ -63,7 +63,7 @@ class Asset(SymbolMixin, ModelSQL, ModelView):
|
||||||
currency_digits = fields.Integer(string='Digits', required=True,
|
currency_digits = fields.Integer(string='Digits', required=True,
|
||||||
domain=[
|
domain=[
|
||||||
('currency_digits', '>=', 0),
|
('currency_digits', '>=', 0),
|
||||||
('currency_digits', '<=', 8)])
|
('currency_digits', '<=', 6)])
|
||||||
|
|
||||||
wkn = fields.Function(fields.Char(string='NSIN', readonly=True,
|
wkn = fields.Function(fields.Char(string='NSIN', readonly=True,
|
||||||
help='National Securities Identifying Number'),
|
help='National Securities Identifying Number'),
|
||||||
|
|
Loading…
Reference in a new issue