Fix limit

This commit is contained in:
Oscar Alvarez 2020-07-06 09:09:17 -05:00
parent 5b86b3f2fe
commit eae3d027d0
2 changed files with 1 additions and 2 deletions

View File

@ -1933,7 +1933,6 @@ class MainWindow(FrontWindow):
('commission_amount', {'name': self.tr('AMOUNT'),
'readonly': True}),
]
print()
self.dialog_agent = QuickDialog(self, 'action', data=view)
def create_wizard_new_sale(self):

View File

@ -30,7 +30,7 @@ class FastModel(object):
self.method = name
return self
def find(self, domain, order=None, limit=100, ctx=None):
def find(self, domain, order=None, limit=1000, ctx=None):
if ctx:
self.ctx.update(ctx)
route = self.get_route('search')