当前位置: 首页>>代码示例>>PHP>>正文


PHP Commande::infosCommande方法代码示例

本文整理汇总了PHP中Commande::infosCommande方法的典型用法代码示例。如果您正苦于以下问题:PHP Commande::infosCommande方法的具体用法?PHP Commande::infosCommande怎么用?PHP Commande::infosCommande使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Commande的用法示例。


在下文中一共展示了Commande::infosCommande方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: afficherListeCommandes

 /**
  * Affiche la liste de commandes
  * @return renvoie true si le tableau n'est pas vide
  */
 function afficherListeCommandes()
 {
     //requete sql
     $fin_req = "";
     if ($this->numclient) {
         $fin_req .= " AND numclient='{$this->numclient}'";
     }
     if ($this->erreur_paiement) {
         $fin_req .= " AND erreur_paiement='{$this->erreur_paiement}'";
     }
     if ($this->type_reg) {
         $fin_req .= " AND tpereg='{$this->type_reg}'";
     }
     if ($this->date_du && $this->date_au) {
         $fin_req .= " AND hcrea BETWEEN {$this->date_du} AND {$this->date_au}";
     } else {
         if ($this->date_du) {
             $fin_req .= " AND hcrea >= {$this->date_du}";
         } else {
             if ($this->date_au) {
                 $fin_req .= " AND hcrea <= {$this->date_au}";
             }
         }
     }
     /*if ($this->formation) $result=mysql_query("SELECT if_bo_com.numcom FROM if_bo_com,if_bo_detail WHERE if_bo_com.numcom=if_bo_detail.numcom AND if_bo_detail.designation='Inscription formation' $fin_req ORDER BY hcrea DESC");
     	 else $result=mysql_query("SELECT if_bo_com.numcom FROM if_bo_com,if_bo_detail WHERE etat $this->etat $fin_req AND if_bo_com.numcom=if_bo_detail.numcom ORDER BY hcrea DESC");*/
     if ($this->formation) {
         $result = mysql_query("SELECT if_bo_com.numcom FROM if_bo_com,if_bo_detail WHERE if_bo_com.numcom=if_bo_detail.numcom AND if_bo_detail.designation='Inscription formation' {$fin_req} ORDER BY hcrea DESC");
     } else {
         //$result=mysql_query("SELECT if_bo_com.numcom FROM if_bo_com,if_bo_detail WHERE etat $this->etat $fin_req AND if_bo_com.numcom=if_bo_detail.numcom ORDER BY hcrea DESC");
         $result = mysql_query("SELECT if_bo_com.numcom FROM if_bo_com WHERE etat {$this->etat} {$fin_req} ORDER BY hcrea DESC");
     }
     // echo "SELECT numcom FROM if_bo_com WHERE etat $this->etat $fin_req ORDER BY hcrea DESC";
     while ($row = mysql_fetch_row($result)) {
         $uneCommande = new Commande();
         $uneCommande->numcom = $row[0];
         $uneCommande->infosCommande();
         $this->commandes[] = $uneCommande;
     }
     if (count($this->commandes) >= 1) {
         return true;
     }
 }
开发者ID:rcampistron,项目名称:ParagrapheCMS,代码行数:47,代码来源:ListeCommandes.inc.php

示例2: Commande

  		</table>
	
	<?php 
            } else {
                ?>
	
		Vous n'avez aucune commande en cours.
	<?php 
            }
            //fin du else if ($nb_com)
        } else {
            if ($numcom) {
                //fin else if ($_SESSION['numclient'] && !$numcom)
                $voirCom = new Commande();
                $voirCom->numcom = $numcom;
                $voirCom->infosCommande();
                ?>
			<h2 class="supprmarge">Détail de la commande n° <?php 
                echo $numcom;
                ?>
<!--<?php 
                echo $voirCom->numerop;
                ?>
--> du <?php 
                echo $voirCom->dcrea;
                ?>
</h2> 
			<strong>Etat : </strong><?php 
                if ($voirCom->etat == "1") {
                    echo "en attente de validation";
                } else {
开发者ID:rcampistron,项目名称:ParagrapheCMS,代码行数:31,代码来源:compte-ifip.php

示例3: if

<? } else if($radioReg=="vi") { ?>
<form action= 'index.php?id=<?=$id?>&cnx=<?=$cnx?>&pg_admin=<?=$pg_admin?>&spec=<?=$spec?>&numpage=<?=$numpage?>&numrub=<?=$numrub?>&numcateg=<?=$numcateg?>&numsscateg=<?=$numsscateg?>&cont=<?=$cont?>&lg=<?=$lg?>' method="post">
<input type ="hidden" name="action" value="<?=$action?>">
<input type ="hidden" name="radioReg" value="vi">

<? } else if($radioReg=="cb") { ?>

	<?
	if ($_SESSION['numcom']) {
   
   $laCom= new Commande();
   $laCom->numclient=$_SESSION['numclient'];
   $laCom->numcom=$_SESSION['numcom'];			
			
   if ($forma) {//Le client règle une formation suite au mail reçu par l'admin
		$laCom->infosCommande();
		$montantCh=$laCom->montantTTC;
   } else {//Le client règle des docs (ouvrage,article, etc...)
		$numpays=$laCom->getNumPays();
		$lePanier=new Panier();
		$lePanier->numcom=$_SESSION['numcom'];
		$lePanier->pays=$numpays;
		$lePanier->infosPanier();
		$laCom->montantHT=$lePanier->totalHT;
		$laCom->montantTTC=$lePanier->totalTTC;
		$laCom->fraisPort=$lePanier->fraisPort;
		$montantCh=$lePanier->totalTTC;
   }
   $laCom->etat="1";
   $laCom->validerCommandeCB();		
   			
开发者ID:rcampistron,项目名称:ParagrapheCMS,代码行数:30,代码来源:paiement.php


注:本文中的Commande::infosCommande方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。