Выберите способ оплаты
isset($f_City) ? $f_City : '', 'f_Address' => isset($f_Address) ? $f_Address : '', 'f_Zip' => isset($f_Zip) ? $f_Zip : '', 'delivery_variant_id'=> isset($delivery_variant_id) ? $delivery_variant_id : '', 'delivery_point_id'=> isset($delivery_point_id) ? $delivery_point_id : '' ); $order = nc_netshop_order::from_post_data((array)$params, $netshop); $context = $netshop->get_condition_context(); $context->set_order($order); $all_payment_methods = $netshop->payment->get_enabled_methods(); $available_payment_methods = $all_payment_methods->matching($context); $methods_to_show = !empty($show_unavailable_payment_methods) ? $all_payment_methods : $available_payment_methods; $num_methods_to_show = count($methods_to_show); $is_first = true; foreach ($methods_to_show as $method) { $is_available = $method->evaluate_conditions($context); $method_id = $method->get_id(); ?>