pn_sofortueberweisung - Version 3.0.4

Version Notes

* better date receivement and add redirect order comment
* use magento round function to round grand total to avoid 4 digit decimals

Download this release

Release Info

Developer Paymentnetwork
Extension pn_sofortueberweisung
Version 3.0.4
Comparing to
See all releases


Code changes from version 3.0.3 to 3.0.4

Files changed (33) hide show
  1. app/code/community/Paymentnetwork/Pnsofortueberweisung/Model/Method/Sofort.php +5 -2
  2. app/code/community/Paymentnetwork/Pnsofortueberweisung/Model/Service/Communication.php +2 -2
  3. app/code/community/Paymentnetwork/Pnsofortueberweisung/controllers/PaymentController.php +21 -2
  4. app/code/community/Paymentnetwork/Pnsofortueberweisung/etc/config.xml +1 -1
  5. app/locale/cs_CZ/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  6. app/locale/de_AT/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  7. app/locale/de_CH/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  8. app/locale/de_DE/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  9. app/locale/en_AU/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  10. app/locale/en_CA/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  11. app/locale/en_GB/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  12. app/locale/en_IE/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  13. app/locale/en_NZ/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  14. app/locale/en_US/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  15. app/locale/en_ZA/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  16. app/locale/es_AR/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  17. app/locale/es_CL/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  18. app/locale/es_CO/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  19. app/locale/es_CR/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  20. app/locale/es_ES/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  21. app/locale/es_MX/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  22. app/locale/es_PA/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  23. app/locale/es_PE/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  24. app/locale/es_VE/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  25. app/locale/fr_CA/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  26. app/locale/fr_FR/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  27. app/locale/hu_HU/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  28. app/locale/it_CH/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  29. app/locale/it_IT/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  30. app/locale/nl_NL/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  31. app/locale/pl_PL/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  32. app/locale/sk_SK/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  33. package.xml +6 -5
app/code/community/Paymentnetwork/Pnsofortueberweisung/Model/Method/Sofort.php CHANGED
@@ -109,7 +109,7 @@ class Paymentnetwork_Pnsofortueberweisung_Model_Method_Sofort extends Mage_Payme
109
 
110
  $url = $communication->getUrl();
111
 
112
- Mage::getSingleton('customer/session')->setRedirectUrl($url);
113
 
114
  $this->getInfoInstance()->setAdditionalInformation(
115
  'sofort_transaction_id',
@@ -126,7 +126,10 @@ class Paymentnetwork_Pnsofortueberweisung_Model_Method_Sofort extends Mage_Payme
126
  */
127
  public function getOrderPlaceRedirectUrl()
128
  {
129
- return Mage::getSingleton('customer/session')->getRedirectUrl();
 
 
 
130
  }
131
 
132
  /**
109
 
110
  $url = $communication->getUrl();
111
 
112
+ Mage::getSingleton('customer/session')->setPaymentUrl($url);
113
 
114
  $this->getInfoInstance()->setAdditionalInformation(
115
  'sofort_transaction_id',
126
  */
127
  public function getOrderPlaceRedirectUrl()
128
  {
129
+ return Mage::getUrl('pisofort/payment/redirect', array(
130
+ 'orderId' => Mage::getSingleton('checkout/session')->getQuote()->getReservedOrderId()
131
+ )
132
+ );
133
  }
134
 
135
  /**
app/code/community/Paymentnetwork/Pnsofortueberweisung/Model/Service/Communication.php CHANGED
@@ -126,7 +126,7 @@ class Paymentnetwork_Pnsofortueberweisung_Model_Service_Communication
126
  $orderId = $this->_getQuote()->getReservedOrderId();
127
 
128
  $this->_sofortSdk->setVersion('magento_3.0');
129
- $this->_sofortSdk->setAmount($this->_getQuote()->getGrandTotal());
130
  $this->_sofortSdk->setCurrencyCode($this->_getQuote()->getBaseCurrencyCode());
131
  $this->_sofortSdk->setReason($this->_getReasonOne(), $this->_getReasonTwo());
132
  $this->_sofortSdk->setSuccessUrl(Mage::getUrl('pisofort/payment/success', array('orderId' => $orderId)), true);
@@ -179,7 +179,7 @@ class Paymentnetwork_Pnsofortueberweisung_Model_Service_Communication
179
  $replaceData = array(
180
  '{{orderid}}' => $this->_getQuote()->getReservedOrderId(),
181
  '{{name}}' => $this->_getQuote()->getBillingAddress()->getFirstname() . ' ' . $this->_getQuote()->getBillingAddress()->getLastname(),
182
- '{{date}}' => date('Y-m-d H:i:s'),
183
  '{{shopname}}' => Mage::app()->getStore()->getName(),
184
  '{{transaction}}' => '-TRANSACTION-'
185
 
126
  $orderId = $this->_getQuote()->getReservedOrderId();
127
 
128
  $this->_sofortSdk->setVersion('magento_3.0');
129
+ $this->_sofortSdk->setAmount(Mage::app()->getStore()->roundPrice($this->_getQuote()->getGrandTotal()));
130
  $this->_sofortSdk->setCurrencyCode($this->_getQuote()->getBaseCurrencyCode());
131
  $this->_sofortSdk->setReason($this->_getReasonOne(), $this->_getReasonTwo());
132
  $this->_sofortSdk->setSuccessUrl(Mage::getUrl('pisofort/payment/success', array('orderId' => $orderId)), true);
179
  $replaceData = array(
180
  '{{orderid}}' => $this->_getQuote()->getReservedOrderId(),
181
  '{{name}}' => $this->_getQuote()->getBillingAddress()->getFirstname() . ' ' . $this->_getQuote()->getBillingAddress()->getLastname(),
182
+ '{{date}}' => date('d.m.Y H:i:s', Mage::getModel('core/date')->timestamp(time())),
183
  '{{shopname}}' => Mage::app()->getStore()->getName(),
184
  '{{transaction}}' => '-TRANSACTION-'
185
 
app/code/community/Paymentnetwork/Pnsofortueberweisung/controllers/PaymentController.php CHANGED
@@ -31,6 +31,7 @@ class Paymentnetwork_Pnsofortueberweisung_PaymentController extends Mage_Core_Co
31
  * @var string
32
  */
33
  private $_commentMessages = array(
 
34
  'abort' => 'Payment aborted. Time: %s',
35
  'pending_not_credited_yet' => 'SOFORT Banking has been completed successfully - Transaction ID: [[transaction_id]]. Time: [[date]]',
36
  'untraceable_sofort_bank_account_needed' => 'SOFORT Banking has been completed successfully - Transaction ID: [[transaction_id]]. Time: [[date]]',
@@ -42,6 +43,23 @@ class Paymentnetwork_Pnsofortueberweisung_PaymentController extends Mage_Core_Co
42
  'refunded_refunded' => 'Amount will be refunded. Time: [[date]]'
43
  );
44
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  /**
46
  * Sofort success url
47
  */
@@ -56,6 +74,7 @@ class Paymentnetwork_Pnsofortueberweisung_PaymentController extends Mage_Core_Co
56
  Mage::logException($e);
57
  }
