本文整理汇总了PHP中Invoice::getPhone方法的典型用法代码示例。如果您正苦于以下问题:PHP Invoice::getPhone方法的具体用法?PHP Invoice::getPhone怎么用?PHP Invoice::getPhone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Invoice
的用法示例。
在下文中一共展示了Invoice::getPhone方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _process
public function _process(Invoice $invoice, Am_Request $request, Am_Paysystem_Result $result)
{
$vars = $this->getConfig();
$vars['Amount'] = $invoice->first_total;
$vars['Currency'] = $invoice->currency;
$vars['ReturnUrl'] = $this->getPluginUrl('thanks');
$vars['CancelUrl'] = $this->getCancelUrl();
$vars['MerchantInvoice'] = $invoice->public_id;
$vars['MerchantReference'] = $invoice->public_id;
$vars['CustomerFirstName'] = $invoice->getFirstName();
$vars['CustomerLastName'] = $invoice->getLastName();
$vars['CustomerAddress'] = $invoice->getStreet();
$vars['CustomerCity'] = $invoice->getCity();
$vars['CustomerState'] = $invoice->getState();
$vars['InvoiceDescription'] = $invoice->getLineDescription();
$vars['CustomerCountry'] = $invoice->getCountry();
$vars['CustomerPhone'] = $invoice->getPhone();
$vars['CustomerEmail'] = $invoice->getEmail();
$r = new Am_HttpRequest($this->getUrl() . '?' . http_build_query($vars, '', '&'));
$response = $r->send()->getBody();
if (!$response) {
$this->getDi()->errorLogTable->log('Plugin eWAY: Got empty response from API server');
$result->setErrorMessages(array(___("An error occurred while handling your payment.")));
return;
}
$xml = simplexml_load_string($response);
if (!empty($xml->Error)) {
$this->getDi()->errorLogTable->log('Plugin eWAY: Got error from API: ' . (string) $xml->Error);
$result->setErrorMessages(array(___("An error occurred while handling your payment.")));
return;
}
$action = new Am_Paysystem_Action_Redirect($xml->URI);
$result->setAction($action);
}
示例2: _process
public function _process(Invoice $invoice, Am_Request $request, Am_Paysystem_Result $result)
{
$a = new Am_Paysystem_Action_Form(self::URL);
$vars = array('MERCHANT' => $this->getConfig('merchant'), 'ORDER_REF' => $invoice->public_id, 'ORDER_DATE' => $invoice->tm_added);
foreach ($invoice->getItems() as $item) {
$vars['ORDER_PNAME[]'] = $item->item_title;
$vars['ORDER_PCODE[]'] = $item->item_id;
$vars['ORDER_PRICE[]'] = $item->first_price;
$vars['ORDER_QTY[]'] = $item->qty;
$vars['ORDER_VAT[]'] = $item->first_tax;
}
$vars['ORDER_SHIPPING'] = 0;
$vars['PRICES_CURRENCY'] = strtoupper($invoice->currency);
$vars['DISCOUNT'] = $invoice->first_discount;
foreach ($vars as $k => $v) {
$a->__set($k, $v);
}
$a->__set('ORDER_HASH', $this->calculateHash($vars));
$a->__set('BILL_FNAME', $invoice->getFirstName());
$a->__set('BILL_LNAME', $invoice->getLastName());
$a->__set('BILL_EMAIL', $invoice->getEmail());
$a->__set('BILL_PHONE', $invoice->getPhone());
$a->__set('BILL_ADDRESS', $invoice->getStreet());
$a->__set('BILL_ZIPCODE', $invoice->getZip());
$a->__set('BILL_CITY', $invoice->getCity());
$a->__set('BILL_STATE', $invoice->getState());
$a->__set('BILL_COUNTRYCODE', $invoice->getCountry());
$a->__set('LANGUAGE', $this->getConfig('language', 'ro'));
if ($this->getConfig('testing')) {
$a->__set('TESTORDER', 'TRUE');
}
$result->setAction($a);
}
示例3: _process
public function _process(Invoice $invoice, Am_Request $request, Am_Paysystem_Result $result)
{
$a = new Am_Paysystem_Action_Form(self::URL);
$a->co_code = $this->getConfig('co_code');
$a->pi_code = $invoice->getItem(0)->getBillingPlanData('epoch_product_id');
if ($site_subcat = $invoice->getItem(0)->getBillingPlanData('epoch_site_subcat')) {
$a->site_subcat = $site_subcat;
}
$a->reseller = 'a';
$a->zip = $invoice->getZip();
$a->email = $invoice->getEmail();
$a->country = $invoice->getCountry();
$a->no_userpass = self::YES;
$a->name = $invoice->getName();
$a->street = $invoice->getStreet();
$a->phone = $invoice->getPhone();
$a->city = $invoice->getCity();
$a->state = $invoice->getState();
$a->pi_returnurl = $this->getPluginUrl("thanks");
$a->response_post = self::YES;
$a->x_payment_id = $invoice->public_id;
if ($this->getConfig('ach_form') == self::YES) {
$a->ach_form = self::YES;
}
$result->setAction($a);
}
示例4: _process
public function _process(Invoice $invoice, Am_Request $request, Am_Paysystem_Result $result)
{
$a = new Am_Paysystem_Action_Redirect(self::URL);
$a->products = current(array_filter(array($invoice->getItem(0)->getBillingPlanData('paypro_product_id'), $this->getConfig('product_id'))));
$id = $this->invoice->getSecureId("THANKS");
$desc = array();
foreach ($invoice->getItems() as $it) {
if ($it->first_total > 0) {
$desc[] = $it->item_title;
}
}
$desc = implode(',', $desc);
$desc .= ". (invoice: {$id})";
$name = $invoice->getLineDescription();
$hash = "price={$invoice->first_total}-{$invoice->currency}^^^name={$name}^^^desc={$desc}";
$a->hash = base64_encode($this->getHash($hash));
$a->CustomField1 = $invoice->public_id;
$a->firstname = $invoice->getFirstName();
$a->Lastname = $invoice->getLastName();
$a->Email = $invoice->getEmail();
$a->Address = $invoice->getStreet();
$a->City = $invoice->getCity();
$a->Country = $invoice->getCountry() == 'GB' ? 'united kingdom' : $invoice->getCountry();
$a->State = $invoice->getState();
$a->Zipcode = $invoice->getZip();
$a->Phone = $invoice->getPhone();
//$a->lnk = $this->getCancelUrl();
$result->setAction($a);
}
示例5: _process
public function _process(Invoice $invoice, Am_Request $request, Am_Paysystem_Result $result)
{
$a = new Am_Paysystem_Action_Redirect(self::URL);
$a->merchant = $this->getConfig('merchant');
$a->trans_id = $invoice->public_id;
$a->amount = $invoice->first_total;
$a->callback = $this->getPluginUrl('thanks');
$a->digest = $this->calculateDigest($a);
$a->bill_addr_1 = $invoice->getStreet();
$a->bill_city = $invoice->getCity();
$a->bill_country = $invoice->getCountry();
$a->bill_email = $invoice->getEmail();
$a->bill_name = $invoice->getName();
$a->bill_post_code = $invoice->getZip();
$a->bill_state = $invoice->getState();
$a->bill_tel = $invoice->getPhone();
$a->currency = $invoice->currency;
$a->options = "cb_post=true,md_flds=trans_id:amount:callback";
if ($invoice->rebill_times) {
// Recurring payment;
$a->repeat = sprintf("%s/%s/%s:%s", gmdate('Ymd', strtotime($invoice->calculateRebillDate(1))), $this->getPeriod($invoice->second_period), $invoice->rebill_times == IProduct::RECURRING_REBILLS ? '-1' : $invoice->rebill_times, $invoice->second_total);
$a->repeat_callback = $a->callback;
}
if ($this->getConfig('testing')) {
$a->test_status = 'true';
}
$result->setAction($a);
}
示例6: _process
public function _process(Invoice $invoice, Am_Request $request, Am_Paysystem_Result $result)
{
$a = new Am_Paysystem_Action_Form(self::URL);
$vars = array('MERCHANT' => $this->getConfig('email'), 'COUNTRY_ID' => $this->getConfig('country'), 'PAYMENT_METHOD_AVAILABLE' => 'all', 'TRANSACTION_ID' => $invoice->public_id);
$i = '1';
foreach ($invoice->getItems() as $item) {
//Creating new format without dot for $item->first_price
$price = str_replace('.', '', $item->first_total);
$vars['ITEM_NAME_' . $i] = $item->item_title;
$vars['ITEM_CODE_' . $i] = $item->item_id;
$vars['ITEM_AMMOUNT_' . $i] = $price;
$vars['ITEM_QUANTITY_' . $i] = $item->qty;
$vars['ITEM_CURRENCY_' . $i] = $item->currency;
$i++;
}
$vars['CURRENCY'] = strtoupper($invoice->currency);
foreach ($vars as $k => $v) {
$a->__set($k, $v);
}
$a->__set('BUYER_FNAME', $invoice->getFirstName());
$a->__set('BUYER_LNAME', $invoice->getLastName());
$a->__set('BUYER_EMAIL', $invoice->getEmail());
$a->__set('BUYER_PHONE', $invoice->getPhone());
$a->__set('BUYER_STREET', $invoice->getStreet());
$a->__set('BUYER_STATE', $invoice->getState());
$a->__set('BUYER_CITY', $invoice->getCity());
$a->__set('BUYER_COUNTRY', $invoice->getCountry());
$a->__set('BUYER_ZIP_CODE', $invoice->getZip());
$a->__set('BUYER_CITY', $invoice->getCity());
$a->__set('BUYER_STATE', $invoice->getState());
$a->__set('LANGUAGE', $this->getConfig('language', 'es'));
$result->setAction($a);
}
示例7: setShippingAddress
function setShippingAddress(Invoice $invoice)
{
$this->addPostParameter('SHIPTONAME', $invoice->getName());
$this->addPostParameter('SHIPTOSTREET', $invoice->getStreet());
$this->addPostParameter('SHIPTOCITY', $invoice->getCity());
$this->addPostParameter('SHIPTOSTATE', $invoice->getState());
$this->addPostParameter('SHIPTOZIP', $invoice->getZip());
$this->addPostParameter('SHIPTOCOUNTRY', $invoice->getCountry());
$this->addPostParameter('SHIPTOPHONENUM', $invoice->getPhone());
}
示例8:
function _process(Invoice $invoice, Am_Request $request, Am_Paysystem_Result $result)
{
$a = new Am_Paysystem_Action_Redirect('https://clickbetter.com/pay/' . $invoice->getItem(0)->getBillingPlanData('clickbetter_prod_item'));
$result->setAction($a);
$a->api = 'yes';
$a->custom1 = $invoice->public_id;
$a->first_name = $invoice->getFirstName();
$a->last_name = $invoice->getLastName();
$a->email = $invoice->getEmail();
$a->city = $invoice->getCity();
$a->address = $invoice->getStreet();
$a->phone_no = $invoice->getPhone();
$a->country = $invoice->getCountry();
$a->zip = $invoice->getZip();
}
示例9: _process
public function _process(Invoice $invoice, Am_Request $request, Am_Paysystem_Result $result)
{
$a = new Am_Paysystem_Action_Redirect($this->getConfig('testing') ? self::SANDBOX_URL : self::LIVE_URL);
$a->merchant_id = $this->getConfig('merchant_id');
$a->merchant_site_id = $this->getConfig('merchant_site_id');
$a->currency = $invoice->currency;
$a->version = '3.0.0';
$a->merchant_unique_id = $invoice->public_id;
$a->first_name = $invoice->getFirstName();
$a->last_name = $invoice->getLastName();
$a->email = $invoice->getEmail();
$a->address1 = $invoice->getStreet();
$a->address2 = $invoice->getStreet1();
$a->city = $invoice->getCity();
$a->country = $invoice->getCountry();
$a->state = $invoice->getState();
$a->zip = $invoice->getZip();
$a->phone1 = $invoice->getPhone();
$a->time_stamp = date("Y-m-d.h:i:s");
if ($invoice->rebill_times && ($gate2shop_id = $invoice->getItem(0)->getBillingPlanData('gate2shop_id')) && ($gate2shop_template_id = $invoice->getItem(0)->getBillingPlanData('gate2shop_template_id'))) {
$a->productId = $invoice->getItem(0)->item_id;
$a->rebillingProductId = $gate2shop_id;
$a->rebillingTemplateId = $gate2shop_template_id;
if ($invoice->rebill_times) {
$a->isRebilling = 'true';
}
$a->checksum = md5($this->getConfig('secret_key') . $this->getConfig('merchant_id') . $gate2shop_id . $gate2shop_template_id . $a->time_stamp);
} else {
$a->total_amount = $invoice->first_total;
$a->discount = $invoice->first_discount;
$a->total_tax = $invoice->first_tax;
$a->numberofitems = count($invoice->getItems());
for ($i = 0; $i < $a->numberofitems; $i++) {
$item = $invoice->getItem($i);
$a->addParam('item_name_' . ($i + 1), $item->item_title);
$a->addParam('item_number_' . ($i + 1), $i + 1);
$a->addParam('item_amount_' . ($i + 1), $item->first_price);
$a->addParam('item_discount_' . ($i + 1), $item->first_discount);
$a->addParam('item_quantity_' . ($i + 1), $item->qty);
}
$a->checksum = $this->calculateOutgoingHash($a, $invoice);
}
$a->filterEmpty();
$result->setAction($a);
}
示例10: _process
public function _process(Invoice $invoice, Am_Request $request, Am_Paysystem_Result $result)
{
$user = $invoice->getUser();
$subaccount_id = $invoice->getItem(0)->getBillingPlanData("ccbill_subaccount_id") ? $invoice->getItem(0)->getBillingPlanData("ccbill_subaccount_id") : $this->getConfig('subaccount_id');
$a = new Am_Paysystem_Action_Redirect(self::URL);
$a->clientAccnum = $this->getConfig('account');
$a->clientSubacc = $subaccount_id;
$a->formName = $invoice->getItem(0)->getBillingPlanData("ccbill_form_id");
$a->username = $user->login;
$a->email = $invoice->getEmail();
$a->customer_fname = $invoice->getFirstName();
$a->customer_lname = $invoice->getLastName();
$a->address1 = $invoice->getStreet();
$a->city = $invoice->getCity();
$a->state = $invoice->getState();
$a->zipcode = $invoice->getZip();
$a->country = $invoice->getCountry();
$a->phone_number = $invoice->getPhone();
$a->payment_id = $invoice->public_id;
$a->customVar1 = $invoice->public_id;
$a->invoice = $invoice->getSecureId("THANKS");
$a->referer = $invoice->getUser()->aff_id;
if ($this->getConfig('dynamic_pricing')) {
$a->formPrice = $invoice->first_total;
$a->formPeriod = $this->getDays($invoice->first_period);
$a->currencyCode = $invoice->currency;
if ($invoice->rebill_times) {
if ($invoice->rebill_times == IProduct::RECURRING_REBILLS) {
$invoice->rebill_times = 99;
}
$a->formRecurringPrice = $invoice->second_total;
$a->formRecurringPeriod = $this->getDays($invoice->second_period);
$a->formRebills = $invoice->rebill_times;
$a->formDigest = md5($s = $invoice->first_total . $this->getDays($invoice->first_period) . $invoice->second_total . $this->getDays($invoice->second_period) . $invoice->rebill_times . $invoice->currency . $this->getConfig('salt'));
} else {
$a->formDigest = md5($s = $invoice->first_total . $this->getDays($invoice->first_period) . $invoice->currency . $this->getConfig('salt'));
}
} else {
$a->subscriptionTypeId = $invoice->getItem(0)->getBillingPlanData("ccbill_product_id");
$a->allowedTypes = $invoice->getItem(0)->getBillingPlanData("ccbill_product_id");
$a->allowedCurrencies = $this->currency_codes[$invoice->currency];
}
$result->setAction($a);
}
示例11: _process
public function _process(Invoice $invoice, Am_Request $request, Am_Paysystem_Result $result)
{
$a = new Am_Paysystem_Action_Redirect(self::URL);
$a->LOGIN = $this->getConfig('login');
$a->PARTNER = $this->getConfig('partner');
$a->AMOUNT = sprintf('%.2f', $invoice->first_total);
$a->TYPE = 'S';
$a->INVOICE = $invoice->public_id;
$a->DESCRIPTION = $invoice->getLineDescription();
$a->NAME = $invoice->getName();
$a->ADDRESS = $invoice->getStreet();
$a->CITY = $invoice->getCity();
$a->STATE = $invoice->getState();
$a->COUNTRY = $invoice->getCountry();
$a->ZIP = $invoice->getZip();
$a->EMAIL = $invoice->getEmail();
$a->PHONE = $invoice->getPhone();
$result->setAction($a);
}
示例12: _process
public function _process(Invoice $invoice, Am_Request $request, Am_Paysystem_Result $result)
{
$a = new Am_Paysystem_Action_Redirect(self::URL);
$a->sid = $this->getConfig('seller_id');
$a->mode = '2CO';
$i = 0;
foreach ($invoice->getItems() as $item) {
$a->{"li_{$i}_type"} = 'product';
$a->{"li_{$i}_name"} = $item->item_title;
$a->{"li_{$i}_quantity"} = $item->qty;
$a->{"li_{$i}_price"} = $item->rebill_times ? $item->second_total : $item->first_total;
$a->{"li_{$i}_tangible"} = $item->is_tangible ? 'Y' : 'N';
$a->{"li_{$i}_product_id"} = $item->item_id;
if ($item->rebill_times) {
$a->{"li_{$i}_recurrence"} = $this->period2Co($item->first_period);
if ($item->rebill_times != IProduct::RECURRING_REBILLS) {
$a->{"li_{$i}_duration"} = $this->period2Co($item->first_period, $item->rebill_times);
} else {
$a->{"li_{$i}_duration"} = 'Forever';
}
$a->{"li_{$i}_startup_fee"} = $item->first_total - $item->second_total;
}
$i++;
}
$a->skip_landing = 1;
$a->x_Receipt_Link_URL = $this->getReturnUrl();
$a->lang = $this->getConfig('lang', 'en');
$a->merchant_order_id = $invoice->public_id;
$a->first_name = $invoice->getFirstName();
$a->last_name = $invoice->getLastName();
$a->city = $invoice->getCity();
$a->state = $invoice->getState();
$a->zip = $invoice->getZip();
$a->country = $invoice->getCountry();
$a->email = $invoice->getEmail();
$a->phone = $invoice->getPhone();
$result->setAction($a);
}
示例13: _process
public function _process(Invoice $invoice, Am_Request $request, Am_Paysystem_Result $result)
{
$xml = new SimpleXMLElement('<request/>');
$transactiondetails = $xml->addChild('transactiondetails');
$transactiondetails->addChild('merchantcode', $this->getConfig('merchantid'));
$transactiondetails->addChild('merchantpwd', $this->getConfig('merchantpwd'));
$transactiondetails->addChild('trackid', $invoice->public_id);
$transactiondetails->addChild('customerip', $request->getClientIp());
$transactiondetails->addChild('udf1', $invoice->public_id);
$transactiondetails->addChild('customerid', $invoice->getLogin());
$paymentdetails = $xml->addChild('paymentdetails');
$paymentdetails->addChild('paysource', 'enets');
$paymentdetails->addChild('amount', $invoice->first_total);
$paymentdetails->addChild('currency', $invoice->currency);
$paymentdetails->addChild('actioncode', 1);
$notificationurls = $xml->addChild('notificationurls');
$notificationurls->addChild('successurl', $this->getReturnUrl());
$notificationurls->addChild('failurl', $this->getCancelUrl());
$shippingdetails = $xml->addChild('shippingdetails');
foreach (array('ship_address' => $invoice->getStreet(), 'ship_email' => $invoice->getEmail(), 'ship_postal' => $invoice->getZip(), 'ship_address2' => $invoice->getStreet1(), 'ship_city' => $invoice->getCity(), 'ship_state' => $invoice->getState(), 'ship_phone' => $invoice->getPhone(), 'ship_country' => $invoice->getCountry()) as $k => $v) {
$shippingdetails->addChild($k, $v);
}
$req = new Am_HttpRequest($this->getConfig('gatewayurl'), Am_HttpRequest::METHOD_POST);
$req->setHeader('Content-type: text/xml; charset=utf-8')->setHeader('Connection:close')->setBody($xml->asXML());
$response = $req->send();
$resxml = @simplexml_load_string($response->getBody());
if (!$resxml instanceof SimpleXMLElement) {
throw new Am_Exception_InputError('Incorrect Gateway response received!');
}
if ($paymenturl = (string) $resxml->transactionresponse->paymenturl) {
$a = new Am_Paysystem_Action_Redirect($paymenturl);
$result->setAction($a);
} else {
throw new Am_Exception_InputError('Incorrect Gateway response received! Got: ' . (string) $resxml->responsedesc);
}
}
示例14: _process
public function _process(Invoice $invoice, Am_Request $request, Am_Paysystem_Result $result)
{
$user = $invoice->getUser();
$subaccount_id = $invoice->getItem(0)->getBillingPlanData("ecsuite_subaccount_id") ? $invoice->getItem(0)->getBillingPlanData("ecsuite_subaccount_id") : $this->getConfig('subaccount_id');
$a = new Am_Paysystem_Action_Redirect(self::URL);
$a->clientAccnum = $this->getConfig('account');
$a->clientSubacc = $subaccount_id;
$a->subscriptionTypeId = $invoice->getItem(0)->getBillingPlanData("ecsuite_product_id");
$a->allowedTypes = $invoice->getItem(0)->getBillingPlanData("ecsuite_product_id");
$a->username = $user->login;
$a->email = $invoice->getEmail();
$a->customer_fname = $invoice->getFirstName();
$a->customer_lname = $invoice->getLastName();
$a->address1 = $invoice->getStreet();
$a->city = $invoice->getCity();
$a->state = $invoice->getState();
$a->zipcode = $invoice->getZip();
$a->country = $invoice->getCountry();
$a->phone_number = $invoice->getPhone();
$a->payment_id = $invoice->public_id;
$a->formName = $invoice->getItem(0)->getBillingPlanData("ecsuite_form_id");
$a->customVar1 = $invoice->public_id;
$result->setAction($a);
}
示例15: _process
public function _process(Invoice $invoice, Am_Request $request, Am_Paysystem_Result $result)
{
/*
Payment Method - Identity
* Credit Payment
Visa & Mastercard (default) - index.php
Mobile Money - mobilemoney.php
Ezeelink - ezeelink.php
* Debit Payment
Maybank2u Fund Transfer - maybank2u.php
MEPS FPX - fpx.php
CIMB Clicks - cimb.php
RHB Online - rhb.php
Hong Leong Bank Online - hlb.php
Mepscash Online - mepscash.php
Webcash - webcash.php
*/
$Payment_Method = '';
$url = sprintf($this->url, $this->getConfig('merchant_id'), $Payment_Method);
$a = new Am_Paysystem_Action_Redirect($url);
$a->amount = $invoice->first_total;
$a->orderid = $invoice->public_id;
$a->bill_name = utf8_encode($invoice->getName());
//UTF-8 encoding is recommended for Chinese contents
$a->bill_email = $invoice->getEmail();
$a->bill_mobile = $invoice->getPhone();
$a->cur = $invoice->getCurrency();
$a->bill_desc = utf8_encode($invoice->getLineDescription());
//UTF-8 encoding is recommended for Chinese contents
$a->returnurl = $this->getPluginUrl('thanks');
$a->vcode = md5($invoice->first_total . $this->getConfig('merchant_id') . $invoice->public_id . $this->getConfig('verify_key'));
$a->filterEmpty();
$result->setAction($a);
}