Ödeme Metodu Komisyonu

cesm-i_asik

OpenCart-TR
Katılım
22 Tem 2011
Mesajlar
43
Tepkime puanı
0
Puanları
0
Konum
Eskişehir
Merhaba Ödeme Sistemi Komisyonu isimli modül yükledim kapıda ödeme, paypal ödeme, banka havalesi ile ödemede bir sıkıntı vermiyor lakin İpara ödeme secildiğinde ;
Notice: Undefined index: extraServices in /hermes/waloraweb042/b973/..../..../catalog/controller/payment/ipara.php on line 103

hatası veriyor ve ipara ödemeye gecmiyor ana sayfada kalıyor yardımcı olabilirmisiniz.

PHP:
			//order
			$this->data["order"] = array( 'merchantOrderId' => $order_info['order_id'],
										   'totalPrice' => $this->currency->format($order_info['total'], $order_info['currency_code'], false, false),
										   'orderItems' => $this->data['products'],
										   'extraServices' => $this->data['extraServices']
										   );
			
			$this->data["purchaser"] = array( 'name' 	=>  html_entity_decode($order_info['payment_firstname'], ENT_QUOTES, 'UTF-8'),
											  'surname' => html_entity_decode($order_info['payment_lastname'], ENT_QUOTES, 'UTF-8'),
										      'email' 	=> $order_info['email'],
											  'gsm' 	=> $order_info['telephone'],
											  'address' => html_entity_decode($order_info['payment_address_1'], ENT_QUOTES, 'UTF-8') . " "  . html_entity_decode($order_info['payment_address_2'], ENT_QUOTES, 'UTF-8'),
											  'city' 	=> html_entity_decode($order_info['payment_zone'], ENT_QUOTES, 'UTF-8')
											  );

ipara.php dosyası 100 - 110 satırları
 
Üst