3

我遇到了一些麻烦。我想做的是每次有人订阅我们的时事通讯时在 Magento 中自动生成一个随机优惠券代码。优惠券是 10 美元的任何东西,并将有一个 exp。订阅后两周的日期。

所以,我正在尝试编写一个简单的脚本,当提交“订阅我们的时事通讯”表单时会跳闸,它将与 Magento 交谈,向 Magento 索要一个随机优惠券代码,设置一些基本的价格规则(任何东西都可以减 10 美元) ,每个客户使用一次,每张优惠券使用一次,从生成后两周到期)然后返回一个随机优惠券代码(例如:WELCOME5​​798),该代码可以存储在一个将被传递的变量中,连同名字和姓氏和 e - 通过 MailChimp API 向 MailChimp 发送邮件。除了如何让 Mage 通过 PHP 脚本生成这样的代码然后返回所述代码(即我有我的表单并且我知道如何将值传递给 MailChimp)之外,我已经弄清楚了所有这些。

我是 Magento 的新手,所以我过得很艰难。我在 Mage/SalesRule/Model/Coupon 中看到了代码,也看到了一些解决类似问题的示例,例如:Magento - Create Unique Coupon Codes through code and mail it to the customer

但我真的不知道从哪里开始为我自己的目的制作这项工作。可以直接使用一些帮助/设置。:( 谢谢各位。

4

1 回答 1

3

那么,你的问题是什么?如何根据您的要求生成优惠券?或者如何在模块中安排它?

您可以使用事件 newsletter_subscriber_save_after 将您的自定义操作注入订阅过程。

这是根据您的需要创建优惠券的示例

<?php
/**
 * Create coupon for fixed price discount
 *
 * @param int $customer_id
 * @param float $discount
 */
public function createCoupon($customer_id, $discount)
{
    $customer = Mage::getModel('customer/customer')->load($customer_id);

    $customerGroupIds = Mage::getModel('customer/group')->getCollection()->getAllIds();
    $websitesId = Mage::getModel('core/website')->getCollection()->getAllIds();

    $customer_name = $customer->getName();
    $couponCode = Mage::helper('core')->getRandomString(9);

    $model = Mage::getModel('salesrule/rule');
    $model->setName('Discount for ' . $customer_name);
    $model->setDescription('Discount for ' . $customer_name);
    $model->setFromDate(date('Y-m-d'));
    $model->setToDate(date('Y-m-d', strtotime('+2 days')));
    $model->setCouponType(2);
    $model->setCouponCode($couponCode);
    $model->setUsesPerCoupon(1);
    $model->setUsesPerCustomer(1);
    $model->setCustomerGroupIds($customerGroupIds);
    $model->setIsActive(1);
    $model->setConditionsSerialized('a:6:{s:4:\"type\";s:32:\"salesrule/rule_condition_combine\";s:9:\"attribute\";N;s:8:\"operator\";N;s:5:\"value\";s:1:\"1\";s:18:\"is_value_processed\";N;s:10:\"aggregator\";s:3:\"all\";}');
    $model->setActionsSerialized('a:6:{s:4:\"type\";s:40:\"salesrule/rule_condition_product_combine\";s:9:\"attribute\";N;s:8:\"operator\";N;s:5:\"value\";s:1:\"1\";s:18:\"is_value_processed\";N;s:10:\"aggregator\";s:3:\"all\";}');
    $model->setStopRulesProcessing(0);
    $model->setIsAdvanced(1);
    $model->setProductIds('');
    $model->setSortOrder(1);
    $model->setSimpleAction('by_fixed');
    $model->setDiscountAmount($discount);
    $model->setDiscountStep(0);
    $model->setSimpleFreeShipping(0);
    $model->setTimesUsed(0);
    $model->setIsRss(0);
    $model->setWebsiteIds($websitesId);

    try {
        $model->save();
    } catch (Exception $e) {
        Mage::log($e->getMessage());
    }
}
于 2012-10-09T20:41:32.030 回答