I upgraded today to version 6.2 and walked into this problem. You can compare the Balance or Income Statement with an earlier 'version' using the context. But changing the context and refreshing the data does not update the amounts anymore and they stay the same.
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items
0
Show closed items
No child items are currently assigned. Use child items to break down this issue into smaller parts.
Linked items
0
Link issues together to show that they're related.
Learn more.
This is linked to #10491 (closed). Indeed storing the in the cache the result of function field that depends of the context does not work because transactional cache is only depending on few contextual parameters.
Cédric Krieradded 1 deleted label and removed 1 deleted label
I think we must remove the feature in 6.2 series as it can not work by design and re-implementing it will need to change the API (see the following proposal).
So in order to keep the performance improvement I see two possibilities (which can both be implemented) which restore partially the initial goal:
add an attribute on Function field which define if the getter function depends on the context or not. If it does not depend we can store the result in the global cache in readonly transaction. (I could not find any other method than a flag, I tried to detect usage of context but there are two much side-effect). Also in this case the Function field must reset the context (with only the cache keys of transaction) to ensure that the result is independent of it (and to detect wrong configuration).
we fill the local cache of the instance in Function.get with the values already read. This can only be done for base python type like numeric or string but not with instances. This can be done also on non-readonly transaction but it will improve the performance only for the current instances (not if the value is reused by an indirect instance).
Here are the two new implementations and the removal of the feature in 6.2. I updated the changelog in order to not create confusion about the actual feature implemented in this series.
Cédric Krieradded 1 deleted label and removed 1 deleted label
I have tested review367781002 and it restores the behavior from the previous versions. I tested this one because it's closed to the originating issue #10491