當前位置: 首頁>>代碼示例>>PHP>>正文


PHP unknown::getTotal方法代碼示例

本文整理匯總了PHP中unknown::getTotal方法的典型用法代碼示例。如果您正苦於以下問題:PHP unknown::getTotal方法的具體用法?PHP unknown::getTotal怎麽用?PHP unknown::getTotal使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在unknown的用法示例。


在下文中一共展示了unknown::getTotal方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getTotal

 /**
  * 獲取當前查詢條件表總數
  */
 public function getTotal()
 {
     $sql = 'SELECT COUNT(*) as conut ' . $this->mergeSql('from');
     return $this->_db->getTotal($sql);
 }
開發者ID:v3u3i87,項目名稱:run_cli,代碼行數:8,代碼來源:Model.php

示例2: recalcOrder

 /**
  * 合計、値引きを再計算し、dtb_orderデータに登録する
  *
  * @param unknown $Order
  * @param unknown $Coupon
  */
 public function recalcOrder(&$Order, &$Coupon)
 {
     $discount = 0;
     $total = $Order->getTotal();
     // ------------------------------------------
     // クーポンコードが存在する場合
     // カートに入っている商品の値引き額を設定する
     // ------------------------------------------
     if (!is_null($Coupon)) {
         // 対象商品の存在確認.
         // 割引対象商品が存在する場合は値引き額を取得する
         if ($this->existsCouponProduct($Coupon, $Order)) {
             // 割引対象商品がある場合は値引き額を計算する
             if ($Coupon->getDiscountType() == 1) {
                 $discount = $Coupon->getDiscountPrice();
             } else {
                 // 課稅區分の取得
                 $taxService = $this->app['eccube.service.tax_rule'];
                 $TaxRule = $this->app['eccube.repository.tax_rule']->getByRule();
                 // 小數點以下は四捨五入
                 $discount = $taxService->calcTax($Order->getTotal(), $Coupon->getDiscountRate(), $TaxRule->getCalcRule()->getId(), $TaxRule->getTaxAdjust());
             }
             // 合計金額の再計算
             $total = $Order->getTotal() - $discount;
             $total = $total < 0 ? 0 : $total;
         }
     }
     // DB登録
     $Order->setDiscount($discount);
     $Order->setTotal($total);
     $Order->setPaymentTotal($total);
     $this->app['orm.em']->flush();
 }
開發者ID:k-yamamura,項目名稱:coupon-plugin,代碼行數:39,代碼來源:CouponService.php

示例3: getTotal

 /**
  * 獲取當前查詢條件表總數
  */
 protected function getTotal()
 {
     $this->joint_field('COUNT(*) AS `conut` ');
     $this->_db->_sql = 'SELECT ' . $this->mergeSqlLogic() . ';';
     return $this->_db->getTotal();
 }
開發者ID:v3u3i87,項目名稱:upadd,代碼行數:9,代碼來源:Query.php


注:本文中的unknown::getTotal方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。