fix: incorrect operator causing incorrect validation

This commit is contained in:
Rohit Waghchaure
2024-04-06 15:29:00 +05:30
parent 8b9079d62e
commit 6b317b0c0d

View File

@@ -65,7 +65,7 @@ class ClosingStockBalance(Document):
& ( & (
(table.from_date.between(self.from_date, self.to_date)) (table.from_date.between(self.from_date, self.to_date))
| (table.to_date.between(self.from_date, self.to_date)) | (table.to_date.between(self.from_date, self.to_date))
| (table.from_date >= self.from_date and table.to_date >= self.to_date) | ((table.from_date >= self.from_date) & (table.to_date >= self.to_date))
) )
) )
) )