Version Notes
This module will overwrite your system.xml file.
Once you have added this you will need to go to the admin section of your Magento installation:
Magento Admin -> System -> Configuration
Click on "Payment Methods" (on the left)
You should then see "WorldNet TPS (via Payment Page)" appear as a payment method (if not see below). Click on this and select Enabled = "Yes".
Enter the test Currency, Terminal ID and your "Shared Secret". (These details were supplied by WorldNet TPS.)
Change the "New order status" to "Awaiting payment via WorldNet TPS".
Click "Apply" in the top right corner.
N.B. If the module does not appear on the "Payment Methods" page you may have to clear Magento's cache.
To do this go to System -> Cache Management, Change "No Change" to "Refresh" and then save the cache settings.
You must then setup the Receipt page URL in the WorldNet TPS Selfcare system. This should be set to:
"http://www.yoursite.com/index.php/worldnet/standard/successResponse"
Release Info
Developer | Magento Core Team |
Extension | WorldNet_HPP |
Version | 1.2.0 |
Comparing to | |
See all releases |
Version 1.2.0
- app/code/core/Mage/Sales/etc/config.xml +970 -0
- app/code/core/Mage/Worldnet/Block/Standard/Failure.php +62 -0
- app/code/core/Mage/Worldnet/Block/Standard/Form.php +43 -0
- app/code/core/Mage/Worldnet/Block/Standard/Redirect.php +58 -0
- app/code/core/Mage/Worldnet/Helper/Data.php +38 -0
- app/code/core/Mage/Worldnet/Model/Api/Debug.php +41 -0
- app/code/core/Mage/Worldnet/Model/Config.php +185 -0
- app/code/core/Mage/Worldnet/Model/Mysql4/Api/Debug.php +42 -0
- app/code/core/Mage/Worldnet/Model/Mysql4/Api/Debug/Collection.php +41 -0
- app/code/core/Mage/Worldnet/Model/Mysql4/Setup.php +39 -0
- app/code/core/Mage/Worldnet/Model/Session.php +42 -0
- app/code/core/Mage/Worldnet/Model/Source/CurrencyAction.php +49 -0
- app/code/core/Mage/Worldnet/Model/Source/ModeAction.php +48 -0
- app/code/core/Mage/Worldnet/Model/Source/PaymentAction.php +44 -0
- app/code/core/Mage/Worldnet/Model/Standard.php +465 -0
- app/code/core/Mage/Worldnet/controllers/StandardController.php +275 -0
- app/code/core/Mage/Worldnet/etc/config.xml +122 -0
- app/code/core/Mage/Worldnet/etc/system.xml +174 -0
- app/code/core/Mage/Worldnet/nbproject/private/private.properties +5 -0
- app/code/core/Mage/Worldnet/nbproject/private/private.xml +4 -0
- app/code/core/Mage/Worldnet/nbproject/project.properties +6 -0
- app/code/core/Mage/Worldnet/nbproject/project.xml +9 -0
- app/code/core/Mage/Worldnet/sql/worldnet_setup/mysql4-install-0.1.0.php +46 -0
- app/design/default/default/layout/worldnet.xml +43 -0
- app/design/default/default/template/worldnet/standard/failure.phtml +31 -0
- app/design/default/default/template/worldnet/standard/form.phtml +34 -0
- app/design/default/modern/layout/worldnet.xml +43 -0
- app/design/default/modern/template/worldnet/standard/failure.phtml +31 -0
- app/design/default/modern/template/worldnet/standard/form.phtml +34 -0
- app/design/frontend/default/default/layout/worldnet.xml +43 -0
- app/design/frontend/default/default/template/worldnet/standard/failure.phtml +31 -0
- app/design/frontend/default/default/template/worldnet/standard/form.phtml +34 -0
- app/design/frontend/default/modern/layout/worldnet.xml +43 -0
- app/design/frontend/default/modern/template/worldnet/standard/failure.phtml +31 -0
- app/design/frontend/default/modern/template/worldnet/standard/form.phtml +34 -0
- app/etc/modules/Mage_Worldnet.xml +38 -0
- app/locale/en_US/Mage_Worldnet.csv +28 -0
- package.xml +35 -0
@@ -0,0 +1,970 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Magento
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://opensource.org/licenses/afl-3.0.php
|
12 |
+
* If you did not receive a copy of the license and are unable to
|
13 |
+
* obtain it through the world-wide-web, please send an email
|
14 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
+
*
|
16 |
+
* DISCLAIMER
|
17 |
+
*
|
18 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
+
* versions in the future. If you wish to customize Magento for your
|
20 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
+
*
|
22 |
+
* @category Mage
|
23 |
+
* @package Mage_Sales
|
24 |
+
* @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
|
25 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
+
*/
|
27 |
+
-->
|
28 |
+
<config>
|
29 |
+
<modules>
|
30 |
+
<Mage_Sales>
|
31 |
+
<version>0.9.35</version>
|
32 |
+
</Mage_Sales>
|
33 |
+
</modules>
|
34 |
+
<global>
|
35 |
+
<fieldsets>
|
36 |
+
<sales_copy_order>
|
37 |
+
<customer_email><to_edit>*</to_edit></customer_email>
|
38 |
+
<customer_group_id><to_edit>*</to_edit></customer_group_id>
|
39 |
+
</sales_copy_order>
|
40 |
+
<sales_copy_order_billing_address>
|
41 |
+
<prefix><to_order>*</to_order></prefix>
|
42 |
+
<firstname><to_order>*</to_order></firstname>
|
43 |
+
<middlename><to_order>*</to_order></middlename>
|
44 |
+
<lastname><to_order>*</to_order></lastname>
|
45 |
+
<suffix><to_order>*</to_order></suffix>
|
46 |
+
<customer_address_id><to_order>*</to_order></customer_address_id>
|
47 |
+
<company><to_order>*</to_order></company>
|
48 |
+
<street><to_order>*</to_order></street>
|
49 |
+
<city><to_order>*</to_order></city>
|
50 |
+
<region><to_order>*</to_order></region>
|
51 |
+
<postcode><to_order>*</to_order></postcode>
|
52 |
+
<country_id><to_order>*</to_order></country_id>
|
53 |
+
<telephone><to_order>*</to_order></telephone>
|
54 |
+
<fax><to_order>*</to_order></fax>
|
55 |
+
<region_id><to_order>*</to_order></region_id>
|
56 |
+
</sales_copy_order_billing_address>
|
57 |
+
<sales_copy_order_shipping_address>
|
58 |
+
<prefix><to_order>*</to_order></prefix>
|
59 |
+
<firstname><to_order>*</to_order></firstname>
|
60 |
+
<middlename><to_order>*</to_order></middlename>
|
61 |
+
<lastname><to_order>*</to_order></lastname>
|
62 |
+
<suffix><to_order>*</to_order></suffix>
|
63 |
+
<customer_address_id><to_order>*</to_order></customer_address_id>
|
64 |
+
<company><to_order>*</to_order></company>
|
65 |
+
<street><to_order>*</to_order></street>
|
66 |
+
<city><to_order>*</to_order></city>
|
67 |
+
<region><to_order>*</to_order></region>
|
68 |
+
<postcode><to_order>*</to_order></postcode>
|
69 |
+
<country_id><to_order>*</to_order></country_id>
|
70 |
+
<telephone><to_order>*</to_order></telephone>
|
71 |
+
<fax><to_order>*</to_order></fax>
|
72 |
+
<region_id><to_order>*</to_order></region_id>
|
73 |
+
</sales_copy_order_shipping_address>
|
74 |
+
<sales_convert_quote>
|
75 |
+
<remote_ip><to_order>*</to_order></remote_ip>
|
76 |
+
|
77 |
+
<customer_id><to_order>*</to_order></customer_id>
|
78 |
+
<customer_email><to_order>*</to_order></customer_email>
|
79 |
+
<customer_prefix><to_order>*</to_order></customer_prefix>
|
80 |
+
<customer_firstname><to_order>*</to_order></customer_firstname>
|
81 |
+
<customer_middlename><to_order>*</to_order></customer_middlename>
|
82 |
+
<customer_lastname><to_order>*</to_order></customer_lastname>
|
83 |
+
<customer_suffix><to_order>*</to_order></customer_suffix>
|
84 |
+
<customer_group_id><to_order>*</to_order></customer_group_id>
|
85 |
+
<customer_tax_class_id><to_order>*</to_order></customer_tax_class_id>
|
86 |
+
<customer_note><to_order>*</to_order></customer_note>
|
87 |
+
<customer_note_notify><to_order>*</to_order></customer_note_notify>
|
88 |
+
<customer_is_guest><to_order>*</to_order></customer_is_guest>
|
89 |
+
<customer_dob><to_order>*</to_order></customer_dob>
|
90 |
+
<customer_taxvat><to_order>*</to_order></customer_taxvat>
|
91 |
+
|
92 |
+
<global_currency_code><to_order>*</to_order></global_currency_code>
|
93 |
+
<base_currency_code><to_order>*</to_order></base_currency_code>
|
94 |
+
<store_currency_code><to_order>*</to_order></store_currency_code>
|
95 |
+
<quote_currency_code><to_order>order_currency_code</to_order></quote_currency_code>
|
96 |
+
<store_to_base_rate><to_order>*</to_order></store_to_base_rate>
|
97 |
+
<store_to_quote_rate><to_order>store_to_order_rate</to_order></store_to_quote_rate>
|
98 |
+
<base_to_global_rate><to_order>*</to_order></base_to_global_rate>
|
99 |
+
<base_to_quote_rate><to_order>base_to_order_rate</to_order></base_to_quote_rate>
|
100 |
+
|
101 |
+
<coupon_code><to_order>*</to_order></coupon_code>
|
102 |
+
<giftcert_code><to_order>*</to_order></giftcert_code>
|
103 |
+
<is_virtual><to_order>*</to_order></is_virtual>
|
104 |
+
<is_multi_payment><to_order>*</to_order></is_multi_payment>
|
105 |
+
<applied_rule_ids><to_order>*</to_order></applied_rule_ids>
|
106 |
+
</sales_convert_quote>
|
107 |
+
|
108 |
+
<sales_convert_quote_address>
|
109 |
+
<weight><to_order>*</to_order></weight>
|
110 |
+
<shipping_method><to_order>*</to_order></shipping_method>
|
111 |
+
<shipping_description><to_order>*</to_order></shipping_description>
|
112 |
+
<shipping_rate><to_order>*</to_order></shipping_rate>
|
113 |
+
|
114 |
+
<subtotal><to_order>*</to_order></subtotal>
|
115 |
+
<tax_amount><to_order>*</to_order></tax_amount>
|
116 |
+
<tax_string><to_order>*</to_order></tax_string>
|
117 |
+
<discount_amount><to_order>*</to_order></discount_amount>
|
118 |
+
<shipping_amount><to_order>*</to_order></shipping_amount>
|
119 |
+
<shipping_tax_amount><to_order>*</to_order></shipping_tax_amount>
|
120 |
+
<giftcert_amount><to_order>*</to_order></giftcert_amount>
|
121 |
+
<custbalance_amount><to_order>*</to_order></custbalance_amount>
|
122 |
+
<grand_total><to_order>*</to_order></grand_total>
|
123 |
+
|
124 |
+
<base_subtotal><to_order>*</to_order></base_subtotal>
|
125 |
+
<base_tax_amount><to_order>*</to_order></base_tax_amount>
|
126 |
+
<base_discount_amount><to_order>*</to_order></base_discount_amount>
|
127 |
+
<base_shipping_amount><to_order>*</to_order></base_shipping_amount>
|
128 |
+
<base_shipping_tax_amount><to_order>*</to_order></base_shipping_tax_amount>
|
129 |
+
<base_giftcert_amount><to_order>*</to_order></base_giftcert_amount>
|
130 |
+
<base_custbalance_amount><to_order>*</to_order></base_custbalance_amount>
|
131 |
+
<base_grand_total><to_order>*</to_order></base_grand_total>
|
132 |
+
|
133 |
+
<prefix><to_order_address>*</to_order_address><to_customer_address>*</to_customer_address></prefix>
|
134 |
+
<firstname><to_order_address>*</to_order_address><to_customer_address>*</to_customer_address></firstname>
|
135 |
+
<middlename><to_order_address>*</to_order_address><to_customer_address>*</to_customer_address></middlename>
|
136 |
+
<lastname><to_order_address>*</to_order_address><to_customer_address>*</to_customer_address></lastname>
|
137 |
+
<suffix><to_order_address>*</to_order_address><to_customer_address>*</to_customer_address></suffix>
|
138 |
+
<company><to_order_address>*</to_order_address><to_customer_address>*</to_customer_address></company>
|
139 |
+
<street_full><to_order_address>street</to_order_address></street_full>
|
140 |
+
<street><to_customer_address>*</to_customer_address></street><!-- ^^^ ? -->
|
141 |
+
<city><to_order_address>*</to_order_address><to_customer_address>*</to_customer_address></city>
|
142 |
+
<region><to_order_address>*</to_order_address><to_customer_address>*</to_customer_address></region>
|
143 |
+
<region_id><to_order_address>*</to_order_address><to_customer_address>*</to_customer_address></region_id>
|
144 |
+
<postcode><to_order_address>*</to_order_address><to_customer_address>*</to_customer_address></postcode>
|
145 |
+
<country_id><to_order_address>*</to_order_address><to_customer_address>*</to_customer_address></country_id>
|
146 |
+
<telephone><to_order_address>*</to_order_address><to_customer_address>*</to_customer_address></telephone>
|
147 |
+
<fax><to_order_address>*</to_order_address><to_customer_address>*</to_customer_address></fax>
|
148 |
+
<email><to_customer_address>*</to_customer_address></email>
|
149 |
+
</sales_convert_quote_address>
|
150 |
+
|
151 |
+
<sales_convert_quote_payment>
|
152 |
+
<method><to_order_payment>*</to_order_payment></method>
|
153 |
+
<additional_data><to_order_payment>*</to_order_payment></additional_data>
|
154 |
+
<po_number><to_order_payment>*</to_order_payment></po_number>
|
155 |
+
<cc_type><to_order_payment>*</to_order_payment></cc_type>
|
156 |
+
<cc_number_enc><to_order_payment>*</to_order_payment></cc_number_enc>
|
157 |
+
<cc_last4><to_order_payment>*</to_order_payment></cc_last4>
|
158 |
+
<cc_owner><to_order_payment>*</to_order_payment></cc_owner>
|
159 |
+
<cc_exp_month><to_order_payment>*</to_order_payment></cc_exp_month>
|
160 |
+
<cc_exp_year><to_order_payment>*</to_order_payment></cc_exp_year>
|
161 |
+
|
162 |
+
<cc_number><to_order_payment>*</to_order_payment></cc_number>
|
163 |
+
<cc_cid><to_order_payment>*</to_order_payment></cc_cid>
|
164 |
+
|
165 |
+
<cc_ss_issue><to_order_payment>*</to_order_payment></cc_ss_issue>
|
166 |
+
<cc_ss_start_month><to_order_payment>*</to_order_payment></cc_ss_start_month>
|
167 |
+
<cc_ss_start_year><to_order_payment>*</to_order_payment></cc_ss_start_year>
|
168 |
+
</sales_convert_quote_payment>
|
169 |
+
|
170 |
+
<sales_convert_quote_item>
|
171 |
+
<sku><to_order_item>*</to_order_item></sku>
|
172 |
+
<name><to_order_item>*</to_order_item></name>
|
173 |
+
<description><to_order_item>*</to_order_item></description>
|
174 |
+
<weight><to_order_item>*</to_order_item></weight>
|
175 |
+
<is_qty_decimal><to_order_item>*</to_order_item></is_qty_decimal>
|
176 |
+
<qty><to_order_item>qty_ordered</to_order_item></qty>
|
177 |
+
<is_virtual><to_order_item>*</to_order_item></is_virtual>
|
178 |
+
<original_price><to_order_item>*</to_order_item></original_price>
|
179 |
+
<applied_rule_ids><to_order_item>*</to_order_item></applied_rule_ids>
|
180 |
+
<additional_data><to_order_item>*</to_order_item></additional_data>
|
181 |
+
<calculation_price><to_order_item>price</to_order_item></calculation_price>
|
182 |
+
<base_calculation_price><to_order_item>base_price</to_order_item></base_calculation_price>
|
183 |
+
<tax_percent><to_order_item>*</to_order_item></tax_percent>
|
184 |
+
<tax_amount><to_order_item>*</to_order_item></tax_amount>
|
185 |
+
<tax_before_discount><to_order_item>*</to_order_item></tax_before_discount>
|
186 |
+
<base_tax_before_discount><to_order_item>*</to_order_item></base_tax_before_discount>
|
187 |
+
<tax_string><to_order_item>*</to_order_item></tax_string>
|
188 |
+
<row_weight><to_order_item>*</to_order_item></row_weight>
|
189 |
+
<row_total><to_order_item>*</to_order_item></row_total>
|
190 |
+
<price><to_order_item>base_original_price</to_order_item></price>
|
191 |
+
<base_tax_amount><to_order_item>*</to_order_item></base_tax_amount>
|
192 |
+
<base_row_total><to_order_item>*</to_order_item></base_row_total>
|
193 |
+
<discount_percent><to_order_item_discount>*</to_order_item_discount></discount_percent>
|
194 |
+
<discount_amount><to_order_item_discount>*</to_order_item_discount></discount_amount>
|
195 |
+
<base_discount_amount><to_order_item_discount>*</to_order_item_discount></base_discount_amount>
|
196 |
+
</sales_convert_quote_item>
|
197 |
+
|
198 |
+
<sales_convert_order>
|
199 |
+
<customer_id><to_quote>*</to_quote></customer_id>
|
200 |
+
<customer_email><to_quote>*</to_quote></customer_email>
|
201 |
+
<customer_group_id><to_quote>*</to_quote></customer_group_id>
|
202 |
+
<customer_tax_class_id><to_quote>*</to_quote></customer_tax_class_id>
|
203 |
+
<customer_taxvat><to_quote>*</to_quote></customer_taxvat>
|
204 |
+
|
205 |
+
<customer_note><to_quote>*</to_quote></customer_note>
|
206 |
+
<customer_note_notify><to_quote>*</to_quote></customer_note_notify>
|
207 |
+
<customer_is_guest><to_quote>*</to_quote></customer_is_guest>
|
208 |
+
|
209 |
+
<global_currency_code><to_quote>*</to_quote><to_invoice>*</to_invoice><to_shipment>*</to_shipment><to_cm>*</to_cm></global_currency_code>
|
210 |
+
<base_currency_code><to_quote>*</to_quote><to_invoice>*</to_invoice><to_shipment>*</to_shipment><to_cm>*</to_cm></base_currency_code>
|
211 |
+
<store_currency_code><to_quote>*</to_quote><to_invoice>*</to_invoice><to_shipment>*</to_shipment><to_cm>*</to_cm></store_currency_code>
|
212 |
+
<order_currency_code><to_quote>quote_currency_code</to_quote><to_invoice>*</to_invoice><to_shipment>*</to_shipment><to_cm>*</to_cm></order_currency_code>
|
213 |
+
<store_to_base_rate><to_quote>*</to_quote><to_invoice>*</to_invoice><to_shipment>*</to_shipment><to_cm>*</to_cm></store_to_base_rate>
|
214 |
+
<store_to_order_rate><to_quote>store_to_quote_rate</to_quote><to_invoice>*</to_invoice><to_shipment>*</to_shipment><to_cm>*</to_cm></store_to_order_rate>
|
215 |
+
<base_to_global_rate><to_quote>*</to_quote><to_invoice>*</to_invoice><to_shipment>*</to_shipment><to_cm>*</to_cm></base_to_global_rate>
|
216 |
+
<base_to_order_rate><to_quote>base_to_quote_rate</to_quote><to_invoice>*</to_invoice><to_shipment>*</to_shipment><to_cm>*</to_cm></base_to_order_rate>
|
217 |
+
|
218 |
+
<grand_total><to_quote>*</to_quote><to_quote_address_shipping>*</to_quote_address_shipping></grand_total>
|
219 |
+
<base_grand_total><to_quote>*</to_quote><to_quote_address_shipping>*</to_quote_address_shipping></base_grand_total>
|
220 |
+
|
221 |
+
<coupon_code><to_quote>*</to_quote></coupon_code>
|
222 |
+
<giftcert_code><to_quote>*</to_quote></giftcert_code>
|
223 |
+
<applied_rule_ids><to_quote>*</to_quote></applied_rule_ids>
|
224 |
+
|
225 |
+
<weight><to_quote_address_shipping>*</to_quote_address_shipping></weight>
|
226 |
+
<shipping_method><to_quote_address_shipping>*</to_quote_address_shipping></shipping_method>
|
227 |
+
<shipping_description><to_quote_address_shipping>*</to_quote_address_shipping></shipping_description>
|
228 |
+
<shipping_rate><to_quote_address_shipping>*</to_quote_address_shipping></shipping_rate>
|
229 |
+
|
230 |
+
<subtotal><to_quote_address_shipping>*</to_quote_address_shipping></subtotal>
|
231 |
+
<tax_amount><to_quote_address_shipping>*</to_quote_address_shipping></tax_amount>
|
232 |
+
<tax_string><to_quote_address_shipping>*</to_quote_address_shipping></tax_string>
|
233 |
+
<discount_amount><to_quote_address_shipping>*</to_quote_address_shipping></discount_amount>
|
234 |
+
<shipping_amount><to_quote_address_shipping>*</to_quote_address_shipping></shipping_amount>
|
235 |
+
<giftcert_amount><to_quote_address_shipping>*</to_quote_address_shipping></giftcert_amount>
|
236 |
+
<custbalance_amount><to_quote_address_shipping>*</to_quote_address_shipping></custbalance_amount>
|
237 |
+
|
238 |
+
<base_subtotal><to_quote_address_shipping>*</to_quote_address_shipping></base_subtotal>
|
239 |
+
<base_tax_amount><to_quote_address_shipping>*</to_quote_address_shipping></base_tax_amount>
|
240 |
+
<base_discount_amount><to_quote_address_shipping>*</to_quote_address_shipping></base_discount_amount>
|
241 |
+
<base_shipping_amount><to_quote_address_shipping>*</to_quote_address_shipping></base_shipping_amount>
|
242 |
+
<base_giftcert_amount><to_quote_address_shipping>*</to_quote_address_shipping></base_giftcert_amount>
|
243 |
+
<base_custbalance_amount><to_quote_address_shipping>*</to_quote_address_shipping></base_custbalance_amount>
|
244 |
+
|
245 |
+
<shipping_tax_amount><to_cm>*</to_cm></shipping_tax_amount>
|
246 |
+
<base_shipping_tax_amount><to_cm>*</to_cm></base_shipping_tax_amount>
|
247 |
+
|
248 |
+
</sales_convert_order>
|
249 |
+
|
250 |
+
<sales_convert_order_address>
|
251 |
+
<prefix><to_quote_address>*</to_quote_address></prefix>
|
252 |
+
<firstname><to_quote_address>*</to_quote_address></firstname>
|
253 |
+
<middlename><to_quote_address>*</to_quote_address></middlename>
|
254 |
+
<lastname><to_quote_address>*</to_quote_address></lastname>
|
255 |
+
<suffix><to_quote_address>*</to_quote_address></suffix>
|
256 |
+
<company><to_quote_address>*</to_quote_address></company>
|
257 |
+
<street_full><to_quote_address>street</to_quote_address></street_full>
|
258 |
+
<city><to_quote_address>*</to_quote_address></city>
|
259 |
+
<region><to_quote_address>*</to_quote_address></region>
|
260 |
+
<region_id><to_quote_address>*</to_quote_address></region_id>
|
261 |
+
<postcode><to_quote_address>*</to_quote_address></postcode>
|
262 |
+
<country_id><to_quote_address>*</to_quote_address></country_id>
|
263 |
+
<telephone><to_quote_address>*</to_quote_address></telephone>
|
264 |
+
<fax><to_quote_address>*</to_quote_address></fax>
|
265 |
+
</sales_convert_order_address>
|
266 |
+
|
267 |
+
<sales_convert_order_payment>
|
268 |
+
<method><to_quote_payment>*</to_quote_payment></method>
|
269 |
+
<additional_data><to_quote_payment>*</to_quote_payment></additional_data>
|
270 |
+
<po_number><to_quote_payment>*</to_quote_payment></po_number>
|
271 |
+
<cc_type><to_quote_payment>*</to_quote_payment></cc_type>
|
272 |
+
<cc_number_enc><to_quote_payment>*</to_quote_payment></cc_number_enc>
|
273 |
+
<cc_last4><to_quote_payment>*</to_quote_payment></cc_last4>
|
274 |
+
<cc_owner><to_quote_payment>*</to_quote_payment></cc_owner>
|
275 |
+
<cc_exp_month><to_quote_payment>*</to_quote_payment></cc_exp_month>
|
276 |
+
<cc_exp_year><to_quote_payment>*</to_quote_payment></cc_exp_year>
|
277 |
+
|
278 |
+
<cc_ss_issue><to_quote_payment>*</to_quote_payment></cc_ss_issue>
|
279 |
+
<cc_ss_start_month><to_quote_payment>*</to_quote_payment></cc_ss_start_month>
|
280 |
+
<cc_ss_start_year><to_quote_payment>*</to_quote_payment></cc_ss_start_year>
|
281 |
+
</sales_convert_order_payment>
|
282 |
+
|
283 |
+
<sales_convert_order_item>
|
284 |
+
<sku><to_quote_item>*</to_quote_item><to_invoice_item>*</to_invoice_item><to_shipment_item>*</to_shipment_item><to_cm_item>*</to_cm_item></sku>
|
285 |
+
<name><to_quote_item>*</to_quote_item><to_invoice_item>*</to_invoice_item><to_shipment_item>*</to_shipment_item><to_cm_item>*</to_cm_item></name>
|
286 |
+
<description><to_quote_item>*</to_quote_item><to_invoice_item>*</to_invoice_item><to_shipment_item>*</to_shipment_item><to_cm_item>*</to_cm_item></description>
|
287 |
+
<weight><to_quote_item>*</to_quote_item><to_shipment_item>*</to_shipment_item></weight>
|
288 |
+
<price><to_quote_item>custom_price</to_quote_item><to_invoice_item>*</to_invoice_item><to_shipment_item>*</to_shipment_item><to_cm_item>*</to_cm_item></price>
|
289 |
+
<discount_percent><to_quote_item_discount>*</to_quote_item_discount></discount_percent>
|
290 |
+
<discount_amount><to_quote_item_discount>*</to_quote_item_discount></discount_amount>
|
291 |
+
<tax_percent><to_quote_item>*</to_quote_item></tax_percent>
|
292 |
+
<tax_string><to_quote_item>*</to_quote_item></tax_string>
|
293 |
+
<tax_amount><to_quote_item>*</to_quote_item></tax_amount>
|
294 |
+
<row_weight><to_quote_item>*</to_quote_item></row_weight>
|
295 |
+
<row_total><to_quote_item>*</to_quote_item></row_total>
|
296 |
+
<applied_rule_ids><to_quote_item>*</to_quote_item></applied_rule_ids>
|
297 |
+
|
298 |
+
<base_discount_amount><to_quote_item_discount>*</to_quote_item_discount></base_discount_amount>
|
299 |
+
<base_tax_amount><to_quote_item>*</to_quote_item></base_tax_amount>
|
300 |
+
<base_row_total><to_quote_item>*</to_quote_item></base_row_total>
|
301 |
+
|
302 |
+
<base_price><to_invoice_item>base_price</to_invoice_item><to_shipment_item>*</to_shipment_item><to_cm_item>*</to_cm_item></base_price>
|
303 |
+
<cost><to_invoice_item>cost</to_invoice_item><to_cm_item>*</to_cm_item></cost>
|
304 |
+
</sales_convert_order_item>
|
305 |
+
|
306 |
+
<customer_account>
|
307 |
+
<id><to_quote>customer_id</to_quote></id>
|
308 |
+
<email><to_quote>customer_email</to_quote></email>
|
309 |
+
<prefix><to_quote>customer_prefix</to_quote></prefix>
|
310 |
+
<firstname><to_quote>customer_firstname</to_quote></firstname>
|
311 |
+
<middlename><to_quote>customer_middlename</to_quote></middlename>
|
312 |
+
<lastname><to_quote>customer_lastname</to_quote></lastname>
|
313 |
+
<suffix><to_quote>customer_suffix</to_quote></suffix>
|
314 |
+
<group_id><to_quote>customer_group_id</to_quote></group_id>
|
315 |
+
<tax_class_id><to_quote>customer_tax_class_id</to_quote></tax_class_id>
|
316 |
+
<taxvat><to_quote>customer_taxvat</to_quote></taxvat>
|
317 |
+
<dob><to_quote>customer_dob</to_quote></dob>
|
318 |
+
</customer_account>
|
319 |
+
|
320 |
+
<customer_address>
|
321 |
+
<id><to_quote_address>customer_address_id</to_quote_address></id>
|
322 |
+
<parent_id><to_quote_address>customer_id</to_quote_address></parent_id>
|
323 |
+
<prefix><to_quote_address>*</to_quote_address></prefix>
|
324 |
+
<firstname><to_quote_address>*</to_quote_address></firstname>
|
325 |
+
<middlename><to_quote_address>*</to_quote_address></middlename>
|
326 |
+
<lastname><to_quote_address>*</to_quote_address></lastname>
|
327 |
+
<suffix><to_quote_address>*</to_quote_address></suffix>
|
328 |
+
<!--<email><to_quote_address>*</to_quote_address></email>-->
|
329 |
+
<company><to_quote_address>*</to_quote_address></company>
|
330 |
+
<street_full><to_quote_address>street</to_quote_address></street_full>
|
331 |
+
<city><to_quote_address>*</to_quote_address></city>
|
332 |
+
<region><to_quote_address>*</to_quote_address></region>
|
333 |
+
<region_id><to_quote_address>*</to_quote_address></region_id>
|
334 |
+
<postcode><to_quote_address>*</to_quote_address></postcode>
|
335 |
+
<country_id><to_quote_address>*</to_quote_address></country_id>
|
336 |
+
<telephone><to_quote_address>*</to_quote_address></telephone>
|
337 |
+
<fax><to_quote_address>*</to_quote_address></fax>
|
338 |
+
</customer_address>
|
339 |
+
</fieldsets>
|
340 |
+
|
341 |
+
<models>
|
342 |
+
<sales>
|
343 |
+
<class>Mage_Sales_Model</class>
|
344 |
+
<resourceModel>sales_mysql4</resourceModel>
|
345 |
+
</sales>
|
346 |
+
<sales_mysql4>
|
347 |
+
<class>Mage_Sales_Model_Mysql4</class>
|
348 |
+
<entities>
|
349 |
+
<quote><table>sales_flat_quote</table></quote>
|
350 |
+
<quote_item><table>sales_flat_quote_item</table></quote_item>
|
351 |
+
<quote_address><table>sales_flat_quote_address</table></quote_address>
|
352 |
+
<quote_address_item><table>sales_flat_quote_address_item</table></quote_address_item>
|
353 |
+
<quote_item_option><table>sales_flat_quote_item_option</table></quote_item_option>
|
354 |
+
<quote_payment><table>sales_flat_quote_payment</table></quote_payment>
|
355 |
+
<quote_address_shipping_rate><table>sales_flat_quote_shipping_rate</table></quote_address_shipping_rate>
|
356 |
+
|
357 |
+
<order><table>sales_order</table></order>
|
358 |
+
<order_tax><table>sales_order_tax</table></order_tax>
|
359 |
+
<order_item><table>sales_flat_order_item</table></order_item>
|
360 |
+
<order_item_option><table>sales_flat_order_item_option</table></order_item_option>
|
361 |
+
<order_entity><table>sales_order_entity</table></order_entity>
|
362 |
+
<!--order></order>
|
363 |
+
|
364 |
+
<invoice></invoice>
|
365 |
+
|
366 |
+
<shipment></shipment>
|
367 |
+
|
368 |
+
<creditmemo></creditmemo-->
|
369 |
+
</entities>
|
370 |
+
</sales_mysql4>
|
371 |
+
<sales_entity>
|
372 |
+
<class>Mage_Sales_Model_Entity</class>
|
373 |
+
<entities>
|
374 |
+
<quote><table>sales_quote</table></quote>
|
375 |
+
<quote_address><table>sales_quote_address</table></quote_address>
|
376 |
+
<quote_item><table>sales_quote_item</table></quote_item>
|
377 |
+
<quote_entity><table>sales_quote_entity</table></quote_entity>
|
378 |
+
<quote_temp><table>sales_quote_temp</table></quote_temp>
|
379 |
+
<order><table>sales_order</table></order>
|
380 |
+
<order_entity><table>sales_order_entity</table></order_entity>
|
381 |
+
</entities>
|
382 |
+
</sales_entity>
|
383 |
+
</models>
|
384 |
+
<template>
|
385 |
+
<email>
|
386 |
+
<sales_email_order_template translate="label" module="sales">
|
387 |
+
<label>New Order</label>
|
388 |
+
<file>sales/order_new.html</file>
|
389 |
+
<type>html</type>
|
390 |
+
</sales_email_order_template>
|
391 |
+
<sales_email_order_guest_template translate="label" module="sales">
|
392 |
+
<label>New Order for Guest</label>
|
393 |
+
<file>sales/order_new_guest.html</file>
|
394 |
+
<type>html</type>
|
395 |
+
</sales_email_order_guest_template>
|
396 |
+
<sales_email_order_comment_template translate="label" module="sales">
|
397 |
+
<label>Order Update</label>
|
398 |
+
<file>sales/order_update.html</file>
|
399 |
+
<type>html</type>
|
400 |
+
</sales_email_order_comment_template>
|
401 |
+
<sales_email_order_comment_guest_template translate="label" module="sales">
|
402 |
+
<label>Order Update for Guest</label>
|
403 |
+
<file>sales/order_update_guest.html</file>
|
404 |
+
<type>html</type>
|
405 |
+
</sales_email_order_comment_guest_template>
|
406 |
+
<sales_email_invoice_template translate="label" module="sales">
|
407 |
+
<label>New Invoice</label>
|
408 |
+
<file>sales/invoice_new.html</file>
|
409 |
+
<type>html</type>
|
410 |
+
</sales_email_invoice_template>
|
411 |
+
<sales_email_invoice_guest_template translate="label" module="sales">
|
412 |
+
<label>New Invoice for Guest</label>
|
413 |
+
<file>sales/invoice_new_guest.html</file>
|
414 |
+
<type>html</type>
|
415 |
+
</sales_email_invoice_guest_template>
|
416 |
+
<sales_email_invoice_comment_template translate="label" module="sales">
|
417 |
+
<label>Invoice Update</label>
|
418 |
+
<file>sales/invoice_update.html</file>
|
419 |
+
<type>html</type>
|
420 |
+
</sales_email_invoice_comment_template>
|
421 |
+
<sales_email_invoice_comment_guest_template translate="label" module="sales">
|
422 |
+
<label>Invoice Update for Guest</label>
|
423 |
+
<file>sales/invoice_update_guest.html</file>
|
424 |
+
<type>html</type>
|
425 |
+
</sales_email_invoice_comment_guest_template>
|
426 |
+
<sales_email_creditmemo_template translate="label" module="sales">
|
427 |
+
<label>New Credit Memo</label>
|
428 |
+
<file>sales/creditmemo_new.html</file>
|
429 |
+
<type>html</type>
|
430 |
+
</sales_email_creditmemo_template>
|
431 |
+
<sales_email_creditmemo_guest_template translate="label" module="sales">
|
432 |
+
<label>New Credit Memo for Guest</label>
|
433 |
+
<file>sales/creditmemo_new_guest.html</file>
|
434 |
+
<type>html</type>
|
435 |
+
</sales_email_creditmemo_guest_template>
|
436 |
+
<sales_email_creditmemo_comment_template translate="label" module="sales">
|
437 |
+
<label>Credit Memo Update</label>
|
438 |
+
<file>sales/creditmemo_update.html</file>
|
439 |
+
<type>html</type>
|
440 |
+
</sales_email_creditmemo_comment_template>
|
441 |
+
<sales_email_creditmemo_comment_guest_template translate="label" module="sales">
|
442 |
+
<label>Credit Memo Update for Guest</label>
|
443 |
+
<file>sales/creditmemo_update_guest.html</file>
|
444 |
+
<type>html</type>
|
445 |
+
</sales_email_creditmemo_comment_guest_template>
|
446 |
+
<sales_email_shipment_template translate="label" module="sales">
|
447 |
+
<label>New Shipment</label>
|
448 |
+
<file>sales/shipment_new.html</file>
|
449 |
+
<type>html</type>
|
450 |
+
</sales_email_shipment_template>
|
451 |
+
<sales_email_shipment_guest_template translate="label" module="sales">
|
452 |
+
<label>New Shipment for Guest</label>
|
453 |
+
<file>sales/shipment_new_guest.html</file>
|
454 |
+
<type>html</type>
|
455 |
+
</sales_email_shipment_guest_template>
|
456 |
+
<sales_email_shipment_comment_template translate="label" module="sales">
|
457 |
+
<label>Shipment Update</label>
|
458 |
+
<file>sales/shipment_update.html</file>
|
459 |
+
<type>html</type>
|
460 |
+
</sales_email_shipment_comment_template>
|
461 |
+
<sales_email_shipment_comment_guest_template translate="label" module="sales">
|
462 |
+
<label>Shipment Update for Guest</label>
|
463 |
+
<file>sales/shipment_update_guest.html</file>
|
464 |
+
<type>html</type>
|
465 |
+
</sales_email_shipment_comment_guest_template>
|
466 |
+
</email>
|
467 |
+
</template>
|
468 |
+
<resources>
|
469 |
+
<sales_setup>
|
470 |
+
<setup>
|
471 |
+
<module>Mage_Sales</module>
|
472 |
+
<class>Mage_Sales_Model_Mysql4_Setup</class>
|
473 |
+
</setup>
|
474 |
+
<connection><use>core_setup</use></connection>
|
475 |
+
</sales_setup>
|
476 |
+
<sales_write>
|
477 |
+
<connection><use>core_write</use></connection>
|
478 |
+
</sales_write>
|
479 |
+
<sales_read>
|
480 |
+
<connection><use>core_read</use></connection>
|
481 |
+
</sales_read>
|
482 |
+
</resources>
|
483 |
+
<blocks>
|
484 |
+
<sales><class>Mage_Sales_Block</class></sales>
|
485 |
+
</blocks>
|
486 |
+
<catalog>
|
487 |
+
<product>
|
488 |
+
<flat>
|
489 |
+
<attribute_nodes>
|
490 |
+
<sales_quote_item_product_collection>global/sales/quote/item/product_attributes</sales_quote_item_product_collection>
|
491 |
+
</attribute_nodes>
|
492 |
+
</flat>
|
493 |
+
</product>
|
494 |
+
</catalog>
|
495 |
+
<sales>
|
496 |
+
<quote>
|
497 |
+
<totals>
|
498 |
+
<subtotal>
|
499 |
+
<class>sales/quote_address_total_subtotal</class>
|
500 |
+
<before>grand_total</before>
|
501 |
+
</subtotal>
|
502 |
+
<discount>
|
503 |
+
<class>sales/quote_address_total_discount</class>
|
504 |
+
<after>subtotal</after>
|
505 |
+
<before>grand_total,shipping</before>
|
506 |
+
</discount>
|
507 |
+
<shipping>
|
508 |
+
<class>sales/quote_address_total_shipping</class>
|
509 |
+
<after>subtotal,discount</after>
|
510 |
+
<before>grand_total</before>
|
511 |
+
</shipping>
|
512 |
+
<tax>
|
513 |
+
<class>sales/quote_address_total_tax</class>
|
514 |
+
<after>subtotal,shipping</after>
|
515 |
+
<before>grand_total</before>
|
516 |
+
<renderer>checkout/total_tax</renderer>
|
517 |
+
<admin_renderer>adminhtml/sales_order_create_totals_tax</admin_renderer>
|
518 |
+
</tax>
|
519 |
+
<grand_total>
|
520 |
+
<class>sales/quote_address_total_grand</class>
|
521 |
+
<after>subtotal</after>
|
522 |
+
</grand_total>
|
523 |
+
</totals>
|
524 |
+
<item>
|
525 |
+
<product_attributes>
|
526 |
+
<sku/>
|
527 |
+
<type_id/>
|
528 |
+
<name/>
|
529 |
+
<status/>
|
530 |
+
<visibility/>
|
531 |
+
<price/>
|
532 |
+
<weight/>
|
533 |
+
<url_path/>
|
534 |
+
<url_key/>
|
535 |
+
<thumbnail/>
|
536 |
+
<small_image/>
|
537 |
+
<tax_class_id/>
|
538 |
+
<special_from_date/>
|
539 |
+
<special_to_date/>
|
540 |
+
<special_price/>
|
541 |
+
</product_attributes>
|
542 |
+
</item>
|
543 |
+
</quote>
|
544 |
+
<order>
|
545 |
+
<statuses>
|
546 |
+
<pending translate="label"><label>Pending</label></pending>
|
547 |
+
<pending_paypal translate="label"><label>Pending PayPal</label></pending_paypal>
|
548 |
+
<pending_worldnet translate="label"><label>Awaiting payment via WorldNet TPS</label></pending_worldnet>
|
549 |
+
<paid_worldnet translate="label"><label>Paid online</label></paid_worldnet>
|
550 |
+
<processing translate="label"><label>Processing</label></processing>
|
551 |
+
<holded translate="label"><label>On Hold</label></holded>
|
552 |
+
<complete translate="label"><label>Complete</label></complete>
|
553 |
+
<closed translate="label"><label>Closed</label></closed>
|
554 |
+
<canceled translate="label"><label>Canceled</label></canceled>
|
555 |
+
</statuses>
|
556 |
+
<states>
|
557 |
+
<new translate="label">
|
558 |
+
<label>New</label>
|
559 |
+
<statuses>
|
560 |
+
<pending_worldnet/>
|
561 |
+
<paid_worldnet/>
|
562 |
+
<pending/>
|
563 |
+
<processing/>
|
564 |
+
<holded/>
|
565 |
+
<complete/>
|
566 |
+
<canceled/>
|
567 |
+
</statuses>
|
568 |
+
<visible_on_front/>
|
569 |
+
</new>
|
570 |
+
<pending_payment translate="label">
|
571 |
+
<label>Pending Payment</label>
|
572 |
+
<statuses>
|
573 |
+
<pending_paypal/>
|
574 |
+
</statuses>
|
575 |
+
</pending_payment>
|
576 |
+
<pending_worldnet translate="label">
|
577 |
+
<label>Pending payment</label>
|
578 |
+
<statuses>
|
579 |
+
<pending_worldnet/>
|
580 |
+
</statuses>
|
581 |
+
</pending_worldnet>
|
582 |
+
<paid_worldnet translate="label">
|
583 |
+
<label>Paid online</label>
|
584 |
+
<statuses>
|
585 |
+
<paid_worldnet/>
|
586 |
+
</statuses>
|
587 |
+
</paid_worldnet>
|
588 |
+
<processing translate="label">
|
589 |
+
<label>Processing</label>
|
590 |
+
<statuses>
|
591 |
+
<processing/>
|
592 |
+
</statuses>
|
593 |
+
<visible_on_front/>
|
594 |
+
</processing>
|
595 |
+
<complete translate="label">
|
596 |
+
<label>Complete</label>
|
597 |
+
<statuses>
|
598 |
+
<complete/>
|
599 |
+
</statuses>
|
600 |
+
<visible_on_front/>
|
601 |
+
</complete>
|
602 |
+
<closed translate="label">
|
603 |
+
<label>Closed</label>
|
604 |
+
<statuses>
|
605 |
+
<closed/>
|
606 |
+
</statuses>
|
607 |
+
<visible_on_front/>
|
608 |
+
</closed>
|
609 |
+
<canceled translate="label">
|
610 |
+
<label>Canceled</label>
|
611 |
+
<statuses>
|
612 |
+
<canceled/>
|
613 |
+
</statuses>
|
614 |
+
<visible_on_front/>
|
615 |
+
</canceled>
|
616 |
+
<holded translate="label">
|
617 |
+
<label>On Hold</label>
|
618 |
+
<statuses>
|
619 |
+
<holded/>
|
620 |
+
</statuses>
|
621 |
+
<visible_on_front/>
|
622 |
+
</holded>
|
623 |
+
</states>
|
624 |
+
</order>
|
625 |
+
<order_invoice>
|
626 |
+
<totals>
|
627 |
+
<subtotal>
|
628 |
+
<class>sales/order_invoice_total_subtotal</class>
|
629 |
+
</subtotal>
|
630 |
+
<discount>
|
631 |
+
<class>sales/order_invoice_total_discount</class>
|
632 |
+
</discount>
|
633 |
+
<shipping>
|
634 |
+
<class>sales/order_invoice_total_shipping</class>
|
635 |
+
</shipping>
|
636 |
+
<tax>
|
637 |
+
<class>sales/order_invoice_total_tax</class>
|
638 |
+
</tax>
|
639 |
+
<grand_total>
|
640 |
+
<class>sales/order_invoice_total_grand</class>
|
641 |
+
</grand_total>
|
642 |
+
</totals>
|
643 |
+
</order_invoice>
|
644 |
+
<order_creditmemo>
|
645 |
+
<totals>
|
646 |
+
<subtotal>
|
647 |
+
<class>sales/order_creditmemo_total_subtotal</class>
|
648 |
+
</subtotal>
|
649 |
+
<tax>
|
650 |
+
<class>sales/order_creditmemo_total_tax</class>
|
651 |
+
</tax>
|
652 |
+
<discount>
|
653 |
+
<class>sales/order_creditmemo_total_discount</class>
|
654 |
+
</discount>
|
655 |
+
<grand_total>
|
656 |
+
<class>sales/order_creditmemo_total_grand</class>
|
657 |
+
</grand_total>
|
658 |
+
</totals>
|
659 |
+
</order_creditmemo>
|
660 |
+
</sales>
|
661 |
+
<pdf>
|
662 |
+
<invoice>
|
663 |
+
<default>sales/order_pdf_items_invoice_default</default>
|
664 |
+
<grouped>sales/order_pdf_items_invoice_grouped</grouped>
|
665 |
+
</invoice>
|
666 |
+
<shipment>
|
667 |
+
<default>sales/order_pdf_items_shipment_default</default>
|
668 |
+
</shipment>
|
669 |
+
<creditmemo>
|
670 |
+
<default>sales/order_pdf_items_creditmemo_default</default>
|
671 |
+
<grouped>sales/order_pdf_items_creditmemo_grouped</grouped>
|
672 |
+
</creditmemo>
|
673 |
+
</pdf>
|
674 |
+
</global>
|
675 |
+
|
676 |
+
<frontend>
|
677 |
+
<secure_url>
|
678 |
+
<sales>/sales/</sales>
|
679 |
+
</secure_url>
|
680 |
+
<routers>
|
681 |
+
<sales>
|
682 |
+
<use>standard</use>
|
683 |
+
<args>
|
684 |
+
<module>Mage_Sales</module>
|
685 |
+
<frontName>sales</frontName>
|
686 |
+
</args>
|
687 |
+
</sales>
|
688 |
+
</routers>
|
689 |
+
<translate>
|
690 |
+
<modules>
|
691 |
+
<Mage_Sales>
|
692 |
+
<files>
|
693 |
+
<default>Mage_Sales.csv</default>
|
694 |
+
</files>
|
695 |
+
</Mage_Sales>
|
696 |
+
</modules>
|
697 |
+
</translate>
|
698 |
+
<layout>
|
699 |
+
<updates>
|
700 |
+
<sales module="Mage_Sales">
|
701 |
+
<file>sales.xml</file>
|
702 |
+
</sales>
|
703 |
+
</updates>
|
704 |
+
</layout>
|
705 |
+
</frontend>
|
706 |
+
<adminhtml>
|
707 |
+
<menu>
|
708 |
+
<sales translate="title" module="sales">
|
709 |
+
<title>Sales</title>
|
710 |
+
<sort_order>20</sort_order>
|
711 |
+
<depends><module>Mage_Sales</module></depends>
|
712 |
+
<children>
|
713 |
+
<order translate="title" module="sales">
|
714 |
+
<title>Orders</title>
|
715 |
+
<action>adminhtml/sales_order</action>
|
716 |
+
<sort_order>10</sort_order>
|
717 |
+
</order>
|
718 |
+
<invoice translate="title" module="sales">
|
719 |
+
<title>Invoices</title>
|
720 |
+
<action>adminhtml/sales_invoice</action>
|
721 |
+
<sort_order>20</sort_order>
|
722 |
+
</invoice>
|
723 |
+
<shipment translate="title" module="sales">
|
724 |
+
<title>Shipments</title>
|
725 |
+
<action>adminhtml/sales_shipment</action>
|
726 |
+
<sort_order>30</sort_order>
|
727 |
+
</shipment>
|
728 |
+
<creditmemo translate="title" module="sales">
|
729 |
+
<title>Credit Memos</title>
|
730 |
+
<action>adminhtml/sales_creditmemo</action>
|
731 |
+
<sort_order>40</sort_order>
|
732 |
+
</creditmemo>
|
733 |
+
</children>
|
734 |
+
</sales>
|
735 |
+
</menu>
|
736 |
+
<acl>
|
737 |
+
<resources>
|
738 |
+
<admin>
|
739 |
+
<children>
|
740 |
+
<sales translate="title" module="sales">
|
741 |
+
<title>Sales</title>
|
742 |
+
<children>
|
743 |
+
<order translate="title">
|
744 |
+
<title>Orders</title>
|
745 |
+
<children>
|
746 |
+
<actions translate="title">
|
747 |
+
<title>Actions</title>
|
748 |
+
<children>
|
749 |
+
<create translate="title"><title>Create</title></create>
|
750 |
+
<view translate="title"><title>View</title></view>
|
751 |
+
<reorder translate="title"><title>Reorder</title></reorder>
|
752 |
+
<edit translate="title"><title>Edit</title></edit>
|
753 |
+
<cancel translate="title"><title>Cancel</title></cancel>
|
754 |
+
<capture translate="title"><title>Capture</title></capture>
|
755 |
+
<invoice translate="title"><title>Invoice</title></invoice>
|
756 |
+
<creditmemo translate="title"><title>Creditmemo</title></creditmemo>
|
757 |
+
<hold translate="title"><title>Hold</title></hold>
|
758 |
+
<unhold translate="title"><title>Unhold</title></unhold>
|
759 |
+
<ship translate="title"><title>Ship</title></ship>
|
760 |
+
<comment translate="title"><title>Comment</title></comment>
|
761 |
+
<reorder translate="title"><title>Reorder</title></reorder>
|
762 |
+
</children>
|
763 |
+
</actions>
|
764 |
+
</children>
|
765 |
+
<sort_order>10</sort_order>
|
766 |
+
</order>
|
767 |
+
<invoice translate="title">
|
768 |
+
<title>Invoices</title>
|
769 |
+
<sort_order>20</sort_order>
|
770 |
+
</invoice>
|
771 |
+
<shipment translate="title">
|
772 |
+
<title>Shipments</title>
|
773 |
+
<sort_order>30</sort_order>
|
774 |
+
</shipment>
|
775 |
+
<creditmemo translate="title">
|
776 |
+
<title>Credit Memos</title>
|
777 |
+
<sort_order>40</sort_order>
|
778 |
+
</creditmemo>
|
779 |
+
</children>
|
780 |
+
</sales>
|
781 |
+
<system>
|
782 |
+
<children>
|
783 |
+
<config>
|
784 |
+
<children>
|
785 |
+
<sales translate="title">
|
786 |
+
<title>Sales Section</title>
|
787 |
+
<sort_order>60</sort_order>
|
788 |
+
</sales>
|
789 |
+
<sales_email translate="title">
|
790 |
+
<title>Sales Emails Section</title>
|
791 |
+
<sort_order>65</sort_order>
|
792 |
+
</sales_email>
|
793 |
+
<sales_pdf translate="title">
|
794 |
+
<title>PDF Print-outs</title>
|
795 |
+
<sort_order>66</sort_order>
|
796 |
+
</sales_pdf>
|
797 |
+
</children>
|
798 |
+
</config>
|
799 |
+
</children>
|
800 |
+
</system>
|
801 |
+
</children>
|
802 |
+
</admin>
|
803 |
+
</resources>
|
804 |
+
</acl>
|
805 |
+
<translate>
|
806 |
+
<modules>
|
807 |
+
<Mage_Sales>
|
808 |
+
<files>
|
809 |
+
<default>Mage_Sales.csv</default>
|
810 |
+
</files>
|
811 |
+
</Mage_Sales>
|
812 |
+
</modules>
|
813 |
+
</translate>
|
814 |
+
<layout>
|
815 |
+
<updates>
|
816 |
+
<sales>
|
817 |
+
<file>sales.xml</file>
|
818 |
+
</sales>
|
819 |
+
</updates>
|
820 |
+
</layout>
|
821 |
+
<events>
|
822 |
+
<catalog_product_delete_before>
|
823 |
+
<observers>
|
824 |
+
<sales_quote_observer>
|
825 |
+
<type>singleton</type>
|
826 |
+
<class>sales/observer</class>
|
827 |
+
<method>substractQtyFromQuotes</method>
|
828 |
+
</sales_quote_observer>
|
829 |
+
</observers>
|
830 |
+
</catalog_product_delete_before>
|
831 |
+
<catalogrule_before_apply>
|
832 |
+
<observers>
|
833 |
+
<sales_quote_observer>
|
834 |
+
<type>singleton</type>
|
835 |
+
<class>sales/observer</class>
|
836 |
+
<method>markQuotesRecollectOnCatalogRules</method>
|
837 |
+
</sales_quote_observer>
|
838 |
+
</observers>
|
839 |
+
</catalogrule_before_apply>
|
840 |
+
<catalogrule_after_apply>
|
841 |
+
<observers>
|
842 |
+
<sales_quote_observer>
|
843 |
+
<type>singleton</type>
|
844 |
+
<class>sales/observer</class>
|
845 |
+
<method>markQuotesRecollectOnCatalogRules</method>
|
846 |
+
</sales_quote_observer>
|
847 |
+
</observers>
|
848 |
+
</catalogrule_after_apply>
|
849 |
+
<catalog_product_save_after>
|
850 |
+
<observers>
|
851 |
+
<sales_quote>
|
852 |
+
<type>singleton</type>
|
853 |
+
<class>sales/observer</class>
|
854 |
+
<method>catalogProductSaveAfter</method>
|
855 |
+
</sales_quote>
|
856 |
+
</observers>
|
857 |
+
</catalog_product_save_after>
|
858 |
+
<catalog_product_status_update>
|
859 |
+
<observers>
|
860 |
+
<sales_quote>
|
861 |
+
<type>singleton</type>
|
862 |
+
<class>sales/observer</class>
|
863 |
+
<method>catalogProductStatusUpdate</method>
|
864 |
+
</sales_quote>
|
865 |
+
</observers>
|
866 |
+
</catalog_product_status_update>
|
867 |
+
</events>
|
868 |
+
</adminhtml>
|
869 |
+
|
870 |
+
<default>
|
871 |
+
<payment>
|
872 |
+
<googlecheckout>
|
873 |
+
<active>1</active>
|
874 |
+
<model>googlecheckout/payment</model>
|
875 |
+
<title>Google Checkout</title>
|
876 |
+
</googlecheckout>
|
877 |
+
</payment>
|
878 |
+
|
879 |
+
<sales>
|
880 |
+
<totals_sort>
|
881 |
+
<discount>20</discount>
|
882 |
+
<grand_total>100</grand_total>
|
883 |
+
<shipping>30</shipping>
|
884 |
+
<subtotal>10</subtotal>
|
885 |
+
<tax>40</tax>
|
886 |
+
</totals_sort>
|
887 |
+
<reorder>
|
888 |
+
<allow>1</allow>
|
889 |
+
</reorder>
|
890 |
+
</sales>
|
891 |
+
<sales_email>
|
892 |
+
<order>
|
893 |
+
<enabled>1</enabled>
|
894 |
+
<template>sales_email_order_template</template>
|
895 |
+
<guest_template>sales_email_order_guest_template</guest_template>
|
896 |
+
<identity>sales</identity>
|
897 |
+
<copy_method>bcc</copy_method>
|
898 |
+
</order>
|
899 |
+
<order_comment>
|
900 |
+
<enabled>1</enabled>
|
901 |
+
<template>sales_email_order_comment_template</template>
|
902 |
+
<guest_template>sales_email_order_comment_guest_template</guest_template>
|
903 |
+
<identity>sales</identity>
|
904 |
+
<copy_method>bcc</copy_method>
|
905 |
+
</order_comment>
|
906 |
+
<invoice>
|
907 |
+
<enabled>1</enabled>
|
908 |
+
<template>sales_email_invoice_template</template>
|
909 |
+
<guest_template>sales_email_invoice_guest_template</guest_template>
|
910 |
+
<identity>sales</identity>
|
911 |
+
<copy_method>bcc</copy_method>
|
912 |
+
</invoice>
|
913 |
+
<invoice_comment>
|
914 |
+
<enabled>1</enabled>
|
915 |
+
<template>sales_email_invoice_comment_template</template>
|
916 |
+
<guest_template>sales_email_invoice_comment_guest_template</guest_template>
|
917 |
+
<identity>sales</identity>
|
918 |
+
<copy_method>bcc</copy_method>
|
919 |
+
</invoice_comment>
|
920 |
+
<shipment>
|
921 |
+
<enabled>1</enabled>
|
922 |
+
<template>sales_email_shipment_template</template>
|
923 |
+
<guest_template>sales_email_shipment_guest_template</guest_template>
|
924 |
+
<identity>sales</identity>
|
925 |
+
<copy_method>bcc</copy_method>
|
926 |
+
</shipment>
|
927 |
+
<shipment_comment>
|
928 |
+
<enabled>1</enabled>
|
929 |
+
<template>sales_email_shipment_comment_template</template>
|
930 |
+
<guest_template>sales_email_shipment_comment_guest_template</guest_template>
|
931 |
+
<identity>sales</identity>
|
932 |
+
<copy_method>bcc</copy_method>
|
933 |
+
</shipment_comment>
|
934 |
+
<creditmemo>
|
935 |
+
<enabled>1</enabled>
|
936 |
+
<template>sales_email_creditmemo_template</template>
|
937 |
+
<guest_template>sales_email_creditmemo_guest_template</guest_template>
|
938 |
+
<identity>sales</identity>
|
939 |
+
<copy_method>bcc</copy_method>
|
940 |
+
</creditmemo>
|
941 |
+
<creditmemo_comment>
|
942 |
+
<enabled>1</enabled>
|
943 |
+
<template>sales_email_creditmemo_comment_template</template>
|
944 |
+
<guest_template>sales_email_creditmemo_comment_guest_template</guest_template>
|
945 |
+
<identity>sales</identity>
|
946 |
+
<copy_method>bcc</copy_method>
|
947 |
+
</creditmemo_comment>
|
948 |
+
</sales_email>
|
949 |
+
<sales_pdf>
|
950 |
+
<invoice>
|
951 |
+
<put_order_id>1</put_order_id>
|
952 |
+
</invoice>
|
953 |
+
<shipment>
|
954 |
+
<put_order_id>1</put_order_id>
|
955 |
+
</shipment>
|
956 |
+
<creditmemo>
|
957 |
+
<put_order_id>1</put_order_id>
|
958 |
+
</creditmemo>
|
959 |
+
</sales_pdf>
|
960 |
+
</default>
|
961 |
+
|
962 |
+
<crontab>
|
963 |
+
<jobs>
|
964 |
+
<sales_clean_quotes>
|
965 |
+
<schedule><cron_expr>0 0 * * *</cron_expr></schedule>
|
966 |
+
<run><model>sales/observer::cleanExpiredQuotes</model></run>
|
967 |
+
</sales_clean_quotes>
|
968 |
+
</jobs>
|
969 |
+
</crontab>
|
970 |
+
</config>
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category Mage
|
22 |
+
* @package Mage_Worldnet
|
23 |
+
* @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
|
24 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
25 |
+
*/
|
26 |
+
/**
|
27 |
+
* Failure Response from Worldnet
|
28 |
+
*
|
29 |
+
* @category Mage
|
30 |
+
* @package Mage_Worldnet
|
31 |
+
* @name Mage_Worldnet_Block_Standard_Failure
|
32 |
+
* @author Magento Core Team <core@magentocommerce.com>
|
33 |
+
*/
|
34 |
+
|
35 |
+
class Mage_Worldnet_Block_Standard_Failure extends Mage_Core_Block_Template
|
36 |
+
{
|
37 |
+
|
38 |
+
public function _construct()
|
39 |
+
{
|
40 |
+
$this->setTemplate('worldnet/standard/failure.phtml');
|
41 |
+
parent::_construct();
|
42 |
+
}
|
43 |
+
/**
|
44 |
+
* Return StatusDetail field value from Response
|
45 |
+
*
|
46 |
+
* @return string
|
47 |
+
*/
|
48 |
+
public function getErrorMessage ()
|
49 |
+
{
|
50 |
+
$error = Mage::getSingleton('checkout/session')->getErrorMessage();
|
51 |
+
Mage::getSingleton('checkout/session')->unsErrorMessage();
|
52 |
+
return $error;
|
53 |
+
}
|
54 |
+
|
55 |
+
/**
|
56 |
+
* Get continue shopping url
|
57 |
+
*/
|
58 |
+
public function getContinueShoppingUrl()
|
59 |
+
{
|
60 |
+
return Mage::getUrl('checkout/cart');
|
61 |
+
}
|
62 |
+
}
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category Mage
|
22 |
+
* @package Mage_Worldnet
|
23 |
+
* @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
|
24 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Form Block
|
29 |
+
*
|
30 |
+
* @category Mage
|
31 |
+
* @package Mage_Worldnet
|
32 |
+
* @name Mage_Worldnet_Block_Standard_Form
|
33 |
+
* @author Magento Core Team <core@magentocommerce.com>
|
34 |
+
*/
|
35 |
+
|
36 |
+
class Mage_Worldnet_Block_Standard_Form extends Mage_Payment_Block_Form
|
37 |
+
{
|
38 |
+
protected function _construct()
|
39 |
+
{
|
40 |
+
$this->setTemplate('worldnet/standard/form.phtml');
|
41 |
+
parent::_construct();
|
42 |
+
}
|
43 |
+
}
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category Mage
|
22 |
+
* @package Mage_Worldnet
|
23 |
+
* @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
|
24 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Redirect to Worldnet
|
29 |
+
*
|
30 |
+
* @category Mage
|
31 |
+
* @package Mage_Worldnet
|
32 |
+
* @name Mage_Worldnet_Block_Standard_Redirect
|
33 |
+
* @author Magento Core Team <core@magentocommerce.com>
|
34 |
+
*/
|
35 |
+
|
36 |
+
class Mage_Worldnet_Block_Standard_Redirect extends Mage_Core_Block_Abstract
|
37 |
+
{
|
38 |
+
protected function _toHtml()
|
39 |
+
{
|
40 |
+
$standard = Mage::getModel('worldnet/standard');
|
41 |
+
$form = new Varien_Data_Form();
|
42 |
+
$form->setAction($standard->getWorldnetUrl())
|
43 |
+
->setId('worldnettps_checkout')
|
44 |
+
->setName('worldnettps_checkout')
|
45 |
+
->setMethod('POST')
|
46 |
+
->setUseContainer(true);
|
47 |
+
foreach ($standard->setOrder($this->getOrder())->getStandardCheckoutFormFields() as $field => $value) {
|
48 |
+
$form->addField($field, 'hidden', array('name' => $field, 'value' => $value));
|
49 |
+
}
|
50 |
+
$html = '<html><body>';
|
51 |
+
$html.= $this->__('You will be redirected to WorldnetTPS in a few seconds.');
|
52 |
+
$html.= $form->toHtml();
|
53 |
+
$html.= '<script type="text/javascript">document.getElementById("worldnettps_checkout").submit();</script>';
|
54 |
+
$html.= '</body></html>';
|
55 |
+
|
56 |
+
return $html;
|
57 |
+
}
|
58 |
+
}
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category Mage
|
22 |
+
* @package Mage_Worldnet
|
23 |
+
* @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
|
24 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Data Helper
|
29 |
+
*
|
30 |
+
* @category Mage
|
31 |
+
* @package Mage_Worldnet
|
32 |
+
* @name Mage_Worldnet_Helper_Data
|
33 |
+
* @author Magento Core Team <core@magentocommerce.com>
|
34 |
+
*/
|
35 |
+
class Mage_Worldnet_Helper_Data extends Mage_Core_Helper_Abstract
|
36 |
+
{
|
37 |
+
|
38 |
+
}
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category Mage
|
22 |
+
* @package Mage_Worldnet
|
23 |
+
* @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
|
24 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Api Debug
|
29 |
+
*
|
30 |
+
* @category Mage
|
31 |
+
* @package Mage_Worldnet
|
32 |
+
* @name Mage_Worldnet_Model_Api_Debug
|
33 |
+
* @author Magento Core Team <core@magentocommerce.com>
|
34 |
+
*/
|
35 |
+
class Mage_Worldnet_Model_Api_Debug extends Mage_Core_Model_Abstract
|
36 |
+
{
|
37 |
+
protected function _construct()
|
38 |
+
{
|
39 |
+
$this->_init('worldnet/api_debug');
|
40 |
+
}
|
41 |
+
}
|
@@ -0,0 +1,185 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|