58
  }
 
59
  $this->_redirect('checkout/onepage/success/');
60
  }
61
 
@@ -66,7 +85,7 @@ class Paymentnetwork_Pnsofortueberweisung_PaymentController extends Mage_Core_Co
66
  {
67
  $this->_getOrder()->cancel();
68
  $this->_getOrder()->addStatusHistoryComment(
69
- sprintf(Mage::helper('sofort')->__($this->_commentMessages['abort']), date('d.m.Y H:i:s'))
70
  );
71
 
72
  $this->_getOrder()->save();
@@ -303,7 +322,7 @@ class Paymentnetwork_Pnsofortueberweisung_PaymentController extends Mage_Core_Co
303
  $comment = Mage::helper('sofort')->__($this->_commentMessages[$commentKey]);
304
  }
305
 
306
- $comment = str_replace('[[date]]', date('d.m.Y H:i:s'), $comment);
307
  $comment = str_replace('[[transaction_id]]', $statusData['transaction_id'], $comment);
308
  $comment = str_replace('[[refunded_amount]]', $statusData['refunded_amount'], $comment);
309
 
31
  * @var string
32
  */
33
  private $_commentMessages = array(
34
+ 'redirect' => 'Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]',
35
  'abort' => 'Payment aborted. Time: %s',
36
  'pending_not_credited_yet' => 'SOFORT Banking has been completed successfully - Transaction ID: [[transaction_id]]. Time: [[date]]',
37
  'untraceable_sofort_bank_account_needed' => 'SOFORT Banking has been completed successfully - Transaction ID: [[transaction_id]]. Time: [[date]]',
43
  'refunded_refunded' => 'Amount will be refunded. Time: [[date]]'
44
  );
45
 
46
+ public function redirectAction()
47
+ {
48
+ $comment = Mage::helper('sofort')->__($this->_commentMessages['redirect']);
49
+ $comment = str_replace('[[date]]', date('d.m.Y H:i:s', Mage::getModel('core/date')->timestamp(time())), $comment);
50
+ $comment = str_replace(
51
+ '[[transaction_id]]',
52
+ $this->_getOrder()->getPayment()->getAdditionalInformation('sofort_transaction_id'),
53
+ $comment
54
+ );
55
+
56
+ $this->_getOrder()->addStatusHistoryComment($comment);
57
+
58
+ $this->_getOrder()->save();
59
+
60
+ $this->_redirectUrl(Mage::getSingleton('customer/session')->getPaymentUrl());
61
+ }
62
+
63
  /**
64
  * Sofort success url
65
  */
74
  Mage::logException($e);
75
  }
76
  }
77
+
78
  $this->_redirect('checkout/onepage/success/');
79
  }
80
 
85
  {
86
  $this->_getOrder()->cancel();
87
  $this->_getOrder()->addStatusHistoryComment(
88
+ sprintf(Mage::helper('sofort')->__($this->_commentMessages['abort']), date('d.m.Y H:i:s', Mage::getModel('core/date')->timestamp(time())))
89
  );
90
 
91
  $this->_getOrder()->save();
322
  $comment = Mage::helper('sofort')->__($this->_commentMessages[$commentKey]);
323
  }
324
 
325
+ $comment = str_replace('[[date]]', date('d.m.Y H:i:s', Mage::getModel('core/date')->timestamp(time())), $comment);
326
  $comment = str_replace('[[transaction_id]]', $statusData['transaction_id'], $comment);
327
  $comment = str_replace('[[refunded_amount]]', $statusData['refunded_amount'], $comment);
328
 
app/code/community/Paymentnetwork/Pnsofortueberweisung/etc/config.xml CHANGED
@@ -24,7 +24,7 @@
24
 
25
  <modules>
26
  <Paymentnetwork_Pnsofortueberweisung>
27
- <version>3.0.3</version>
28
  </Paymentnetwork_Pnsofortueberweisung>
29
  </modules>
30
 
24
 
25
  <modules>
26
  <Paymentnetwork_Pnsofortueberweisung>
27
+ <version>3.0.4</version>
28
  </Paymentnetwork_Pnsofortueberweisung>
29
  </modules>
30
 
