Version Notes
Official Expercash extension
Download this release
Release Info
Developer | Sebastian Ertner |
Extension | Expercash_payment |
Version | 15.10.26 |
Comparing to | |
See all releases |
Code changes from version 15.08.13 to 15.10.26
- app/code/community/Expercash/Expercash/Helper/Masterpass.php +18 -4
- app/code/community/Expercash/Expercash/Test/Helper/MasterpassTest.php +175 -3
- app/code/community/Expercash/Expercash/controllers/Checkout/OnepageController.php +2 -2
- app/code/community/Expercash/Expercash/etc/config.xml +1 -1
- doc/Expercash_Expercash/Benutzerdokumentation.pdf +20 -20
- doc/Expercash_Expercash/ChangeLog.pdf +283 -94
- package.xml +1 -1
app/code/community/Expercash/Expercash/Helper/Masterpass.php
CHANGED
@@ -142,7 +142,7 @@ class Expercash_Expercash_Helper_Masterpass extends Expercash_Expercash_Helper_P
|
|
142 |
*/
|
143 |
protected function getCustomerSession()
|
144 |
{
|
145 |
-
return Mage::
|
146 |
}
|
147 |
|
148 |
/**
|
@@ -227,10 +227,17 @@ class Expercash_Expercash_Helper_Masterpass extends Expercash_Expercash_Helper_P
|
|
227 |
public function setBillingDataToQuoteAndSession($params)
|
228 |
{
|
229 |
$quote = Mage::getSingleton('checkout/session')->getQuote();
|
|
|
230 |
$billingAddress = $quote->getBillingAddress();
|
231 |
$params = new Varien_Object($params);
|
232 |
|
233 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
$billingAddress->setCity($params->getData('customer_city'));
|
235 |
$billingAddress->setCountryId($params->getData('customer_country'));
|
236 |
$billingAddress->setRegion($params->getData('customer_country_subdivision'));
|
@@ -275,6 +282,7 @@ class Expercash_Expercash_Helper_Masterpass extends Expercash_Expercash_Helper_P
|
|
275 |
$billingAddressArray = $billingAddress->toArray(
|
276 |
array(
|
277 |
'street',
|
|
|
278 |
'city',
|
279 |
'country_id',
|
280 |
'region',
|
@@ -291,7 +299,7 @@ class Expercash_Expercash_Helper_Masterpass extends Expercash_Expercash_Helper_P
|
|
291 |
unset($billingAddressArray['totals']);
|
292 |
unset($billingAddressArray['rates']);
|
293 |
|
294 |
-
return $billingAddressArray
|
295 |
}
|
296 |
|
297 |
/**
|
@@ -320,8 +328,14 @@ class Expercash_Expercash_Helper_Masterpass extends Expercash_Expercash_Helper_P
|
|
320 |
$shippingAddress->setLastname($deliveryLastname);
|
321 |
$shippingAddress->setTelephone($params->getData('delivery_telephone'));
|
322 |
|
|
|
|
|
|
|
|
|
|
|
323 |
// address data
|
324 |
-
$shippingAddress->setStreetFull($
|
|
|
325 |
$shippingAddress->setCity($params->getData('delivery_city'));
|
326 |
$shippingAddress->setCountryId($params->getData('delivery_country'));
|
327 |
$shippingAddress->setRegion($params->getData('delivery_country_subdivision'));
|
142 |
*/
|
143 |
protected function getCustomerSession()
|
144 |
{
|
145 |
+
return Mage::getSingleton('customer/session');
|
146 |
}
|
147 |
|
148 |
/**
|
227 |
public function setBillingDataToQuoteAndSession($params)
|
228 |
{
|
229 |
$quote = Mage::getSingleton('checkout/session')->getQuote();
|
230 |
+
/** @var Mage_Sales_Model_Quote_AddressB $billingAddress */
|
231 |
$billingAddress = $quote->getBillingAddress();
|
232 |
$params = new Varien_Object($params);
|
233 |
|
234 |
+
$street = array(
|
235 |
+
$params->getCustomerAddress1(),
|
236 |
+
$params->getCustomerAddress3()
|
237 |
+
);
|
238 |
+
|
239 |
+
$billingAddress->setStreetFull($street);
|
240 |
+
$billingAddress->setCompany($params->getCustomerAddress2());
|
241 |
$billingAddress->setCity($params->getData('customer_city'));
|
242 |
$billingAddress->setCountryId($params->getData('customer_country'));
|
243 |
$billingAddress->setRegion($params->getData('customer_country_subdivision'));
|
282 |
$billingAddressArray = $billingAddress->toArray(
|
283 |
array(
|
284 |
'street',
|
285 |
+
'company',
|
286 |
'city',
|
287 |
'country_id',
|
288 |
'region',
|
299 |
unset($billingAddressArray['totals']);
|
300 |
unset($billingAddressArray['rates']);
|
301 |
|
302 |
+
return $billingAddressArray;
|
303 |
}
|
304 |
|
305 |
/**
|
328 |
$shippingAddress->setLastname($deliveryLastname);
|
329 |
$shippingAddress->setTelephone($params->getData('delivery_telephone'));
|
330 |
|
331 |
+
$shippingStreet = array(
|
332 |
+
$params->getDeliveryAddress1(),
|
333 |
+
$params->getDeliveryAddress3()
|
334 |
+
);
|
335 |
+
|
336 |
// address data
|
337 |
+
$shippingAddress->setStreetFull($shippingStreet);
|
338 |
+
$shippingAddress->setCompany($params->getDeliveryAddress2());
|
339 |
$shippingAddress->setCity($params->getData('delivery_city'));
|
340 |
$shippingAddress->setCountryId($params->getData('delivery_country'));
|
341 |
$shippingAddress->setRegion($params->getData('delivery_country_subdivision'));
|
app/code/community/Expercash/Expercash/Test/Helper/MasterpassTest.php
CHANGED
@@ -33,11 +33,183 @@ class Expercash_Expercash_Test_Helper_MasterpassTest extends EcomDev_PHPUnit_Tes
|
|
33 |
* @expectedException Mage_Core_Exception
|
34 |
* @expectedExceptionMessage Validate params: Signature and build hash do not match!
|
35 |
*/
|
36 |
-
public function
|
37 |
{
|
38 |
$helper = Mage::helper('expercash/masterpass');
|
39 |
$helper->validateParams(array(
|
40 |
-
|
41 |
-
|
|
|
42 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
}
|
33 |
* @expectedException Mage_Core_Exception
|
34 |
* @expectedExceptionMessage Validate params: Signature and build hash do not match!
|
35 |
*/
|
36 |
+
public function testValidateParamsTypeCheck()
|
37 |
{
|
38 |
$helper = Mage::helper('expercash/masterpass');
|
39 |
$helper->validateParams(array(
|
40 |
+
'notificationSignature' => true,
|
41 |
+
)
|
42 |
+
);
|
43 |
}
|
44 |
+
|
45 |
+
/**
|
46 |
+
* @test
|
47 |
+
*/
|
48 |
+
public function testClearMasterpassSessionData()
|
49 |
+
{
|
50 |
+
$arrayObject = new Varien_Object();
|
51 |
+
/** @var Expercash_Expercash_Helper_Masterpass $helper */
|
52 |
+
$helper = $this->getHelperMock('expercash/masterpass', array('getCustomerSession'));
|
53 |
+
$helper->expects($this->any())
|
54 |
+
->method('getCustomerSession')
|
55 |
+
->will($this->returnValue($arrayObject));
|
56 |
+
$arrayObject->setData(Expercash_Expercash_Helper_Masterpass::MASTERPASS_SESSION_KEY, 'foo');
|
57 |
+
$helper->clearMasterpassSessionData();
|
58 |
+
$this->assertNull($arrayObject->getData(Expercash_Expercash_Helper_Masterpass::MASTERPASS_SESSION_KEY));
|
59 |
+
}
|
60 |
+
|
61 |
+
/**
|
62 |
+
* @test
|
63 |
+
*/
|
64 |
+
public function testGetArrayHash()
|
65 |
+
{
|
66 |
+
$helper = Mage::helper('expercash/masterpass');
|
67 |
+
|
68 |
+
$array = array('1' => 'foo', '2' => 'bar');
|
69 |
+
|
70 |
+
$this->assertEquals(md5(json_encode($array)), $helper->getArrayHash($array));
|
71 |
+
|
72 |
+
}
|
73 |
+
|
74 |
+
/**
|
75 |
+
* @test
|
76 |
+
*/
|
77 |
+
public function testGetBillingArray()
|
78 |
+
{
|
79 |
+
$address = new Varien_Object(array(
|
80 |
+
'street' => 'Nonnenstraße 11d',
|
81 |
+
'totals' => 12345
|
82 |
+
)
|
83 |
+
);
|
84 |
+
|
85 |
+
$billingArray = Mage::helper('expercash/masterpass')->getBillingArray($address);
|
86 |
+
|
87 |
+
$this->assertEquals($address->getStreet(), $billingArray['street']);
|
88 |
+
$this->assertArrayNotHasKey('totals', $billingArray);
|
89 |
+
$this->assertNull($billingArray['email']);
|
90 |
+
}
|
91 |
+
|
92 |
+
/**
|
93 |
+
* @test
|
94 |
+
*/
|
95 |
+
public function testGetOpcTemplate()
|
96 |
+
{
|
97 |
+
$block = new Varien_Object(array('template' => ''));
|
98 |
+
|
99 |
+
$layoutMock = $this->getModelMock('core/layout', array('getBlock'));
|
100 |
+
$layoutMock->expects($this->any())
|
101 |
+
->method('getBlock')
|
102 |
+
->with('checkout.onepage')
|
103 |
+
->will($this->returnValue($block));
|
104 |
+
$this->replaceByMock('singleton', 'core/layout', $layoutMock);
|
105 |
+
|
106 |
+
/** @var Expercash_Expercash_Helper_Masterpass $helper */
|
107 |
+
$helper = $this->getHelperMock('expercash/masterpass', array('isFullCheckout', 'isCE15'));
|
108 |
+
|
109 |
+
$this->assertEquals('', $helper->getOpcTemplate());
|
110 |
+
|
111 |
+
$helper->expects($this->any())
|
112 |
+
->method('isFullCheckout')
|
113 |
+
->will($this->returnValue(true));
|
114 |
+
|
115 |
+
$this->assertEquals('expercash/checkout/onepage.phtml', $helper->getOpcTemplate());
|
116 |
+
|
117 |
+
$helper->expects($this->once())
|
118 |
+
->method('isCE15')
|
119 |
+
->will($this->returnValue(true));
|
120 |
+
|
121 |
+
$this->assertEquals('expercash/checkout/ce15/onepage.phtml', $helper->getOpcTemplate());
|
122 |
+
}
|
123 |
+
|
124 |
+
public function testIsSessionValid()
|
125 |
+
{
|
126 |
+
/** @var Expercash_Expercash_Helper_Masterpass $helper */
|
127 |
+
$helper = Mage::helper('expercash/masterpass');
|
128 |
+
$quote = Mage::getModel('sales/quote');
|
129 |
+
$address = $this->getModelMock('sales/quote_address',
|
130 |
+
array('getShippingRatesCollection', 'getItemsCollection', 'getTotals')
|
131 |
+
);
|
132 |
+
$address->expects($this->any())
|
133 |
+
->method('getShippingRatesCollection')
|
134 |
+
->will($this->returnValue(new Varien_Object()));
|
135 |
+
$address->expects($this->any())
|
136 |
+
->method('getItemsCollection')
|
137 |
+
->will($this->returnValue(new Varien_Object()));
|
138 |
+
$address->expects($this->any())
|
139 |
+
->method('getTotals')
|
140 |
+
->will($this->returnValue(array()));
|
141 |
+
|
142 |
+
|
143 |
+
$address->setStreetFull(array('Street', 'street 2'));
|
144 |
+
$quote->setBillingAddress($address);
|
145 |
+
|
146 |
+
$sessionData = array(
|
147 |
+
'timestamp' => time(),
|
148 |
+
'billingAddress' => $helper->getArrayHash($helper->getBillingArray($address))
|
149 |
+
);
|
150 |
+
|
151 |
+
$this->assertTrue($helper->isSessionValid($sessionData, $quote));
|
152 |
+
|
153 |
+
}
|
154 |
+
|
155 |
+
|
156 |
+
public function testSetBillingDataToQuoteAndSession()
|
157 |
+
{
|
158 |
+
$params = array(
|
159 |
+
"customer_address1" => "Augustaanlage 59",
|
160 |
+
"customer_address2" => "c/o+Adresszusatzfeld 1",
|
161 |
+
"customer_address3" => "Adresszusatzfeld 2",
|
162 |
+
"customer_city" => "Mannheim",
|
163 |
+
"customer_country" => "DE",
|
164 |
+
"customer_country_subdivision" => "Baden-Württemberg",
|
165 |
+
"customer_email" => "masterpass_user@expercash.com",
|
166 |
+
"customer_name" => "Mustermann",
|
167 |
+
"customer_prename" => "Max",
|
168 |
+
"customer_telephone" => "49-6217249380000",
|
169 |
+
"customer_zip" => "68239",
|
170 |
+
"delivery_address1" => "Neue Strasse 3",
|
171 |
+
"delivery_address2" => "c/o Firma Adresszusatz 1",
|
172 |
+
"delivery_address3" => "Adresszusatz 2",
|
173 |
+
"delivery_city" => "Mannheim",
|
174 |
+
"delivery_country" => "DE",
|
175 |
+
"delivery_country_subdivision" => "Baden-Württemberg",
|
176 |
+
"delivery_fullname" => "Max Müstermänner",
|
177 |
+
"delivery_telephone" => "DE+49-6217249380000",
|
178 |
+
"delivery_zip" => "68165"
|
179 |
+
);
|
180 |
+
|
181 |
+
$quote = Mage::getModel('sales/quote');
|
182 |
+
$address = $this->getModelMock('sales/quote_address',
|
183 |
+
array('getShippingRatesCollection', 'getItemsCollection', 'getTotals')
|
184 |
+
);
|
185 |
+
$address->expects($this->any())
|
186 |
+
->method('getShippingRatesCollection')
|
187 |
+
->will($this->returnValue(new Varien_Object()));
|
188 |
+
$address->expects($this->any())
|
189 |
+
->method('getItemsCollection')
|
190 |
+
->will($this->returnValue(new Varien_Object()));
|
191 |
+
$address->expects($this->any())
|
192 |
+
->method('getTotals')
|
193 |
+
->will($this->returnValue(array()));
|
194 |
+
|
195 |
+
$quote->setBillingAddress($address);
|
196 |
+
|
197 |
+
$sessionMock = $this->getModelMock('checkout/session', array('getQuote'));
|
198 |
+
$sessionMock->expects($this->any())
|
199 |
+
->method('getQuote')
|
200 |
+
->will($this->returnValue($quote));
|
201 |
+
|
202 |
+
$this->replaceByMock('singleton', 'checkout/session', $sessionMock);
|
203 |
+
|
204 |
+
/** @var Expercash_Expercash_Helper_Masterpass $helper */
|
205 |
+
$helper = Mage::helper('expercash/masterpass');
|
206 |
+
|
207 |
+
$helper->setBillingDataToQuoteAndSession($params);
|
208 |
+
|
209 |
+
$this->assertEquals($params['customer_address2'], $quote->getBillingAddress()->getCompany());
|
210 |
+
$this->assertEquals($params['customer_zip'], $quote->getBillingAddress()->getPostcode());
|
211 |
+
$this->assertEquals($params['customer_name'], $quote->getBillingAddress()->getLastname());
|
212 |
+
|
213 |
+
}
|
214 |
+
|
215 |
}
|
app/code/community/Expercash/Expercash/controllers/Checkout/OnepageController.php
CHANGED
@@ -84,7 +84,7 @@ class Expercash_Expercash_Checkout_OnepageController
|
|
84 |
$addresses['billing']['use_for_shipping_no'] = true;
|
85 |
$addresses['shipping'] = $shippingAddress->toArray($addressKeys);
|
86 |
|
87 |
-
$this->getResponse()->setHeader('Content-type', 'application/
|
88 |
$this->getResponse()->setBody(Mage::helper('core/data')->jsonEncode($addresses));
|
89 |
}
|
90 |
|
@@ -107,7 +107,7 @@ class Expercash_Expercash_Checkout_OnepageController
|
|
107 |
}
|
108 |
|
109 |
$this->getResponse()
|
110 |
-
->setHeader('Content-type', 'application/json')
|
111 |
->setBody(Mage::helper('core')->jsonEncode($result));
|
112 |
}
|
113 |
}
|
84 |
$addresses['billing']['use_for_shipping_no'] = true;
|
85 |
$addresses['shipping'] = $shippingAddress->toArray($addressKeys);
|
86 |
|
87 |
+
$this->getResponse()->setHeader('Content-type', 'application/json', true);
|
88 |
$this->getResponse()->setBody(Mage::helper('core/data')->jsonEncode($addresses));
|
89 |
}
|
90 |
|
107 |
}
|
108 |
|
109 |
$this->getResponse()
|
110 |
+
->setHeader('Content-type', 'application/json', true)
|
111 |
->setBody(Mage::helper('core')->jsonEncode($result));
|
112 |
}
|
113 |
}
|
app/code/community/Expercash/Expercash/etc/config.xml
CHANGED
@@ -24,7 +24,7 @@
|
|
24 |
<config>
|
25 |
<modules>
|
26 |
<Expercash_Expercash>
|
27 |
-
<version>15.
|
28 |
</Expercash_Expercash>
|
29 |
</modules>
|
30 |
<global>
|
24 |
<config>
|
25 |
<modules>
|
26 |
<Expercash_Expercash>
|
27 |
+
<version>15.10.26</version>
|
28 |
</Expercash_Expercash>
|
29 |
</modules>
|
30 |
<global>
|
doc/Expercash_Expercash/Benutzerdokumentation.pdf
CHANGED
@@ -234,7 +234,7 @@ endobj
|
|
234 |
<< /Outlines 71 0 R /PageLabels 110 0 R /PageMode /UseNone /Pages 93 0 R /Type /Catalog >>
|
235 |
endobj
|
236 |
70 0 obj
|
237 |
-
<< /Author () /CreationDate (D:
|
238 |
/Title () >>
|
239 |
endobj
|
240 |
71 0 obj
|
@@ -579,7 +579,7 @@ q
|
|
579 |
1 0 0 1 91.03937 3 cm
|
580 |
q
|
581 |
0 0 0 rg
|
582 |
-
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (15.
|
583 |
Q
|
584 |
Q
|
585 |
q
|
@@ -641,7 +641,7 @@ q
|
|
641 |
1 0 0 1 91.03937 3 cm
|
642 |
q
|
643 |
0 0 0 rg
|
644 |
-
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (
|
645 |
Q
|
646 |
Q
|
647 |
q
|
@@ -665,7 +665,7 @@ q
|
|
665 |
1 0 0 1 6 3 cm
|
666 |
q
|
667 |
0 0 0 rg
|
668 |
-
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand:
|
669 |
Q
|
670 |
Q
|
671 |
q
|
@@ -1010,7 +1010,7 @@ q
|
|
1010 |
1 0 0 1 6 3 cm
|
1011 |
q
|
1012 |
0 0 0 rg
|
1013 |
-
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand:
|
1014 |
Q
|
1015 |
Q
|
1016 |
q
|
@@ -1402,7 +1402,7 @@ q
|
|
1402 |
1 0 0 1 6 3 cm
|
1403 |
q
|
1404 |
0 0 0 rg
|
1405 |
-
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand:
|
1406 |
Q
|
1407 |
Q
|
1408 |
q
|
@@ -1577,7 +1577,7 @@ q
|
|
1577 |
1 0 0 1 6 3 cm
|
1578 |
q
|
1579 |
0 0 0 rg
|
1580 |
-
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand:
|
1581 |
Q
|
1582 |
Q
|
1583 |
q
|
@@ -1966,7 +1966,7 @@ q
|
|
1966 |
1 0 0 1 6 3 cm
|
1967 |
q
|
1968 |
0 0 0 rg
|
1969 |
-
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand:
|
1970 |
Q
|
1971 |
Q
|
1972 |
q
|
@@ -2324,7 +2324,7 @@ q
|
|
2324 |
1 0 0 1 6 3 cm
|
2325 |
q
|
2326 |
0 0 0 rg
|
2327 |
-
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand:
|
2328 |
Q
|
2329 |
Q
|
2330 |
q
|
@@ -2677,7 +2677,7 @@ q
|
|
2677 |
1 0 0 1 6 3 cm
|
2678 |
q
|
2679 |
0 0 0 rg
|
2680 |
-
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand:
|
2681 |
Q
|
2682 |
Q
|
2683 |
q
|
@@ -3003,7 +3003,7 @@ q
|
|
3003 |
1 0 0 1 6 3 cm
|
3004 |
q
|
3005 |
0 0 0 rg
|
3006 |
-
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand:
|
3007 |
Q
|
3008 |
Q
|
3009 |
q
|
@@ -3083,7 +3083,7 @@ q
|
|
3083 |
1 0 0 1 6 3 cm
|
3084 |
q
|
3085 |
0 0 0 rg
|
3086 |
-
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand:
|
3087 |
Q
|
3088 |
Q
|
3089 |
q
|
@@ -3472,7 +3472,7 @@ q
|
|
3472 |
1 0 0 1 6 3 cm
|
3473 |
q
|
3474 |
0 0 0 rg
|
3475 |
-
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand:
|
3476 |
Q
|
3477 |
Q
|
3478 |
q
|
@@ -3724,7 +3724,7 @@ q
|
|
3724 |
1 0 0 1 6 3 cm
|
3725 |
q
|
3726 |
0 0 0 rg
|
3727 |
-
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand:
|
3728 |
Q
|
3729 |
Q
|
3730 |
q
|
@@ -3977,7 +3977,7 @@ q
|
|
3977 |
1 0 0 1 6 3 cm
|
3978 |
q
|
3979 |
0 0 0 rg
|
3980 |
-
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand:
|
3981 |
Q
|
3982 |
Q
|
3983 |
q
|
@@ -4194,7 +4194,7 @@ q
|
|
4194 |
1 0 0 1 6 3 cm
|
4195 |
q
|
4196 |
0 0 0 rg
|
4197 |
-
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand:
|
4198 |
Q
|
4199 |
Q
|
4200 |
q
|
@@ -4506,7 +4506,7 @@ q
|
|
4506 |
1 0 0 1 6 3 cm
|
4507 |
q
|
4508 |
0 0 0 rg
|
4509 |
-
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand:
|
4510 |
Q
|
4511 |
Q
|
4512 |
q
|
@@ -5002,7 +5002,7 @@ q
|
|
5002 |
1 0 0 1 6 3 cm
|
5003 |
q
|
5004 |
0 0 0 rg
|
5005 |
-
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand:
|
5006 |
Q
|
5007 |
Q
|
5008 |
q
|
@@ -5393,7 +5393,7 @@ q
|
|
5393 |
1 0 0 1 6 3 cm
|
5394 |
q
|
5395 |
0 0 0 rg
|
5396 |
-
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand:
|
5397 |
Q
|
5398 |
Q
|
5399 |
q
|
@@ -5595,7 +5595,7 @@ xref
|
|
5595 |
trailer
|
5596 |
<< /ID
|
5597 |
% ReportLab generated PDF document -- digest (http://www.reportlab.com)
|
5598 |
-
[(
|
5599 |
/Info 70 0 R /Root 69 0 R /Size 127 >>
|
5600 |
startxref
|
5601 |
282612
|
234 |
<< /Outlines 71 0 R /PageLabels 110 0 R /PageMode /UseNone /Pages 93 0 R /Type /Catalog >>
|
235 |
endobj
|
236 |
70 0 obj
|
237 |
+
<< /Author () /CreationDate (D:20151024001611-01'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\))
|
238 |
/Title () >>
|
239 |
endobj
|
240 |
71 0 obj
|
579 |
1 0 0 1 91.03937 3 cm
|
580 |
q
|
581 |
0 0 0 rg
|
582 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (15.10.24) Tj T* ET
|
583 |
Q
|
584 |
Q
|
585 |
q
|
641 |
1 0 0 1 91.03937 3 cm
|
642 |
q
|
643 |
0 0 0 rg
|
644 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (24.10.2015) Tj T* ET
|
645 |
Q
|
646 |
Q
|
647 |
q
|
665 |
1 0 0 1 6 3 cm
|
666 |
q
|
667 |
0 0 0 rg
|
668 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand: 24.10.2015) Tj T* ET
|
669 |
Q
|
670 |
Q
|
671 |
q
|
1010 |
1 0 0 1 6 3 cm
|
1011 |
q
|
1012 |
0 0 0 rg
|
1013 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand: 24.10.2015) Tj T* ET
|
1014 |
Q
|
1015 |
Q
|
1016 |
q
|
1402 |
1 0 0 1 6 3 cm
|
1403 |
q
|
1404 |
0 0 0 rg
|
1405 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand: 24.10.2015) Tj T* ET
|
1406 |
Q
|
1407 |
Q
|
1408 |
q
|
1577 |
1 0 0 1 6 3 cm
|
1578 |
q
|
1579 |
0 0 0 rg
|
1580 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand: 24.10.2015) Tj T* ET
|
1581 |
Q
|
1582 |
Q
|
1583 |
q
|
1966 |
1 0 0 1 6 3 cm
|
1967 |
q
|
1968 |
0 0 0 rg
|
1969 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand: 24.10.2015) Tj T* ET
|
1970 |
Q
|
1971 |
Q
|
1972 |
q
|
2324 |
1 0 0 1 6 3 cm
|
2325 |
q
|
2326 |
0 0 0 rg
|
2327 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand: 24.10.2015) Tj T* ET
|
2328 |
Q
|
2329 |
Q
|
2330 |
q
|
2677 |
1 0 0 1 6 3 cm
|
2678 |
q
|
2679 |
0 0 0 rg
|
2680 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand: 24.10.2015) Tj T* ET
|
2681 |
Q
|
2682 |
Q
|
2683 |
q
|
3003 |
1 0 0 1 6 3 cm
|
3004 |
q
|
3005 |
0 0 0 rg
|
3006 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand: 24.10.2015) Tj T* ET
|
3007 |
Q
|
3008 |
Q
|
3009 |
q
|
3083 |
1 0 0 1 6 3 cm
|
3084 |
q
|
3085 |
0 0 0 rg
|
3086 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand: 24.10.2015) Tj T* ET
|
3087 |
Q
|
3088 |
Q
|
3089 |
q
|
3472 |
1 0 0 1 6 3 cm
|
3473 |
q
|
3474 |
0 0 0 rg
|
3475 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand: 24.10.2015) Tj T* ET
|
3476 |
Q
|
3477 |
Q
|
3478 |
q
|
3724 |
1 0 0 1 6 3 cm
|
3725 |
q
|
3726 |
0 0 0 rg
|
3727 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand: 24.10.2015) Tj T* ET
|
3728 |
Q
|
3729 |
Q
|
3730 |
q
|
3977 |
1 0 0 1 6 3 cm
|
3978 |
q
|
3979 |
0 0 0 rg
|
3980 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand: 24.10.2015) Tj T* ET
|
3981 |
Q
|
3982 |
Q
|
3983 |
q
|
4194 |
1 0 0 1 6 3 cm
|
4195 |
q
|
4196 |
0 0 0 rg
|
4197 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand: 24.10.2015) Tj T* ET
|
4198 |
Q
|
4199 |
Q
|
4200 |
q
|
4506 |
1 0 0 1 6 3 cm
|
4507 |
q
|
4508 |
0 0 0 rg
|
4509 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand: 24.10.2015) Tj T* ET
|
4510 |
Q
|
4511 |
Q
|
4512 |
q
|
5002 |
1 0 0 1 6 3 cm
|
5003 |
q
|
5004 |
0 0 0 rg
|
5005 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand: 24.10.2015) Tj T* ET
|
5006 |
Q
|
5007 |
Q
|
5008 |
q
|
5393 |
1 0 0 1 6 3 cm
|
5394 |
q
|
5395 |
0 0 0 rg
|
5396 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Stand: 24.10.2015) Tj T* ET
|
5397 |
Q
|
5398 |
Q
|
5399 |
q
|
5595 |
trailer
|
5596 |
<< /ID
|
5597 |
% ReportLab generated PDF document -- digest (http://www.reportlab.com)
|
5598 |
+
[(%\370\373"\301Ryp\225\255X\330N\353\325=) (%\370\373"\301Ryp\225\255X\330N\353\325=)]
|
5599 |
/Info 70 0 R /Root 69 0 R /Size 127 >>
|
5600 |
startxref
|
5601 |
282612
|
doc/Expercash_Expercash/ChangeLog.pdf
CHANGED
@@ -13,21 +13,25 @@ endobj
|
|
13 |
<< /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >>
|
14 |
endobj
|
15 |
5 0 obj
|
16 |
-
<< /Contents
|
17 |
/Type /Page >>
|
18 |
endobj
|
19 |
6 0 obj
|
20 |
-
<< /
|
|
|
21 |
endobj
|
22 |
7 0 obj
|
23 |
-
<< /
|
24 |
-
/Title (Expercash Payment Modul) >>
|
25 |
endobj
|
26 |
8 0 obj
|
27 |
-
<< /
|
|
|
28 |
endobj
|
29 |
9 0 obj
|
30 |
-
<< /
|
|
|
|
|
|
|
31 |
stream
|
32 |
1 0 0 1 0 0 cm BT /F1 12 Tf 14.4 TL ET
|
33 |
q
|
@@ -55,29 +59,29 @@ BT 1 0 0 1 0 2 Tm /F3 10 Tf 12 TL 209.1099 0 Td (Changelog) Tj T* -209.1099 0 Td
|
|
55 |
Q
|
56 |
Q
|
57 |
q
|
58 |
-
1 0 0 1 62.69291
|
59 |
1 1 1 rg
|
60 |
-
n 0
|
61 |
.878431 .878431 .878431 rg
|
62 |
-
n 0
|
63 |
1 1 1 rg
|
64 |
-
n 0
|
65 |
.878431 .878431 .878431 rg
|
66 |
-
n 0
|
67 |
1 1 1 rg
|
68 |
-
n 0
|
69 |
.878431 .878431 .878431 rg
|
70 |
-
n 0
|
71 |
1 1 1 rg
|
72 |
-
n 0
|
73 |
.878431 .878431 .878431 rg
|
74 |
-
n 0
|
75 |
.960784 .960784 .862745 rg
|
76 |
-
n 0
|
77 |
0 .533333 .603922 rg
|
78 |
BT /F1 10 Tf 12 TL ET
|
79 |
q
|
80 |
-
1 0 0 1 6
|
81 |
q
|
82 |
.960784 .960784 .862745 rg
|
83 |
n 0 0 46.73622 12 re f*
|
@@ -88,7 +92,7 @@ BT 1 0 0 1 0 2 Tm /F2 10 Tf 12 TL 2.52811 0 Td (Revision) Tj T* -2.52811 0 Td ET
|
|
88 |
Q
|
89 |
Q
|
90 |
q
|
91 |
-
1 0 0 1 64.73622
|
92 |
q
|
93 |
.960784 .960784 .862745 rg
|
94 |
n 0 0 46.73622 12 re f*
|
@@ -99,7 +103,7 @@ BT 1 0 0 1 0 2 Tm /F2 10 Tf 12 TL 7.81311 0 Td (Datum) Tj T* -7.81311 0 Td ET
|
|
99 |
Q
|
100 |
Q
|
101 |
q
|
102 |
-
1 0 0 1 123.4724
|
103 |
q
|
104 |
.960784 .960784 .862745 rg
|
105 |
n 0 0 340.4173 12 re f*
|
@@ -111,31 +115,161 @@ Q
|
|
111 |
Q
|
112 |
0 0 0 rg
|
113 |
q
|
114 |
-
1 0 0 1 6
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
q
|
116 |
0 0 0 rg
|
117 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (15.08.13) Tj T* ET
|
118 |
Q
|
119 |
Q
|
120 |
q
|
121 |
-
1 0 0 1 64.73622
|
122 |
q
|
123 |
0 0 0 rg
|
124 |
BT 1 0 0 1 0 14 Tm /F1 10 Tf 12 TL (13.08.201) Tj T* (5) Tj T* ET
|
125 |
Q
|
126 |
Q
|
127 |
q
|
128 |
-
1 0 0 1 123.4724
|
129 |
q
|
130 |
0 0 0 rg
|
131 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Bugfix:) Tj T* ET
|
132 |
Q
|
133 |
Q
|
134 |
q
|
135 |
-
1 0 0 1 123.4724
|
136 |
Q
|
137 |
q
|
138 |
-
1 0 0 1 123.4724
|
139 |
0 0 0 rg
|
140 |
BT /F1 10 Tf 12 TL ET
|
141 |
BT 1 0 0 1 0 2 Tm T* ET
|
@@ -197,34 +331,34 @@ q
|
|
197 |
Q
|
198 |
Q
|
199 |
q
|
200 |
-
1 0 0 1 123.4724
|
201 |
Q
|
202 |
q
|
203 |
-
1 0 0 1 6
|
204 |
q
|
205 |
0 0 0 rg
|
206 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (15.05.06) Tj T* ET
|
207 |
Q
|
208 |
Q
|
209 |
q
|
210 |
-
1 0 0 1 64.73622
|
211 |
q
|
212 |
0 0 0 rg
|
213 |
BT 1 0 0 1 0 14 Tm /F1 10 Tf 12 TL (06.05.201) Tj T* (5) Tj T* ET
|
214 |
Q
|
215 |
Q
|
216 |
q
|
217 |
-
1 0 0 1 123.4724
|
218 |
q
|
219 |
0 0 0 rg
|
220 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Bugfix:) Tj T* ET
|
221 |
Q
|
222 |
Q
|
223 |
q
|
224 |
-
1 0 0 1 123.4724
|
225 |
Q
|
226 |
q
|
227 |
-
1 0 0 1 123.4724
|
228 |
0 0 0 rg
|
229 |
BT /F1 10 Tf 12 TL ET
|
230 |
BT 1 0 0 1 0 2 Tm T* ET
|
@@ -310,20 +444,20 @@ q
|
|
310 |
Q
|
311 |
Q
|
312 |
q
|
313 |
-
1 0 0 1 123.4724
|
314 |
Q
|
315 |
q
|
316 |
-
1 0 0 1 123.4724
|
317 |
q
|
318 |
0 0 0 rg
|
319 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Feature:) Tj T* ET
|
320 |
Q
|
321 |
Q
|
322 |
q
|
323 |
-
1 0 0 1 123.4724
|
324 |
Q
|
325 |
q
|
326 |
-
1 0 0 1 123.4724
|
327 |
0 0 0 rg
|
328 |
BT /F1 10 Tf 12 TL ET
|
329 |
BT 1 0 0 1 0 2 Tm T* ET
|
@@ -385,34 +519,34 @@ q
|
|
385 |
Q
|
386 |
Q
|
387 |
q
|
388 |
-
1 0 0 1 123.4724
|
389 |
Q
|
390 |
q
|
391 |
-
1 0 0 1 6
|
392 |
q
|
393 |
0 0 0 rg
|
394 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (15.04.13) Tj T* ET
|
395 |
Q
|
396 |
Q
|
397 |
q
|
398 |
-
1 0 0 1 64.73622
|
399 |
q
|
400 |
0 0 0 rg
|
401 |
BT 1 0 0 1 0 14 Tm /F1 10 Tf 12 TL (13.04.201) Tj T* (5) Tj T* ET
|
402 |
Q
|
403 |
Q
|
404 |
q
|
405 |
-
1 0 0 1 123.4724
|
406 |
q
|
407 |
0 0 0 rg
|
408 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Feature:) Tj T* ET
|
409 |
Q
|
410 |
Q
|
411 |
q
|
412 |
-
1 0 0 1 123.4724
|
413 |
Q
|
414 |
q
|
415 |
-
1 0 0 1 123.4724
|
416 |
0 0 0 rg
|
417 |
BT /F1 10 Tf 12 TL ET
|
418 |
BT 1 0 0 1 0 2 Tm T* ET
|
@@ -474,34 +608,34 @@ q
|
|
474 |
Q
|
475 |
Q
|
476 |
q
|
477 |
-
1 0 0 1 123.4724
|
478 |
Q
|
479 |
q
|
480 |
-
1 0 0 1 6
|
481 |
q
|
482 |
0 0 0 rg
|
483 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (14.04.14) Tj T* ET
|
484 |
Q
|
485 |
Q
|
486 |
q
|
487 |
-
1 0 0 1 64.73622
|
488 |
q
|
489 |
0 0 0 rg
|
490 |
BT 1 0 0 1 0 14 Tm /F1 10 Tf 12 TL (14.04.201) Tj T* (4) Tj T* ET
|
491 |
Q
|
492 |
Q
|
493 |
q
|
494 |
-
1 0 0 1 123.4724
|
495 |
q
|
496 |
0 0 0 rg
|
497 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Feature:) Tj T* ET
|
498 |
Q
|
499 |
Q
|
500 |
q
|
501 |
-
1 0 0 1 123.4724
|
502 |
Q
|
503 |
q
|
504 |
-
1 0 0 1 123.4724
|
505 |
0 0 0 rg
|
506 |
BT /F1 10 Tf 12 TL ET
|
507 |
BT 1 0 0 1 0 2 Tm T* ET
|
@@ -539,37 +673,37 @@ q
|
|
539 |
Q
|
540 |
Q
|
541 |
q
|
542 |
-
1 0 0 1 123.4724
|
543 |
Q
|
544 |
q
|
545 |
-
1 0 0 1 6
|
546 |
q
|
547 |
0 0 0 rg
|
548 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (14.04.10) Tj T* ET
|
549 |
Q
|
550 |
Q
|
551 |
q
|
552 |
-
1 0 0 1 64.73622
|
553 |
q
|
554 |
0 0 0 rg
|
555 |
BT 1 0 0 1 0 14 Tm /F1 10 Tf 12 TL (10.04.201) Tj T* (4) Tj T* ET
|
556 |
Q
|
557 |
Q
|
558 |
q
|
559 |
-
1 0 0 1 123.4724
|
560 |
q
|
561 |
0 0 0 rg
|
562 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Feature:) Tj T* ET
|
563 |
Q
|
564 |
Q
|
565 |
q
|
566 |
-
1 0 0 1 123.4724
|
567 |
Q
|
568 |
q
|
569 |
-
1 0 0 1 123.4724
|
570 |
Q
|
571 |
q
|
572 |
-
1 0 0 1 123.4724
|
573 |
0 0 0 rg
|
574 |
BT /F1 10 Tf 12 TL ET
|
575 |
q
|
@@ -590,10 +724,10 @@ q
|
|
590 |
Q
|
591 |
Q
|
592 |
q
|
593 |
-
1 0 0 1 123.4724
|
594 |
Q
|
595 |
q
|
596 |
-
1 0 0 1 123.4724
|
597 |
0 0 0 rg
|
598 |
BT /F1 10 Tf 12 TL ET
|
599 |
q
|
@@ -614,10 +748,10 @@ q
|
|
614 |
Q
|
615 |
Q
|
616 |
q
|
617 |
-
1 0 0 1 123.4724
|
618 |
Q
|
619 |
q
|
620 |
-
1 0 0 1 123.4724
|
621 |
0 0 0 rg
|
622 |
BT /F1 10 Tf 12 TL ET
|
623 |
q
|
@@ -638,10 +772,10 @@ q
|
|
638 |
Q
|
639 |
Q
|
640 |
q
|
641 |
-
1 0 0 1 123.4724
|
642 |
Q
|
643 |
q
|
644 |
-
1 0 0 1 123.4724
|
645 |
0 0 0 rg
|
646 |
BT /F1 10 Tf 12 TL ET
|
647 |
q
|
@@ -662,23 +796,23 @@ q
|
|
662 |
Q
|
663 |
Q
|
664 |
q
|
665 |
-
1 0 0 1 123.4724
|
666 |
Q
|
667 |
q
|
668 |
-
1 0 0 1 123.4724
|
669 |
q
|
670 |
0 0 0 rg
|
671 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Bugfix:) Tj T* ET
|
672 |
Q
|
673 |
Q
|
674 |
q
|
675 |
-
1 0 0 1 123.4724
|
676 |
Q
|
677 |
q
|
678 |
-
1 0 0 1 123.4724
|
679 |
Q
|
680 |
q
|
681 |
-
1 0 0 1 123.4724
|
682 |
0 0 0 rg
|
683 |
BT /F1 10 Tf 12 TL ET
|
684 |
q
|
@@ -699,9 +833,64 @@ q
|
|
699 |
Q
|
700 |
Q
|
701 |
q
|
702 |
-
1 0 0 1 123.4724
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
703 |
Q
|
704 |
q
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
705 |
1 0 0 1 6 57 cm
|
706 |
q
|
707 |
0 0 0 rg
|
@@ -808,26 +997,20 @@ q
|
|
808 |
1 j
|
809 |
0 0 0 RG
|
810 |
.25 w
|
811 |
-
n 0 534 m 469.8898 534 l S
|
812 |
-
n 0 450 m 469.8898 450 l S
|
813 |
-
n 0 294 m 469.8898 294 l S
|
814 |
-
n 0 234 m 469.8898 234 l S
|
815 |
-
n 0 192 m 469.8898 192 l S
|
816 |
n 0 72 m 469.8898 72 l S
|
817 |
n 0 36 m 469.8898 36 l S
|
818 |
-
n 58.73622 0 m 58.73622
|
819 |
-
n 117.4724 0 m 117.4724
|
820 |
-
n 0
|
|
|
821 |
n 0 0 m 469.8898 0 l S
|
822 |
-
n 0 0 m 0 552 l S
|
823 |
-
n 469.8898 0 m 469.8898 552 l S
|
824 |
Q
|
825 |
Q
|
826 |
q
|
827 |
-
1 0 0 1 62.69291
|
828 |
Q
|
829 |
q
|
830 |
-
1 0 0 1 62.69291
|
831 |
Q
|
832 |
q
|
833 |
1 0 0 1 56.69291 56.69291 cm
|
@@ -836,14 +1019,14 @@ BT /F1 10 Tf 12 TL ET
|
|
836 |
q
|
837 |
1 0 0 1 6 3 cm
|
838 |
q
|
839 |
-
BT 1 0 0 1 0 2 Tm 12 TL /F1 10 Tf 0 0 0 rg (Stand:
|
840 |
Q
|
841 |
Q
|
842 |
q
|
843 |
1 0 0 1 246.9449 3 cm
|
844 |
q
|
845 |
0 0 0 rg
|
846 |
-
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL 215.0449 0 Td (
|
847 |
Q
|
848 |
Q
|
849 |
q
|
@@ -852,35 +1035,41 @@ Q
|
|
852 |
|
853 |
endstream
|
854 |
endobj
|
855 |
-
|
856 |
<< /Count 0 /Type /Outlines >>
|
857 |
endobj
|
858 |
-
|
859 |
-
<< /Nums [ 0
|
860 |
endobj
|
861 |
-
|
862 |
<< /S /D /St 1 >>
|
863 |
endobj
|
|
|
|
|
|
|
864 |
xref
|
865 |
-
0
|
866 |
0000000000 65535 f
|
867 |
0000000075 00000 n
|
868 |
0000000129 00000 n
|
869 |
0000000239 00000 n
|
870 |
0000000354 00000 n
|
871 |
0000000476 00000 n
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
|
|
|
|
|
|
879 |
trailer
|
880 |
<< /ID
|
881 |
% ReportLab generated PDF document -- digest (http://www.reportlab.com)
|
882 |
-
[(\
|
883 |
-
/Info
|
884 |
startxref
|
885 |
-
|
886 |
%%EOF
|
13 |
<< /BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font >>
|
14 |
endobj
|
15 |
5 0 obj
|
16 |
+
<< /Contents 10 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >>
|
17 |
/Type /Page >>
|
18 |
endobj
|
19 |
6 0 obj
|
20 |
+
<< /Contents 11 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 9 0 R /Resources << /Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> /Rotate 0 /Trans << >>
|
21 |
+
/Type /Page >>
|
22 |
endobj
|
23 |
7 0 obj
|
24 |
+
<< /Outlines 12 0 R /PageLabels 13 0 R /PageMode /UseNone /Pages 9 0 R /Type /Catalog >>
|
|
|
25 |
endobj
|
26 |
8 0 obj
|
27 |
+
<< /Author () /CreationDate (D:20151024001614-01'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\))
|
28 |
+
/Title (Expercash Payment Modul) >>
|
29 |
endobj
|
30 |
9 0 obj
|
31 |
+
<< /Count 2 /Kids [ 5 0 R 6 0 R ] /Type /Pages >>
|
32 |
+
endobj
|
33 |
+
10 0 obj
|
34 |
+
<< /Length 12210 >>
|
35 |
stream
|
36 |
1 0 0 1 0 0 cm BT /F1 12 Tf 14.4 TL ET
|
37 |
q
|
59 |
Q
|
60 |
Q
|
61 |
q
|
62 |
+
1 0 0 1 62.69291 129.3701 cm
|
63 |
1 1 1 rg
|
64 |
+
n 0 564 469.8898 -18 re f*
|
65 |
.878431 .878431 .878431 rg
|
66 |
+
n 0 546 469.8898 -42 re f*
|
67 |
1 1 1 rg
|
68 |
+
n 0 504 469.8898 -42 re f*
|
69 |
.878431 .878431 .878431 rg
|
70 |
+
n 0 462 469.8898 -84 re f*
|
71 |
1 1 1 rg
|
72 |
+
n 0 378 469.8898 -156 re f*
|
73 |
.878431 .878431 .878431 rg
|
74 |
+
n 0 222 469.8898 -60 re f*
|
75 |
1 1 1 rg
|
76 |
+
n 0 162 469.8898 -42 re f*
|
77 |
.878431 .878431 .878431 rg
|
78 |
+
n 0 120 469.8898 -120 re f*
|
79 |
.960784 .960784 .862745 rg
|
80 |
+
n 0 564 469.8898 -18 re f*
|
81 |
0 .533333 .603922 rg
|
82 |
BT /F1 10 Tf 12 TL ET
|
83 |
q
|
84 |
+
1 0 0 1 6 549 cm
|
85 |
q
|
86 |
.960784 .960784 .862745 rg
|
87 |
n 0 0 46.73622 12 re f*
|
92 |
Q
|
93 |
Q
|
94 |
q
|
95 |
+
1 0 0 1 64.73622 549 cm
|
96 |
q
|
97 |
.960784 .960784 .862745 rg
|
98 |
n 0 0 46.73622 12 re f*
|
103 |
Q
|
104 |
Q
|
105 |
q
|
106 |
+
1 0 0 1 123.4724 549 cm
|
107 |
q
|
108 |
.960784 .960784 .862745 rg
|
109 |
n 0 0 340.4173 12 re f*
|
115 |
Q
|
116 |
0 0 0 rg
|
117 |
q
|
118 |
+
1 0 0 1 6 531 cm
|
119 |
+
q
|
120 |
+
0 0 0 rg
|
121 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (15.10.26) Tj T* ET
|
122 |
+
Q
|
123 |
+
Q
|
124 |
+
q
|
125 |
+
1 0 0 1 64.73622 519 cm
|
126 |
+
q
|
127 |
+
0 0 0 rg
|
128 |
+
BT 1 0 0 1 0 14 Tm /F1 10 Tf 12 TL (26.10.201) Tj T* (5) Tj T* ET
|
129 |
+
Q
|
130 |
+
Q
|
131 |
+
q
|
132 |
+
1 0 0 1 123.4724 531 cm
|
133 |
+
q
|
134 |
+
0 0 0 rg
|
135 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Feature:) Tj T* ET
|
136 |
+
Q
|
137 |
+
Q
|
138 |
+
q
|
139 |
+
1 0 0 1 123.4724 525 cm
|
140 |
+
Q
|
141 |
+
q
|
142 |
+
1 0 0 1 123.4724 507 cm
|
143 |
+
0 0 0 rg
|
144 |
+
BT /F1 10 Tf 12 TL ET
|
145 |
+
BT 1 0 0 1 0 2 Tm T* ET
|
146 |
+
q
|
147 |
+
1 0 0 1 20 12 cm
|
148 |
+
Q
|
149 |
+
q
|
150 |
+
1 0 0 1 20 12 cm
|
151 |
+
Q
|
152 |
+
q
|
153 |
+
1 0 0 1 20 0 cm
|
154 |
+
0 0 0 rg
|
155 |
+
BT /F1 10 Tf 12 TL ET
|
156 |
+
q
|
157 |
+
1 0 0 1 6 -3 cm
|
158 |
+
q
|
159 |
+
0 0 0 rg
|
160 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL 10.5 0 Td (\177) Tj T* -10.5 0 Td ET
|
161 |
+
Q
|
162 |
+
Q
|
163 |
+
q
|
164 |
+
1 0 0 1 23 -3 cm
|
165 |
+
q
|
166 |
+
0 0 0 rg
|
167 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (use additional return parameters) Tj T* ET
|
168 |
+
Q
|
169 |
+
Q
|
170 |
+
q
|
171 |
+
Q
|
172 |
+
Q
|
173 |
+
q
|
174 |
+
1 0 0 1 20 0 cm
|
175 |
+
Q
|
176 |
+
q
|
177 |
+
Q
|
178 |
+
Q
|
179 |
+
q
|
180 |
+
1 0 0 1 123.4724 507 cm
|
181 |
+
Q
|
182 |
+
q
|
183 |
+
1 0 0 1 6 489 cm
|
184 |
+
q
|
185 |
+
0 0 0 rg
|
186 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (15.09.23) Tj T* ET
|
187 |
+
Q
|
188 |
+
Q
|
189 |
+
q
|
190 |
+
1 0 0 1 64.73622 477 cm
|
191 |
+
q
|
192 |
+
0 0 0 rg
|
193 |
+
BT 1 0 0 1 0 14 Tm /F1 10 Tf 12 TL (23.09.201) Tj T* (5) Tj T* ET
|
194 |
+
Q
|
195 |
+
Q
|
196 |
+
q
|
197 |
+
1 0 0 1 123.4724 489 cm
|
198 |
+
q
|
199 |
+
0 0 0 rg
|
200 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Bugfix:) Tj T* ET
|
201 |
+
Q
|
202 |
+
Q
|
203 |
+
q
|
204 |
+
1 0 0 1 123.4724 483 cm
|
205 |
+
Q
|
206 |
+
q
|
207 |
+
1 0 0 1 123.4724 465 cm
|
208 |
+
0 0 0 rg
|
209 |
+
BT /F1 10 Tf 12 TL ET
|
210 |
+
BT 1 0 0 1 0 2 Tm T* ET
|
211 |
+
q
|
212 |
+
1 0 0 1 20 12 cm
|
213 |
+
Q
|
214 |
+
q
|
215 |
+
1 0 0 1 20 12 cm
|
216 |
+
Q
|
217 |
+
q
|
218 |
+
1 0 0 1 20 0 cm
|
219 |
+
0 0 0 rg
|
220 |
+
BT /F1 10 Tf 12 TL ET
|
221 |
+
q
|
222 |
+
1 0 0 1 6 -3 cm
|
223 |
+
q
|
224 |
+
0 0 0 rg
|
225 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL 10.5 0 Td (\177) Tj T* -10.5 0 Td ET
|
226 |
+
Q
|
227 |
+
Q
|
228 |
+
q
|
229 |
+
1 0 0 1 23 -3 cm
|
230 |
+
q
|
231 |
+
0 0 0 rg
|
232 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (fix contend type header for Ajax Response) Tj T* ET
|
233 |
+
Q
|
234 |
+
Q
|
235 |
+
q
|
236 |
+
Q
|
237 |
+
Q
|
238 |
+
q
|
239 |
+
1 0 0 1 20 0 cm
|
240 |
+
Q
|
241 |
+
q
|
242 |
+
Q
|
243 |
+
Q
|
244 |
+
q
|
245 |
+
1 0 0 1 123.4724 465 cm
|
246 |
+
Q
|
247 |
+
q
|
248 |
+
1 0 0 1 6 447 cm
|
249 |
q
|
250 |
0 0 0 rg
|
251 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (15.08.13) Tj T* ET
|
252 |
Q
|
253 |
Q
|
254 |
q
|
255 |
+
1 0 0 1 64.73622 435 cm
|
256 |
q
|
257 |
0 0 0 rg
|
258 |
BT 1 0 0 1 0 14 Tm /F1 10 Tf 12 TL (13.08.201) Tj T* (5) Tj T* ET
|
259 |
Q
|
260 |
Q
|
261 |
q
|
262 |
+
1 0 0 1 123.4724 447 cm
|
263 |
q
|
264 |
0 0 0 rg
|
265 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Bugfix:) Tj T* ET
|
266 |
Q
|
267 |
Q
|
268 |
q
|
269 |
+
1 0 0 1 123.4724 441 cm
|
270 |
Q
|
271 |
q
|
272 |
+
1 0 0 1 123.4724 381 cm
|
273 |
0 0 0 rg
|
274 |
BT /F1 10 Tf 12 TL ET
|
275 |
BT 1 0 0 1 0 2 Tm T* ET
|
331 |
Q
|
332 |
Q
|
333 |
q
|
334 |
+
1 0 0 1 123.4724 381 cm
|
335 |
Q
|
336 |
q
|
337 |
+
1 0 0 1 6 363 cm
|
338 |
q
|
339 |
0 0 0 rg
|
340 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (15.05.06) Tj T* ET
|
341 |
Q
|
342 |
Q
|
343 |
q
|
344 |
+
1 0 0 1 64.73622 351 cm
|
345 |
q
|
346 |
0 0 0 rg
|
347 |
BT 1 0 0 1 0 14 Tm /F1 10 Tf 12 TL (06.05.201) Tj T* (5) Tj T* ET
|
348 |
Q
|
349 |
Q
|
350 |
q
|
351 |
+
1 0 0 1 123.4724 363 cm
|
352 |
q
|
353 |
0 0 0 rg
|
354 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Bugfix:) Tj T* ET
|
355 |
Q
|
356 |
Q
|
357 |
q
|
358 |
+
1 0 0 1 123.4724 357 cm
|
359 |
Q
|
360 |
q
|
361 |
+
1 0 0 1 123.4724 279 cm
|
362 |
0 0 0 rg
|
363 |
BT /F1 10 Tf 12 TL ET
|
364 |
BT 1 0 0 1 0 2 Tm T* ET
|
444 |
Q
|
445 |
Q
|
446 |
q
|
447 |
+
1 0 0 1 123.4724 279 cm
|
448 |
Q
|
449 |
q
|
450 |
+
1 0 0 1 123.4724 267 cm
|
451 |
q
|
452 |
0 0 0 rg
|
453 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Feature:) Tj T* ET
|
454 |
Q
|
455 |
Q
|
456 |
q
|
457 |
+
1 0 0 1 123.4724 261 cm
|
458 |
Q
|
459 |
q
|
460 |
+
1 0 0 1 123.4724 225 cm
|
461 |
0 0 0 rg
|
462 |
BT /F1 10 Tf 12 TL ET
|
463 |
BT 1 0 0 1 0 2 Tm T* ET
|
519 |
Q
|
520 |
Q
|
521 |
q
|
522 |
+
1 0 0 1 123.4724 225 cm
|
523 |
Q
|
524 |
q
|
525 |
+
1 0 0 1 6 207 cm
|
526 |
q
|
527 |
0 0 0 rg
|
528 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (15.04.13) Tj T* ET
|
529 |
Q
|
530 |
Q
|
531 |
q
|
532 |
+
1 0 0 1 64.73622 195 cm
|
533 |
q
|
534 |
0 0 0 rg
|
535 |
BT 1 0 0 1 0 14 Tm /F1 10 Tf 12 TL (13.04.201) Tj T* (5) Tj T* ET
|
536 |
Q
|
537 |
Q
|
538 |
q
|
539 |
+
1 0 0 1 123.4724 207 cm
|
540 |
q
|
541 |
0 0 0 rg
|
542 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Feature:) Tj T* ET
|
543 |
Q
|
544 |
Q
|
545 |
q
|
546 |
+
1 0 0 1 123.4724 201 cm
|
547 |
Q
|
548 |
q
|
549 |
+
1 0 0 1 123.4724 165 cm
|
550 |
0 0 0 rg
|
551 |
BT /F1 10 Tf 12 TL ET
|
552 |
BT 1 0 0 1 0 2 Tm T* ET
|
608 |
Q
|
609 |
Q
|
610 |
q
|
611 |
+
1 0 0 1 123.4724 165 cm
|
612 |
Q
|
613 |
q
|
614 |
+
1 0 0 1 6 147 cm
|
615 |
q
|
616 |
0 0 0 rg
|
617 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (14.04.14) Tj T* ET
|
618 |
Q
|
619 |
Q
|
620 |
q
|
621 |
+
1 0 0 1 64.73622 135 cm
|
622 |
q
|
623 |
0 0 0 rg
|
624 |
BT 1 0 0 1 0 14 Tm /F1 10 Tf 12 TL (14.04.201) Tj T* (4) Tj T* ET
|
625 |
Q
|
626 |
Q
|
627 |
q
|
628 |
+
1 0 0 1 123.4724 147 cm
|
629 |
q
|
630 |
0 0 0 rg
|
631 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Feature:) Tj T* ET
|
632 |
Q
|
633 |
Q
|
634 |
q
|
635 |
+
1 0 0 1 123.4724 141 cm
|
636 |
Q
|
637 |
q
|
638 |
+
1 0 0 1 123.4724 123 cm
|
639 |
0 0 0 rg
|
640 |
BT /F1 10 Tf 12 TL ET
|
641 |
BT 1 0 0 1 0 2 Tm T* ET
|
673 |
Q
|
674 |
Q
|
675 |
q
|
676 |
+
1 0 0 1 123.4724 123 cm
|
677 |
Q
|
678 |
q
|
679 |
+
1 0 0 1 6 105 cm
|
680 |
q
|
681 |
0 0 0 rg
|
682 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (14.04.10) Tj T* ET
|
683 |
Q
|
684 |
Q
|
685 |
q
|
686 |
+
1 0 0 1 64.73622 93 cm
|
687 |
q
|
688 |
0 0 0 rg
|
689 |
BT 1 0 0 1 0 14 Tm /F1 10 Tf 12 TL (10.04.201) Tj T* (4) Tj T* ET
|
690 |
Q
|
691 |
Q
|
692 |
q
|
693 |
+
1 0 0 1 123.4724 105 cm
|
694 |
q
|
695 |
0 0 0 rg
|
696 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Feature:) Tj T* ET
|
697 |
Q
|
698 |
Q
|
699 |
q
|
700 |
+
1 0 0 1 123.4724 99 cm
|
701 |
Q
|
702 |
q
|
703 |
+
1 0 0 1 123.4724 99 cm
|
704 |
Q
|
705 |
q
|
706 |
+
1 0 0 1 123.4724 87 cm
|
707 |
0 0 0 rg
|
708 |
BT /F1 10 Tf 12 TL ET
|
709 |
q
|
724 |
Q
|
725 |
Q
|
726 |
q
|
727 |
+
1 0 0 1 123.4724 81 cm
|
728 |
Q
|
729 |
q
|
730 |
+
1 0 0 1 123.4724 69 cm
|
731 |
0 0 0 rg
|
732 |
BT /F1 10 Tf 12 TL ET
|
733 |
q
|
748 |
Q
|
749 |
Q
|
750 |
q
|
751 |
+
1 0 0 1 123.4724 63 cm
|
752 |
Q
|
753 |
q
|
754 |
+
1 0 0 1 123.4724 51 cm
|
755 |
0 0 0 rg
|
756 |
BT /F1 10 Tf 12 TL ET
|
757 |
q
|
772 |
Q
|
773 |
Q
|
774 |
q
|
775 |
+
1 0 0 1 123.4724 45 cm
|
776 |
Q
|
777 |
q
|
778 |
+
1 0 0 1 123.4724 33 cm
|
779 |
0 0 0 rg
|
780 |
BT /F1 10 Tf 12 TL ET
|
781 |
q
|
796 |
Q
|
797 |
Q
|
798 |
q
|
799 |
+
1 0 0 1 123.4724 33 cm
|
800 |
Q
|
801 |
q
|
802 |
+
1 0 0 1 123.4724 21 cm
|
803 |
q
|
804 |
0 0 0 rg
|
805 |
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (Bugfix:) Tj T* ET
|
806 |
Q
|
807 |
Q
|
808 |
q
|
809 |
+
1 0 0 1 123.4724 15 cm
|
810 |
Q
|
811 |
q
|
812 |
+
1 0 0 1 123.4724 15 cm
|
813 |
Q
|
814 |
q
|
815 |
+
1 0 0 1 123.4724 3 cm
|
816 |
0 0 0 rg
|
817 |
BT /F1 10 Tf 12 TL ET
|
818 |
q
|
833 |
Q
|
834 |
Q
|
835 |
q
|
836 |
+
1 0 0 1 123.4724 3 cm
|
837 |
+
Q
|
838 |
+
q
|
839 |
+
1 J
|
840 |
+
1 j
|
841 |
+
0 0 0 RG
|
842 |
+
.25 w
|
843 |
+
n 0 0 m 469.8898 0 l S
|
844 |
+
n 0 546 m 469.8898 546 l S
|
845 |
+
n 0 504 m 469.8898 504 l S
|
846 |
+
n 0 462 m 469.8898 462 l S
|
847 |
+
n 0 378 m 469.8898 378 l S
|
848 |
+
n 0 222 m 469.8898 222 l S
|
849 |
+
n 0 162 m 469.8898 162 l S
|
850 |
+
n 0 120 m 469.8898 120 l S
|
851 |
+
n 58.73622 0 m 58.73622 564 l S
|
852 |
+
n 117.4724 0 m 117.4724 564 l S
|
853 |
+
n 0 564 m 469.8898 564 l S
|
854 |
+
n 0 0 m 0 564 l S
|
855 |
+
n 469.8898 0 m 469.8898 564 l S
|
856 |
+
Q
|
857 |
Q
|
858 |
q
|
859 |
+
1 0 0 1 56.69291 56.69291 cm
|
860 |
+
0 0 0 rg
|
861 |
+
BT /F1 10 Tf 12 TL ET
|
862 |
+
q
|
863 |
+
1 0 0 1 6 3 cm
|
864 |
+
q
|
865 |
+
BT 1 0 0 1 0 2 Tm 12 TL /F1 10 Tf 0 0 0 rg (Stand: 24/10/2015) Tj T* ET
|
866 |
+
Q
|
867 |
+
Q
|
868 |
+
q
|
869 |
+
1 0 0 1 246.9449 3 cm
|
870 |
+
q
|
871 |
+
0 0 0 rg
|
872 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL 215.0449 0 Td (1/2) Tj T* -215.0449 0 Td ET
|
873 |
+
Q
|
874 |
+
Q
|
875 |
+
q
|
876 |
+
Q
|
877 |
+
Q
|
878 |
+
|
879 |
+
endstream
|
880 |
+
endobj
|
881 |
+
11 0 obj
|
882 |
+
<< /Length 2186 >>
|
883 |
+
stream
|
884 |
+
1 0 0 1 0 0 cm BT /F1 12 Tf 14.4 TL ET
|
885 |
+
q
|
886 |
+
1 0 0 1 62.69291 721.3701 cm
|
887 |
+
1 1 1 rg
|
888 |
+
n 0 72 469.8898 -36 re f*
|
889 |
+
.878431 .878431 .878431 rg
|
890 |
+
n 0 36 469.8898 -36 re f*
|
891 |
+
0 0 0 rg
|
892 |
+
BT /F1 10 Tf 12 TL ET
|
893 |
+
q
|
894 |
1 0 0 1 6 57 cm
|
895 |
q
|
896 |
0 0 0 rg
|
997 |
1 j
|
998 |
0 0 0 RG
|
999 |
.25 w
|
|
|
|
|
|
|
|
|
|
|
1000 |
n 0 72 m 469.8898 72 l S
|
1001 |
n 0 36 m 469.8898 36 l S
|
1002 |
+
n 58.73622 0 m 58.73622 72 l S
|
1003 |
+
n 117.4724 0 m 117.4724 72 l S
|
1004 |
+
n 0 0 m 0 72 l S
|
1005 |
+
n 469.8898 0 m 469.8898 72 l S
|
1006 |
n 0 0 m 469.8898 0 l S
|
|
|
|
|
1007 |
Q
|
1008 |
Q
|
1009 |
q
|
1010 |
+
1 0 0 1 62.69291 721.3701 cm
|
1011 |
Q
|
1012 |
q
|
1013 |
+
1 0 0 1 62.69291 721.3701 cm
|
1014 |
Q
|
1015 |
q
|
1016 |
1 0 0 1 56.69291 56.69291 cm
|
1019 |
q
|
1020 |
1 0 0 1 6 3 cm
|
1021 |
q
|
1022 |
+
BT 1 0 0 1 0 2 Tm 12 TL /F1 10 Tf 0 0 0 rg (Stand: 24/10/2015) Tj T* ET
|
1023 |
Q
|
1024 |
Q
|
1025 |
q
|
1026 |
1 0 0 1 246.9449 3 cm
|
1027 |
q
|
1028 |
0 0 0 rg
|
1029 |
+
BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL 215.0449 0 Td (2/2) Tj T* -215.0449 0 Td ET
|
1030 |
Q
|
1031 |
Q
|
1032 |
q
|
1035 |
|
1036 |
endstream
|
1037 |
endobj
|
1038 |
+
12 0 obj
|
1039 |
<< /Count 0 /Type /Outlines >>
|
1040 |
endobj
|
1041 |
+
13 0 obj
|
1042 |
+
<< /Nums [ 0 14 0 R 1 15 0 R ] >>
|
1043 |
endobj
|
1044 |
+
14 0 obj
|
1045 |
<< /S /D /St 1 >>
|
1046 |
endobj
|
1047 |
+
15 0 obj
|
1048 |
+
<< /S /D /St 2 >>
|
1049 |
+
endobj
|
1050 |
xref
|
1051 |
+
0 16
|
1052 |
0000000000 65535 f
|
1053 |
0000000075 00000 n
|
1054 |
0000000129 00000 n
|
1055 |
0000000239 00000 n
|
1056 |
0000000354 00000 n
|
1057 |
0000000476 00000 n
|
1058 |
+
0000000684 00000 n
|
1059 |
+
0000000892 00000 n
|
1060 |
+
0000000999 00000 n
|
1061 |
+
0000001232 00000 n
|
1062 |
+
0000001300 00000 n
|
1063 |
+
0000013568 00000 n
|
1064 |
+
0000015811 00000 n
|
1065 |
+
0000015861 00000 n
|
1066 |
+
0000015914 00000 n
|
1067 |
+
0000015951 00000 n
|
1068 |
trailer
|
1069 |
<< /ID
|
1070 |
% ReportLab generated PDF document -- digest (http://www.reportlab.com)
|
1071 |
+
[(i_\306\213\274\237\312:\366\262\240J\332#\371/) (i_\306\213\274\237\312:\366\262\240J\332#\371/)]
|
1072 |
+
/Info 8 0 R /Root 7 0 R /Size 16 >>
|
1073 |
startxref
|
1074 |
+
15988
|
1075 |
%%EOF
|
package.xml
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
-
<package><name>Expercash</name><version>15.08.13</version><stability>stable</stability><license>OSL3</license><channel>community</channel><extends></extends><summary>E-Payment from ExperCash</summary><description>The ExperCash Magento module allows you to automatically process standard payment methods.</description><notes>Official Expercash extension</notes><authors><author><name>Sebastian Ertner</name><user>sebastianertner</user><email>sebastian.ertner@netresearch.de</email></author></authors><date>2015-08-12</date><time>4:39:33</time><compatible></compatible><dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies><contents><target name="mage"><dir name="doc"><dir name="Expercash_Expercash"><file name="Benutzerdokumentation.pdf" hash="2b281cfd7870cdfa53c34384e2693090"/><file name="ChangeLog.pdf" hash="15982d51bfc431f82d45378606058603"/></dir></dir><dir name="skin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="expercash.css" hash="6113641bea3bc89a39672cfd976a2ce7"/></dir><dir name="images"><dir name="expercash"><file name="mp_buy_with_button.png" hash="5ed1fe8cc333e939cfdcdd894e16ef08"/><file name="mp_ident.png" hash="2253e27fe9bfeb20c7289c7dc9cc26ab"/></dir></dir><dir name="js"><file name="expercashopc.js" hash="ff8a0156b04323478e79d3d42d8a1cbf"/></dir></dir></dir></dir></dir><dir name="app"><dir name="locale"><dir name="de_DE"><file name="Expercash_Expercash.csv" hash="3a1d11e3bab24fb9aa9fd5bab33a05cf"/></dir><dir name="en_US"><file name="Expercash_Expercash.csv" hash="08397d083bc51174b54d863c35aa19f1"/></dir></dir><dir name="skin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="expercash"><file name="masterpass.png" hash="988dd21889981f9f765cd920d9e572b1"/></dir></dir></dir></dir></dir></dir><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="expercash"><file name="expercash.phtml" hash="3975416632a3f49154b6b86bbff0bb83"/><file name="expercasherror.phtml" hash="6a4056679aa05d3386de4864d33b2764"/><dir name="checkout"><file name="onepage.phtml" hash="056bbc6d9b779663edd770a2388f0fa7"/><dir name="ce15"><file name="onepage.phtml" hash="73acc169ccebdc9686d39e758e8dbe1b"/></dir><dir name="onepage"><file name="js.phtml" hash="9da0a81649cbcb0212c5a35daacdcded"/></dir></dir><dir name="info"><file name="expercash.phtml" hash="7debefc23e99803112ecc6aa634504e4"/><dir name="pdf"><file name="expercash.phtml" hash="c6be54fed275a07ddd5dffc24b9b3c12"/></dir></dir><dir name="masterpass"><dir name="fullcheckout"><file name="checkout.phtml" hash="872bb6a52b0166d7053bcf0541633eca"/><file name="shortcut.phtml" hash="294692b7e6c576d6b7362f502ec91752"/></dir></dir><dir name="payment"><dir name="masterpass"><file name="cc.phtml" hash="728959a1b3f510006d38fc655c4e8a1f"/></dir><dir name="logo"><file name="logo.phtml" hash="b6b43e823aae87ee66de75ffb715d376"/></dir></dir><dir name="form"><file name="expercashiframe.phtml" hash="3e991b2bb584801d43ff0deb2506d508"/></dir></dir></dir><dir name="layout"><file name="expercash.xml" hash="4705199e041da18aaf2c310830736ba9"/></dir></dir></dir><dir name="rwd"><dir name="default"><dir name="template"><dir name="expercash"><dir name="checkout"><file name="onepage.phtml" hash="1f07267037c504a038219918838e311a"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="expercash"><dir name="info"><file name="expercash.phtml" hash="3d6f29786f0b271b90d8c9b989837f56"/><dir name="pdf"><file name="expercash.phtml" hash="c6be54fed275a07ddd5dffc24b9b3c12"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="code"><dir name="community"><dir name="Expercash"><dir name="Expercash"><dir name="sql"><dir name="expercash_setup"><file name="mysql4-install-1.0.0.php" hash="38c0cd64205e9bbcc1fa2b2a6e3d2a48"/></dir></dir><dir name="Test"><dir name="Controller"><file name="ExpercashControllerTest.php" hash="1882c06d9ea1570dda3ee487273cc71e"/><dir name="ExpercashControllerTest"><dir name="fixtures"><file name="orders.yaml" hash="16fa377e0aa408a83ca300b42295df59"/></dir><dir name="expectations"><file name="orders.yaml" hash="5303d2b0d9fb1b9a91d99bf10cfc98c3"/></dir></dir></dir><dir name="Helper"><file name="DataTest.php" hash="74db3d71d4eebdb34266df21366b383a"/><file name="MasterpassTest.php" hash="1436f27d0aad0489b606009f7091791a"/><file name="PaymentTest.php" hash="fa0b8047332cace90dc52b42081b241b"/><dir name="PaymentTest"><dir name="fixtures"><file name="orders.yaml" hash="56a7ac11d5c2bffb3b7cef807b798490"/></dir></dir></dir><dir name="Model"><file name="ConfigTest.php" hash="cd9cf9c1bddde58aa2435fa20540e5f3"/><file name="ExpercashTest.php" hash="c74034a3f66dcb50f6829bf4e726cafc"/><file name="ExpercashccTest.php" hash="7fa68cdd8fb98fbe770212a18eb881b4"/><file name="ExpercashelvTest.php" hash="83685901e621e8209ac9997c2b2e0097"/><file name="ExpercashgpTest.php" hash="df4f7f94db8338bc0e5c16c717fdba6f"/><file name="ExpercashmpTest.php" hash="19b528ec264d9a95c58c595e35a482d0"/><file name="ExpercashmpfTest.php" hash="0781c35fb2065f5a954641f04ea87e6d"/><file name="ExpercashpcTest.php" hash="99f2e5eaea76700ff82d678f349b7c6f"/><file name="ExpercashppTest.php" hash="92e3b211091d6487029c3fd0057b56ae"/><file name="ExpercashsoTest.php" hash="600bf5716950a6de8b11c7c47583b0ea"/><dir name="ExpercashmpfTest"><dir name="fixtures"><file name="quote.yaml" hash="5e08cf2b5ef1c65eae4269d4d9240aee"/></dir></dir><dir name="Api"><file name="AbstractTest.php" hash="9fa3e989d26d2ab5e5c26604eb1084df"/><file name="ApiTest.php" hash="254a3779b78d372cd23e9e7d27fc8cde"/><file name="CaptureTest.php" hash="2633f371d6a4283e95e75d9e4d0f2a6b"/><dir name="ApiTest"><dir name="TestFiles"><file name="FailedTransaction.xml" hash="37851e225e15329588460482e7d78ec8"/><file name="ResponseParamsMissing.xml" hash="71a3977ddc1a2e6468c64ec1d4d27b0f"/><file name="SuccessFullResponse.xml" hash="9534f76edabf6edd8fb066874749882a"/></dir></dir><dir name="CaptureTest"><dir name="fixtures"><file name="orders.yaml" hash="37e75e93a6f658d5fac188f1d0b53d8e"/></dir></dir></dir><dir name="ExpercashpcTest"><dir name="fixtures"><file name="quote.yaml" hash="654b1ea6f862693b1265ff640354dc41"/></dir></dir><dir name="Request"><file name="IframeTest.php" hash="72a12161b78a1ca1fdfca75c15669b49"/><file name="TokenTest.php" hash="235808b49e1d95cd92bcbf2e79ced263"/><dir name="Token"><file name="IframeTest.php" hash="67e7f221b29e4bb51f69ef40bb3590b6"/><dir name="IframeTest"><dir name="fixtures"><file name="order.yaml" hash="012db55a0b44bcd20adabe55b34f1336"/></dir></dir></dir><dir name="TokenTest"><dir name="fixtures"><file name="order.yaml" hash="012db55a0b44bcd20adabe55b34f1336"/></dir></dir><dir name="IframeTest"><dir name="fixtures"><file name="order.yaml" hash="bb7bb8e01994ef4da869aca5abbbd709"/></dir></dir></dir></dir><dir name="Block"><file name="ExpercashTest.php" hash="a164a0542a6fe702ca11593996db17e5"/><dir name="Masterpass"><file name="FormTest.php" hash="50eba5e92488cb1d0a1df039dee04bc3"/><dir name="Fullcheckout"><file name="ShortcutTest.php" hash="57a55b87a6e1520b4080d70ba2e3628c"/></dir></dir><dir name="ExpercashTest"><dir name="fixtures"><file name="orders.yaml" hash="5410ce49a826596a7acd638f8615b74f"/></dir><dir name="expectations"><file name="orders.yaml" hash="a9bd2f7d6df351f28cbfe20837f014d5"/></dir></dir></dir><dir name="var"><dir name="fixtures"><file name="orders.yaml" hash="e34886b7e3379b866a1baf5d8791ee5c"/><file name="quote.yaml" hash="a32028834c19c5b29b1cedcfa6dddf06"/></dir><dir name="expectations"><file name="orders.yaml" hash="5303d2b0d9fb1b9a91d99bf10cfc98c3"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="340e9e3548972cda79b79bcb128ca039"/><file name="Masterpass.php" hash="4fce435a0bc20ea4cf23bd6073433579"/><file name="Payment.php" hash="b6f11019c9ebfc682a38d48197052de4"/></dir><dir name="Model"><file name="Config.php" hash="505efd4d4561961446356ea6f58db93a"/><file name="Expercash.php" hash="b0565568a61899837c40ec51132112c3"/><file name="Expercashcc.php" hash="b633a0ee42552c9ded4086954c1af16c"/><file name="Expercashelv.php" hash="a68f9e6e9d0c75fcbf7d6c045390ed66"/><file name="Expercashgp.php" hash="16f9b2145eb48cc343436b98fb8afb78"/><file name="Expercashmp.php" hash="ebda9826d73b1d25f07cd47e2591f8d2"/><file name="Expercashmpf.php" hash="84a2e7a96384274978a6fb7691f57c47"/><file name="Expercashpc.php" hash="752717db870d53bac8f25029d4c3e872"/><file name="Expercashpp.php" hash="413f3e0ada0449a3c2737fb7c8327c7e"/><file name="Expercashso.php" hash="a0803d48640c4a1d76a583aa9e5b0358"/><file name="Observer.php" hash="6f6709225e6e4f51ce84a3ddb99d2e05"/><dir name="Entity"><file name="Setup.php" hash="92e67cfecc9602a4f991350b3955a5bc"/></dir><dir name="Source"><file name="Paymenttypecc.php" hash="7904509a589ba3616b6548ef4e0c3aba"/><file name="Paymenttypeelv.php" hash="18adea86b9a693f3327d7f95b3fff843"/><file name="Paymenttypegp.php" hash="12b0278f54c8831c23c2a612115dec82"/><file name="Paymenttypemp.php" hash="210c923e158840ecc8c1ea242515f01d"/><file name="Paymenttypempf.php" hash="ee36fc7e4b965da64b4f3106957ea336"/><file name="Paymenttypeso.php" hash="cafd1ba2e25a269a3ebcc1e7fbd54d3a"/></dir><dir name="Directory"><file name="Region.php" hash="eac40cbc2fc2faf379d140e4b9813256"/></dir><dir name="Masterpass"><file name="Config.php" hash="c5343c7a0f15b5fe98436a9a2bf80399"/></dir><dir name="Api"><file name="Abstract.php" hash="66edf7a42e50f9066b7b3c70a9dedb4a"/><file name="Api.php" hash="c8a6aa460c70f44cd4b80489bf9c0098"/><file name="Capture.php" hash="22a930d5bd4ce1c1ce63d29cfa638bef"/><dir name="Masterpass"><file name="Capture.php" hash="b14f293a73cb0a3fbd0bbc6fd5f62d2e"/><file name="Epi.php" hash="a4af87a6e8847dd14d963f216cc66eea"/></dir></dir><dir name="Resource"><dir name="Directory"><file name="Region.php" hash="b37149cbdf1b99858ff6c9b4e65fee51"/></dir></dir><dir name="Request"><file name="Iframe.php" hash="9d538a27439397903329734f877b7e3b"/><file name="Token.php" hash="82bb5f16b9b1c8efaf135bd16b78546b"/><dir name="Token"><file name="Iframe.php" hash="8956cd7280a8d0800485b676d1ac8d27"/></dir><dir name="Masterpass"><file name="Epi.php" hash="ed2e6673e99be7ecd9b8027caefaa77f"/></dir></dir></dir><dir name="controllers"><file name="ExpercashController.php" hash="f18d38a99b907c9940f75c734b243d31"/><file name="FullcheckoutController.php" hash="f1e4a532cc775a268f0c53120529f1e4"/><dir name="Checkout"><file name="OnepageController.php" hash="c6d7a8e0043064a066194ab76b9e3d9c"/></dir></dir><dir name="Block"><file name="Expercash.php" hash="49799c4503c7ad0f8abeb98d0fc4ea17"/><file name="Form.php" hash="f4289d179cfccb2a97e01f793e31ee77"/><file name="Info.php" hash="ae54106dce146aa50cb58b9a84c1ddb8"/><dir name="Form"><file name="Expercash.php" hash="6e54e89302c484ef1543e4c43f5ab374"/></dir><dir name="Masterpass"><file name="Form.php" hash="400e99712e8360d80d9e61bc464cbb58"/><dir name="Fullcheckout"><file name="Cc.php" hash="f9de0ca7a02a450f0df71553819e0452"/><file name="Shortcut.php" hash="32d53199f349572babd755e8732404c9"/></dir></dir><dir name="Info"><file name="Expercash.php" hash="b2f86b96593a6731283d59292e737b62"/></dir></dir><dir name="etc"><file name="config.xml" hash="5db1f13a42d12439ca6bf39ca505891f"/><file name="system.xml" hash="1433bc2c03ea31e94fabf6a557eb286f"/></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="Expercash_Expercash.xml" hash="e3ab647d614795211758975d8a58bdd7"/></dir></dir></dir></target></contents></package>
|
1 |
<?xml version="1.0"?>
|
2 |
+
<package><name>Expercash</name><version>15.10.26</version><stability>stable</stability><license>OSL3</license><channel>community</channel><extends></extends><summary>E-Payment from ExperCash</summary><description>The ExperCash Magento module allows you to automatically process standard payment methods.</description><notes>Official Expercash extension</notes><authors><author><name>Sebastian Ertner</name><user>sebastianertner</user><email>sebastian.ertner@netresearch.de</email></author></authors><date>2015-10-23</date><time>15:16:20</time><compatible></compatible><dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies><contents><target name="mage"><dir name="doc"><dir name="Expercash_Expercash"><file name="Benutzerdokumentation.pdf" hash="9beef6fb3798ccbd5c36557bf3cd8003"/><file name="ChangeLog.pdf" hash="044524907c741518a1189ee3ee5c2866"/></dir></dir><dir name="skin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="expercash.css" hash="6113641bea3bc89a39672cfd976a2ce7"/></dir><dir name="images"><dir name="expercash"><file name="mp_buy_with_button.png" hash="5ed1fe8cc333e939cfdcdd894e16ef08"/><file name="mp_ident.png" hash="2253e27fe9bfeb20c7289c7dc9cc26ab"/></dir></dir><dir name="js"><file name="expercashopc.js" hash="ff8a0156b04323478e79d3d42d8a1cbf"/></dir></dir></dir></dir></dir><dir name="app"><dir name="locale"><dir name="de_DE"><file name="Expercash_Expercash.csv" hash="3a1d11e3bab24fb9aa9fd5bab33a05cf"/></dir><dir name="en_US"><file name="Expercash_Expercash.csv" hash="08397d083bc51174b54d863c35aa19f1"/></dir></dir><dir name="skin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="expercash"><file name="masterpass.png" hash="988dd21889981f9f765cd920d9e572b1"/></dir></dir></dir></dir></dir></dir><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="expercash"><file name="expercash.phtml" hash="3975416632a3f49154b6b86bbff0bb83"/><file name="expercasherror.phtml" hash="6a4056679aa05d3386de4864d33b2764"/><dir name="checkout"><file name="onepage.phtml" hash="056bbc6d9b779663edd770a2388f0fa7"/><dir name="ce15"><file name="onepage.phtml" hash="73acc169ccebdc9686d39e758e8dbe1b"/></dir><dir name="onepage"><file name="js.phtml" hash="9da0a81649cbcb0212c5a35daacdcded"/></dir></dir><dir name="info"><file name="expercash.phtml" hash="7debefc23e99803112ecc6aa634504e4"/><dir name="pdf"><file name="expercash.phtml" hash="c6be54fed275a07ddd5dffc24b9b3c12"/></dir></dir><dir name="masterpass"><dir name="fullcheckout"><file name="checkout.phtml" hash="872bb6a52b0166d7053bcf0541633eca"/><file name="shortcut.phtml" hash="294692b7e6c576d6b7362f502ec91752"/></dir></dir><dir name="payment"><dir name="masterpass"><file name="cc.phtml" hash="728959a1b3f510006d38fc655c4e8a1f"/></dir><dir name="logo"><file name="logo.phtml" hash="b6b43e823aae87ee66de75ffb715d376"/></dir></dir><dir name="form"><file name="expercashiframe.phtml" hash="3e991b2bb584801d43ff0deb2506d508"/></dir></dir></dir><dir name="layout"><file name="expercash.xml" hash="4705199e041da18aaf2c310830736ba9"/></dir></dir></dir><dir name="rwd"><dir name="default"><dir name="template"><dir name="expercash"><dir name="checkout"><file name="onepage.phtml" hash="1f07267037c504a038219918838e311a"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="expercash"><dir name="info"><file name="expercash.phtml" hash="3d6f29786f0b271b90d8c9b989837f56"/><dir name="pdf"><file name="expercash.phtml" hash="c6be54fed275a07ddd5dffc24b9b3c12"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="code"><dir name="community"><dir name="Expercash"><dir name="Expercash"><dir name="sql"><dir name="expercash_setup"><file name="mysql4-install-1.0.0.php" hash="38c0cd64205e9bbcc1fa2b2a6e3d2a48"/></dir></dir><dir name="Test"><dir name="Controller"><file name="ExpercashControllerTest.php" hash="1882c06d9ea1570dda3ee487273cc71e"/><dir name="ExpercashControllerTest"><dir name="fixtures"><file name="orders.yaml" hash="16fa377e0aa408a83ca300b42295df59"/></dir><dir name="expectations"><file name="orders.yaml" hash="5303d2b0d9fb1b9a91d99bf10cfc98c3"/></dir></dir></dir><dir name="Helper"><file name="DataTest.php" hash="74db3d71d4eebdb34266df21366b383a"/><file name="MasterpassTest.php" hash="a1d6b15c5786143c4d9474458c7c9fe7"/><file name="PaymentTest.php" hash="fa0b8047332cace90dc52b42081b241b"/><dir name="PaymentTest"><dir name="fixtures"><file name="orders.yaml" hash="56a7ac11d5c2bffb3b7cef807b798490"/></dir></dir></dir><dir name="Model"><file name="ConfigTest.php" hash="cd9cf9c1bddde58aa2435fa20540e5f3"/><file name="ExpercashTest.php" hash="c74034a3f66dcb50f6829bf4e726cafc"/><file name="ExpercashccTest.php" hash="7fa68cdd8fb98fbe770212a18eb881b4"/><file name="ExpercashelvTest.php" hash="83685901e621e8209ac9997c2b2e0097"/><file name="ExpercashgpTest.php" hash="df4f7f94db8338bc0e5c16c717fdba6f"/><file name="ExpercashmpTest.php" hash="19b528ec264d9a95c58c595e35a482d0"/><file name="ExpercashmpfTest.php" hash="0781c35fb2065f5a954641f04ea87e6d"/><file name="ExpercashpcTest.php" hash="99f2e5eaea76700ff82d678f349b7c6f"/><file name="ExpercashppTest.php" hash="92e3b211091d6487029c3fd0057b56ae"/><file name="ExpercashsoTest.php" hash="600bf5716950a6de8b11c7c47583b0ea"/><dir name="ExpercashmpfTest"><dir name="fixtures"><file name="quote.yaml" hash="5e08cf2b5ef1c65eae4269d4d9240aee"/></dir></dir><dir name="Api"><file name="AbstractTest.php" hash="9fa3e989d26d2ab5e5c26604eb1084df"/><file name="ApiTest.php" hash="254a3779b78d372cd23e9e7d27fc8cde"/><file name="CaptureTest.php" hash="2633f371d6a4283e95e75d9e4d0f2a6b"/><dir name="ApiTest"><dir name="TestFiles"><file name="FailedTransaction.xml" hash="37851e225e15329588460482e7d78ec8"/><file name="ResponseParamsMissing.xml" hash="71a3977ddc1a2e6468c64ec1d4d27b0f"/><file name="SuccessFullResponse.xml" hash="9534f76edabf6edd8fb066874749882a"/></dir></dir><dir name="CaptureTest"><dir name="fixtures"><file name="orders.yaml" hash="37e75e93a6f658d5fac188f1d0b53d8e"/></dir></dir></dir><dir name="ExpercashpcTest"><dir name="fixtures"><file name="quote.yaml" hash="654b1ea6f862693b1265ff640354dc41"/></dir></dir><dir name="Request"><file name="IframeTest.php" hash="72a12161b78a1ca1fdfca75c15669b49"/><file name="TokenTest.php" hash="235808b49e1d95cd92bcbf2e79ced263"/><dir name="Token"><file name="IframeTest.php" hash="67e7f221b29e4bb51f69ef40bb3590b6"/><dir name="IframeTest"><dir name="fixtures"><file name="order.yaml" hash="012db55a0b44bcd20adabe55b34f1336"/></dir></dir></dir><dir name="TokenTest"><dir name="fixtures"><file name="order.yaml" hash="012db55a0b44bcd20adabe55b34f1336"/></dir></dir><dir name="IframeTest"><dir name="fixtures"><file name="order.yaml" hash="bb7bb8e01994ef4da869aca5abbbd709"/></dir></dir></dir></dir><dir name="Block"><file name="ExpercashTest.php" hash="a164a0542a6fe702ca11593996db17e5"/><dir name="Masterpass"><file name="FormTest.php" hash="50eba5e92488cb1d0a1df039dee04bc3"/><dir name="Fullcheckout"><file name="ShortcutTest.php" hash="57a55b87a6e1520b4080d70ba2e3628c"/></dir></dir><dir name="ExpercashTest"><dir name="fixtures"><file name="orders.yaml" hash="5410ce49a826596a7acd638f8615b74f"/></dir><dir name="expectations"><file name="orders.yaml" hash="a9bd2f7d6df351f28cbfe20837f014d5"/></dir></dir></dir><dir name="var"><dir name="fixtures"><file name="orders.yaml" hash="e34886b7e3379b866a1baf5d8791ee5c"/><file name="quote.yaml" hash="a32028834c19c5b29b1cedcfa6dddf06"/></dir><dir name="expectations"><file name="orders.yaml" hash="5303d2b0d9fb1b9a91d99bf10cfc98c3"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="340e9e3548972cda79b79bcb128ca039"/><file name="Masterpass.php" hash="1e1e618f07f2ff373fa37d038d203612"/><file name="Payment.php" hash="b6f11019c9ebfc682a38d48197052de4"/></dir><dir name="Model"><file name="Config.php" hash="505efd4d4561961446356ea6f58db93a"/><file name="Expercash.php" hash="b0565568a61899837c40ec51132112c3"/><file name="Expercashcc.php" hash="b633a0ee42552c9ded4086954c1af16c"/><file name="Expercashelv.php" hash="a68f9e6e9d0c75fcbf7d6c045390ed66"/><file name="Expercashgp.php" hash="16f9b2145eb48cc343436b98fb8afb78"/><file name="Expercashmp.php" hash="ebda9826d73b1d25f07cd47e2591f8d2"/><file name="Expercashmpf.php" hash="84a2e7a96384274978a6fb7691f57c47"/><file name="Expercashpc.php" hash="752717db870d53bac8f25029d4c3e872"/><file name="Expercashpp.php" hash="413f3e0ada0449a3c2737fb7c8327c7e"/><file name="Expercashso.php" hash="a0803d48640c4a1d76a583aa9e5b0358"/><file name="Observer.php" hash="6f6709225e6e4f51ce84a3ddb99d2e05"/><dir name="Entity"><file name="Setup.php" hash="92e67cfecc9602a4f991350b3955a5bc"/></dir><dir name="Source"><file name="Paymenttypecc.php" hash="7904509a589ba3616b6548ef4e0c3aba"/><file name="Paymenttypeelv.php" hash="18adea86b9a693f3327d7f95b3fff843"/><file name="Paymenttypegp.php" hash="12b0278f54c8831c23c2a612115dec82"/><file name="Paymenttypemp.php" hash="210c923e158840ecc8c1ea242515f01d"/><file name="Paymenttypempf.php" hash="ee36fc7e4b965da64b4f3106957ea336"/><file name="Paymenttypeso.php" hash="cafd1ba2e25a269a3ebcc1e7fbd54d3a"/></dir><dir name="Directory"><file name="Region.php" hash="eac40cbc2fc2faf379d140e4b9813256"/></dir><dir name="Masterpass"><file name="Config.php" hash="c5343c7a0f15b5fe98436a9a2bf80399"/></dir><dir name="Api"><file name="Abstract.php" hash="66edf7a42e50f9066b7b3c70a9dedb4a"/><file name="Api.php" hash="c8a6aa460c70f44cd4b80489bf9c0098"/><file name="Capture.php" hash="22a930d5bd4ce1c1ce63d29cfa638bef"/><dir name="Masterpass"><file name="Capture.php" hash="b14f293a73cb0a3fbd0bbc6fd5f62d2e"/><file name="Epi.php" hash="a4af87a6e8847dd14d963f216cc66eea"/></dir></dir><dir name="Resource"><dir name="Directory"><file name="Region.php" hash="b37149cbdf1b99858ff6c9b4e65fee51"/></dir></dir><dir name="Request"><file name="Iframe.php" hash="9d538a27439397903329734f877b7e3b"/><file name="Token.php" hash="82bb5f16b9b1c8efaf135bd16b78546b"/><dir name="Token"><file name="Iframe.php" hash="8956cd7280a8d0800485b676d1ac8d27"/></dir><dir name="Masterpass"><file name="Epi.php" hash="ed2e6673e99be7ecd9b8027caefaa77f"/></dir></dir></dir><dir name="controllers"><file name="ExpercashController.php" hash="f18d38a99b907c9940f75c734b243d31"/><file name="FullcheckoutController.php" hash="f1e4a532cc775a268f0c53120529f1e4"/><dir name="Checkout"><file name="OnepageController.php" hash="6cb7621c0fdbc8b39e69896ce2af5c29"/></dir></dir><dir name="Block"><file name="Expercash.php" hash="49799c4503c7ad0f8abeb98d0fc4ea17"/><file name="Form.php" hash="f4289d179cfccb2a97e01f793e31ee77"/><file name="Info.php" hash="ae54106dce146aa50cb58b9a84c1ddb8"/><dir name="Form"><file name="Expercash.php" hash="6e54e89302c484ef1543e4c43f5ab374"/></dir><dir name="Masterpass"><file name="Form.php" hash="400e99712e8360d80d9e61bc464cbb58"/><dir name="Fullcheckout"><file name="Cc.php" hash="f9de0ca7a02a450f0df71553819e0452"/><file name="Shortcut.php" hash="32d53199f349572babd755e8732404c9"/></dir></dir><dir name="Info"><file name="Expercash.php" hash="b2f86b96593a6731283d59292e737b62"/></dir></dir><dir name="etc"><file name="config.xml" hash="62b2a5fddc263a795edfaac57bf338eb"/><file name="system.xml" hash="1433bc2c03ea31e94fabf6a557eb286f"/></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="Expercash_Expercash.xml" hash="e3ab647d614795211758975d8a58bdd7"/></dir></dir></dir></target></contents></package>
|