コード例 #1
0
ファイル: Cart66Order.php プロジェクト: rbredow/allyzabbacart
 public function getAffiliateTotal()
 {
     // return portion of order total eligible for affiliate comission
     $affiliate_total = $this->total - ($this->shipping + $this->tax);
     $affiliate_total = Cart66Common::currencyFormat($affiliate_total, 2, '.', '');
     return $affiliate_total;
 }