We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
purchase-workflow/purchase_tag/models/purchase_tag.py
Line 46 in 6d1ad9a
change the args to the below @api.model def _name_search( self, name="", domain=None, operator="ilike", limit=100, order=None ): if name: domain = [("name", operator, name.split(" / ")[-1])] + list(domain or []) return super()._name_search( name=name, domain=domain, operator=operator, limit=limit, order=order, )
The text was updated successfully, but these errors were encountered:
Could you make a Pull Request ? Thanks
Sorry, something went wrong.
@legalsylvain i did, you rejected.
No branches or pull requests
purchase-workflow/purchase_tag/models/purchase_tag.py
Line 46 in 6d1ad9a
change the args to the below
@api.model
def _name_search(
self, name="", domain=None, operator="ilike", limit=100, order=None
):
if name:
domain = [("name", operator, name.split(" / ")[-1])] + list(domain or [])
return super()._name_search(
name=name,
domain=domain,
operator=operator,
limit=limit,
order=order,
)
The text was updated successfully, but these errors were encountered: