feat: factory article for product
This commit is contained in:
@@ -127,7 +127,8 @@ class ProductService(BaseService):
|
||||
or_(
|
||||
Product.name.ilike(f'%{search_input}%'),
|
||||
Product.barcodes.any(ProductBarcode.barcode.ilike(f'%{search_input}%')),
|
||||
Product.article.ilike(f'%{search_input}%')
|
||||
Product.article.ilike(f'%{search_input}%'),
|
||||
Product.factory_article.ilike(f'%{search_input}%'),
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user