本文整理汇总了PHP中Commande::modifierCommande方法的典型用法代码示例。如果您正苦于以下问题:PHP Commande::modifierCommande方法的具体用法?PHP Commande::modifierCommande怎么用?PHP Commande::modifierCommande使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Commande
的用法示例。
在下文中一共展示了Commande::modifierCommande方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: validerCommandeCB
2. Envoyer un mail au client - le mail peut être envoyé directement dans la méthode validerCommandeCB() de l'objet Commande ou bien dans l'objet Client (méthode à créer)
3. Envoyer un mail à l'admin IFIP
4. unset($_SESSION['numcom']);
* */
}
//fin if ($prix)
}
/* ***************** ETAPE 3 ******************************************************************** */
} else {
if ($action == "validerLivraison") {
// Valide les infos sur la livraison et la Facturation
$laCom = new Commande();
$laCom->numclient = $_SESSION['numclient'];
$laCom->numcom = $_SESSION['numcom'];
$numpays = $laCom->getNumPays();
$laCom->modifierCommande();
//association de la commande au client
$leClient = new Client();
$leClient->numclient = $_SESSION['numclient'];
$laCom->nom_f = $textNom_f;
$laCom->prenom_f = $textPrenom_f;
$laCom->tel_f = $textTel_f;
$laCom->fax_f = $textFax_f;
$laCom->raison_f = $textSociete_f;
$laCom->adr1_f = $textAdr1_f;
$laCom->adr2_f = $textAdr2_f;
$laCom->cp_f = $textCp_f;
$laCom->ville_f = $textVille_f;
$laCom->pays_f = $selectPays_f;
/* On ne met plus à jour les infos du client a partir des infos de facturation
$leClient->nom=$textNom_f;