orders->get_order((int)$order_id); $payment_method = $this->payment->get_payment_method($order->payment_method_id); $payment_currency = $this->money->get_currency(intval($payment_method->currency_id)); $settings = $this->payment->get_payment_settings($payment_method->id); $price = round($this->money->convert($order->total_price, $payment_method->currency_id, false), 2); // Учесть комиссию Яндекса $price = $price+max(0.01, $price*$this->fee/100); // описание заказа $desc = 'Оплата заказа №'.$order->id.' на сайте '.$this->settings->site_name; $button = '
'; return $button; } }