Heidelpay - Version 14.05.22

Version Notes

- change BillSafe behavior from net price to gross price. This will privent rounding errors.
- fix notice userid emty in registration mode.

Download this release

Release Info

Developer Heidelberger Payment GmbH
Extension Heidelpay
Version 14.05.22
Comparing to
See all releases


Code changes from version 14.01.08 to 14.05.22

app/code/local/Mage/Heidelpay/Model/Method/Payment.php CHANGED
@@ -8,9 +8,9 @@ class Mage_Heidelpay_Model_Method_Payment extends Mage_Payment_Model_Method_Abst
8
  * @var string [a-z0-9_]
9
  */
10
  protected $_code = 'payment';
11
- protected $_order;
12
- protected $_moduleMode = 'DIRECT';
13
- protected $version = '14.01.08';
14
 
15
  /**
16
  * Availability options
@@ -24,10 +24,10 @@ class Mage_Heidelpay_Model_Method_Payment extends Mage_Payment_Model_Method_Abst
24
  protected $_canVoid = false;
25
  protected $_canUseInternal = false;
26
  protected $_canUseCheckout = true;
27
- protected $_canUseForMultishipping = false;
28
- protected $_canSaveCc = false;
29
  */
30
- protected $_isGateway = false;
31
  protected $_canAuthorize = false;
32
  protected $_canCapture = true;
33
  protected $_canCapturePartial = true;
@@ -51,9 +51,9 @@ class Mage_Heidelpay_Model_Method_Payment extends Mage_Payment_Model_Method_Abst
51
  */
52
  protected $_payment_url;
53
  protected $_request = array();
54
- protected $_availablePayments = array('XC', 'CC','DD','DC','VA','OT','IV','PP','UA','PC');
55
- protected $_allowCurrencyCode = array('AED','AFA','ALL','AMD','ANG','AOA','ARS','AUD','AWG','AZM','BAM','BBD','BDT','BGN','BHD','BIF','BMD','BND','BOB','BRL','BSD','BTN','BWP','BYR','BZD','CAD','CDF','CHF','CLP','CNY','COP','CRC','CUP','CVE','CYP','CZK','DJF','DKK','DOP','DZD','EEK','EGP','ERN','ETB','EUR','FJD','FKP','GBP','GEL','GGP','GHC','GIP','GMD','GNF','GTQ','GYD','HKD','HNL','HRK','HTG','HUF','IDR','ILS','IMP','INR','IQD','IRR','ISK','JEP','JMD','JOD','JPY','KES','KGS','KHR','KMF','KPW','KRW','KWD','KYD','KZT','LAK','LBP','LKR','LRD','LSL','LTL','LVL','LYD','MAD','MDL','MGA','MKD','MMK','MNT','MOP','MRO','MTL','MUR','MVR','MWK','MXN','MYR','MZM','NAD','NGN','NIO','NOK','NPR','NZD','OMR','PAB','PEN','PGK','PHP','PKR','PLN','PTS','PYG','QAR','RON','RUB','RWF','SAR','SBD','SCR','SDD','SEK','SGD','SHP','SIT','SKK','SLL','SOS','SPL','SRD','STD','SVC','SYP','SZL','THB','TJS','TMM','TND','TOP','TRL','TRY','TTD','TVD','TWD','TZS','UAH','UGX','USD','UYU','UZS','VEF','VND','VUV','WST','XAF','XAG','XAU','XCD','XDR','XOF','XPD','XPF','XPT','YER','ZAR','ZMK','ZWD');
56
- protected $actualPaymethod;
57
  /*}}}*/
58
 
59
  /**
@@ -233,6 +233,7 @@ class Mage_Heidelpay_Model_Method_Payment extends Mage_Payment_Model_Method_Abst
233
  if (empty($email)) $email = $billing->getEmail();
234
 
235
  $userData = array(
 
236
  'company' => $billing->getCompany(),
237
  'firstname' => $billing->getFirstname(),
238
  'lastname' => $billing->getLastname(),
@@ -540,7 +541,6 @@ class Mage_Heidelpay_Model_Method_Payment extends Mage_Payment_Model_Method_Abst
540
  // BarPay
541
  if (!empty($res['all']['CRITERION_BARPAY_PAYCODE_URL'])){
542
  $prePaidData = preg_replace('/{LINK}/', $res['all']['CRITERION_BARPAY_PAYCODE_URL'], $this->_getHelper('heidelpay')->__('HP_BARPAY_DOWNLOAD'));
543
- #error_log($this->_getHelper('heidelpay')->__('HP_BARPAY_DOWNLOAD'), 3, 'd:\LOGS\magento.log');
544
  }
545
 
546
  #$this->getSession()->setHpPayinfos($hpPayinfos);
@@ -634,6 +634,7 @@ class Mage_Heidelpay_Model_Method_Payment extends Mage_Payment_Model_Method_Abst
634
  #$parameters['FRONTEND.ENABLED'] = "false";
635
  } else if ($this->actualPaymethod == 'PPAL'){
636
  $parameters['ACCOUNT.BRAND'] = 'PAYPAL';
 
637
  #} else if ($this->actualPaymethod == 'XC'){
638
  # $parameters['ACCOUNT.BRAND'] = 'VISA';
639
  } else if ($this->actualPaymethod == 'BS'){
@@ -731,17 +732,19 @@ class Mage_Heidelpay_Model_Method_Payment extends Mage_Payment_Model_Method_Abst
731
 
732
  public function getBillsafeBasket($order)/*{{{*/
