/**
  * Set use ordered coupons for apply.
  *
  * @param bool $state		Use state.
  * @return void
  */
 public static function useSavedCouponsForApply($state)
 {
     if ($state !== true && $state !== false) {
         return;
     }
     self::$useOrderCoupons = $state;
 }