本文整理匯總了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);
}
示例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();
}
示例3: getTotal
/**
* 獲取當前查詢條件表總數
*/
protected function getTotal()
{
$this->joint_field('COUNT(*) AS `conut` ');
$this->_db->_sql = 'SELECT ' . $this->mergeSqlLogic() . ';';
return $this->_db->getTotal();
}