我已經在網絡上和本網站上搜索解決方案,但找不到任何。 我想獲取與Magento中的優惠券代碼關聯的客戶名稱。我發現了使用優惠券代碼的時間的一些代碼,但我無法獲得客戶名稱。在Magento中獲取優惠券代碼的客戶名稱
我嘗試下面的代碼:
<?php
$mageFilename = 'app/Mage.php';
require_once $mageFilename;
umask(0);
Mage::app('admin');
$coupon = Mage::getModel('salesrule/coupon/usage');
$coupon->load('dd_38WX9N', 'code');
if($coupon->getId()) {
$timesUsed = $coupon->getTimesUsed();
$customer = $coupon->getCustomerId();
echo $timesUsed;
echo $customer;
}
?>
可能有人請幫助我與和我指向正確的方向。
非常感謝您的幫助。 丹尼爾
非常感謝Diglin的幫助。這就像一個魅力。你剛剛救了我的一天:-) –
不要猶豫投票:-) –
我試圖做到這一點,但我的名聲不允許我投票:-(我會回來,儘快做到這一點聲望讓我投票。 –