Compare commits

...

2 Commits

Author SHA1 Message Date
Wilson Gomez 6e6c8af699 minor fix 2023-10-27 12:39:19 -05:00
Wilson Gomez 3d8e4b49bc minor fix 2023-10-27 08:25:53 -05:00
2 changed files with 2 additions and 2 deletions

View File

@ -29,8 +29,8 @@ def register():
bom.BOM,
# production.WorkStation,
# production.WorkStationPrinter,
production.ConfigurationTask,
production.TaskPrinter,
production.ConfigurationTask,
production.Task,
product.ProductMixOption,
product.Product,

View File

@ -107,7 +107,7 @@ class Task(ModelSQL, ModelView):
('create_date', '>=', thirty_minutes_ago)
]
if args.get('sale_id'):
dom.append('line.sale', '=', args['sale_id'])
dom.append(('line.sale', '=', args['sale_id']))
fields = [
'name', 'note', 'quantity', 'sale_number',