我要添加到我的车的一些订单项自定义量。 商务产品保存价格= 0,和我的模块计算价格和行项目添加到购物车/订单,但我不知道如何设置程序的价格。
我读过有关使用规则,但我需要我的模块可以设置/更改的价格, 而不调用规则 。
我tryed与实体包装,我tryed改变)与commerce_product_line_item_new(创建的项目,但什么都没有,当行项目进入的车总是有原来的产品的价格(在我的情况,0)。
如何改变排列项价格编程?
到目前为止我的代码是这样的:
// For debugging, this function is called by hook_menu()
function mymodule_test($product_id)
{
global $user;
$user = user_load($user->uid);
$order = commerce_cart_order_load($user->uid);
$order_wrapper = entity_metadata_wrapper('commerce_order', $order);
$product = commerce_product_load($product_id);
$line_item = commerce_product_line_item_new(
$product,
1,
0,
array(
),
'cover'
);
$line_item_wrapper = entity_metadata_wrapper("commerce_line_item", $line_item);
$line_item_wrapper->commerce_unit_price->data = commerce_price_component_add(
$line_item_wrapper->commerce_unit_price->value(),
'base_price',
array(
'amount' => 1234,
'currency_code' => 'EUR',
'data' => array(),
),
TRUE
);
$insert_line_item = commerce_cart_product_add($user->uid, $line_item_wrapper->value(), FALSE);
return 'done';
}
但奇怪的是,我tryed适应commerce_line_item_unit_price_amount()在商业/模块/ LINE_ITEM / commerce_line_item.rules.inc发现的代码,但这个测试:
<?php
global $user;
$product = commerce_product_load(4); // my commerce product for test
$line_item = commerce_product_line_item_new(
$product,
1,
0,
array(
),
'cover' // I do have this line_items type
);
// manually set amount and component name
$amount = 1234;
$component_name = 'base_price'; // tryed with discount, nothing change
$wrapper = entity_metadata_wrapper('commerce_line_item', $line_item);
$unit_price = commerce_price_wrapper_value($wrapper, 'commerce_unit_price', TRUE);
// Calculate the updated amount and create a price array representing the
// difference between it and the current amount.
$current_amount = $unit_price['amount'];
$updated_amount = commerce_round(COMMERCE_ROUND_HALF_UP, $amount);
$difference = array(
'amount' => $updated_amount - $current_amount,
'currency_code' => $unit_price['currency_code'],
'data' => array(),
);
// Set the amount of the unit price and add the difference as a component.
$wrapper->commerce_unit_price->amount = $updated_amount;
$wrapper->commerce_unit_price->data = commerce_price_component_add(
$wrapper->commerce_unit_price->value(),
$component_name,
$difference,
TRUE
);
$insert_line_item = commerce_cart_product_add($user->uid, $line_item, FALSE);
?>
还是失败,LINE_ITEM进入购物车,但与原来的价格被引用的产品。
任何的想法?
对于不想使用规则,并希望直接修改价格谁的人。 这里是我的解决方案:
// Alter the price in list and single product page.
function my_module_commerce_product_calculate_sell_price_line_item_alter($line_item){
$price = 100; //1 dollar
$line_item->commerce_unit_price[LANGUAGE_NONE]['0']['amount'] = $price;
}
// Alter the price in cart & order.
function my_module_commerce_cart_line_item_refresh($line_item, $order_wrapper){
$price = 100; //1 dollar
$line_item->commerce_unit_price[LANGUAGE_NONE]['0']['amount'] = $price;
// Alter the base_price component.
$line_item->commerce_unit_price[LANGUAGE_NONE]['0']['data']['components']['0']['price']['amount'] = $price;
}
如果你正在寻找忽略任何以前的值已经保存到订单项,并从您新的金额重新计算总您正在寻找的功能是commerce_line_item_rebase_unit_price。
设置新的金额值,然后通过运行有订单项,省行项目和顺序:
$line_item_wrapper->commerce_unit_price->amount = 13;
commerce_line_item_rebase_unit_price($line_item_wrapper->value());
commerce_line_item_save($line_item_wrapper->value());
我今天整天都通过这个问题上挣扎着,最后想通了正确的路径,以改变线项目的价格。 问题是,即使你成功改变排列项价格为自定义值,下页刷新车将重置行项目相匹配的原装产品价格。 看看在commerce_cart_order_refresh()
的详细信息的功能。 此功能,每次执行的命令/车被装载在页面上,有没有办法解决它的时间。
事实证明,以改变线项目价格的正确方法是要么使用规则或实施hook_commerce_cart_line_item_refresh()
函数。 无论哪种方式,Drupal的商业需要能够给每个车/订单加载时申请变更逻辑。
我结束了在我保存自定义价格值我想要的行项目创建一个自定义字段。 然后我用一个定价规则,以自定义价格值复制到产品的价格值每当车被刷新。
下面的博客文章在弄清这一点非常有帮助。 它表明你如何将自定义字段添加到订单项类型和如何设置定价规则的定制量复制到单价。
http://commerceguys.com/blog/using-custom-line-items-provide-donation-feature-drupal-commerce
最近,我不得不实施在商务部,但捐赠形式商务部快速结账模块不处理自定义行项目。 由于这是捐赠,所有(谁是试图拧的房子?),我觉得它适合于捐赠金额通过在URL中的第三个参数的快速结账模块提供。 这是我如何去了解黑客的模块:
我添加了一个新条目到路由器:
$items['commerce-express-checkout/%/%/%'] = array(
'title' => 'Express Checkout w/ extra argument',
// 'page callback' => 'commerce_express_checkout_create_order',
'page callback' => 'commerce_express_checkout_create_order_extra',
'page arguments' => array(1, 2, 3),
'access arguments' => array('access checkout'),
'type' => MENU_CALLBACK,
);
我复制和调整默认的回调和上涨“_extra”给它。 请注意,“数据”属性似乎是刚刚场合像这样一个静态变量存储和持续的行项目的生命。
function commerce_express_checkout_create_order_extra($product_id, $token, $amount) {
if (drupal_hmac_base64($product_id, drupal_get_private_key().drupal_get_hash_salt()) == $token && is_numeric($amount)) {
global $user;
$product = commerce_product_load($product_id);
$product->commerce_price['und'][0]['amount'] = (int)$amount;
$order = ($user->uid) ? commerce_order_new($user->uid, 'checkout_checkout') : commerce_cart_order_new();
commerce_order_save($order);
$price = array('amount' => commerce_round(COMMERCE_ROUND_HALF_UP, $amount), 'currency_code' => commerce_default_currency());
$line_item = commerce_product_line_item_new($product, 1, $order->order_id);
$line_item->data = array('und' => array('0' => $price));
commerce_line_item_save($line_item);
$order_wrapper = entity_metadata_wrapper('commerce_order', $order);
$order_wrapper->commerce_line_items[] = $line_item;
$order->data['type'] = 'commerce_express_checkout_order';
commerce_order_save($order);
drupal_goto('checkout/' . $order->order_id);
return "";
}
return "";
}
这里是结束了最棘手只是由于学习曲线,不知道究竟发生了什么功能,使用部分:
/**
* Implements hook_commerce_cart_line_item_refresh().
*/
function commerce_express_checkout_commerce_cart_line_item_refresh($line_item, $order_wrapper) {
if ($line_item->commerce_product['und'][0]['line_item_label'] == 'DONATE' || $line_item->commerce_product['und'][0]['product_id'] == '11') {
$price = array('amount' => commerce_round(COMMERCE_ROUND_HALF_UP, $line_item->data['und'][0]['amount']), 'currency_code' => commerce_default_currency());
$line_item->commerce_unit_price = array('und' => array('0' => $price));
$line_item_wrapper = entity_metadata_wrapper('commerce_line_item', $line_item);
$line_item_wrapper->commerce_unit_price->data = commerce_price_component_add(
$line_item_wrapper->commerce_unit_price->value(), 'base_price', $price, TRUE
);
}
}
车被修改每一次,它刷新并尝试设置产品在车到他们的代码的原型。 这似乎非常低效给我太多,但我可能失去了一些东西。
这篇文章我指出了正确的方向通过使用编程方式改变一个Drupal商贸行项目hook_commerce_cart_line_item_refersh()
然而,这里的一些答案要么是完全错误的,或者非常低效和马虎。
这将是改变在Drupal商务部订单类型正确有效的解决方案:
/*
* implements hook_commerce_cart_line_item_refresh()
*
*/
function MYMODULE_commerce_cart_line_item_refresh($line_item, $order_wrapper){
$line_wrapper = entity_metadata_wrapper('commerce_line_item', $line_item);
$new_price = 100; //I use a function to calculate the value of $new_price
if(!empty($new_price)){
$line_wrapper->commerce_unit_price->amount->set($new_price);
$line_wrapper->save();
}
}