Reviewers: ,


Please review this at http://codereview.tryton.org/98001/

Affected files:
  M configuration.py


Index: configuration.py
===================================================================

--- a/configuration.py
+++ b/configuration.py
@@ -1,7 +1,6 @@
 #This file is part of Tryton.  The COPYRIGHT file at the top level of
 #this repository contains the full copyright notices and license terms.
 from trytond.model import ModelView, ModelSQL, ModelSingleton, fields
-from trytond.pyson import Eval


 class Configuration(ModelSingleton, ModelSQL, ModelView):
@@ -11,8 +10,6 @@

     party_sequence = fields.Property(fields.Many2One('ir.sequence',
             'Party Sequence', domain=[
-                ('company', 'in',
-                    [Eval('context', {}).get('company'), False]),
                 ('code', '=', 'party.party'),
                 ], required=True))
party_lang = fields.Property(fields.Many2One("ir.lang", 'Party Language',



--
[email protected] mailing list

Reply via email to