/** * Constructor */ public function __construct(Invoice $invoice) { sfContext::getInstance()->getConfiguration()->loadHelpers(array('Url')); $defaults = array('WMI_MERCHANT_ID' => sfConfig::get('app_w1_merchant'), 'WMI_PAYMENT_AMOUNT' => sprintf('%01.2f', $invoice->getAmount()), 'WMI_CURRENCY_ID' => 980, 'WMI_PAYMENT_NO' => $invoice->getId(), 'WMI_DESCRIPTION' => $invoice->geDescription(), 'WMI_SUCCESS_URL' => url_for('payment_w1_success', array(), true), 'WMI_FAIL_URL' => url_for('payment_w1_fail', array(), true), 'WMI_PTENABLED' => 'CashTerminalUAH'); $defaults['WMI_SIGNATURE'] = $this->createSign($defaults); parent::__construct($defaults); }
/** * Constructor */ public function __construct(Invoice $invoice) { sfContext::getInstance()->getConfiguration()->loadHelpers(array('Url', 'Date')); $resultUrl = 'https://' . sfContext::getInstance()->getRequest()->getHost() . url_for('payment_liqpay_result'); $defaults = array('version' => '1.1', 'merchant_id' => sfConfig::get('app_liqpay_merchant'), 'amount' => $invoice->getAmount(), 'currency' => 'UAH', 'order_id' => $invoice->getId(), 'description' => $invoice->getDescription(), 'result_url' => $resultUrl, 'server_url' => $resultUrl); parent::__construct($defaults); }
/** * Update existing payment * * @param void * @return null */ function edit() { if ($this->active_payment->isNew()) { $this->httpError(HTTP_ERR_NOT_FOUND); } // if $payment_data = $this->request->post('payment'); if (!is_array($payment_data)) { $payment_data = array('invoice_id' => $this->active_payment->getInvoiceId(), 'amount' => $this->active_payment->getAmount(), 'comment' => $this->active_payment->getComment()); } // if $this->smarty->assign('payment_data', $payment_data); if ($this->request->isSubmitted()) { $this->active_invoice->setAttributes($payment_data); $save = $this->active_payment->save(); if ($save && !is_error($save)) { flash_success('Payment has been updated'); $this->redirectTo('invoices'); } else { $this->smarty->assign('errors', $save); } // if } // if }
/** * Constructor */ public function __construct(Invoice $invoice) { sfContext::getInstance()->getConfiguration()->loadHelpers(array('Url', 'Date')); $resultUrl = 'https://' . sfContext::getInstance()->getRequest()->getHost() . url_for('payment_privat24_result'); $defaults = array('amt' => $invoice->getAmount(), 'ccy' => 'UAH', 'merchant' => sfConfig::get('app_privat24_merchant'), 'order' => $invoice->getTransactionId(), 'details' => $invoice->getDescription(), 'pay_way' => 'privat24', 'return_url' => $resultUrl, 'server_url' => $resultUrl); parent::__construct($defaults); }
/** * Constructor */ public function __construct(Invoice $invoice) { sfContext::getInstance()->getConfiguration()->loadHelpers(array('Url', 'Number')); $amount = sprintf('%01.2f', $invoice->getAmount()); while (strlen($amount) < 13) { $amount = '0' . $amount; } $resultUrl = 'https://' . sfContext::getInstance()->getRequest()->getHost() . url_for('payment_sentry_result'); $defaults = array('version' => '1.0.0', 'MerID' => sfConfig::get('app_sentry_merchant'), 'MerRespURL' => $resultUrl, 'MerRespURL2' => $resultUrl, 'AcqID' => 414963, 'PurchaseAmt' => str_replace('.', '', $amount), 'PurchaseCurrency' => 980, 'PurchaseCurrencyExponent' => 2, 'SignatureMethod' => 'SHA1', 'OrderID' => $invoice->getTransactionId()); $defaults['Signature'] = $this->createSign($defaults); parent::__construct($defaults); }
/** * Возвращает доступные для оплаты кошельки */ protected function getWallets(Invoice $invoice) { $wallets = array(); foreach (sfConfig::get('app_webmoney_wallet') as $name => $config) { $amount = Currency::convertByAbbr($invoice->getAmount(), $config['currency']); if (false !== $amount) { $wallets[$config['purse']]['amount'] = sprintf('%01.2f', $amount); $wallets[$config['purse']]['name'] = $name; } } return $wallets; }