mothership-ec / cog-mothership-discount-rewards
This package is abandoned and no longer maintained.
No replacement package was suggested.
Cog module to allow discount rewards with the 'Refer a Friend' module
1.0.0
2015-12-09 11:18 UTC
Requires
- php: >=5.4.0
- mothership-ec/cog: ~4.0
- mothership-ec/cog-mothership-commerce: ~5.0
- mothership-ec/cog-mothership-discount: ~2.0
- mothership-ec/cog-mothership-refer-a-friend: ~1.0
- mothership-ec/cog-user: ~2.0
This package is not auto-updated.
Last update: 2021-03-22 11:07:47 UTC
README
The Message\Mothership\DiscountReward
cogule is a library that plugs into the <a href="https://github.com/mothership-ec/cog-mothership-refer-a-friend"">Refer a Friend cogule, allowing users to receive a discount reward for referring someone to the e-commerce site.
This cogule includes:
Reward types:
- Discount reward - A discount reward for the referrer.
Triggers:
- Order create - The reward is triggered when the referred user creates an order, i.e. they buy something. The specific event that is being listened for is the
OrderEvents::CREATE_COMPLETE
event.
Constraints:
- Minimum order - A magic constraint that will be cloned by the
MinumumOrderFactory
for each currency registered in thecurrency.yml
config file. This sets how much the total gross of the order must be for the reward creation to be triggered. - Timeout - A constraint that determines how long (in days) the referred user has to create an order. If the referral has timed out, it will update the status to
expired
.- TODO: Create cron task to automatically update timeouts
Reward options
- Discount type - Set whether the discount is a percentage value or a specific amount.
- Percentage value - If the discount type is set to Percentage, this sets the value of that percentage
- Set amount - A magic reward type that will be cloned by the
SetAmountFactory
for each currency registered in thecurrency.yml
config file. If the discount type is set to a specific amount, this determines what value the discount has, for each currency.