app/locale/cs_CZ/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Vyhotovit automaticky dobropis
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Automaticky se vyhotoví dobropis, pokud byla transakce v systému SOFORT odepsána.
75
  en,cz
76
- "Send order confirmation","Odeslat potvrzení objednávky"
 
73
  Create credit memo automatically,Vyhotovit automaticky dobropis
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Automaticky se vyhotoví dobropis, pokud byla transakce v systému SOFORT odepsána.
75
  en,cz
76
+ "Send order confirmation","Odeslat potvrzení objednávky"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Přesměrování na SOFORT Banking. Platba ještě nebyla uzavřena. ID transakce: [[transaction_id]]. Čas: [[date]] hod"
app/locale/de_AT/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Gutschrift automatisch erstellen
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,"Es wird automatisch eine Gutschrift erstellt, wenn einer Transaktion im SOFORT System zurückgebucht wurde."
75
  en,de
76
- "Send order confirmation","Bestellbestätigung senden"
 
73
  Create credit memo automatically,Gutschrift automatisch erstellen
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,"Es wird automatisch eine Gutschrift erstellt, wenn einer Transaktion im SOFORT System zurückgebucht wurde."
75
  en,de
76
+ "Send order confirmation","Bestellbestätigung senden"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Weiterleitung zu SOFORT Überweisung. Zahlung noch nicht abgeschlossen. Transaktions-ID: [[transaction_id]]. Zeit: [[date]] Uhr"
app/locale/de_CH/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Gutschrift automatisch erstellen
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,"Es wird automatisch eine Gutschrift erstellt, wenn einer Transaktion im SOFORT System zurückgebucht wurde."
75
  en,de
76
- "Send order confirmation","Bestellbestätigung senden"
 
73
  Create credit memo automatically,Gutschrift automatisch erstellen
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,"Es wird automatisch eine Gutschrift erstellt, wenn einer Transaktion im SOFORT System zurückgebucht wurde."
75
  en,de
76
+ "Send order confirmation","Bestellbestätigung senden"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Weiterleitung zu SOFORT Überweisung. Zahlung noch nicht abgeschlossen. Transaktions-ID: [[transaction_id]]. Zeit: [[date]] Uhr"
app/locale/de_DE/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Gutschrift automatisch erstellen
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,"Es wird automatisch eine Gutschrift erstellt, wenn einer Transaktion im SOFORT System zurückgebucht wurde."
75
  en,de
76
- "Send order confirmation","Bestellbestätigung senden"
 
73
  Create credit memo automatically,Gutschrift automatisch erstellen
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,"Es wird automatisch eine Gutschrift erstellt, wenn einer Transaktion im SOFORT System zurückgebucht wurde."
75
  en,de
76
+ "Send order confirmation","Bestellbestätigung senden"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Weiterleitung zu SOFORT Überweisung. Zahlung noch nicht abgeschlossen. Transaktions-ID: [[transaction_id]]. Zeit: [[date]] Uhr"
app/locale/en_AU/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ Set-up and configuration, Set-up and configuration
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
  en,en
76
- "Send order confirmation","Send order confirmation"
 
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
  en,en
76
+ "Send order confirmation","Send order confirmation"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]"
app/locale/en_CA/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ Set-up and configuration, Set-up and configuration
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
  en,en
76
- "Send order confirmation","Send order confirmation"
 
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
  en,en
76
+ "Send order confirmation","Send order confirmation"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]"
app/locale/en_GB/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ Set-up and configuration, Set-up and configuration
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
  en,en
76
- "Send order confirmation","Send order confirmation"
 
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
  en,en
76
+ "Send order confirmation","Send order confirmation"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]"
app/locale/en_IE/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ Set-up and configuration, Set-up and configuration
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
  en,en
76
- "Send order confirmation","Send order confirmation"
 
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
  en,en
76
+ "Send order confirmation","Send order confirmation"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]"
app/locale/en_NZ/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ Set-up and configuration, Set-up and configuration
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
  en,en
76
- "Send order confirmation","Send order confirmation"
 
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
  en,en
76
+ "Send order confirmation","Send order confirmation"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]"
app/locale/en_US/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ Set-up and configuration, Set-up and configuration
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
  en,en
76
- "Send order confirmation","Send order confirmation"
 
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
  en,en
76
+ "Send order confirmation","Send order confirmation"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]"
app/locale/en_ZA/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ Set-up and configuration, Set-up and configuration
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
  en,en
76
- "Send order confirmation","Send order confirmation"
 
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
  en,en
76
+ "Send order confirmation","Send order confirmation"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]"
app/locale/es_AR/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
  en,es
76
- "Send order confirmation","Enviar confirmación de la orden"
 
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
  en,es
76
+ "Send order confirmation","Enviar confirmación de la orden"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Redireccionando a SOFORT Banking. Pago todavía no completado. ID de la transacción: [[transaction_id]]. Fecha y hora: [[date]] h"
app/locale/es_CL/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
  en,es
76
- "Send order confirmation","Enviar confirmación de la orden"
 
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
  en,es
76
+ "Send order confirmation","Enviar confirmación de la orden"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Redireccionando a SOFORT Banking. Pago todavía no completado. ID de la transacción: [[transaction_id]]. Fecha y hora: [[date]] h"
app/locale/es_CO/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
  en,es
76
- "Send order confirmation","Enviar confirmación de la orden"
 
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
  en,es
76
+ "Send order confirmation","Enviar confirmación de la orden"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Redireccionando a SOFORT Banking. Pago todavía no completado. ID de la transacción: [[transaction_id]]. Fecha y hora: [[date]] h"
app/locale/es_CR/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
  en,es
