Jump to content

Opis transakcji w DotPay


Mahagi

Recommended Posts

Witam wszystkich

Mam problem z modułem dotpay, który jako opis transakcji przesyłany do systemu podaje mi nazwę sklepu. Chcę żeby zamiast nazwy sklepu przesyłane było ID koszyka, imię i nazwisko, miasto oraz email składającego zamówienie. Próbowałem jak widać ze składnią, ale niestety bez skutku otrzymując błędy 

 

Będę wdzięczny za pomoc

PHP Parse error:  syntax error, unexpected ''description'' (T_CONSTANT_ENCAPSED_STRING), expecting ')'

Kod:

$params = array(
                    'id' => Configuration::get('DP_ID'),
                    'amount' => (float)$cart->getOrderTotal(true, Cart::BOTH),
                    'currency' => $currency["iso_code"],
  //                'description' => Configuration::get('PS_SHOP_NAME'), // <--- oryginalnie
		    
                    'url' => $this->context->link->getModuleLink('dotpay', 'payment', array('control' => $cart->id), Configuration::get('DP_SSL', false)),                        
                    'type' => 0,                        
                    'urlc' => $this->context->link->getModuleLink('dotpay', 'callback', array('ajax' => '1'), Configuration::get('DP_SSL', false)),
                    'control' => $cart->id,
                    'firstname' => $customer->firstname,
                    'lastname' => $customer->lastname,                        
                    'email' => $customer->email,
                    'street' => $address->address1,
                    'city' => $address->city,
                    'postcode'=> $address->postcode,
                    'api_version' => 'legacy'
        'description' = $params['id'].$params['firstname'].$params['lastname'].$params['city'].$params['email'] <--- zmienione

            );
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...