You are here

function uc_coupon_workflow_uc_checkout_complete in Ubercart Discount Coupons 7.3

Implements hook uc_checkout_complete().

File

uc_coupon_workflow/uc_coupon_workflow.module, line 134
Discount coupon workflow.

Code

function uc_coupon_workflow_uc_checkout_complete($order, $account) {
  foreach (uc_coupon_get_order_coupons($order) as $coupon) {
    rules_invoke_event('uc_coupon_workflow_checkout', $coupon, $order);
  }
}