733
  {
734
- $items = $order->getAllItems();
 
735
  if ($items) {
736
  $i = 0;
737
  foreach($items as $item) {
738
  $i++;
739
  $prefix = 'CRITERION.POS_'.sprintf('%02d', $i);
 
740
  $parameters[$prefix.'.POSITION'] = $i;
741
- $parameters[$prefix.'.QUANTITY'] = (int)$item->getQtyOrdered();
742
  $parameters[$prefix.'.UNIT'] = 'Stk.'; // Liter oder so
743
- $parameters[$prefix.'.AMOUNT_UNIT'] = round($item->getPrice()*100);
744
- $parameters[$prefix.'.AMOUNT'] = round($item->getRowTotal()*100);
745
  $parameters[$prefix.'.TEXT'] = $item->getName();
746
  $parameters[$prefix.'.COL1'] = 'SKU:'.$item->getSku();
747
  //$parameters[$prefix.'.COL2'] = '';
@@ -758,15 +761,15 @@ class Mage_Heidelpay_Model_Method_Payment extends Mage_Payment_Model_Method_Abst
758
  $parameters[$prefix.'.POSITION'] = $i;
759
  $parameters[$prefix.'.QUANTITY'] = '1';
760
  $parameters[$prefix.'.UNIT'] = 'Stk.'; // Liter oder so
761
- $parameters[$prefix.'.AMOUNT_UNIT'] = round($this->getShippingNetPrice($order)*100);
762
- $parameters[$prefix.'.AMOUNT'] = round($this->getShippingNetPrice($order)*100);
763
  $parameters[$prefix.'.TEXT'] = 'Shipping';
764
  //$parameters[$prefix.'.COL1'] = 'SKU:'.$item->getSku();
765
  //$parameters[$prefix.'.COL2'] = '';
766
  //$parameters[$prefix.'.COL3'] = '';
767
  //$parameters[$prefix.'.COL4'] = '';
768
  $parameters[$prefix.'.ARTICLE_NUMBER'] = '0';
769
- $parameters[$prefix.'.PERCENT_VAT'] = $this->getShippingTaxPercent($order);
770
  $parameters[$prefix.'.ARTICLE_TYPE'] = 'shipment'; // "goods" (Versandartikel), "shipment" (Versandkosten) oder "voucher" (Gutschein/Rabatt)
771
  }
772
  if ($order->getDiscountAmount() > 0){
@@ -775,8 +778,8 @@ class Mage_Heidelpay_Model_Method_Payment extends Mage_Payment_Model_Method_Abst
775
  $parameters[$prefix.'.POSITION'] = $i;
776
  $parameters[$prefix.'.QUANTITY'] = '1';
777
  $parameters[$prefix.'.UNIT'] = 'Stk.'; // Liter oder so
778
- $parameters[$prefix.'.AMOUNT_UNIT'] = round($order->getDiscountAmount()*100);
779
- $parameters[$prefix.'.AMOUNT'] = round($order->getDiscountAmount()*100);
780
  $parameters[$prefix.'.TEXT'] = 'Voucher';
781
  //$parameters[$prefix.'.COL1'] = 'SKU:'.$item->getSku();
782
  //$parameters[$prefix.'.COL2'] = '';
@@ -787,31 +790,7 @@ class Mage_Heidelpay_Model_Method_Payment extends Mage_Payment_Model_Method_Abst
787
  $parameters[$prefix.'.ARTICLE_TYPE'] = 'voucher'; // "goods" (Versandartikel), "shipment" (Versandkosten) oder "voucher" (Gutschein/Rabatt)
788
  }
789
 
790
- /*
791
- 2. Order Item
792
- Attributes:
793
- parent_id
794
- quote_item_id
795
- product_id
796
- sku
797
- image
798
- name
799
- description
800
- qty_ordered
801
- qty_backordered
802
- qty_canceled
803
- qty_shipped
804
- qty_returned
805
- price
806
- cost
807
- discount_percent
808
- discount_amount
809
- tax_percent
810
- tax_amount
811
- row_total
812
- row_weight
813
- applied_rule_ids
814
- */
815
  return $parameters;
816
  }/*}}}*/
817
 
8
  * @var string [a-z0-9_]
9
  */
10
  protected $_code = 'payment';
11
+ protected $_order;
12
+ protected $_moduleMode = 'DIRECT';
13
+ protected $version = '14.05.22';
14
 
15
  /**
16
  * Availability options
24
  protected $_canVoid = false;
25
  protected $_canUseInternal = false;
26
  protected $_canUseCheckout = true;
27
+ protected $_canUseForMultishipping = false;
28
+ protected $_canSaveCc = false;
29
  */
30
+ protected $_isGateway = false;
31
  protected $_canAuthorize = false;
32
  protected $_canCapture = true;
33
  protected $_canCapturePartial = true;
51
  */
52
  protected $_payment_url;
53
  protected $_request = array();
54
+ protected $_availablePayments = array('XC', 'CC','DD','DC','VA','OT','IV','PP','UA','PC');
55
+ protected $_allowCurrencyCode = array('AED','AFA','ALL','AMD','ANG','AOA','ARS','AUD','AWG','AZM','BAM','BBD','BDT','BGN','BHD','BIF','BMD','BND','BOB','BRL','BSD','BTN','BWP','BYR','BZD','CAD','CDF','CHF','CLP','CNY','COP','CRC','CUP','CVE','CYP','CZK','DJF','DKK','DOP','DZD','EEK','EGP','ERN','ETB','EUR','FJD','FKP','GBP','GEL','GGP','GHC','GIP','GMD','GNF','GTQ','GYD','HKD','HNL','HRK','HTG','HUF','IDR','ILS','IMP','INR','IQD','IRR','ISK','JEP','JMD','JOD','JPY','KES','KGS','KHR','KMF','KPW','KRW','KWD','KYD','KZT','LAK','LBP','LKR','LRD','LSL','LTL','LVL','LYD','MAD','MDL','MGA','MKD','MMK','MNT','MOP','MRO','MTL','MUR','MVR','MWK','MXN','MYR','MZM','NAD','NGN','NIO','NOK','NPR','NZD','OMR','PAB','PEN','PGK','PHP','PKR','PLN','PTS','PYG','QAR','RON','RUB','RWF','SAR','SBD','SCR','SDD','SEK','SGD','SHP','SIT','SKK','SLL','SOS','SPL','SRD','STD','SVC','SYP','SZL','THB','TJS','TMM','TND','TOP','TRL','TRY','TTD','TVD','TWD','TZS','UAH','UGX','USD','UYU','UZS','VEF','VND','VUV','WST','XAF','XAG','XAU','XCD','XDR','XOF','XPD','XPF','XPT','YER','ZAR','ZMK','ZWD');
56
+ protected $actualPaymethod;
57
  /*}}}*/
58
 
59
  /**
233
  if (empty($email)) $email = $billing->getEmail();
234
 
235
  $userData = array(
236
+ 'userid' => $userId,
237
  'company' => $billing->getCompany(),
238
  'firstname' => $billing->getFirstname(),
239
  'lastname' => $billing->getLastname(),
541
  // BarPay
542
  if (!empty($res['all']['CRITERION_BARPAY_PAYCODE_URL'])){
543
  $prePaidData = preg_replace('/{LINK}/', $res['all']['CRITERION_BARPAY_PAYCODE_URL'], $this->_getHelper('heidelpay')->__('HP_BARPAY_DOWNLOAD'));
 
544
  }
545
 
546
  #$this->getSession()->setHpPayinfos($hpPayinfos);
634
  #$parameters['FRONTEND.ENABLED'] = "false";
635
  } else if ($this->actualPaymethod == 'PPAL'){
636
  $parameters['ACCOUNT.BRAND'] = 'PAYPAL';
637
+ $parameters['PAYMENT.CODE'] = ($mode != 'DB') ? "VA.".$mode : "VA.PA";
638
  #} else if ($this->actualPaymethod == 'XC'){
639
  # $parameters['ACCOUNT.BRAND'] = 'VISA';
640
  } else if ($this->actualPaymethod == 'BS'){
732
 
733
  public function getBillsafeBasket($order)/*{{{*/
734
  {
735
+ $items = $order->getAllVisibleItems();
736
+
737
  if ($items) {
738
  $i = 0;
739
  foreach($items as $item) {
740
  $i++;
741
  $prefix = 'CRITERION.POS_'.sprintf('%02d', $i);
742
+ $quantity = (int)$item->getQtyOrdered();
743
  $parameters[$prefix.'.POSITION'] = $i;
744
+ $parameters[$prefix.'.QUANTITY'] = $quantity;
745
  $parameters[$prefix.'.UNIT'] = 'Stk.'; // Liter oder so
746
+ $parameters[$prefix.'.AMOUNT_UNIT_GROSS'] = floor($item->getPriceInclTax()*100);
747
+ $parameters[$prefix.'.AMOUNT_GROSS'] = floor(($item->getPriceInclTax() * $quantity ) *100);
748
  $parameters[$prefix.'.TEXT'] = $item->getName();
749
  $parameters[$prefix.'.COL1'] = 'SKU:'.$item->getSku();
750
  //$parameters[$prefix.'.COL2'] = '';
761
  $parameters[$prefix.'.POSITION'] = $i;
762
  $parameters[$prefix.'.QUANTITY'] = '1';
763
  $parameters[$prefix.'.UNIT'] = 'Stk.'; // Liter oder so
764
+ $parameters[$prefix.'.AMOUNT_UNIT_GROSS'] = floor((($order->getShippingAmount() - $order->getShippingRefunded()) * (1 + $this->getShippingTaxPercent($order)/100)) * 100);
765
+ $parameters[$prefix.'.AMOUNT_GROSS'] = floor((($order->getShippingAmount() - $order->getShippingRefunded()) * (1 + $this->getShippingTaxPercent($order)/100)) * 100);
766
  $parameters[$prefix.'.TEXT'] = 'Shipping';
767
  //$parameters[$prefix.'.COL1'] = 'SKU:'.$item->getSku();
768
  //$parameters[$prefix.'.COL2'] = '';
769
  //$parameters[$prefix.'.COL3'] = '';
770
  //$parameters[$prefix.'.COL4'] = '';
771
  $parameters[$prefix.'.ARTICLE_NUMBER'] = '0';
772
+ $parameters[$prefix.'.PERCENT_VAT'] = $this->getShippingTaxPercent($order);
773
  $parameters[$prefix.'.ARTICLE_TYPE'] = 'shipment'; // "goods" (Versandartikel), "shipment" (Versandkosten) oder "voucher" (Gutschein/Rabatt)
774
  }
775
  if ($order->getDiscountAmount() > 0){
778
  $parameters[$prefix.'.POSITION'] = $i;
779
  $parameters[$prefix.'.QUANTITY'] = '1';
780
  $parameters[$prefix.'.UNIT'] = 'Stk.'; // Liter oder so
781
+ $parameters[$prefix.'.AMOUNT_UNIT_GROSS'] = floor($order->getDiscountAmount()*100);
782
+ $parameters[$prefix.'.AMOUNT_GROSS'] = floor($order->getDiscountAmount()*100);
783
  $parameters[$prefix.'.TEXT'] = 'Voucher';
784
  //$parameters[$prefix.'.COL1'] = 'SKU:'.$item->getSku();
785
  //$parameters[$prefix.'.COL2'] = '';
790
  $parameters[$prefix.'.ARTICLE_TYPE'] = 'voucher'; // "goods" (Versandartikel), "shipment" (Versandkosten) oder "voucher" (Gutschein/Rabatt)
791
  }
792
 
793
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
794
  return $parameters;
795
  }/*}}}*/
796
 
app/code/local/Mage/Heidelpay/controllers/PaymentController.php CHANGED
@@ -507,7 +507,7 @@ class Mage_Heidelpay_PaymentController extends Mage_Core_Controller_Front_Action
507
 
508
  if ($payCode == 'IV.PA' && $post['ACCOUNT_BRAND'] == 'BILLSAFE'){
509
  $repl = array(
510
- '{AMOUNT}' => $post['CRITERION_BILLSAFE_AMOUNT'],
511
  '{CURRENCY}' => $post['CRITERION_BILLSAFE_CURRENCY'],
512
  '{ACC_OWNER}' => $post['CRITERION_BILLSAFE_RECIPIENT'],
513
  '{ACC_BANKNAME}' => $post['CRITERION_BILLSAFE_BANKNAME'],
507
 
508
  if ($payCode == 'IV.PA' && $post['ACCOUNT_BRAND'] == 'BILLSAFE'){
509
  $repl = array(
510
+ '{AMOUNT}' => $presAmount,
511
  '{CURRENCY}' => $post['CRITERION_BILLSAFE_CURRENCY'],
512
  '{ACC_OWNER}' => $post['CRITERION_BILLSAFE_RECIPIENT'],
513
  '{ACC_BANKNAME}' => $post['CRITERION_BILLSAFE_BANKNAME'],
app/code/local/Mage/Heidelpay/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Mage_Heidelpay>
5
- <version>14.01.08</version>
6
  </Mage_Heidelpay>
7
  </modules>
8
  <!--{{{Global-->
2
  <config>
3
  <modules>
4
  <Mage_Heidelpay>
5
+ <version>14.05.22</version>
6
  </Mage_Heidelpay>
7
  </modules>
8
  <!--{{{Global-->
app/locale/de_DE/Mage_Heidelpay.csv DELETED
@@ -1,145 +0,0 @@
1
- "Creditcard (Heidelpay)","Kreditkarte (Heidelpay)"
2
- "Dear {NAME}, you used the following creditcard on your last visit. Do you want to re-use it?","Sehr geehrter Herr {NAME}, beim letzten Besuch haben Sie folgende Kreditkarte verwendet, m&ouml;chten Sie diese wieder verwenden?"
3
- "Yes, I want to re-use my creditcard.","Ja, Ich m&ouml;chte meine Kreditkarte erneut benutzen."
4
- "Re-use last creditcard.","Letzte Kreditkarte nutzen."
5
-
6
- "Debitcard (Heidelpay)","Debitkarte (Heidelpay)"
7
- "Dear {NAME}, you used the following debitcard on your last visit. Do you want to re-use it?","Sehr geehrter Herr {NAME}, beim letzten Besuch haben Sie folgende Debitkarte verwendet, m&ouml;chten Sie diese wieder verwenden?"
8
- "Yes, I want to re-use my debitcard.","Ja, Ich m&ouml;chte meine Debitkarte erneut benutzen."
9
- "Re-use last debitcard.","Letzte Debitkarte nutzen."
10
-
11
- "Creditcard X (Heidelpay)","Kreditkarte X (Heidelpay)"
12
- "Dear {NAME}, you used the following creditcard X on your last visit. Do you want to re-use it?","Sehr geehrter Herr {NAME}, beim letzten Besuch haben Sie folgende Kreditkarte X verwendet, m&ouml;chten Sie diese wieder verwenden?"
13
- "Yes, I want to re-use my creditcard X.","Ja, Ich m&ouml;chte meine Kreditkarte X erneut benutzen."
14
- "Re-use last creditcard X.","Letzte Kreditkarte X nutzen."
15
-
16
- "Your order has been received.","Ihre Bestellung ist eingegangen."
17
- "Please enter additional payment information.","Geben Sie weitere Zahlungsinformationen ein."
18
-
19
- "Direct Booking","Sofortbuchung"
20
- "Preauthorisation","Reservierung"
21
- "Direct Data Input","Direkteingabe der Kontodaten"
22
- "Account Data from last Giropay Booking","Kontodaten von letzter Zahlung mit Giropay"
23
- "Account Data from last Sofort Banking Booking","Kontodaten von letzter Zahlung mit Sofortueberweisung"
24
- "Account Data from last Sofort Banking or Giropay Booking","Kontodaten von letzter Zahlung mit Giropay oder Sofortueberweisung"
25
- "Direct with registration","Direkt mit Registrierung"
26
- "After without registration","Nachgelagert ohne Registrierung"
27
-
28
- "Credit Card","Kreditkarte"
29
- "Credit Card X","Kreditkarte X"
30
- "Debit Card","Debitkarte"
31
- "Debitcard","Debitkarte"
32
- "Direct Debit","Lastschrift"
33
- "SOFORT &�uml;berweisung","SOFORT &�uml;berweisung"
34
- "Giropay","Giropay"
35
- "Pay Pal","Pay Pal"
36
- "EPS","EPS"
37
- "iDeal","iDeal"
38
- "Prepayment","Vorkasse"
39
- "Invoice","Rechnung"
40
- "Mangirkart","MangirKart"
41
- "BillSafe","Kauf auf Rechnung"
42
- "Barpay","BarPay"
43
-
44
- "Heidelpay Credit Card","Heidelpay Kreditkarte"
45
- "Heidelpay Credit Card X","Heidelpay Kreditkarte X"
46
- "Heidelpay Debit Card","Heidelpay Debitkarte"
47
- "Heidelpay Debitcard","Heidelpay Debitkarte"
48
- "Heidelpay Direct Debit","Heidelpay Lastschrift"
49
- "Heidelpay SOFORT �berweisung","Heidelpay SOFORT �berweisung"
50
- "Heidelpay Giropay","Heidelpay Giropay"
51
- "Heidelpay Pay Pal","Heidelpay Pay Pal"
52
- "Heidelpay EPS","Heidelpay EPS"
53
- "Heidelpay iDeal","Heidelpay iDeal"
54
- "Heidelpay Prepayment","Heidelpay Vorkasse"
55
- "Heidelpay Invoice","Heidelpay Rechnung"
56
- "Heidelpay Mangirkart","Heidelpay MangirKart"
57
- "Heidelpay Billsafe","Heidelpay BillSAFE"
58
- "Heidelpay Barpay","Heidelpay BarPay"
59
-
60
- "DescCreditCard","Sicher zahlen mit Kreditkarte<br><br>"
61
- "DescCreditCardX","Sicher zahlen mit Kreditkarte X<br><br>"
62
- "DescDebitCard","Sicher zahlen mit Debitkarte<br><br>"
63
- "DescDirectDebit","Sicher zahlen mit Lastschrift<br><br>"
64
- "DescEPS","Sicher zahlen mit EPS"
65
- "DescGiropay","Sicher zahlen mit Giropay"
66
- "DescIdeal","Sicher zahlen mit iDeal"
67
- "DescPayPal","Sicher zahlen mit PayPal"
68
- "DescPrepaid","Sicher zahlen mit Vorkasse"
69
- "DescDirectEBanking","Sicher zahlen mit Sofort&uuml;berweisung"
70
- "DescInvoice","Zahlen Sie bequem mit Rechnung"
71
- "DescMangirkart","Zahlen Sie bequem mit MangirKart"
72
- "DescBillsafe","Kaufen Sie jetzt auf Rechnung und begutachten Sie Ihre Eink&auml;ufe in Ruhe bevor Sie bezahlen. <br/>"
73
- "DescBarpay","Zahlen Sie bequem mit BarPay"
74
-
75
-
76
- "No.","Nr."
77
- "Valid until:","G&uuml;ltig bis:"
78
- "close","schliessen"
79
- "Cardtype:","Kartentyp:"
80
- "Account No","Konto"
81
- "Bankcode","BLZ"
82
- "IBAN","IBAN"
83
- "BIC","BIC"
84
- "Owner","Inhaber"
85
- "Please enter account no.","Bitte Konto angeben."
86
- "Please enter bankcode.","Bitte BLZ angeben."
87
- "Please enter owner.","Bitte Inhaber angeben."
88
- "Enter additional information for the payment.","Geben Sie weitere Zahlungsinformationen ein."
89
- "HP_SUCCESS_PREPAID","Ihre Transaktion war erfolgreich!
90
-
91
- Ueberweisen Sie uns den Betrag von {CURRENCY} {AMOUNT} auf folgendes Konto
92
- Land : {ACC_COUNTRY}
93
- Kontoinhaber : {ACC_OWNER}
94
- Konto-Nr. : {ACC_NUMBER}
95
- Bankleitzahl: {ACC_BANKCODE}
96
- IBAN: {ACC_IBAN}
97
- BIC: {ACC_BIC}
98
- Geben sie bitte im Verwendungszweck UNBEDINGT die Identifikationsnummer
99
- {SHORTID}
100
- und NICHTS ANDERES an."
101
- "HP_SUCCESS_INVOICE","Ihre Transaktion war erfolgreich!
102
-
103
- Ueberweisen Sie uns den Betrag von {CURRENCY} {AMOUNT} auf folgendes Konto
104
- Land : {ACC_COUNTRY}
105
- Kontoinhaber : {ACC_OWNER}
106
- Konto-Nr. : {ACC_NUMBER}
107
- Bankleitzahl: {ACC_BANKCODE}
108
- IBAN: {ACC_IBAN}
109
- BIC: {ACC_BIC}
110
- Geben sie bitte im Verwendungszweck UNBEDINGT die Identifikationsnummer
111
- {SHORTID}
112
- und NICHTS ANDERES an."
113
-
114
- "HP_SUCCESS_BILLSAFE","Ihre Transaktion war erfolgreich!
115
-
116
- Ueberweisen Sie uns den Betrag von {CURRENCY} {AMOUNT} auf folgendes Konto
117
- Bankname: {ACC_BANKNAME}
118
- Kontoinhaber : {ACC_OWNER}
119
- Konto-Nr. : {ACC_NUMBER}
120
- Bankleitzahl: {ACC_BANKCODE}
121
- IBAN: {ACC_IBAN}
122
- BIC: {ACC_BIC}
123
- Geben sie bitte im Verwendungszweck UNBEDINGT die Identifikationsnummer
124
- {SHORTID}
125
- und NICHTS ANDERES an."
126
- "HP_LEGALNOTE_BILLSAFE","Bitte �berweisen Sie den ausstehenden Betrag {DAYS} Tage nach dem Sie �ber den Versand informiert wurden."
127
-
128
- "HP_BARPAY_INFO","Sicher, schnell und ohne Geb&uuml;hren: mit BarPay zahlen Sie Internet-Eink&auml;ufe mit Bargeld. Ohne Anmeldung. Ohne Kreditkarte. Ohne Kontodetails.<br><br>Nach Auswahl von BarPay &uuml;bermittelt Ihnen Ihr Online-H&auml;ndler einen individuellen Barcode per E-Mail oder zum Download auf Ihren Computer. Diesen k&ouml;nnen Sie ausdrucken und in &uuml;ber 18.000 BarPay-Akzeptanzstellen bezahlen. Der Zahlungseingang wird dem Online-H&auml;ndler in Echtzeit &uuml;bermittelt, und die bestellte Ware geht umgehend in den Versand. <br><br>"
129
- "HP_BARPAY_DOWNLOAD","<a href='{LINK}' target='_blank'>Klicken Sie hier um Ihren Barcode runterzuladen</a><br><br>Drucken Sie den Barcode aus oder speichern Sie diesen auf Ihrem mobilen Endger&auml;t. Gehen Sie nun zu einer Kasse der <b>18.000 Akzeptanzstellen in Deutschland</b> und bezahlen Sie ganz einfach in bar. <br><br>In dem Augenblick, wenn der Rechnungsbetrag beglichen wird, erh&auml;lt der Online-H&auml;ndler die Information &uuml;ber den Zahlungseingang. Die bestellte Ware oder Dienstleistung geht umgehend in den Versand."
130
-
131
- "You need to pay with giropay before using direct debit.","Sie m&uuml;ssen zuerst eine Giropay Buchung t&auml;tigen um Lastschrift nutzen zu k&ouml;nnen."
132
- "You need to pay with direct e-banking before using direct debit.","Sie m&uuml;ssen zuerst eine Sofort&uuml;berweisungs Buchung t&auml;tigen um Lastschrift nutzen zu k&ouml;nnen."
133
- "You need to pay with giropay or direct e-banking before using direct debit.","Sie m&uuml;ssen zuerst eine Giropay oder Sofort&uuml;berweisungs Buchung t&auml;tigen um Lastschrift nutzen zu k&ouml;nnen."
134
-
135
- "HP_PNO_ERROR","Das von Ihnen gew&auml;lte Zahlverfahren steht Ihnen derzeit nicht zur Verf&uuml;gung. Bitte nutzen Sie ein anderes Zahlverfahren."
136
-
137
- "Account & Bank no.","Kontonr. & BLZ"
138
- "IBAN & BIC","IBAN & BIC"
139
- "both with selector","Beides mit auswahl"
140
-
141
- "Account information","Kontoinformationen"
142
- "Account no. & Bank no.","Kontonummer & Bankleitzahl"
143
- "IBAN & BIC","IBAN & BIC"
144
-
145
- "Direct Debit data not correct or incomplete","Lastschriftdaten falsch oder unvollstaendig"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
package.xml CHANGED
@@ -1,12 +1,12 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Heidelpay</name>
4
- <version>14.01.08</version>
5
  <stability>stable</stability>
6
  <license>proprietary</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>Heidelpay Payment Plugin</summary>
10
  <description>&lt;b&gt;Heidelberger Payment GmbH&lt;/b&gt;&lt;br /&gt;&#xD;
11
  &lt;br /&gt;&#xD;
12
  Future-oriented ePayment-Solutions for successful E-Commerce&lt;br /&gt;&#xD;
@@ -38,12 +38,12 @@ Vangerowstra&#xDF;e 18&lt;br /&gt;&#xD;
38
  Telefon: +49 (0) 6221 / 65 170-20&lt;br /&gt;&#xD;
39
  E-Mail: sales@heidelpay.de&lt;br /&gt;&#xD;
40
  Internet: www.heidelpay.de&lt;br /&gt;</description>
41
- <notes>- added: SEPA support&#xD;
42
- - bugfix: image names</notes>
43
  <authors><author><name>Heidelberger Payment GmbH</name><user>Heidelpay</user><email>magento@heidelpay.de</email></author></authors>
44
- <date>2014-01-08</date>
45
- <time>14:29:51</time>
46
- <contents><target name="magelocal"><dir name="Mage"><dir name="Heidelpay"><dir name="Block"><file name="Cancel.php" hash="2f8e463c786a6ba61d125d44664dbee0"/><file name="Error.php" hash="a9d277e92cbc73e2695ce9641ba3d14e"/><dir name="Form"><file name="Barpay.php" hash="69f4f16bf0ffb1fe032c8dedf0b7fdc1"/><file name="Billsafe.php" hash="0556d8c262da2a64fc42ff8ee3a1c7e7"/><file name="Ccard.php" hash="a1c0b7cf7d406b11436481a5844d7751"/><file name="Debitcard.php" hash="e2198fc05197d5bef1247076e4ad080c"/><file name="Directdebit.php" hash="0977a4ad96b29fa69104b553706ded50"/><file name="Eps.php" hash="c68e7de42e4ef4512bad6208cbad2cac"/><file name="Giropay.php" hash="331b9cbdcb0c9c6e216d062b049b2d7c"/><file name="Ideal.php" hash="e322a1c3755ffec72c50057ce4f20511"/><file name="Invoice.php" hash="ea99e30c5d4e1164d10c7f78c5eeb9a6"/><file name="Mangirkart.php" hash="93d9d2c75f1884f077a01426d13db068"/><file name="Paypal.php" hash="ee5033af401aaf915ad74cf74b47121a"/><file name="Prepaid.php" hash="405ca5252cf5417b831b831f74cb7d28"/><file name="Sofortueberweisung.php" hash="8725dcb159ac01494da70a05caeeb33b"/><file name="Xcard.php" hash="54f4838dc2cc048feb6d2fccc6d84324"/></dir><file name="Form.php" hash="529a3c603e30be85a62dbd7d0d42b5c8"/><file name="Iframe.php" hash="af0b8f58d2c6c330fc2259ac7cbb34d2"/><dir name="Info"><file name="Payment.php" hash="149aa578e45842b7e871c749b5871a76"/></dir><file name="Info.php" hash="08de2792423ed3f30a048c003cfba0f6"/><file name="Lightbox.php" hash="ad707478642775fca33accad5c0d0ff8"/><file name="Paymentccard.php" hash="aaafda19384dd8dca17cc445e99d6ed9"/><file name="Redirect.php" hash="009292d502d3f058bbf819fd9167f62a"/><file name="Secure.php" hash="a90b0cec01e61b1b274577bcce6cf764"/><file name="Success.php" hash="18b9d658d2ba7e234bf8552240fc727f"/><file name="Suform.php" hash="74fa4deae5147dcf8041fdaf32beef2e"/></dir><dir name="Helper"><file name="Data.php" hash="5f729f633bf9fd01608cecb4fa2f3198"/></dir><dir name="Model"><dir name="Entity"><file name="Setup.php" hash="f7320a17102dbb268884faa0e4bbe667"/></dir><file name="Errors.php" hash="379fb8ee37db79c6e356526be338b929"/><dir name="Method"><file name="Hpbp.php" hash="995e60d4edc2e332274b779a3e72794a"/><file name="Hpbs.php" hash="f659a547ae3ca603044772c055310642"/><file name="Hpcc.php" hash="fa6bcec0966cb83e814b5eac7160edd5"/><file name="Hpdc.php" hash="f6b8f9c73dfd92057e7d9919b2560ced"/><file name="Hpdd.php" hash="837d5cb70cd0d4f027c623c5b48a579f"/><file name="Hpeps.php" hash="905619c5a1d8ff590303eba77188544f"/><file name="Hpgp.php" hash="6bc78756f0a87093020a3aa58fdf38c4"/><file name="Hpidl.php" hash="8f82aef98b92c43056b98495dc418455"/><file name="Hpiv.php" hash="4af1b7c21f2677ea6c2a8cba909b1a34"/><file name="Hpmk.php" hash="7dbd03c72e199c059db4469c2719c21b"/><file name="Hppp.php" hash="429bc236cee3e614860771d621a94085"/><file name="Hpppal.php" hash="12050f50ecd4281295ae9c2a1d141892"/><file name="Hpsu.php" hash="71db120d702c040b57e64393382e3bf0"/><file name="Hpxc.php" hash="bc8331f27f261f716c26e4c2b1dd13d1"/><file name="Payment.php" hash="f459b9831acc22ff3e59720e2743c967"/></dir><dir name="Order"><file name="Payment.php" hash="34c087a79ae3911e638630c8005331c0"/><dir name="Pdf"><file name="Invoice.php" hash="7b836c1529b7a132f8b366d5a85a8883"/></dir></dir><file name="Session.php" hash="1ee3ff853b5fc2873cfa461735a22115"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Bookingmode.php" hash="642de393453f69e6eaa682c65374b3b7"/><file name="Ddmodulemode.php" hash="5c6fbdddcf59e880efe87bcd53c39832"/><file name="Modulemode.php" hash="adf1d3ca98c240b0b830a0e946333c7f"/><file name="Orderstatus.php" hash="8061af68dbe75f983ef48fe267d6e75e"/><file name="Sepamode.php" hash="1c578abf34ea1458bcc3ebc93ea0dfd4"/><file name="Transactionmode.php" hash="c71ce5dce331f4ff67a5c7d82ff2a319"/></dir></dir></dir></dir><dir name="controllers"><file name="PaymentController.php" hash="f31215d0df8e4081381779a47bb8c01a"/></dir><dir name="etc"><file name="adminhtml.xml" hash="1e324f57ab7c3fe7d265be8a8c1b2a72"/><file name="config.xml" hash="92a55a17ff836babc80c7573db010d53"/><file name="system.xml" hash="56ffce20f37e887ae0449fb1cf1104bf"/></dir><dir name="sql"><dir name="heidelpay_setup"><file name="mysql4-install-1.0.0.php" hash="a555bfa9004359d452233da29628b577"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="heidelpay"><dir name="info"><file name="payment.phtml" hash="cf713fcaa600a8d550d3ed1e89d5387f"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="heidelpay.xml" hash="4f826fb5984fdcf960a82926566307b2"/></dir><dir name="template"><dir name="heidelpay"><file name="cancel.phtml" hash="e36b203fe39fea1f26a8e528cf62a62a"/><file name="error.phtml" hash="c07493da3275778795125a7d787642df"/><dir name="form"><file name="barpay.phtml" hash="671ee2711abac37171ee7da7afe1007f"/><file name="billsafe.phtml" hash="118dbb8987def369338bcd1ea5d97cf5"/><file name="ccard.phtml" hash="66187d3de3dc7ee17a06ddfd208c9edb"/><file name="debitcard.phtml" hash="6a4ef61fdcd29939f8afa047adc61087"/><file name="directdebit.phtml" hash="0f45be2c98981b3434eab43684cf1263"/><file name="eps.phtml" hash="329f6644230081218299c1862b5bba4e"/><file name="giropay.phtml" hash="3193453c080a4559fd300d3c754c4fe0"/><file name="ideal.phtml" hash="041170d4288b788fe3f600b6dcf16026"/><file name="invoice.phtml" hash="6e761e68364e82e985b4410e35e82e7d"/><file name="mangirkart.phtml" hash="e56ee10949fede6a5d10c77e02c2018e"/><file name="paypal.phtml" hash="750dd11961c58ed4a71834d848efae2d"/><file name="prepaid.phtml" hash="f571e71e3deb18c14706bed8b3be7e75"/><file name="sofortueberweisung.phtml" hash="79484a3b235ef3834dc9629820eaeada"/><file name="xcard.phtml" hash="f1c426f21a33f7603e415e98939a041d"/></dir><file name="iframe.phtml" hash="c3ebbd4142db6532eb27527da5496205"/><dir name="info"><file name="payment.phtml" hash="caedeeef8c205ac2611f20abdb3c0b90"/></dir><file name="lightbox.phtml" hash="cfa65509f442d2d94275ede678a69f30"/><file name="redirect.phtml" hash="b57add411ecceb4aab8de3d9f9c7596a"/><file name="secure.phtml" hash="e88cb240cc7dcda0f38eaa34e079ce3a"/><file name="success.phtml" hash="c934ed6185335eaa30cfc85a796a9dc0"/><file name="suform.phtml" hash="51f2b4f966cea8787a3a2c084462da7f"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Mage_Heidelpay.xml" hash="7f4bf53ffc53df1e7358c6953474d113"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Mage_Heidelpay.csv" hash="383af53f4cd30905e2b3769eb32bb0cc"/></dir><dir name="de_DE"><file name="Mage_Heidelpay.csv" hash="0204e77f4cff8fcc482bf278fda93559"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="heidelpay"><file name="BarPay.jpg" hash="1b79e14a7ab0d026d551fe1d4227feeb"/><file name="back.png" hash="f0c9f626542f28c55aa40dfc540e6935"/><file name="back_de.png" hash="83bc85d315edfa9b00bd157431b5ff32"/><file name="forward.jpg" hash="123f9980a2a179d594aa954683e284f2"/><file name="forward.png" hash="cb56c1f1c5035391d2d3be7fff2362f5"/><file name="forward_de.jpg" hash="6d84462f1cd2bc18a48f81e5efc42bba"/><file name="forward_de.png" hash="6a8a6e6ff98909b3e05c686f4817b836"/><file name="heidelpay.png" hash="393274a5c3cef1d30da770710f5f3c90"/><file name="heidelpay_style.css" hash="a62c70d6842d9c3ff9712ab6e9213121"/><file name="space.gif" hash="ea05ec2274832731bf2413a6192a245d"/></dir></dir></dir></dir></dir></target></contents>
47
  <compatible/>
48
  <dependencies><required><php><min>5.0.0</min><max>5.5.7</max></php></required></dependencies>
49
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Heidelpay</name>
4
+ <version>14.05.22</version>
5
  <stability>stable</stability>
6
  <license>proprietary</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>This is the Magento Heidelpay Payment Extension. Direct support from Heidelpay.</summary>
10
  <description>&lt;b&gt;Heidelberger Payment GmbH&lt;/b&gt;&lt;br /&gt;&#xD;
11
  &lt;br /&gt;&#xD;
12
  Future-oriented ePayment-Solutions for successful E-Commerce&lt;br /&gt;&#xD;
38
  Telefon: +49 (0) 6221 / 65 170-20&lt;br /&gt;&#xD;
39
  E-Mail: sales@heidelpay.de&lt;br /&gt;&#xD;
40
  Internet: www.heidelpay.de&lt;br /&gt;</description>
41
+ <notes>- change BillSafe behavior from net price to gross price. This will privent rounding errors.&#xD;
42
+ - fix notice userid emty in registration mode.</notes>
43
  <authors><author><name>Heidelberger Payment GmbH</name><user>Heidelpay</user><email>magento@heidelpay.de</email></author></authors>
44
+ <date>2014-05-23</date>
45
+ <time>09:38:09</time>
46
+ <contents><target name="magelocal"><dir name="Mage"><dir name="Heidelpay"><dir name="Block"><file name="Cancel.php" hash="2f8e463c786a6ba61d125d44664dbee0"/><file name="Error.php" hash="a9d277e92cbc73e2695ce9641ba3d14e"/><dir name="Form"><file name="Barpay.php" hash="69f4f16bf0ffb1fe032c8dedf0b7fdc1"/><file name="Billsafe.php" hash="0556d8c262da2a64fc42ff8ee3a1c7e7"/><file name="Ccard.php" hash="a1c0b7cf7d406b11436481a5844d7751"/><file name="Debitcard.php" hash="e2198fc05197d5bef1247076e4ad080c"/><file name="Directdebit.php" hash="0977a4ad96b29fa69104b553706ded50"/><file name="Eps.php" hash="c68e7de42e4ef4512bad6208cbad2cac"/><file name="Giropay.php" hash="331b9cbdcb0c9c6e216d062b049b2d7c"/><file name="Ideal.php" hash="e322a1c3755ffec72c50057ce4f20511"/><file name="Invoice.php" hash="ea99e30c5d4e1164d10c7f78c5eeb9a6"/><file name="Mangirkart.php" hash="93d9d2c75f1884f077a01426d13db068"/><file name="Paypal.php" hash="ee5033af401aaf915ad74cf74b47121a"/><file name="Prepaid.php" hash="405ca5252cf5417b831b831f74cb7d28"/><file name="Sofortueberweisung.php" hash="8725dcb159ac01494da70a05caeeb33b"/><file name="Xcard.php" hash="54f4838dc2cc048feb6d2fccc6d84324"/></dir><file name="Form.php" hash="529a3c603e30be85a62dbd7d0d42b5c8"/><file name="Iframe.php" hash="af0b8f58d2c6c330fc2259ac7cbb34d2"/><dir name="Info"><file name="Payment.php" hash="149aa578e45842b7e871c749b5871a76"/></dir><file name="Info.php" hash="08de2792423ed3f30a048c003cfba0f6"/><file name="Lightbox.php" hash="ad707478642775fca33accad5c0d0ff8"/><file name="Paymentccard.php" hash="aaafda19384dd8dca17cc445e99d6ed9"/><file name="Redirect.php" hash="009292d502d3f058bbf819fd9167f62a"/><file name="Secure.php" hash="a90b0cec01e61b1b274577bcce6cf764"/><file name="Success.php" hash="18b9d658d2ba7e234bf8552240fc727f"/><file name="Suform.php" hash="74fa4deae5147dcf8041fdaf32beef2e"/></dir><dir name="Helper"><file name="Data.php" hash="5f729f633bf9fd01608cecb4fa2f3198"/></dir><dir name="Model"><dir name="Entity"><file name="Setup.php" hash="f7320a17102dbb268884faa0e4bbe667"/></dir><file name="Errors.php" hash="379fb8ee37db79c6e356526be338b929"/><dir name="Method"><file name="Hpbp.php" hash="995e60d4edc2e332274b779a3e72794a"/><file name="Hpbs.php" hash="f659a547ae3ca603044772c055310642"/><file name="Hpcc.php" hash="fa6bcec0966cb83e814b5eac7160edd5"/><file name="Hpdc.php" hash="f6b8f9c73dfd92057e7d9919b2560ced"/><file name="Hpdd.php" hash="837d5cb70cd0d4f027c623c5b48a579f"/><file name="Hpeps.php" hash="905619c5a1d8ff590303eba77188544f"/><file name="Hpgp.php" hash="6bc78756f0a87093020a3aa58fdf38c4"/><file name="Hpidl.php" hash="8f82aef98b92c43056b98495dc418455"/><file name="Hpiv.php" hash="4af1b7c21f2677ea6c2a8cba909b1a34"/><file name="Hpmk.php" hash="7dbd03c72e199c059db4469c2719c21b"/><file name="Hppp.php" hash="429bc236cee3e614860771d621a94085"/><file name="Hpppal.php" hash="12050f50ecd4281295ae9c2a1d141892"/><file name="Hpsu.php" hash="71db120d702c040b57e64393382e3bf0"/><file name="Hpxc.php" hash="bc8331f27f261f716c26e4c2b1dd13d1"/><file name="Payment.php" hash="08582eeed01b3e64921081ad5fda25a5"/></dir><dir name="Order"><file name="Payment.php" hash="34c087a79ae3911e638630c8005331c0"/><dir name="Pdf"><file name="Invoice.php" hash="7b836c1529b7a132f8b366d5a85a8883"/></dir></dir><file name="Session.php" hash="1ee3ff853b5fc2873cfa461735a22115"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Bookingmode.php" hash="642de393453f69e6eaa682c65374b3b7"/><file name="Ddmodulemode.php" hash="5c6fbdddcf59e880efe87bcd53c39832"/><file name="Modulemode.php" hash="adf1d3ca98c240b0b830a0e946333c7f"/><file name="Orderstatus.php" hash="8061af68dbe75f983ef48fe267d6e75e"/><file name="Sepamode.php" hash="1c578abf34ea1458bcc3ebc93ea0dfd4"/><file name="Transactionmode.php" hash="c71ce5dce331f4ff67a5c7d82ff2a319"/></dir></dir></dir></dir><dir name="controllers"><file name="PaymentController.php" hash="ce6f693267f1f88d52762bb406040961"/></dir><dir name="etc"><file name="adminhtml.xml" hash="1e324f57ab7c3fe7d265be8a8c1b2a72"/><file name="config.xml" hash="a89856a05a375fb30f35140faaf59e0a"/><file name="system.xml" hash="56ffce20f37e887ae0449fb1cf1104bf"/></dir><dir name="sql"><dir name="heidelpay_setup"><file name="mysql4-install-1.0.0.php" hash="a555bfa9004359d452233da29628b577"/></dir></dir></dir></dir><dir name="de_DE"><file name="Mage_Heidelpay.csv" hash=""/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="heidelpay"><dir name="info"><file name="payment.phtml" hash="cf713fcaa600a8d550d3ed1e89d5387f"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="heidelpay.xml" hash="4f826fb5984fdcf960a82926566307b2"/></dir><dir name="template"><dir name="heidelpay"><file name="cancel.phtml" hash="e36b203fe39fea1f26a8e528cf62a62a"/><file name="error.phtml" hash="c07493da3275778795125a7d787642df"/><dir name="form"><file name="barpay.phtml" hash="671ee2711abac37171ee7da7afe1007f"/><file name="billsafe.phtml" hash="118dbb8987def369338bcd1ea5d97cf5"/><file name="ccard.phtml" hash="66187d3de3dc7ee17a06ddfd208c9edb"/><file name="debitcard.phtml" hash="6a4ef61fdcd29939f8afa047adc61087"/><file name="directdebit.phtml" hash="0f45be2c98981b3434eab43684cf1263"/><file name="eps.phtml" hash="329f6644230081218299c1862b5bba4e"/><file name="giropay.phtml" hash="3193453c080a4559fd300d3c754c4fe0"/><file name="ideal.phtml" hash="041170d4288b788fe3f600b6dcf16026"/><file name="invoice.phtml" hash="6e761e68364e82e985b4410e35e82e7d"/><file name="mangirkart.phtml" hash="e56ee10949fede6a5d10c77e02c2018e"/><file name="paypal.phtml" hash="750dd11961c58ed4a71834d848efae2d"/><file name="prepaid.phtml" hash="f571e71e3deb18c14706bed8b3be7e75"/><file name="sofortueberweisung.phtml" hash="79484a3b235ef3834dc9629820eaeada"/><file name="xcard.phtml" hash="f1c426f21a33f7603e415e98939a041d"/></dir><file name="iframe.phtml" hash="c3ebbd4142db6532eb27527da5496205"/><dir name="info"><file name="payment.phtml" hash="caedeeef8c205ac2611f20abdb3c0b90"/></dir><file name="lightbox.phtml" hash="cfa65509f442d2d94275ede678a69f30"/><file name="redirect.phtml" hash="b57add411ecceb4aab8de3d9f9c7596a"/><file name="secure.phtml" hash="e88cb240cc7dcda0f38eaa34e079ce3a"/><file name="success.phtml" hash="c934ed6185335eaa30cfc85a796a9dc0"/><file name="suform.phtml" hash="51f2b4f966cea8787a3a2c084462da7f"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Mage_Heidelpay.xml" hash="7f4bf53ffc53df1e7358c6953474d113"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Mage_Heidelpay.csv" hash="383af53f4cd30905e2b3769eb32bb0cc"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="heidelpay"><file name="BarPay.jpg" hash="1b79e14a7ab0d026d551fe1d4227feeb"/><file name="back.png" hash="f0c9f626542f28c55aa40dfc540e6935"/><file name="back_de.png" hash="83bc85d315edfa9b00bd157431b5ff32"/><file name="forward.jpg" hash="123f9980a2a179d594aa954683e284f2"/><file name="forward.png" hash="cb56c1f1c5035391d2d3be7fff2362f5"/><file name="forward_de.jpg" hash="6d84462f1cd2bc18a48f81e5efc42bba"/><file name="forward_de.png" hash="6a8a6e6ff98909b3e05c686f4817b836"/><file name="heidelpay.png" hash="393274a5c3cef1d30da770710f5f3c90"/><file name="heidelpay_style.css" hash="a62c70d6842d9c3ff9712ab6e9213121"/><file name="space.gif" hash="ea05ec2274832731bf2413a6192a245d"/></dir></dir></dir></dir></dir></target></contents>
47
  <compatible/>
48
  <dependencies><required><php><min>5.0.0</min><max>5.5.7</max></php></required></dependencies>
49
  </package>