diff --git a/src/app/basket/controllers/BasketController.php b/src/app/basket/controllers/BasketController.php
index 828073a57cfddc6fd98b2fe458e07cf87bffc2bb..da8c21e82db1296043823a7df7f906b88ec57d07 100644
--- a/src/app/basket/controllers/BasketController.php
+++ b/src/app/basket/controllers/BasketController.php
@@ -445,7 +445,7 @@ class BasketController
                 BasketModel::createGroupAction([
                     'id'                => $aArgs['id'],
                     'groupId'           => $aArgs['groupId'],
-                    'actionId'          => $groupAction['id_action'],
+                    'actionId'          => $groupAction['id'],
                     'whereClause'       => $groupAction['where_clause'],
                     'usedInBasketlist'  => $groupAction['used_in_basketlist'],
                     'usedInActionPage'  => $groupAction['used_in_action_page'],
@@ -457,7 +457,7 @@ class BasketController
                         BasketModel::createGroupActionStatus([
                             'id'        => $aArgs['id'],
                             'groupId'   => $aArgs['groupId'],
-                            'actionId'  => $groupAction['id_action'],
+                            'actionId'  => $groupAction['id'],
                             'statusId'  => $status
                         ]);
                     }
@@ -467,7 +467,7 @@ class BasketController
                         BasketModel::createGroupActionRedirect([
                             'id'            => $aArgs['id'],
                             'groupId'       => $aArgs['groupId'],
-                            'actionId'      => $groupAction['id_action'],
+                            'actionId'      => $groupAction['id'],
                             'entityId'      => $redirect['entity_id'],
                             'keyword'       => $redirect['keyword'],
                             'redirectMode'  => $redirect['redirect_mode']