'; // Si on a un rapport $rapports = Doctrine_Query::create() ->from('Report') ->where('identifier = ?', $identifier) ->orderby('id desc') ->execute(); if ($rapports != false && count($rapports) > 0) { $id = $rapports[0]->order_id; // Si la commande appartient a cet utilisateur if (Doctrine_Query::create() ->from('Commandes') ->where('id = ?', $id) ->fetchOne()->user == $_SESSION['tabInfo']['login']) { $commande_id = $id; } else { $commande_id = copieDesRapports($id, $identifier, $pidentifier); } } else { $commande_id = getIdentite($identifier, $pidentifier); } if ($commande_id > 0) { header('Location: ?page=international_commandes&id='.$commande_id); print 'Veuillez suivre ce lien'; } print ''; ?>