changeset a4e3fdb55e8e in tryton:default
details: https://hg.tryton.org/tryton?cmd=changeset;node=a4e3fdb55e8e
description:
Do not override action context with record context
As action context is a copy of record context is does not make sense to
update
the same values
issue7917
review50651002
diffstat:
tryton/action/main.py | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diffs (11 lines):
diff -r 9e9ae0cba1c3 -r a4e3fdb55e8e tryton/action/main.py
--- a/tryton/action/main.py Wed Jan 30 10:11:33 2019 +0100
+++ b/tryton/action/main.py Wed Jan 30 11:47:04 2019 +0100
@@ -114,7 +114,6 @@
action_ctx.update(
decoder.decode(action.get('pyson_context') or '{}'))
ctx.update(action_ctx)
- ctx.update(context)
ctx['context'] = ctx
decoder = PYSONDecoder(ctx)