changeset a4476e1366ac in modules/product_cost_fifo:6.4
details: 
https://hg.tryton.org/modules/product_cost_fifo?cmd=changeset&node=a4476e1366ac
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 3b216696c910 -r a4476e1366ac move.py
--- a/move.py   Mon May 02 16:59:52 2022 +0200
+++ b/move.py   Fri Aug 26 09:52:51 2022 +0200
@@ -129,7 +129,7 @@
     @ModelView.button
     @Workflow.transition('cancelled')
     def cancel(cls, moves):
-        pass
+        super().cancel(moves)
 
     @classmethod
     def delete(cls, moves):

Reply via email to