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


PHP Discount::getDiscountRateCustomer方法代码示例

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


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

示例1: showDiscountInfo

 /**
  * Set up the full set of discount information placeholders
  * @param   integer   $groupCustomerId    The customer group ID of the current customer
  * @param   integer   $groupArticleId     The article group ID of the current article
  * @param   integer   $groupCountId       The count discount group ID of the current article
  * @param   integer   $count              The number of articles to be used for the count discount
  * @static
  * @author    Reto Kohli <reto.kohli@comvation.com>
  */
 static function showDiscountInfo($groupCustomerId, $groupArticleId, $groupCountId, $count)
 {
     // Pick the unit for this product (count, meter, kilo, ...)
     $unit = Discount::getUnit($groupCountId);
     if (!empty($unit)) {
         self::$objTemplate->setVariable('SHOP_PRODUCT_UNIT', $unit);
     }
     if ($groupCustomerId > 0) {
         $rateCustomer = Discount::getDiscountRateCustomer($groupCustomerId, $groupArticleId);
         if ($rateCustomer > 0) {
             self::$objTemplate->setVariable(array('SHOP_DISCOUNT_RATE_CUSTOMER' => $rateCustomer));
         }
     }
     if ($groupCountId > 0) {
         $rateCount = Discount::getDiscountRateCount($groupCountId, $count);
         $listCount = self::getDiscountCountString($groupCountId);
         if ($rateCount > 0) {
             // Show discount rate if applicable
             self::$objTemplate->setVariable('SHOP_DISCOUNT_RATE_COUNT', $rateCount);
         }
         if (!empty($listCount)) {
             // Show discount rate string if applicable
             self::$objTemplate->setVariable('SHOP_DISCOUNT_RATE_COUNT_LIST', $listCount);
         }
     }
 }
开发者ID:nahakiole,项目名称:cloudrexx,代码行数:35,代码来源:Shop.class.php

示例2: get_custom_price

 /**
  * Returns a product price in the active currency, depending on the
  * Customer and special offer status.
  * @param   Customer  $objCustomer      The Customer, or null
  * @param   double    $price_options    The price for Attributes,
  *                                      if any, or 0 (zero)
  * @param   integer   $count            The number of products, defaults
  *                                      to 1 (one)
  * @param   boolean   $ignore_special_offer
  *                                      If true, special offers are ignored.
  *                                      This is needed to actually determine
  *                                      both prices in the products view.
  *                                      Defaults to false.
  * @return  double                      The price converted to the active
  *                                      currency
  * @author    Reto Kohli <reto.kohli@comvation.com>
  */
 function get_custom_price($objCustomer = null, $price_options = 0, $count = 1, $ignore_special_offer = false)
 {
     $normalPrice = $this->price();
     $resellerPrice = $this->resellerprice();
     $discountPrice = $this->discountprice();
     $discount_active = $this->discount_active();
     $groupCountId = $this->group_id();
     $groupArticleId = $this->article_id();
     $price = $normalPrice;
     if (!$ignore_special_offer && $discount_active == 1 && $discountPrice != 0) {
         $price = $discountPrice;
     } else {
         if ($objCustomer && $objCustomer->is_reseller() && $resellerPrice != 0) {
             $price = $resellerPrice;
         }
     }
     $price += $price_options;
     $rateCustomer = 0;
     if ($objCustomer) {
         $groupCustomerId = $objCustomer->group_id();
         if ($groupCustomerId) {
             $rateCustomer = Discount::getDiscountRateCustomer($groupCustomerId, $groupArticleId);
             $price -= $price * $rateCustomer * 0.01;
         }
     }
     $rateCount = 0;
     if ($count > 0) {
         $rateCount = Discount::getDiscountRateCount($groupCountId, $count);
         $price -= $price * $rateCount * 0.01;
     }
     $price = Currency::getCurrencyPrice($price);
     return $price;
 }
开发者ID:Cloudrexx,项目名称:cloudrexx,代码行数:50,代码来源:Product.class.php