76
- "Send order confirmation","Enviar confirmación de la orden"
 
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
  en,es
76
+ "Send order confirmation","Enviar confirmación de la orden"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Redireccionando a SOFORT Banking. Pago todavía no completado. ID de la transacción: [[transaction_id]]. Fecha y hora: [[date]] h"
app/locale/es_ES/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
  en,es
76
- "Send order confirmation","Enviar confirmación de la orden"
 
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
  en,es
76
+ "Send order confirmation","Enviar confirmación de la orden"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Redireccionando a SOFORT Banking. Pago todavía no completado. ID de la transacción: [[transaction_id]]. Fecha y hora: [[date]] h"
app/locale/es_MX/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
  en,es
76
- "Send order confirmation","Enviar confirmación de la orden"
 
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
  en,es
76
+ "Send order confirmation","Enviar confirmación de la orden"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Redireccionando a SOFORT Banking. Pago todavía no completado. ID de la transacción: [[transaction_id]]. Fecha y hora: [[date]] h"
app/locale/es_PA/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
  en,es
76
- "Send order confirmation","Enviar confirmación de la orden"
 
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
  en,es
76
+ "Send order confirmation","Enviar confirmación de la orden"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Redireccionando a SOFORT Banking. Pago todavía no completado. ID de la transacción: [[transaction_id]]. Fecha y hora: [[date]] h"
app/locale/es_PE/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
  en,es
76
- "Send order confirmation","Enviar confirmación de la orden"
 
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
  en,es
76
+ "Send order confirmation","Enviar confirmación de la orden"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Redireccionando a SOFORT Banking. Pago todavía no completado. ID de la transacción: [[transaction_id]]. Fecha y hora: [[date]] h"
app/locale/es_VE/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
  en,es
76
- "Send order confirmation","Enviar confirmación de la orden"
 
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
  en,es
76
+ "Send order confirmation","Enviar confirmación de la orden"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Redireccionando a SOFORT Banking. Pago todavía no completado. ID de la transacción: [[transaction_id]]. Fecha y hora: [[date]] h"
app/locale/fr_CA/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Générer un avoir automatiquement
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Un avoir est généré automatiquement lorsqu'une transaction a été remboursée dans le système SOFORT.
75
  en,fr
76
- "Send order confirmation","Envoyer la confirmation de commande"
 
73
  Create credit memo automatically,Générer un avoir automatiquement
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Un avoir est généré automatiquement lorsqu'une transaction a été remboursée dans le système SOFORT.
75
  en,fr
76
+ "Send order confirmation","Envoyer la confirmation de commande"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Redirection vers SOFORT Banking. Paiement pas encore terminé. N° de transaction : [[transaction_id]]. Heure : [[date]] heures"
app/locale/fr_FR/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Générer un avoir automatiquement
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Un avoir est généré automatiquement lorsqu'une transaction a été remboursée dans le système SOFORT.
75
  en,fr
76
- "Send order confirmation","Envoyer la confirmation de commande"
 
73
  Create credit memo automatically,Générer un avoir automatiquement
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Un avoir est généré automatiquement lorsqu'une transaction a été remboursée dans le système SOFORT.
75
  en,fr
76
+ "Send order confirmation","Envoyer la confirmation de commande"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Redirection vers SOFORT Banking. Paiement pas encore terminé. N° de transaction : [[transaction_id]]. Heure : [[date]] heures"
app/locale/hu_HU/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Jóváírás automatikus kiállítása
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Jóváírás kerül automatikusan kiállítára, ha a tranzakció a SOFORT rendszerében stornózásra kerül.
75
  en,hu
76
- "Send order confirmation","A megrendelés visszaigazolásának küldése"
 
73
  Create credit memo automatically,Jóváírás automatikus kiállítása
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Jóváírás kerül automatikusan kiállítára, ha a tranzakció a SOFORT rendszerében stornózásra kerül.
75
  en,hu
76
+ "Send order confirmation","A megrendelés visszaigazolásának küldése"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Továbbítás a SOFORT Bankinghez. A fizetés még nincs lezárva. Tranzakciós azonosító: [[transaction_id]]. Idő: [[date]] óra"
app/locale/it_CH/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Crei l'accredito automaticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Viene creato automaticamente un accredito se una transazione è stata rimborsata nel sistema SOFORT.
75
  en,it
76
- "Send order confirmation","Invia conferma d'ordine"
 
73
  Create credit memo automatically,Crei l'accredito automaticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Viene creato automaticamente un accredito se una transazione è stata rimborsata nel sistema SOFORT.
75
  en,it
76
+ "Send order confirmation","Invia conferma d'ordine"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Inoltro a SOFORT Banking. Pagamento non ancora terminato. ID transazione: [[transaction_id]]. Data e ora: [[date]]"
app/locale/it_IT/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Crei l'accredito automaticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Viene creato automaticamente un accredito se una transazione è stata rimborsata nel sistema SOFORT.
75
  en,it
76
- "Send order confirmation","Invia conferma d'ordine"
 
73
  Create credit memo automatically,Crei l'accredito automaticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Viene creato automaticamente un accredito se una transazione è stata rimborsata nel sistema SOFORT.
75
  en,it
76
+ "Send order confirmation","Invia conferma d'ordine"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Inoltro a SOFORT Banking. Pagamento non ancora terminato. ID transazione: [[transaction_id]]. Data e ora: [[date]]"
app/locale/nl_NL/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Creditnota automatisch aanmaken
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Er wordt automatisch een creditnota aangemaakt wanneer er een transactie in het SOFORT systeem teruggeboekt wordt.
75
  en,nl
76
- "Send order confirmation","Bestelbevestiging sturen"
 
