Skip to content

Commit

Permalink
fix: Multiple accounting dimension filtering in AR/AP reports (#34464)
Browse files Browse the repository at this point in the history
fix: Multiple accounting dimension filtering in AR/AP reports (#34464)

Co-authored-by: Anand Baburajan <anandbaburajan@gmail.com>
(cherry picked from commit 7b63021)

Co-authored-by: Deepesh Garg <deepeshgarg6@gmail.com>
  • Loading branch information
mergify[bot] and deepeshgarg007 committed Mar 19, 2023
1 parent 55d002c commit f146479
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -859,7 +859,7 @@ def add_accounting_dimensions_filters(self):
)
else:
self.qb_selection_filter.append(
self.ple[dimension.fieldname] == self.filters[dimension.fieldname]
self.ple[dimension.fieldname].isin(self.filters[dimension.fieldname])
)

def is_invoice(self, ple):
Expand Down

0 comments on commit f146479

Please sign in to comment.