У меня есть этот метод сохранения в контроллере "operation".
$model->save($data);// i call the model operation and save data
$lastIdOperation = $model->getLastInsertedId();
// here I create a new item in the same model but in another table and i get the last inserted id $model->creeNouvelleTransactionDeboureLieeAOperation($lastIdOperation);
$idTransaction = $model->getLastInsertedIdTransactionDeboure();
// and here is set the redirect to another controller (view)
$app = JFactory::getApplication();
$url = JRoute::_('index.php?option=com_tktransit&view=transaction_deboure&layout=edit&is_from_operation=1&id='.(int)$idTransaction, false);
$app->redirect($url);
}
В представлении "action_deboure ", когда я пытаюсь редактировать новый элемент, который я создаю, и нажимаю SAVE и CLOSE, я получил этоошибка
Вам не разрешено использовать эту ссылку для прямого доступа к этой странице {идентификатор элемента, который я редактирую}