私はいくつかの計算に対処するいくつかの問題を抱えています。商品ページがあり、その商品ページには割引価格でまとめて購入できる関連商品がいくつかあります。すべてが機能していますが、計算/割引率から親製品を除外するという問題が発生しています。
以下のコードは割引から親製品を削除していますが、カートに別のグループを追加すると、最初の親のみが省略され、新しく追加された親は省略されます。
$buy_together_id をチェックして、一意の ID を持つ各商品の最初の商品のみが割引計算から除外されていることを確認するにはどうすればよいですか?
この問題に取り組むためにコードに最近追加したのは、if ($k != 0) の両方のインスタンスですが、ここでも最初の親のみをチェックしており、すべての親をチェックしていません。
ありがとうございました、
セルジオ
<?php
global $config, $current_area;
if ($current_area != 'C' || !function_exists('func_bt_distribute_discount')){
return;
}
$discount_to_add = 0;
$group_discounts = array();
$bts_in_cart = array();
foreach ($products as $k => $v){
if ($k != 0) {
if ($v['buy_together_id']){
foreach ($v['buy_together_id'] as $gid){
$bts_in_cart[$gid][] = $v['productid'];
}
}
}
}
// Go through each product and calculate discount to be applied. //
foreach ($products as $k => $v){
if ($k != 0) {
if ($v['buy_together_id']){
foreach ($v['buy_together_id'] as $buy_together_id){
$_discount = 0;
if (!isset($GLOBALS['group_bt_discounts'][$buy_together_id])){
$GLOBALS['group_bt_discounts'][$buy_together_id] = func_query_first('SELECT * FROM xcart_buy_together_groups
WHERE groupid='.intval($buy_together_id));
}
$g_discount = $GLOBALS['group_bt_discounts'][$buy_together_id];
$price = defined('BT_ADD_TAXES') && BT_ADD_TAXES && $v['taxed_price'] ? $v['taxed_price'] : $v['price'];
// Discount //
if ($g_discount['discount']){
if ($g_discount['discount_type'] == 'P'){
$_discount = ($price / 100) * $g_discount['discount'];
} else {
$_discount = $g_discount['discount']/count($bts_in_cart[$buy_together_id]);
}
}
if ($_discount > 0){
/* Add to discount for the quantity */
if ($config['Buy_Together']['bt_apply_to_all'] == 'Y'){
$_discount *= $v['amount'];
}
// Change the product discount //
$products[$k] = func_bt_distribute_discount($products[$k], $_discount);
}
/* Cumulative total */
$discount_to_add += $_discount;
}
}
}
}
$return['products'] = $products;
$return['discount'] = $discount+$discount_to_add;
$return['discount_orig'] = $discount+$discount_to_add;
?>