-
- Downloads
[FIX] stock_account: stock valuation at date total
When performing a stock valuation at date, the stock valuation total wasn't equal to the sum of each line of the report. This is because the domain forcing the date wasn't passed to the `search` call when no group by was applied. Indeed, when calling `read_group` with a group by, the lines in the results contains the domain used for each line, but when there is no group by applied, this is not the case, the domain is not included in the line dict returned by `read_group`. In such a case, therefore, we must use the domain that was passed to the `read_group` call. opw-667761
Please register or sign in to comment