Details
-
Type:
Improvement
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 4.2.0-b1
-
Component/s: None
-
Labels:None
Description
When a coupon is either expired or has reached it's usage limit, services that coupon is applied to cannot be modified, since the system attempts to re-apply the coupon. This seems to only occur in the admin interface. There are two cases. First when service change queuing is not enabled, the admin immediately receives an error:
That coupon does not appear to be valid.
If service change queuing is enabled then the edit will succeed, but when the cron runs to perform the service change, it returns an error:
Processing service change # resulted in status: Error
If the 'Limitations do apply to service renewals' option is selected and the limit is reached or the coupon expires, then it should continue to apply the coupon regardless.
If the 'Limitations do not apply to service renewals' option is selected and the limit is reached or the coupon expires, then either the coupon should be ignored or an error message should be shown immediately even if service change queuing is enabled.
Issue Links
- relates to
-
CORE-2472 Renewals should not increment coupon usage when limits don't apply
-
- Closed
-
As far as I can tell renewal happens exclusively through the cron. It seems to make sense for the coupon usage to be incremented at the time of invoice creation.
So this is the way I would expect coupon usage to act:
Service creation will increment the coupon usage for either 'limits ... apply' setting.
Service renewal will only increment the coupon usage and validate the usage limitation for the 'limits do apply' setting.
Service editing will only increment the coupon usage and validate the usage limitation when a coupon is being added or changed. (IMO this is what should be done to complete this task, just not tying to increment at all rather than not validating)
Should coupon usage be decremented when a coupon is removed from a service?
Another thing not directly addressed by this ask but related that since renewal invoices are created by the cron, they will fail silently once the coupon reaches it's limit. Even just ignoring the coupon sounds better than that to me.