73
  Create credit memo automatically,Creditnota automatisch aanmaken
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Er wordt automatisch een creditnota aangemaakt wanneer er een transactie in het SOFORT systeem teruggeboekt wordt.
75
  en,nl
76
+ "Send order confirmation","Bestelbevestiging sturen"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Doorsturing naar SOFORT Banking. Betaling nog niet afgesloten. Transactie-ID: [[transaction_id]]. Tijd [[date]] uur"
app/locale/pl_PL/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Wygeneruj automatycznie notę uznaniową
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Jeżeli transakcja została zaznaczona do przelewu zwrotnego w systemie SOFORT, nota uznaniowa zostanie wygenerowana automatycznie.
75
  en,pl
76
- "Send order confirmation","Wysłać potwierdzenie zamówienia"
 
73
  Create credit memo automatically,Wygeneruj automatycznie notę uznaniową
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Jeżeli transakcja została zaznaczona do przelewu zwrotnego w systemie SOFORT, nota uznaniowa zostanie wygenerowana automatycznie.
75
  en,pl
76
+ "Send order confirmation","Wysłać potwierdzenie zamówienia"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Przekierowanie do SOFORT Banking. Płatność nie została jeszcze zakończona. Numer transakcji: [[transaction_id]]. Godzina: [[date]]"
app/locale/sk_SK/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -73,4 +73,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
73
  Create credit memo automatically,Automaticky vytvoriť dobropis
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Keď bola transakcia v systéme SOFORT odpísaná, bude automaticky vytvorený dobropis.
75
  en,sk
76
- "Send order confirmation","Odoslať potvrdenie objednávky"
 
73
  Create credit memo automatically,Automaticky vytvoriť dobropis
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Keď bola transakcia v systéme SOFORT odpísaná, bude automaticky vytvorený dobropis.
75
  en,sk
76
+ "Send order confirmation","Odoslať potvrdenie objednávky"
77
+ "Redirection to SOFORT Banking. Transaction not finished. Transaction ID: [[transaction_id]]. Time: [[date]]", "Presmerovanie na SOFORT Banking. Platba ešte nebola ukončená. ID transakcie: [[transaction_id]]. Čas: [[date]] hod."
package.xml CHANGED
@@ -1,18 +1,19 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>pn_sofortueberweisung</name>
4
- <version>3.0.3</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Extension for the payment method from SOFORT AG</summary>
10
  <description>SOFORT AG is your partner for cutting-edge payment methods. This extension contains the payment method SOFORT Banking. More information can be found on our page https://sofort.com</description>
11
- <notes>added option to send order confirmation when redirecting from SOFORT Gateway back to the Shop.</notes>
 
12
  <authors><author><name>Paymentnetwork</name><user>paymentnetwork</user><email>support@sofort.com</email></author></authors>
