我正在创建一个脚本,我从第三方获取订单数据。一切都很好,问题是我无法添加storecredit订购。有没有办法按顺序添加商店信用,并从grandtotal中减去它们。这是我的代码:
$order->setDiscountAmount($total_discount)->setBaseDiscountAmout($total_discount);
$order->setSubtotal($total_amount)->setBaseSubtotal($total_amount);
$order->setGrandTotal($total_amount-$total_discount)->setBaseGrandTotal($total_amount-$total_discount);
$order->save();
答案 0 :(得分:0)
我想做同样的事情,看看评论,我认为这个帖子刚刚死了是荒谬的。要么你在这里提供帮助和帮助,要么你不是。如果线程因执行问题标准而死亡,这有用吗?
以下是如何做到的。
$balance = Mage::getModel('enterprise_customerbalance/balance')
->setWebsiteId(Mage::app()->getStore($quote->getStoreId())->getWebsiteId())
->setCustomerId($quote->getCustomerId())
->loadByCustomer();
if ($balance && $balance >= $creditTobeUsed) {
$quote->setUseCustomerBalance(true);
$quote->setCustomerBalanceInstance($balance);
}
$quote->collectTotals();
$quote->save();
Enterprise_CustomerBalance_Block_Checkout_Onepage_Payment_Additional有一些你可以使用的方法
最后,在应用点数时,在结账时请确保设置以下内容
<input type="hidden" type="text" value="1" name="payment[use_customer_balance]" class="input-text" />