我正在使用Woocommerce最新版本3.4.2。如何获取一些订单项目元数据并为其分配自定义值?
- 我得到一个带有公共数组
$item_product_data_array
的元数据。 - 我需要获得一定的值 - (对产品进行额外修改(。并分配自定义 SKU。
例: 我有咖啡 - SKU 1001,在阵列中 - 键 [0] 产品咖啡有额外的修改 - 糖(元数据( 需要找到"糖"并分配他自定义SKU - 50005。
[label] => Optionally select [value] => Array ( [0] => Cinnamon [1] => Sugar [2] => Mint )
也就是说,这种添加剂应该在一个周期内作为价格或数量。他们都必须用值 [0] 处理他们的产品。
// Get product details
$items = $order->get_items();
$sku = array();
$product_kol = array();
$product_price = array();
$item_product_meta_data_array = array();
foreach( $items as $key => $item){
$product_kol[] = $item['qty'];
$product_price[] = $item['line_total'];
$item_id = $item['product_id'];
$product = wc_get_product($item_id);
$sku[] = $product->get_sku();
$items_meta_data[] = $item->get_meta_data();
$meta_data1 = $item->get_meta('Sugar');
if( ! empty( $meta_data1 ) ) {
$skus[] = "50005";
$item_quantities[] = "1";
}
}
// Product details for sending as one line to an external service
foreach ($sku as $key => $value){
$data .= "&product[".$key."]=".$value."";
$data .= "&product_kol[".$key."]=".$product_kol[$key]."";
$data .= "&product_price[".$key."]=".$product_price[$key]."";
if(isset($product_mod[$key])) {
$data .= "&product_mod[".$key."]=".$product_mod[$key]."";
}
}
我认为这将是有用的东西,因为产品附加选项的所有模块将所有值添加到元数据中。而且很难将它们拉出来并将它们包含在所需的周期中。
所以,我们应该得到:
//products sku
$product[0] = "10000"; // Coffe
$product[1] = "10001"; // Juice - second product for axample
$product[2] = "50005"; // Sugar
//products quantity
$product_kol[0] = "1"; // Аmount of coffee
$product_kol[1] = "1"; // Аmount of juice
$product_kol[2] = "1"; // Аmount of sugar
//Modifiers if they exist
$product_mod[2] = "0"; //The product with key 2 is the product modifier with key 0
更新:自 WooCommerce 版本 3 以来,您的代码确实已经过时了......看:
- 如何获取WooCommerce订单详细信息
- 在Woocommerce中获取订单项目和WC_Order_Item_Product 3
所以你的代码应该是:
$skus = $item_quantities = $line_item_totals = $items_meta_data = array();
// Loop though order items
foreach( $order->get_items() as $item_id => $item){
$product_id = $item->get_product_id();
$product = $item->get_product();
$item_quantities[] = $item->get_quantity();
$line_item_totals[] = $item->get_total();
$skus[] = $product->get_sku();
$items_meta_data[] = $item->get_meta_data();
}
// Product details for sending as one line to an external service
foreach ($skus as $key => $value){
$data .= "&product[".$key."]=".$value."";
$data .= "& product_kol[".$key."]=".$item_quantities[$key]."";
$data .= "& product_price[".$key."]=".$line_item_totals[$key]."";
if( isset($product_mod[$key]) ) {
$data .= "&product_mod[".$key."]=".$product_mod[$key]."";
}
}
它应该工作得更好...但未定义$product_mod
,也不使用$item->get_meta_data()
。
现在要获取一些自定义元数据,如果您的自定义元键是Custom thing
,您将使用:
$custom_thing = $item->get_meta('Custom thing');
这应该包含在订单项的 foreach 循环中......经过测试并工作。
其他一些事情:
- 要获取非折扣订单订单项总计,请执行以下操作:
$item->get_subtotal();
- 要获取打折订单订单项总计,请执行以下操作:
$item->get_total();
- 要获取产品价格(单价(:
$product->get-price();