60 lines
1.4 KiB
PHP
60 lines
1.4 KiB
PHP
<?php
|
|
//Génération commande
|
|
isset($_REQUEST['info']) ?
|
|
$info = unserialize(urldecode($_REQUEST['info'])) :
|
|
$info = false;
|
|
|
|
//Connection à la base de données
|
|
$con = mysql_pconnect(MYSQL_HOST, MYSQL_USER, MYSQL_PASS);
|
|
if (!($con === false))
|
|
{
|
|
if (mysql_select_db(MYSQL_DB, $con) === false)
|
|
echo ('<!--Could not select database: ' . mysql_error() .'-->');
|
|
}
|
|
$dejaCommande = false;
|
|
$noemail = false;
|
|
$sameLogin = false;
|
|
$idCommande = 0;
|
|
//Vérification des commandes
|
|
$rep = mysql_select('commandes',
|
|
' idCommande, login, emailCommande, dateCommande',
|
|
"siren=$siren AND refDocument='$ref' AND statutCommande!=9");
|
|
//Déja commandé
|
|
if (count($rep)!=0)
|
|
{
|
|
$dejaCommande = true;
|
|
if ($rep[0]['login']==$login)
|
|
{
|
|
$dateCommande = WDate::dateT(
|
|
'Y-m-d',
|
|
'd/m/Y',
|
|
$rep[0]['dateCommande']
|
|
);
|
|
$idCommande = $rep[0]['idCommande'];
|
|
if(empty($rep[0]['emailCommande'])) $noemail = true;
|
|
$sameLogin = true;
|
|
}
|
|
}
|
|
|
|
if(!$dejaCommande || ($dejaCommande && $noemail) )
|
|
{
|
|
require_once 'infogreffe/form_commande.php';
|
|
}
|
|
elseif(!$noemail && $dejaCommande && $sameLogin)
|
|
{
|
|
?>
|
|
<h2>Document déjà commandé</h2>
|
|
<p>
|
|
Vous avez déjà commandé ce document sous la référence
|
|
G<?=$idCommande?>.
|
|
</p>
|
|
<?php
|
|
}
|
|
elseif(!$noemail && $dejaCommande && !$sameLogin)
|
|
{
|
|
?>
|
|
<h2>Document déjà commandé</h2>
|
|
<p>Une commande est déjà en cours, le document sera disponible
|
|
sous peu. Merci de revenir sur cette page.</p>
|
|
<?php
|
|
}
|