Skip to content
New issue

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

Update book_view.xml #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

hosamhamdy258
Copy link

swapping filter_active and filter_inactive domain conditions
before

   <search>
     <field name="publisher_id"/>
     <filter name="filter_inactive"
             string="Inactive"
             domain="[('active','=',True)]"/>
     <filter name="filter_active"
             string="Active"
             domain="[('active','=',False)]"/>
   </search>

after

   <search>
     <field name="publisher_id"/>
     <filter name="filter_inactive"
             string="Inactive"
             domain="[('active','=',False)]"/>
     <filter name="filter_active"
             string="Active"
             domain="[('active','=',True)]"/>
   </search>

swapping filter_active and filter_inactive domain conditions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

1 participant