示例3: getJavascriptArray

 static function getJavascriptArray($groupCustomerId = 0, $isReseller = false)
 {
     global $objDatabase;
     // create javascript array containing all products;
     // used to update the display when changing the product ID.
     // we need the VAT rate in there as well in order to be able to correctly change the products,
     // and the flag indicating whether the VAT is included in the prices already.
     $strJsArrProduct = 'var vat_included = ' . intval(Vat::isIncluded()) . ";\nvar arrProducts = new Array();\n";
     $arrSql = \Text::getSqlSnippets('`product`.`id`', FRONTEND_LANG_ID, 'Shop', array('name' => Product::TEXT_NAME, 'code' => Product::TEXT_CODE));
     $query = "\n            SELECT `product`.`id`,\n                   `product`.`resellerprice`, `product`.`normalprice`,\n                   `product`.`discountprice`, `product`.`discount_active`,\n                   `product`.`weight`, `product`.`vat_id`,\n                   `product`.`distribution`,\n                   `product`.`group_id`, `product`.`article_id`, " . $arrSql['field'] . "\n              FROM `" . DBPREFIX . "module_shop" . MODULE_INDEX . "_products` AS `product`" . $arrSql['join'] . "\n             WHERE `product`.`active`=1";
     $objResult = $objDatabase->Execute($query);
     if (!$objResult) {
         return Product::errorHandler();
     }
     while (!$objResult->EOF) {
         $id = $objResult->fields['id'];
         $distribution = $objResult->fields['distribution'];
         $strCode = $objResult->fields['code'];
         if ($strCode === null) {
             $strCode = \Text::getById($id, 'Shop', Product::TEXT_CODE)->content();
         }
         $strName = $objResult->fields['name'];
         if ($strName === null) {
             $strName = \Text::getById($id, 'Shop', Product::TEXT_NAME)->content();
         }
         $price = $objResult->fields['normalprice'];
         if ($objResult->fields['discount_active']) {
             $price = $objResult->fields['discountprice'];
         } elseif ($isReseller) {
             $price = $objResult->fields['resellerprice'];
         }
         // Determine discounted price from customer and article group matrix
         $discountCustomerRate = Discount::getDiscountRateCustomer($groupCustomerId, $objResult->fields['article_id']);
         $price -= $price * $discountCustomerRate * 0.01;
         // Determine prices for various count discounts, if any
         $arrDiscountCountRate = Discount::getDiscountCountRateArray($objResult->fields['group_id']);
         //\DBG::log("Products::getJavascriptArray($groupCustomerId, $isReseller): Discount rate array: ".var_export($arrDiscountCountRate, true));
         // Order the counts in reverse, from highest to lowest
         $strJsArrPrice = '';
         if (is_array($arrDiscountCountRate)) {
             foreach ($arrDiscountCountRate as $count => $rate) {
                 // Deduct the customer type discount right away
                 //\DBG::log("Products::getJavascriptArray(): price $price, rate $rate");
                 $discountPrice = $price - $price * $rate * 0.01;
                 $strJsArrPrice .= ($strJsArrPrice ? ',' : '') . $count . ',' . Currency::getCurrencyPrice($discountPrice);
             }
         }
         $strJsArrPrice .= ($strJsArrPrice ? ',' : '') . '0,' . Currency::getCurrencyPrice($price);
         $strJsArrProduct .= 'arrProducts[' . $id . '] = {' . 'id:' . $id . ',' . 'code:"' . $strCode . '",' . 'title:"' . htmlspecialchars($strName, ENT_QUOTES, CONTREXX_CHARSET) . '",' . 'percent:' . Vat::getRate($objResult->fields['vat_id']) . ',' . 'weight:' . ($distribution == 'delivery' ? '"' . Weight::getWeightString($objResult->fields['weight']) . '"' : '0') . ',' . 'price:[' . $strJsArrPrice . "]};\n";
         $objResult->MoveNext();
     }
     return $strJsArrProduct;
 }
开发者ID:Niggu,项目名称:cloudrexx,代码行数:53,代码来源:Products.class.php


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