changeset b25f9fbe86b7 in modules/product_cost_fifo:5.0
details: 
https://hg.tryton.org/modules/product_cost_fifo?cmd=changeset&node=b25f9fbe86b7
description:
        Call super in cancel move

        issue11662
        review419691003
        (grafted from 65f6463fefd52ced857713cefbacdf245ac4c6e6)
diffstat:

 move.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r cf29e7c8ed46 -r b25f9fbe86b7 move.py
--- a/move.py   Thu Jun 17 21:58:55 2021 +0200
+++ b/move.py   Fri Aug 26 09:52:51 2022 +0200
@@ -118,7 +118,7 @@
     @ModelView.button
     @Workflow.transition('cancel')
     def cancel(cls, moves):
-        pass
+        super().cancel(moves)
 
     @classmethod
     def delete(cls, moves):

Reply via email to