class-wc-subscriptions-coupon.php
24.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
<?php
/**
* Subscriptions Coupon Class
*
* Mirrors a few functions in the WC_Cart class to handle subscription-specific discounts
*
* @package WooCommerce Subscriptions
* @subpackage WC_Subscriptions_Coupon
* @category Class
* @author Max Rice
* @since 1.2
*/
class WC_Subscriptions_Coupon {
/** @var string error message for invalid subscription coupons */
public static $coupon_error;
/**
* Stores the coupons not applied to a given calculation (so they can be applied later)
*
* @since 1.3.5
*/
private static $removed_coupons = array();
/**
* Set up the class, including it's hooks & filters, when the file is loaded.
*
* @since 1.2
**/
public static function init() {
// Add custom coupon types
add_filter( 'woocommerce_coupon_discount_types', __CLASS__ . '::add_discount_types' );
// Handle discounts
add_filter( 'woocommerce_coupon_get_discount_amount', __CLASS__ . '::get_discount_amount', 10, 5 );
// Validate subscription coupons
add_filter( 'woocommerce_coupon_is_valid', __CLASS__ . '::validate_subscription_coupon', 10, 2 );
// Remove coupons which don't apply to certain cart calculations
add_action( 'woocommerce_before_calculate_totals', __CLASS__ . '::remove_coupons', 10 );
// Add our recurring product coupon types to the list of coupon types that apply to individual products
add_filter( 'woocommerce_product_coupon_types', __CLASS__ . '::filter_product_coupon_types', 10, 1 );
}
/**
* Add discount types
*
* @since 1.2
*/
public static function add_discount_types( $discount_types ) {
return array_merge(
$discount_types,
array(
'sign_up_fee' => __( 'Sign Up Fee Discount', 'woocommerce-subscriptions' ),
'sign_up_fee_percent' => __( 'Sign Up Fee % Discount', 'woocommerce-subscriptions' ),
'recurring_fee' => __( 'Recurring Product Discount', 'woocommerce-subscriptions' ),
'recurring_percent' => __( 'Recurring Product % Discount', 'woocommerce-subscriptions' ),
)
);
}
/**
* Get the discount amount for Subscriptions coupon types
*
* @since 2.0.10
*/
public static function get_discount_amount( $discount, $discounting_amount, $cart_item, $single, $coupon ) {
// Only deal with subscriptions coupon types
if ( ! in_array( $coupon->type, array( 'recurring_fee', 'recurring_percent', 'sign_up_fee', 'sign_up_fee_percent', 'renewal_fee', 'renewal_percent', 'renewal_cart' ) ) ) {
return $discount;
}
$product_id = ( $cart_item['data']->is_type( array( 'subscription_variation' ) ) ) ? $cart_item['data']->variation_id : $cart_item['data']->id;
// If not a subscription product return the default discount
if ( ! wcs_cart_contains_renewal() && ! WC_Subscriptions_Product::is_subscription( $cart_item['data'] ) ) {
return $discount;
}
// But if cart contains a renewal, we need to handle both subscription products and manually added non-susbscription products that could be part of a subscription
if ( wcs_cart_contains_renewal() && ! self::is_subsbcription_renewal_line_item( $product_id, $cart_item ) ) {
return $discount;
}
// Set our starting discount amount to 0
$discount_amount = 0;
// Item quantity
$cart_item_qty = is_null( $cart_item ) ? 1 : $cart_item['quantity'];
// Get calculation type
$calculation_type = WC_Subscriptions_Cart::get_calculation_type();
// Set the defaults for our logic checks to false
$apply_recurring_coupon = $apply_recurring_percent_coupon = $apply_initial_coupon = $apply_initial_percent_coupon = $apply_renewal_cart_coupon = false;
// Check if we're applying any recurring discounts to recurring total calculations
if ( 'recurring_total' == $calculation_type ) {
$apply_recurring_coupon = ( 'recurring_fee' == $coupon->type ) ? true : false;
$apply_recurring_percent_coupon = ( 'recurring_percent' == $coupon->type ) ? true : false;
}
// Check if we're applying any initial discounts
if ( 'none' == $calculation_type ) {
// If all items have a free trial we don't need to apply recurring coupons to the initial total
if ( ! WC_Subscriptions_Cart::all_cart_items_have_free_trial() ) {
if ( 'recurring_fee' == $coupon->type ) {
$apply_initial_coupon = true;
}
if ( 'recurring_percent' == $coupon->type ) {
$apply_initial_percent_coupon = true;
}
}
// Apply sign-up discounts
if ( ! empty( $cart_item['data']->subscription_sign_up_fee ) ) {
if ( 'sign_up_fee' == $coupon->type ) {
$apply_initial_coupon = true;
}
if ( 'sign_up_fee_percent' == $coupon->type ) {
$apply_initial_percent_coupon = true;
}
// Only Sign up fee coupons apply to sign up fees, adjust the discounting_amount accordingly
if ( in_array( $coupon->type, array( 'sign_up_fee', 'sign_up_fee_percent' ) ) ) {
$discounting_amount = $cart_item['data']->subscription_sign_up_fee;
} else {
$discounting_amount -= $cart_item['data']->subscription_sign_up_fee;
}
}
// Apply renewal discounts
if ( 'renewal_fee' == $coupon->type ) {
$apply_recurring_coupon = true;
}
if ( 'renewal_percent' == $coupon->type ) {
$apply_recurring_percent_coupon = true;
}
if ( 'renewal_cart' == $coupon->type ) {
$apply_renewal_cart_coupon = true;
}
}
// Calculate our discount
if ( $apply_recurring_coupon || $apply_initial_coupon ) {
// Recurring coupons only apply when there is no free trial (carts can have a mix of free trial and non free trial items)
if ( $apply_initial_coupon && 'recurring_fee' == $coupon->type && ! empty( $cart_item['data']->subscription_trial_length ) ) {
$discounting_amount = 0;
}
$discount_amount = min( $coupon->coupon_amount, $discounting_amount );
$discount_amount = $single ? $discount_amount : $discount_amount * $cart_item_qty;
} elseif ( $apply_recurring_percent_coupon ) {
$discount_amount = ( $discounting_amount / 100 ) * $coupon->amount;
} elseif ( $apply_initial_percent_coupon ) {
// Recurring coupons only apply when there is no free trial (carts can have a mix of free trial and non free trial items)
if ( 'recurring_percent' == $coupon->type && ! empty( $cart_item['data']->subscription_trial_length ) ) {
$discounting_amount = 0;
}
$discount_amount = ( $discounting_amount / 100 ) * $coupon->amount;
} elseif ( $apply_renewal_cart_coupon ) {
/**
* See WC Core fixed_cart coupons - we need to divide the discount between rows based on their price in proportion to the subtotal.
* This is so rows with different tax rates get a fair discount, and so rows with no price (free) don't get discounted.
*
* BUT... we also need the subtotal to exclude non renewal products, so user the renewal subtotal
*/
$discount_percent = ( $discounting_amount * $cart_item['quantity'] ) / self::get_renewal_subtotal( $coupon->code );
$discount_amount = ( $coupon->amount * $discount_percent ) / $cart_item_qty;
}
// Round - consistent with WC approach
$discount_amount = round( $discount_amount, WC_ROUNDING_PRECISION );
return $discount_amount;
}
/**
* Determine if the cart contains a discount code of a given coupon type.
*
* Used internally for checking if a WooCommerce discount coupon ('core') has been applied, or for if a specific
* subscription coupon type, like 'recurring_fee' or 'sign_up_fee', has been applied.
*
* @param string $coupon_type Any available coupon type or a special keyword referring to a class of coupons. Can be:
* - 'any' to check for any type of discount
* - 'core' for any core WooCommerce coupon
* - 'recurring_fee' for the recurring amount subscription coupon
* - 'sign_up_fee' for the sign-up fee subscription coupon
*
* @since 1.3.5
*/
public static function cart_contains_discount( $coupon_type = 'any' ) {
$contains_discount = false;
$core_coupons = array( 'fixed_product', 'percent_product', 'fixed_cart', 'percent' );
if ( WC()->cart->applied_coupons ) {
foreach ( WC()->cart->applied_coupons as $code ) {
$coupon = new WC_Coupon( $code );
if ( 'any' == $coupon_type || $coupon_type == $coupon->type || ( 'core' == $coupon_type && in_array( $coupon->type, $core_coupons ) ) ) {
$contains_discount = true;
break;
}
}
}
return $contains_discount;
}
/**
* Check if a subscription coupon is valid before applying
*
* @since 1.2
*/
public static function validate_subscription_coupon( $valid, $coupon ) {
if ( ! apply_filters( 'woocommerce_subscriptions_validate_coupon_type', true, $coupon, $valid ) ) {
return $valid;
}
self::$coupon_error = '';
// ignore non-subscription coupons
if ( ! in_array( $coupon->type, array( 'recurring_fee', 'sign_up_fee', 'recurring_percent', 'sign_up_fee_percent', 'renewal_fee', 'renewal_percent', 'renewal_cart' ) ) ) {
// but make sure there is actually something for the coupon to be applied to (i.e. not a free trial)
if ( ( wcs_cart_contains_renewal() || WC_Subscriptions_Cart::cart_contains_subscription() ) && 0 == WC()->cart->subtotal ) {
self::$coupon_error = __( 'Sorry, this coupon is only valid for an initial payment and the cart does not require an initial payment.', 'woocommerce-subscriptions' );
}
} else {
// prevent subscription coupons from being applied to renewal payments
if ( wcs_cart_contains_renewal() && ! in_array( $coupon->type, array( 'renewal_fee', 'renewal_percent', 'renewal_cart' ) ) ) {
self::$coupon_error = __( 'Sorry, this coupon is only valid for new subscriptions.', 'woocommerce-subscriptions' );
}
// prevent subscription coupons from being applied to non-subscription products
if ( ! wcs_cart_contains_renewal() && ! WC_Subscriptions_Cart::cart_contains_subscription() ) {
self::$coupon_error = __( 'Sorry, this coupon is only valid for subscription products.', 'woocommerce-subscriptions' );
}
// prevent subscription renewal coupons from being applied to non renewal payments
if ( ! wcs_cart_contains_renewal() && in_array( $coupon->type, array( 'renewal_fee', 'renewal_percent', 'renewal_cart' ) ) ) {
// translators: 1$: coupon code that is being removed
self::$coupon_error = sprintf( __( 'Sorry, the "%1$s" coupon is only valid for renewals.', 'woocommerce-subscriptions' ), $coupon->code );
}
// prevent sign up fee coupons from being applied to subscriptions without a sign up fee
if ( 0 == WC_Subscriptions_Cart::get_cart_subscription_sign_up_fee() && in_array( $coupon->type, array( 'sign_up_fee', 'sign_up_fee_percent' ) ) ) {
self::$coupon_error = __( 'Sorry, this coupon is only valid for subscription products with a sign-up fee.', 'woocommerce-subscriptions' );
}
}
if ( ! empty( self::$coupon_error ) ) {
$valid = false;
add_filter( 'woocommerce_coupon_error', __CLASS__ . '::add_coupon_error', 10 );
}
return $valid;
}
/**
* Returns a subscription coupon-specific error if validation failed
*
* @since 1.2
*/
public static function add_coupon_error( $error ) {
if ( self::$coupon_error ) {
return self::$coupon_error;
} else {
return $error;
}
}
/**
* Checks a given product / coupon combination to determine if the subscription should be discounted
*
* @since 1.2
*/
private static function is_subscription_discountable( $cart_item, $coupon ) {
$product_cats = wp_get_post_terms( $cart_item['product_id'], 'product_cat', array( 'fields' => 'ids' ) );
$this_item_is_discounted = false;
// Specific products get the discount
if ( sizeof( $coupon->product_ids ) > 0 ) {
if ( in_array( wcs_get_canonical_product_id( $cart_item ), $coupon->product_ids ) || in_array( $cart_item['data']->get_parent(), $coupon->product_ids ) ) {
$this_item_is_discounted = true;
}
// Category discounts
} elseif ( sizeof( $coupon->product_categories ) > 0 ) {
if ( sizeof( array_intersect( $product_cats, $coupon->product_categories ) ) > 0 ) {
$this_item_is_discounted = true;
}
} else {
// No product ids - all items discounted
$this_item_is_discounted = true;
}
// Specific product ID's excluded from the discount
if ( sizeof( $coupon->exclude_product_ids ) > 0 ) {
if ( in_array( wcs_get_canonical_product_id( $cart_item ), $coupon->exclude_product_ids ) || in_array( $cart_item['data']->get_parent(), $coupon->exclude_product_ids ) ) {
$this_item_is_discounted = false;
}
}
// Specific categories excluded from the discount
if ( sizeof( $coupon->exclude_product_categories ) > 0 ) {
if ( sizeof( array_intersect( $product_cats, $coupon->exclude_product_categories ) ) > 0 ) {
$this_item_is_discounted = false;
}
}
// Apply filter
return apply_filters( 'woocommerce_item_is_discounted', $this_item_is_discounted, $cart_item, $before_tax = false );
}
/**
* Sets which coupons should be applied for this calculation.
*
* This function is hooked to "woocommerce_before_calculate_totals" so that WC will calculate a subscription
* product's total based on the total of it's price per period and sign up fee (if any).
*
* @since 1.3.5
*/
public static function remove_coupons( $cart ) {
$calculation_type = WC_Subscriptions_Cart::get_calculation_type();
// Only hook when totals are being calculated completely (on cart & checkout pages)
if ( 'none' == $calculation_type || ! WC_Subscriptions_Cart::cart_contains_subscription() || ( ! is_checkout() && ! is_cart() && ! defined( 'WOOCOMMERCE_CHECKOUT' ) && ! defined( 'WOOCOMMERCE_CART' ) ) ) {
return;
}
$applied_coupons = $cart->get_applied_coupons();
// If we're calculating a sign-up fee or recurring fee only amount, remove irrelevant coupons
if ( ! empty( $applied_coupons ) ) {
// Keep track of which coupons, if any, need to be reapplied immediately
$coupons_to_reapply = array();
foreach ( $applied_coupons as $coupon_code ) {
$coupon = new WC_Coupon( $coupon_code );
if ( in_array( $coupon->type, array( 'recurring_fee', 'recurring_percent' ) ) ) { // always apply coupons to their specific calculation case
if ( 'recurring_total' == $calculation_type ) {
$coupons_to_reapply[] = $coupon_code;
} elseif ( 'none' == $calculation_type && ! WC_Subscriptions_Cart::all_cart_items_have_free_trial() ) { // sometimes apply recurring coupons to initial total
$coupons_to_reapply[] = $coupon_code;
} else {
self::$removed_coupons[] = $coupon_code;
}
} elseif ( ( 'none' == $calculation_type ) && ! in_array( $coupon->type, array( 'recurring_fee', 'recurring_percent' ) ) ) { // apply all coupons to the first payment
$coupons_to_reapply[] = $coupon_code;
} else {
self::$removed_coupons[] = $coupon_code;
}
}
// Now remove all coupons (WC only provides a function to remove all coupons)
$cart->remove_coupons();
// And re-apply those which relate to this calculation
$cart->applied_coupons = $coupons_to_reapply;
if ( isset( $cart->coupons ) ) { // WC 2.3+
$cart->coupons = $cart->get_coupons();
}
}
}
/**
* Add our recurring product coupon types to the list of coupon types that apply to individual products.
* Used to control which validation rules will apply.
*
* @param array $product_coupon_types
* @return array $product_coupon_types
*/
public static function filter_product_coupon_types( $product_coupon_types ) {
if ( is_array( $product_coupon_types ) ) {
$product_coupon_types = array_merge( $product_coupon_types, array( 'recurring_fee', 'recurring_percent', 'sign_up_fee', 'sign_up_fee_percent', 'renewal_fee', 'renewal_percent', 'renewal_cart' ) );
}
return $product_coupon_types;
}
/**
* Get subtotals for a renewal subscription so that our pseudo renewal_cart discounts can be applied correctly even if other items have been added to the cart
*
* @param string $code coupon code
* @return array subtotal
* @since 2.0.10
*/
private static function get_renewal_subtotal( $code ) {
$renewal_coupons = WC()->session->get( 'wcs_renewal_coupons' );
if ( empty( $renewal_coupons ) ) {
return false;
}
$subtotal = 0;
foreach ( $renewal_coupons as $subscription_id => $coupons ) {
foreach ( $coupons as $coupon ) {
if ( $coupon->code == $code ) {
if ( $subscription = wcs_get_subscription( $subscription_id ) ) {
$subtotal = $subscription->get_subtotal();
}
break;
}
}
}
return $subtotal;
}
/**
* Check if a product is a renewal order line item (rather than a "susbscription") - to pick up non-subsbcription products added a subscription manually
*
* @param int $product_id
* @param array $cart_item
* @param WC_Cart $cart The WooCommerce cart object.
* @return boolean whether a product is a renewal order line item
* @since 2.0.10
*/
private static function is_subsbcription_renewal_line_item( $product_id, $cart_item ) {
$is_subscription_line_item = false;
if ( is_object( $product_id ) ) {
$product = $product_id;
$product_id = $product->id;
} elseif ( is_numeric( $product_id ) ) {
$product = wc_get_product( $product_id );
}
if ( ! empty( $cart_item['subscription_renewal'] ) ) {
if ( $subscription = wcs_get_subscription( $cart_item['subscription_renewal']['subscription_id'] ) ) {
foreach ( $subscription->get_items() as $item ) {
$item_product_id = ( $item['variation_id'] ) ? $item['variation_id'] : $item['product_id'];
if ( ! empty( $item_product_id ) && $item_product_id == $product_id ) {
$is_subscription_line_item = true;
}
}
}
}
return apply_filters( 'woocommerce_is_subscription_renewal_line_item', $is_subscription_line_item, $product_id, $cart_item );
}
/* Deprecated */
/**
* Apply sign up fee or recurring fee discount
*
* @since 1.2
*/
public static function apply_subscription_discount( $original_price, $cart_item, $cart ) {
_deprecated_function( __METHOD__, '2.0.10', 'Have moved to filtering on "woocommerce_coupon_get_discount_amount" to return discount amount. See: '. __CLASS__ .'::get_discount_amount()' );
$product_id = ( $cart_item['data']->is_type( array( 'subscription_variation' ) ) ) ? $cart_item['data']->variation_id : $cart_item['data']->id;
if ( ! WC_Subscriptions_Product::is_subscription( $product_id ) ) {
return $original_price;
}
$price = $calculation_price = $original_price;
$calculation_type = WC_Subscriptions_Cart::get_calculation_type();
if ( ! empty( $cart->applied_coupons ) ) {
foreach ( $cart->applied_coupons as $code ) {
$coupon = new WC_Coupon( $code );
// Pre 2.5 is_valid_for_product() does not use wc_get_product_coupon_types()
if ( WC_Subscriptions::is_woocommerce_pre( '2.5' ) ) {
$is_valid_for_product = true;
} else {
$is_valid_for_product = $coupon->is_valid_for_product( wc_get_product( $product_id ), $cart_item );
}
if ( $coupon->apply_before_tax() && $coupon->is_valid() && $is_valid_for_product ) {
$apply_recurring_coupon = $apply_recurring_percent_coupon = $apply_initial_coupon = $apply_initial_percent_coupon = false;
// Apply recurring fee discounts to recurring total calculations
if ( 'recurring_total' == $calculation_type ) {
$apply_recurring_coupon = ( 'recurring_fee' == $coupon->type ) ? true : false;
$apply_recurring_percent_coupon = ( 'recurring_percent' == $coupon->type ) ? true : false;
}
if ( 'none' == $calculation_type ) {
// If all items have a free trial we don't need to apply recurring coupons to the initial total
if ( ! WC_Subscriptions_Cart::all_cart_items_have_free_trial() ) {
if ( 'recurring_fee' == $coupon->type ) {
$apply_initial_coupon = true;
}
if ( 'recurring_percent' == $coupon->type ) {
$apply_initial_percent_coupon = true;
}
}
// Apply sign-up discounts to initial total
if ( ! empty( $cart_item['data']->subscription_sign_up_fee ) ) {
if ( 'sign_up_fee' == $coupon->type ) {
$apply_initial_coupon = true;
}
if ( 'sign_up_fee_percent' == $coupon->type ) {
$apply_initial_percent_coupon = true;
}
$calculation_price = $cart_item['data']->subscription_sign_up_fee;
}
}
if ( $apply_recurring_coupon || $apply_initial_coupon ) {
$discount_amount = ( $calculation_price < $coupon->amount ) ? $calculation_price : $coupon->amount;
// Recurring coupons only apply when there is no free trial (carts can have a mix of free trial and non free trial items)
if ( $apply_initial_coupon && 'recurring_fee' == $coupon->type && ! empty( $cart_item['data']->subscription_trial_length ) ) {
$discount_amount = 0;
}
$cart->discount_cart = $cart->discount_cart + ( $discount_amount * $cart_item['quantity'] );
$cart = self::increase_coupon_discount_amount( $cart, $coupon->code, $discount_amount * $cart_item['quantity'] );
$price = $price - $discount_amount;
} elseif ( $apply_recurring_percent_coupon ) {
$discount_amount = round( ( $calculation_price / 100 ) * $coupon->amount, WC()->cart->dp );
$cart->discount_cart = $cart->discount_cart + ( $discount_amount * $cart_item['quantity'] );
$cart = self::increase_coupon_discount_amount( $cart, $coupon->code, $discount_amount * $cart_item['quantity'] );
$price = $price - $discount_amount;
} elseif ( $apply_initial_percent_coupon ) {
// Recurring coupons only apply when there is no free trial (carts can have a mix of free trial and non free trial items)
if ( 'recurring_percent' == $coupon->type && empty( $cart_item['data']->subscription_trial_length ) ) {
$amount_to_discount = $cart_item['data']->subscription_price;
} else {
$amount_to_discount = 0;
}
// Sign up fee coupons only apply to sign up fees
if ( 'sign_up_fee_percent' == $coupon->type ) {
$amount_to_discount = $cart_item['data']->subscription_sign_up_fee;
}
$discount_amount = round( ( $amount_to_discount / 100 ) * $coupon->amount, WC()->cart->dp );
$cart->discount_cart = $cart->discount_cart + $discount_amount * $cart_item['quantity'];
$cart = self::increase_coupon_discount_amount( $cart, $coupon->code, $discount_amount * $cart_item['quantity'] );
$price = $price - $discount_amount;
}
}
}
if ( $price < 0 ) {
$price = 0;
}
}
return $price;
}
/**
* Store how much discount each coupon grants.
*
* @since 2.0
* @param WC_Cart $cart The WooCommerce cart object.
* @param mixed $code
* @param mixed $amount
* @return WC_Cart $cart
*/
public static function increase_coupon_discount_amount( $cart, $code, $amount ) {
_deprecated_function( __METHOD__, '2.0.10' );
if ( empty( $cart->coupon_discount_amounts[ $code ] ) ) {
$cart->coupon_discount_amounts[ $code ] = 0;
}
$cart->coupon_discount_amounts[ $code ] += $amount;
return $cart;
}
/**
* Determines if cart contains a recurring fee discount code
*
* Does not check if the code is valid, etc
*
* @since 1.2
*/
public static function cart_contains_recurring_discount() {
_deprecated_function( __METHOD__, '1.3.5', __CLASS__ .'::cart_contains_discount( "recurring_fee" )' );
return self::cart_contains_discount( 'recurring_fee' );
}
/**
* Determines if cart contains a sign up fee discount code
*
* Does not check if the code is valid, etc
*
* @since 1.2
*/
public static function cart_contains_sign_up_discount() {
_deprecated_function( __METHOD__, '1.3.5', __CLASS__ .'::cart_contains_discount( "sign_up_fee" )' );
return self::cart_contains_discount( 'sign_up_fee' );
}
/**
* Restores discount coupons which had been removed for special subscription calculations.
*
* @since 1.3.5
*/
public static function restore_coupons( $cart ) {
_deprecated_function( __METHOD__, '2.0' );
if ( ! empty( self::$removed_coupons ) ) {
// Can't use $cart->add_dicount here as it calls calculate_totals()
$cart->applied_coupons = array_merge( $cart->applied_coupons, self::$removed_coupons );
if ( isset( $cart->coupons ) ) { // WC 2.3+
$cart->coupons = $cart->get_coupons();
}
self::$removed_coupons = array();
}
}
/**
* Apply sign up fee or recurring fee discount before tax is calculated
*
* @since 1.2
*/
public static function apply_subscription_discount_before_tax( $original_price, $cart_item, $cart ) {
_deprecated_function( __METHOD__, '2.0', __CLASS__ .'::apply_subscription_discount( $original_price, $cart_item, $cart )' );
return self::apply_subscription_discount( $original_price, $cart_item, $cart );
}
/**
* Apply sign up fee or recurring fee discount after tax is calculated
*
* @since 1.2
* @version 1.3.6
*/
public static function apply_subscription_discount_after_tax( $coupon, $cart_item, $price ) {
_deprecated_function( __METHOD__, '2.0', 'WooCommerce 2.3 removed after tax discounts. Use ' . __CLASS__ .'::apply_subscription_discount( $original_price, $cart_item, $cart )' );
}
}
WC_Subscriptions_Coupon::init();