13
- <date>2014-08-22</date>
14
- <time>10:38:11</time>
15
- <contents><target name="magecommunity"><dir><dir name="Paymentnetwork"><dir><dir name="Pnsofortueberweisung"><dir name="Block"><dir name="Adminhtml"><dir name="Payment"><dir name="Config"><dir name="Heading"><file name="Big.php" hash="42674a4f5efd70896e883b307106995c"/><file name="Italic.php" hash="bd526e07224e2341284ac4942605be25"/><file name="Middle.php" hash="9ba8dd2318cfba8143b2bfd098886b5a"/></dir><dir name="Label"><file name="Red.php" hash="486fd04e312dfc57892196b58c71261b"/><file name="Status.php" hash="adad4d9d81c09bee083c2bc3bfba51a0"/><file name="Toggle.php" hash="3b65a929acb6dab055379246066839bc"/></dir><file name="Label.php" hash="614e1c5af0a905515398f306386acce7"/></dir></dir></dir><dir name="Form"><file name="Sofort.php" hash="51b9dd7f8e9bb86a9ac979b000e1e00b"/></dir><dir name="Info"><file name="Sofort.php" hash="04ac22543d23a5f5ccc43774b7b20a6c"/></dir></dir><dir name="Helper"><file name="Data.php" hash="5664f1d43db01fd6ebe32b6adf3f8033"/></dir><dir name="Model"><dir name="Method"><file name="Compatibility.php" hash="4d5506948c43a6c7d59bda606ead45ce"/><file name="Sofort.php" hash="78d696c71abdeb8362bf06bd330ae5ea"/></dir><file name="Observer.php" hash="9a7b3a093d8dd59160bf946a522c2ed1"/><dir name="Service"><file name="Communication.php" hash="56a08c96977aed90f51abfedad617ac1"/></dir><dir name="Source"><dir name="Checkout"><file name="Presentation.php" hash="1cd1ccf53588cc336a5d16e7aa2bfdab"/></dir><dir name="Order"><file name="Invoice.php" hash="2dfde0593e6d6cfa2deb6d7f466942e7"/><file name="Status.php" hash="2013a5a74af933242e00018692e40085"/></dir></dir></dir><dir name="controllers"><file name="PaymentController.php" hash="ff12ebc6929bec674ef297a7963e0043"/></dir><dir name="etc"><file name="config.xml" hash="102979a25c707b7add468ff8c317a0c1"/><file name="system.xml" hash="25392ee7268e048dfbc96b93c171f9e9"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="paymentnetwork"><dir name="sofort"><dir name="info"><file name="sofort.phtml" hash="27bd6f4743ec5f2e27db5030db91faa5"/></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="paymentnetwork"><dir name="sofort"><dir name="form"><file name="sofort.phtml" hash="46f5482f40fbc08d1758cea508919ff9"/></dir><dir name="info"><file name="sofort.phtml" hash="7a91fc06df387905b56e9ceaff51df66"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="Paymentnetwork_Pnsofortueberweisung.xml" hash="06f639f28f328516d226210a7c1d6d9b"/></dir></dir></target><target name="magelib"><dir><dir name="Sofort"><dir name="core"><file name="abstractDataHandler.php" hash="1aec51f3c0d1134fceca90ec4207ad70"/><file name="abstractLoggerHandler.php" hash="79a308a9346d4d86fee91e1445cadf70"/><file name="fileLogger.php" hash="da0922c9c0acf54426fc47f76479b5e7"/><dir name="lib"><file name="arrayToXml.php" hash="8b419fc0515aaf9e39da3b3719b51126"/><file name="arrayToXmlException.php" hash="dddeb29526ccfc6101d4c22582545552"/><dir name="elements"><file name="sofortElement.php" hash="f261befe750d39a6c40826825acdce43"/><file name="sofortTag.php" hash="27b4412b17e2e69bbf95789317c1531e"/><file name="sofortText.php" hash="dc076a1484832a28c70beab4552643aa"/></dir><file name="xmlToArray.php" hash="376ed0bfdacdf04d28d442219c70206c"/><file name="xmlToArrayException.php" hash="fbdfb708ef274101e757766ef57b9de4"/><file name="xmlToArrayNode.php" hash="e24ee5022ce01e048febcb1ef399b95f"/></dir><file name="sofortLibAbstract.inc.php" hash="db9ace2ea7551415d999dc32fd5429a4"/><file name="sofortLibFactory.php" hash="88219c40c0e2337dbc1f1b6168e4d0c4"/><file name="sofortLibHttp.inc.php" hash="6117a55acb7eda5d3c3a9249c0e68c2e"/><file name="sofortLibHttpCurl.inc.php" hash="febda30afef2d6bb12b91f872d15931d"/><file name="sofortLibHttpSocket.inc.php" hash="31621f3cd27236d0bf7f72a7683134aa"/><file name="sofortLibMultipay.inc.php" hash="aa6c9295b3186190777b7d747fbb75eb"/><file name="sofortLibNotification.inc.php" hash="bb7ff597f9e85d5e76224c80f0b02385"/><file name="sofortLibTransactionData.inc.php" hash="1d5ac7981c60fc972758623f6aed1746"/><file name="xmlDataHandler.php" hash="3ed58d72fc31bb7ab35429fc5b21a506"/></dir><dir name="examples"><file name="example.sofortueberweisung.php" hash="1e890df0d6609df8f3776f9c4b80de02"/><file name="example.transaction.php" hash="8b48019a745dd6ca0839d85c81b72483"/></dir><dir name="payment"><file name="sofortLibSofortueberweisung.inc.php" hash="7bbbd6fd2b3d2e5d49841ed7f5291768"/></dir><dir name="unittests"><file name="SofortObject.php" hash="96f43937aeb0e9a33bd716a340b0c96a"/><file name="abstractDataHandlerTest.php" hash="10440fdee7fc6d4abf7f81c64cdb8f83"/><file name="abstractLoggerHandlerTest.php" hash="a25fe8744a245af22dde1bfd549fc85e"/><file name="arrayToXmlTest.php" hash="c2c77f789c3110e0ab65e4fc663a9227"/><file name="fileLoggerTest.php" hash="a8d853ddb0cb596f5db4100d1121a901"/><file name="paymentTest.xml" hash="def52e3ebca6a4146cccbf4c3afcefa6"/><file name="sofortLibAbstractTest.php" hash="62a8d159d79902887acff6d4b4f9e9b8"/><file name="sofortLibHttpCurlTest.php" hash="157782469515caa7be38159fe19733a3"/><file name="sofortLibHttpSocketTest.php" hash="6ae1569b81592f882485330bf735469c"/><file name="sofortLibHttpTest.php" hash="e3383d6a355a4424c1e1f89c59526848"/><file name="sofortLibMultipayTest.php" hash="3b4b978daeeca568497f85b525cbbaab"/><file name="sofortLibNotificationTest.php" hash="bed88694a931ca220e5e452d1c6a7d33"/><file name="sofortLibSofortUeberweisungTest.php" hash="ca6060e673ae1c0362e08663927b5db7"/><file name="sofortLibTest.php" hash="899fee42d03842393c3c106469f8f33c"/><file name="sofortLibTransactionDataTest.php" hash="1eb89534a1f72c54b603bef2df7e6998"/><file name="xmlToArrayNodeTest.php" hash="d9c34e50e6190bff067738853ce77195"/><file name="xmlToArrayTest.php" hash="59df5d3b8cbd90f6d494441bfb7e90a3"/></dir></dir></dir></target><target name="magelocale"><dir><dir name="cs_CZ"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="1478ce13fe9f70775116beed715db912"/></dir><dir name="de_AT"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="2c8218f2241ed5916633ccf4ef9ff49b"/></dir><dir name="de_CH"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="2c8218f2241ed5916633ccf4ef9ff49b"/></dir><dir name="de_DE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="56d33745dcb07997a8c96d2baa2f3bf5"/></dir><dir name="en_AU"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="4781267a6c7a4d9671fe4d68f8315363"/></dir><dir name="en_CA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="4781267a6c7a4d9671fe4d68f8315363"/></dir><dir name="en_GB"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="4781267a6c7a4d9671fe4d68f8315363"/></dir><dir name="en_IE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="4781267a6c7a4d9671fe4d68f8315363"/></dir><dir name="en_NZ"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="4781267a6c7a4d9671fe4d68f8315363"/></dir><dir name="en_US"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="4781267a6c7a4d9671fe4d68f8315363"/></dir><dir name="en_ZA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="4781267a6c7a4d9671fe4d68f8315363"/></dir><dir name="es_AR"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0e4ed9479eda2cdf16f9361bd8c6edd5"/></dir><dir name="es_CL"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0accd069e67bda41afcc1d1a9116b2c1"/></dir><dir name="es_CO"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0accd069e67bda41afcc1d1a9116b2c1"/></dir><dir name="es_CR"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0accd069e67bda41afcc1d1a9116b2c1"/></dir><dir name="es_ES"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0accd069e67bda41afcc1d1a9116b2c1"/></dir><dir name="es_MX"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0accd069e67bda41afcc1d1a9116b2c1"/></dir><dir name="es_PA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0accd069e67bda41afcc1d1a9116b2c1"/></dir><dir name="es_PE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0accd069e67bda41afcc1d1a9116b2c1"/></dir><dir name="es_VE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0accd069e67bda41afcc1d1a9116b2c1"/></dir><dir name="fr_CA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="d74de18e63d99d177e886c33f48b5902"/></dir><dir name="fr_FR"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="d74de18e63d99d177e886c33f48b5902"/></dir><dir name="hu_HU"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="ad46becffbefde27cd4389112a1908c7"/></dir><dir name="it_CH"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="bbed5d84d828ed9c96efb401b33328ad"/></dir><dir name="it_IT"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="bbed5d84d828ed9c96efb401b33328ad"/></dir><dir name="nl_NL"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="75913524f89c0f21b45857128c4fff88"/></dir><dir name="pl_PL"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0518c9c1534991b04461d1a800d8ba08"/></dir><dir name="sk_SK"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="893c9cbebdb664209e214657587138fe"/></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>pn_sofortueberweisung</name>
4
+ <version>3.0.4</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Extension for the payment method from SOFORT AG</summary>
10
  <description>SOFORT AG is your partner for cutting-edge payment methods. This extension contains the payment method SOFORT Banking. More information can be found on our page https://sofort.com</description>
11
+ <notes>* better date receivement and add redirect order comment&#xD;
12
+ * use magento round function to round grand total to avoid 4 digit decimals</notes>
13
  <authors><author><name>Paymentnetwork</name><user>paymentnetwork</user><email>support@sofort.com</email></author></authors>
14
+ <date>2014-08-28</date>
15
+ <time>08:16:55</time>
16
+ <contents><target name="magecommunity"><dir><dir name="Paymentnetwork"><dir><dir name="Pnsofortueberweisung"><dir name="Block"><dir name="Adminhtml"><dir name="Payment"><dir name="Config"><dir name="Heading"><file name="Big.php" hash="42674a4f5efd70896e883b307106995c"/><file name="Italic.php" hash="bd526e07224e2341284ac4942605be25"/><file name="Middle.php" hash="9ba8dd2318cfba8143b2bfd098886b5a"/></dir><dir name="Label"><file name="Red.php" hash="486fd04e312dfc57892196b58c71261b"/><file name="Status.php" hash="adad4d9d81c09bee083c2bc3bfba51a0"/><file name="Toggle.php" hash="3b65a929acb6dab055379246066839bc"/></dir><file name="Label.php" hash="614e1c5af0a905515398f306386acce7"/></dir></dir></dir><dir name="Form"><file name="Sofort.php" hash="51b9dd7f8e9bb86a9ac979b000e1e00b"/></dir><dir name="Info"><file name="Sofort.php" hash="04ac22543d23a5f5ccc43774b7b20a6c"/></dir></dir><dir name="Helper"><file name="Data.php" hash="5664f1d43db01fd6ebe32b6adf3f8033"/></dir><dir name="Model"><dir name="Method"><file name="Compatibility.php" hash="4d5506948c43a6c7d59bda606ead45ce"/><file name="Sofort.php" hash="1fe70d2528da93056f6457e76cf81f89"/></dir><file name="Observer.php" hash="9a7b3a093d8dd59160bf946a522c2ed1"/><dir name="Service"><file name="Communication.php" hash="feee243f0a8e9894a4e9e4e8725680bf"/></dir><dir name="Source"><dir name="Checkout"><file name="Presentation.php" hash="1cd1ccf53588cc336a5d16e7aa2bfdab"/></dir><dir name="Order"><file name="Invoice.php" hash="2dfde0593e6d6cfa2deb6d7f466942e7"/><file name="Status.php" hash="2013a5a74af933242e00018692e40085"/></dir></dir></dir><dir name="controllers"><file name="PaymentController.php" hash="99a1b99bfb8eeb5d116de8fac6e8e842"/></dir><dir name="etc"><file name="config.xml" hash="e042658c6589a0ddc486f40c19639d69"/><file name="system.xml" hash="25392ee7268e048dfbc96b93c171f9e9"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="paymentnetwork"><dir name="sofort"><dir name="info"><file name="sofort.phtml" hash="27bd6f4743ec5f2e27db5030db91faa5"/></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="paymentnetwork"><dir name="sofort"><dir name="form"><file name="sofort.phtml" hash="46f5482f40fbc08d1758cea508919ff9"/></dir><dir name="info"><file name="sofort.phtml" hash="7a91fc06df387905b56e9ceaff51df66"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="Paymentnetwork_Pnsofortueberweisung.xml" hash="06f639f28f328516d226210a7c1d6d9b"/></dir></dir></target><target name="magelib"><dir><dir name="Sofort"><dir name="core"><file name="abstractDataHandler.php" hash="1aec51f3c0d1134fceca90ec4207ad70"/><file name="abstractLoggerHandler.php" hash="79a308a9346d4d86fee91e1445cadf70"/><file name="fileLogger.php" hash="da0922c9c0acf54426fc47f76479b5e7"/><dir name="lib"><file name="arrayToXml.php" hash="8b419fc0515aaf9e39da3b3719b51126"/><file name="arrayToXmlException.php" hash="dddeb29526ccfc6101d4c22582545552"/><dir name="elements"><file name="sofortElement.php" hash="f261befe750d39a6c40826825acdce43"/><file name="sofortTag.php" hash="27b4412b17e2e69bbf95789317c1531e"/><file name="sofortText.php" hash="dc076a1484832a28c70beab4552643aa"/></dir><file name="xmlToArray.php" hash="376ed0bfdacdf04d28d442219c70206c"/><file name="xmlToArrayException.php" hash="fbdfb708ef274101e757766ef57b9de4"/><file name="xmlToArrayNode.php" hash="e24ee5022ce01e048febcb1ef399b95f"/></dir><file name="sofortLibAbstract.inc.php" hash="db9ace2ea7551415d999dc32fd5429a4"/><file name="sofortLibFactory.php" hash="88219c40c0e2337dbc1f1b6168e4d0c4"/><file name="sofortLibHttp.inc.php" hash="6117a55acb7eda5d3c3a9249c0e68c2e"/><file name="sofortLibHttpCurl.inc.php" hash="febda30afef2d6bb12b91f872d15931d"/><file name="sofortLibHttpSocket.inc.php" hash="31621f3cd27236d0bf7f72a7683134aa"/><file name="sofortLibMultipay.inc.php" hash="aa6c9295b3186190777b7d747fbb75eb"/><file name="sofortLibNotification.inc.php" hash="bb7ff597f9e85d5e76224c80f0b02385"/><file name="sofortLibTransactionData.inc.php" hash="1d5ac7981c60fc972758623f6aed1746"/><file name="xmlDataHandler.php" hash="3ed58d72fc31bb7ab35429fc5b21a506"/></dir><dir name="examples"><file name="example.sofortueberweisung.php" hash="1e890df0d6609df8f3776f9c4b80de02"/><file name="example.transaction.php" hash="8b48019a745dd6ca0839d85c81b72483"/></dir><dir name="payment"><file name="sofortLibSofortueberweisung.inc.php" hash="7bbbd6fd2b3d2e5d49841ed7f5291768"/></dir><dir name="unittests"><file name="SofortObject.php" hash="96f43937aeb0e9a33bd716a340b0c96a"/><file name="abstractDataHandlerTest.php" hash="10440fdee7fc6d4abf7f81c64cdb8f83"/><file name="abstractLoggerHandlerTest.php" hash="a25fe8744a245af22dde1bfd549fc85e"/><file name="arrayToXmlTest.php" hash="c2c77f789c3110e0ab65e4fc663a9227"/><file name="fileLoggerTest.php" hash="a8d853ddb0cb596f5db4100d1121a901"/><file name="paymentTest.xml" hash="def52e3ebca6a4146cccbf4c3afcefa6"/><file name="sofortLibAbstractTest.php" hash="62a8d159d79902887acff6d4b4f9e9b8"/><file name="sofortLibHttpCurlTest.php" hash="157782469515caa7be38159fe19733a3"/><file name="sofortLibHttpSocketTest.php" hash="6ae1569b81592f882485330bf735469c"/><file name="sofortLibHttpTest.php" hash="e3383d6a355a4424c1e1f89c59526848"/><file name="sofortLibMultipayTest.php" hash="3b4b978daeeca568497f85b525cbbaab"/><file name="sofortLibNotificationTest.php" hash="bed88694a931ca220e5e452d1c6a7d33"/><file name="sofortLibSofortUeberweisungTest.php" hash="ca6060e673ae1c0362e08663927b5db7"/><file name="sofortLibTest.php" hash="899fee42d03842393c3c106469f8f33c"/><file name="sofortLibTransactionDataTest.php" hash="1eb89534a1f72c54b603bef2df7e6998"/><file name="xmlToArrayNodeTest.php" hash="d9c34e50e6190bff067738853ce77195"/><file name="xmlToArrayTest.php" hash="59df5d3b8cbd90f6d494441bfb7e90a3"/></dir></dir></dir></target><target name="magelocale"><dir><dir name="cs_CZ"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="539f6eac64794384cd9ab16f70d99f22"/></dir><dir name="de_AT"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0aacb47fa462595548dc53052f857022"/></dir><dir name="de_CH"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0aacb47fa462595548dc53052f857022"/></dir><dir name="de_DE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="45dd1de45791774246fb017659183d17"/></dir><dir name="en_AU"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="en_CA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="en_GB"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="en_IE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="en_NZ"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="en_US"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="en_ZA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="es_AR"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="549358980dd9b97e429a9fd420c81c91"/></dir><dir name="es_CL"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_CO"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_CR"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_ES"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_MX"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_PA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_PE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_VE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="fr_CA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="08229b58bc60e4c2710330a5777a5357"/></dir><dir name="fr_FR"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="08229b58bc60e4c2710330a5777a5357"/></dir><dir name="hu_HU"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="f94cb615af526a3484ce886b5da357a2"/></dir><dir name="it_CH"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="e35487b46c490d8067c24bf139c4a88b"/></dir><dir name="it_IT"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="e35487b46c490d8067c24bf139c4a88b"/></dir><dir name="nl_NL"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="500cdcdbe6fdb9e26419c905f5ad393c"/></dir><dir name="pl_PL"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9a0a69b50c22e013e53edaf755186233"/></dir><dir name="sk_SK"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="b7c985b2f5f00c11532d9b5e4cb5cb62"/></dir></dir></target></contents>
17
  <compatible/>
18
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
19
  </package>