Version Notes
Added Customer Receipt option
Download this release
Release Info
| Developer | SCNet |
| Extension | SCNet_iPayBy |
| Version | 1.0.1 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.0 to 1.0.1
app/code/community/Scnet/Ipayby/Model/CreditCard.php
CHANGED
|
@@ -123,8 +123,11 @@
|
|
| 123 |
);
|
| 124 |
if($this->getConfigData('merchant_notification') == 1 && $this->getConfigData('merchant_email')) {
|
| 125 |
$_params['arg9'] = $this->getConfigData('merchant_email');
|
| 126 |
-
$_params['arg10'] = $this->_getCustomerEmail();
|
| 127 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 128 |
return $_params;
|
| 129 |
}
|
| 130 |
|
| 123 |
);
|
| 124 |
if($this->getConfigData('merchant_notification') == 1 && $this->getConfigData('merchant_email')) {
|
| 125 |
$_params['arg9'] = $this->getConfigData('merchant_email');
|
|
|
|
| 126 |
}
|
| 127 |
+
if($this->getConfigData('customer_notification') == 1) {
|
| 128 |
+
$_params['arg10'] = $this->_getCustomerEmail();
|
| 129 |
+
}
|
| 130 |
+
|
| 131 |
return $_params;
|
| 132 |
}
|
| 133 |
|
app/code/community/Scnet/Ipayby/etc/config.xml
CHANGED
|
@@ -1,51 +1,52 @@
|
|
| 1 |
-
<?xml version="1.0" encoding="utf-8"
|
| 2 |
-
<config>
|
| 3 |
-
<global>
|
| 4 |
-
<models>
|
| 5 |
-
<Scnet_Ipayby>
|
| 6 |
-
<class>Scnet_Ipayby_Model</class>
|
| 7 |
-
</Scnet_Ipayby>
|
| 8 |
-
</models>
|
| 9 |
-
<blocks>
|
| 10 |
-
<Scnet_Ipayby>
|
| 11 |
-
<class>Scnet_Ipayby_Block</class>
|
| 12 |
-
</Scnet_Ipayby>
|
| 13 |
-
</blocks>
|
| 14 |
-
<helpers>
|
| 15 |
-
<Scnet_Ipayby>
|
| 16 |
-
<class>Scnet_Ipayby_Helper</class>
|
| 17 |
-
</Scnet_Ipayby>
|
| 18 |
-
</helpers>
|
| 19 |
-
<events>
|
| 20 |
-
<payment_info_block_prepare_specific_information>
|
| 21 |
-
<observers>
|
| 22 |
-
<Scnet_Ipayby>
|
| 23 |
-
<class>Scnet_Ipayby/observer</class>
|
| 24 |
-
<method>paymentSpecificInformation</method>
|
| 25 |
-
</Scnet_Ipayby>
|
| 26 |
-
</observers>
|
| 27 |
-
</payment_info_block_prepare_specific_information>
|
| 28 |
-
</events>
|
| 29 |
-
</global>
|
| 30 |
-
<default>
|
| 31 |
-
<payment>
|
| 32 |
-
<scnet_ipayby>
|
| 33 |
-
<group>offline</group>
|
| 34 |
-
<model>Scnet_Ipayby/CreditCard</model>
|
| 35 |
-
<payment_action>authorize_capture</payment_action>
|
| 36 |
-
<active>0</active>
|
| 37 |
-
<title>SCNet iPayBy</title>
|
| 38 |
-
<order_status>pending</order_status>
|
| 39 |
-
<live_mode>0</live_mode>
|
| 40 |
-
<allowspecific>0</allowspecific>
|
| 41 |
-
<merchant_notification>0</merchant_notification>
|
| 42 |
-
<
|
| 43 |
-
<
|
| 44 |
-
<
|
| 45 |
-
<
|
| 46 |
-
<
|
| 47 |
-
<
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
</
|
|
|
| 1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
| 2 |
+
<config>
|
| 3 |
+
<global>
|
| 4 |
+
<models>
|
| 5 |
+
<Scnet_Ipayby>
|
| 6 |
+
<class>Scnet_Ipayby_Model</class>
|
| 7 |
+
</Scnet_Ipayby>
|
| 8 |
+
</models>
|
| 9 |
+
<blocks>
|
| 10 |
+
<Scnet_Ipayby>
|
| 11 |
+
<class>Scnet_Ipayby_Block</class>
|
| 12 |
+
</Scnet_Ipayby>
|
| 13 |
+
</blocks>
|
| 14 |
+
<helpers>
|
| 15 |
+
<Scnet_Ipayby>
|
| 16 |
+
<class>Scnet_Ipayby_Helper</class>
|
| 17 |
+
</Scnet_Ipayby>
|
| 18 |
+
</helpers>
|
| 19 |
+
<events>
|
| 20 |
+
<payment_info_block_prepare_specific_information>
|
| 21 |
+
<observers>
|
| 22 |
+
<Scnet_Ipayby>
|
| 23 |
+
<class>Scnet_Ipayby/observer</class>
|
| 24 |
+
<method>paymentSpecificInformation</method>
|
| 25 |
+
</Scnet_Ipayby>
|
| 26 |
+
</observers>
|
| 27 |
+
</payment_info_block_prepare_specific_information>
|
| 28 |
+
</events>
|
| 29 |
+
</global>
|
| 30 |
+
<default>
|
| 31 |
+
<payment>
|
| 32 |
+
<scnet_ipayby>
|
| 33 |
+
<group>offline</group>
|
| 34 |
+
<model>Scnet_Ipayby/CreditCard</model>
|
| 35 |
+
<payment_action>authorize_capture</payment_action>
|
| 36 |
+
<active>0</active>
|
| 37 |
+
<title>SCNet iPayBy</title>
|
| 38 |
+
<order_status>pending</order_status>
|
| 39 |
+
<live_mode>0</live_mode>
|
| 40 |
+
<allowspecific>0</allowspecific>
|
| 41 |
+
<merchant_notification>0</merchant_notification>
|
| 42 |
+
<customer_notification>0</customer_notification>
|
| 43 |
+
<live_server_url>https://www.scnet.com.au/ipayby/ipaybyws?WSDL</live_server_url>
|
| 44 |
+
<test_server_url>https://www.scnet.com.au/ipayby/ipaybyws?WSDL</test_server_url>
|
| 45 |
+
<merchant_id>SCNet_Cert6</merchant_id>
|
| 46 |
+
<password>testSCNet</password>
|
| 47 |
+
<cctypes>AE,VI,MC,DI</cctypes>
|
| 48 |
+
<error_message>This payment method is currently unavailable. If you would like to pay using this payment method, please contact us.</error_message>
|
| 49 |
+
</scnet_ipayby>
|
| 50 |
+
</payment>
|
| 51 |
+
</default>
|
| 52 |
+
</config>
|
app/code/community/Scnet/Ipayby/etc/system.xml
CHANGED
|
@@ -1,182 +1,192 @@
|
|
| 1 |
-
<?xml version="1.0"
|
| 2 |
-
<config>
|
| 3 |
-
<sections>
|
| 4 |
-
<payment>
|
| 5 |
-
<groups>
|
| 6 |
-
<scnet_ipayby translate="label" module="Scnet_Ipayby">
|
| 7 |
-
<label>SCNet iPayBy</label>
|
| 8 |
-
<frontend_type>text</frontend_type>
|
| 9 |
-
<sort_order>99</sort_order>
|
| 10 |
-
<show_in_default>1</show_in_default>
|
| 11 |
-
<show_in_website>1</show_in_website>
|
| 12 |
-
<show_in_store>1</show_in_store>
|
| 13 |
-
<fields>
|
| 14 |
-
<active translate="label">
|
| 15 |
-
<label>Enabled</label>
|
| 16 |
-
<frontend_type>select</frontend_type>
|
| 17 |
-
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 18 |
-
<sort_order>10</sort_order>
|
| 19 |
-
<show_in_default>1</show_in_default>
|
| 20 |
-
<show_in_website>1</show_in_website>
|
| 21 |
-
<show_in_store>0</show_in_store>
|
| 22 |
-
</active>
|
| 23 |
-
<title translate="label">
|
| 24 |
-
<label>Title</label>
|
| 25 |
-
<frontend_type>text</frontend_type>
|
| 26 |
-
<sort_order>20</sort_order>
|
| 27 |
-
<show_in_default>1</show_in_default>
|
| 28 |
-
<show_in_website>1</show_in_website>
|
| 29 |
-
<show_in_store>1</show_in_store>
|
| 30 |
-
</title>
|
| 31 |
-
<order_status translate="label">
|
| 32 |
-
<label>New Order Status</label>
|
| 33 |
-
<frontend_type>select</frontend_type>
|
| 34 |
-
<source_model>adminhtml/system_config_source_order_status_new</source_model>
|
| 35 |
-
<sort_order>30</sort_order>
|
| 36 |
-
<show_in_default>1</show_in_default>
|
| 37 |
-
<show_in_website>1</show_in_website>
|
| 38 |
-
<show_in_store>0</show_in_store>
|
| 39 |
-
</order_status>
|
| 40 |
-
<live_mode translate="label">
|
| 41 |
-
<label>Live Mode</label>
|
| 42 |
-
<frontend_type>select</frontend_type>
|
| 43 |
-
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 44 |
-
<sort_order>40</sort_order>
|
| 45 |
-
<show_in_default>1</show_in_default>
|
| 46 |
-
<show_in_website>1</show_in_website>
|
| 47 |
-
<show_in_store>0</show_in_store>
|
| 48 |
-
</live_mode>
|
| 49 |
-
<live_server_url translate="label">
|
| 50 |
-
<label>Production URL</label>
|
| 51 |
-
<frontend_type>text</frontend_type>
|
| 52 |
-
<sort_order>41</sort_order>
|
| 53 |
-
<show_in_default>1</show_in_default>
|
| 54 |
-
<show_in_website>1</show_in_website>
|
| 55 |
-
<show_in_store>0</show_in_store>
|
| 56 |
-
</live_server_url>
|
| 57 |
-
<test_server_url translate="label">
|
| 58 |
-
<label>Test URL</label>
|
| 59 |
-
<frontend_type>text</frontend_type>
|
| 60 |
-
<sort_order>42</sort_order>
|
| 61 |
-
<show_in_default>1</show_in_default>
|
| 62 |
-
<show_in_website>1</show_in_website>
|
| 63 |
-
<show_in_store>0</show_in_store>
|
| 64 |
-
</test_server_url>
|
| 65 |
-
<merchant_id translate="label">
|
| 66 |
-
<label>Merchant ID</label>
|
| 67 |
-
<frontend_type>text</frontend_type>
|
| 68 |
-
<sort_order>43</sort_order>
|
| 69 |
-
<show_in_default>1</show_in_default>
|
| 70 |
-
<show_in_website>1</show_in_website>
|
| 71 |
-
<show_in_store>0</show_in_store>
|
| 72 |
-
</merchant_id>
|
| 73 |
-
<password translate="label">
|
| 74 |
-
<label>Password</label>
|
| 75 |
-
<frontend_type>text</frontend_type>
|
| 76 |
-
<sort_order>44</sort_order>
|
| 77 |
-
<show_in_default>1</show_in_default>
|
| 78 |
-
<show_in_website>1</show_in_website>
|
| 79 |
-
<show_in_store>0</show_in_store>
|
| 80 |
-
</password>
|
| 81 |
-
<cctypes translate="label">
|
| 82 |
-
<label>Credit Card Types</label>
|
| 83 |
-
<frontend_type>multiselect</frontend_type>
|
| 84 |
-
<source_model>adminhtml/system_config_source_payment_cctype</source_model>
|
| 85 |
-
<sort_order>45</sort_order>
|
| 86 |
-
<show_in_default>1</show_in_default>
|
| 87 |
-
<show_in_website>1</show_in_website>
|
| 88 |
-
<show_in_store>0</show_in_store>
|
| 89 |
-
<can_be_empty>1</can_be_empty>
|
| 90 |
-
</cctypes>
|
| 91 |
-
<merchant_notification translate="label">
|
| 92 |
-
<label>Merchant Notification</label>
|
| 93 |
-
<frontend_type>select</frontend_type>
|
| 94 |
-
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 95 |
-
<sort_order>46</sort_order>
|
| 96 |
-
<show_in_default>1</show_in_default>
|
| 97 |
-
<show_in_website>1</show_in_website>
|
| 98 |
-
<show_in_store>0</show_in_store>
|
| 99 |
-
</merchant_notification>
|
| 100 |
-
<merchant_email translate="label">
|
| 101 |
-
<label>Merchant Notification Email</label>
|
| 102 |
-
<frontend_type>text</frontend_type>
|
| 103 |
-
<sort_order>47</sort_order>
|
| 104 |
-
<show_in_default>1</show_in_default>
|
| 105 |
-
<show_in_website>1</show_in_website>
|
| 106 |
-
<show_in_store>0</show_in_store>
|
| 107 |
-
</merchant_email>
|
| 108 |
-
<
|
| 109 |
-
<label>
|
| 110 |
-
<frontend_type>
|
| 111 |
-
<comment>
|
| 112 |
-
<
|
| 113 |
-
<
|
| 114 |
-
<
|
| 115 |
-
<
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
<
|
| 120 |
-
<
|
| 121 |
-
<
|
| 122 |
-
<
|
| 123 |
-
<
|
| 124 |
-
<
|
| 125 |
-
|
| 126 |
-
|
| 127 |
-
|
| 128 |
-
<
|
| 129 |
-
<
|
| 130 |
-
<
|
| 131 |
-
<
|
| 132 |
-
<
|
| 133 |
-
<
|
| 134 |
-
<
|
| 135 |
-
</
|
| 136 |
-
<
|
| 137 |
-
<label>
|
| 138 |
-
<frontend_type>
|
| 139 |
-
<sort_order>
|
| 140 |
-
<
|
| 141 |
-
<
|
| 142 |
-
<
|
| 143 |
-
|
| 144 |
-
|
| 145 |
-
|
| 146 |
-
|
| 147 |
-
<
|
| 148 |
-
<
|
| 149 |
-
<
|
| 150 |
-
<
|
| 151 |
-
|
| 152 |
-
|
| 153 |
-
|
| 154 |
-
|
| 155 |
-
<
|
| 156 |
-
<
|
| 157 |
-
<
|
| 158 |
-
<
|
| 159 |
-
|
| 160 |
-
|
| 161 |
-
|
| 162 |
-
|
| 163 |
-
<
|
| 164 |
-
<
|
| 165 |
-
<
|
| 166 |
-
<
|
| 167 |
-
|
| 168 |
-
|
| 169 |
-
|
| 170 |
-
|
| 171 |
-
<
|
| 172 |
-
<
|
| 173 |
-
<
|
| 174 |
-
<
|
| 175 |
-
<
|
| 176 |
-
|
| 177 |
-
|
| 178 |
-
|
| 179 |
-
|
| 180 |
-
|
| 181 |
-
|
| 182 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0"?>
|
| 2 |
+
<config>
|
| 3 |
+
<sections>
|
| 4 |
+
<payment>
|
| 5 |
+
<groups>
|
| 6 |
+
<scnet_ipayby translate="label" module="Scnet_Ipayby">
|
| 7 |
+
<label>SCNet iPayBy</label>
|
| 8 |
+
<frontend_type>text</frontend_type>
|
| 9 |
+
<sort_order>99</sort_order>
|
| 10 |
+
<show_in_default>1</show_in_default>
|
| 11 |
+
<show_in_website>1</show_in_website>
|
| 12 |
+
<show_in_store>1</show_in_store>
|
| 13 |
+
<fields>
|
| 14 |
+
<active translate="label">
|
| 15 |
+
<label>Enabled</label>
|
| 16 |
+
<frontend_type>select</frontend_type>
|
| 17 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 18 |
+
<sort_order>10</sort_order>
|
| 19 |
+
<show_in_default>1</show_in_default>
|
| 20 |
+
<show_in_website>1</show_in_website>
|
| 21 |
+
<show_in_store>0</show_in_store>
|
| 22 |
+
</active>
|
| 23 |
+
<title translate="label">
|
| 24 |
+
<label>Title</label>
|
| 25 |
+
<frontend_type>text</frontend_type>
|
| 26 |
+
<sort_order>20</sort_order>
|
| 27 |
+
<show_in_default>1</show_in_default>
|
| 28 |
+
<show_in_website>1</show_in_website>
|
| 29 |
+
<show_in_store>1</show_in_store>
|
| 30 |
+
</title>
|
| 31 |
+
<order_status translate="label">
|
| 32 |
+
<label>New Order Status</label>
|
| 33 |
+
<frontend_type>select</frontend_type>
|
| 34 |
+
<source_model>adminhtml/system_config_source_order_status_new</source_model>
|
| 35 |
+
<sort_order>30</sort_order>
|
| 36 |
+
<show_in_default>1</show_in_default>
|
| 37 |
+
<show_in_website>1</show_in_website>
|
| 38 |
+
<show_in_store>0</show_in_store>
|
| 39 |
+
</order_status>
|
| 40 |
+
<live_mode translate="label">
|
| 41 |
+
<label>Live Mode</label>
|
| 42 |
+
<frontend_type>select</frontend_type>
|
| 43 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 44 |
+
<sort_order>40</sort_order>
|
| 45 |
+
<show_in_default>1</show_in_default>
|
| 46 |
+
<show_in_website>1</show_in_website>
|
| 47 |
+
<show_in_store>0</show_in_store>
|
| 48 |
+
</live_mode>
|
| 49 |
+
<live_server_url translate="label">
|
| 50 |
+
<label>Production URL</label>
|
| 51 |
+
<frontend_type>text</frontend_type>
|
| 52 |
+
<sort_order>41</sort_order>
|
| 53 |
+
<show_in_default>1</show_in_default>
|
| 54 |
+
<show_in_website>1</show_in_website>
|
| 55 |
+
<show_in_store>0</show_in_store>
|
| 56 |
+
</live_server_url>
|
| 57 |
+
<test_server_url translate="label">
|
| 58 |
+
<label>Test URL</label>
|
| 59 |
+
<frontend_type>text</frontend_type>
|
| 60 |
+
<sort_order>42</sort_order>
|
| 61 |
+
<show_in_default>1</show_in_default>
|
| 62 |
+
<show_in_website>1</show_in_website>
|
| 63 |
+
<show_in_store>0</show_in_store>
|
| 64 |
+
</test_server_url>
|
| 65 |
+
<merchant_id translate="label">
|
| 66 |
+
<label>Merchant ID</label>
|
| 67 |
+
<frontend_type>text</frontend_type>
|
| 68 |
+
<sort_order>43</sort_order>
|
| 69 |
+
<show_in_default>1</show_in_default>
|
| 70 |
+
<show_in_website>1</show_in_website>
|
| 71 |
+
<show_in_store>0</show_in_store>
|
| 72 |
+
</merchant_id>
|
| 73 |
+
<password translate="label">
|
| 74 |
+
<label>Password</label>
|
| 75 |
+
<frontend_type>text</frontend_type>
|
| 76 |
+
<sort_order>44</sort_order>
|
| 77 |
+
<show_in_default>1</show_in_default>
|
| 78 |
+
<show_in_website>1</show_in_website>
|
| 79 |
+
<show_in_store>0</show_in_store>
|
| 80 |
+
</password>
|
| 81 |
+
<cctypes translate="label">
|
| 82 |
+
<label>Credit Card Types</label>
|
| 83 |
+
<frontend_type>multiselect</frontend_type>
|
| 84 |
+
<source_model>adminhtml/system_config_source_payment_cctype</source_model>
|
| 85 |
+
<sort_order>45</sort_order>
|
| 86 |
+
<show_in_default>1</show_in_default>
|
| 87 |
+
<show_in_website>1</show_in_website>
|
| 88 |
+
<show_in_store>0</show_in_store>
|
| 89 |
+
<can_be_empty>1</can_be_empty>
|
| 90 |
+
</cctypes>
|
| 91 |
+
<merchant_notification translate="label">
|
| 92 |
+
<label>Merchant Notification</label>
|
| 93 |
+
<frontend_type>select</frontend_type>
|
| 94 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 95 |
+
<sort_order>46</sort_order>
|
| 96 |
+
<show_in_default>1</show_in_default>
|
| 97 |
+
<show_in_website>1</show_in_website>
|
| 98 |
+
<show_in_store>0</show_in_store>
|
| 99 |
+
</merchant_notification>
|
| 100 |
+
<merchant_email translate="label">
|
| 101 |
+
<label>Merchant Notification Email</label>
|
| 102 |
+
<frontend_type>text</frontend_type>
|
| 103 |
+
<sort_order>47</sort_order>
|
| 104 |
+
<show_in_default>1</show_in_default>
|
| 105 |
+
<show_in_website>1</show_in_website>
|
| 106 |
+
<show_in_store>0</show_in_store>
|
| 107 |
+
</merchant_email>
|
| 108 |
+
<customer_notification translate="label">
|
| 109 |
+
<label>Customer Receipt</label>
|
| 110 |
+
<frontend_type>select</frontend_type>
|
| 111 |
+
<comment>Send the customer a receipt from iPayBy</comment>
|
| 112 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 113 |
+
<sort_order>48</sort_order>
|
| 114 |
+
<show_in_default>1</show_in_default>
|
| 115 |
+
<show_in_website>1</show_in_website>
|
| 116 |
+
<show_in_store>0</show_in_store>
|
| 117 |
+
</customer_notification>
|
| 118 |
+
<merchat_abn translate="label">
|
| 119 |
+
<label>ABN</label>
|
| 120 |
+
<frontend_type>text</frontend_type>
|
| 121 |
+
<comment>If using this option, a TAX INVOICE header will appear on the email sent and the GST will be calculated automatically on the email. Use this if you do not want to send a separate invoice to the customer.</comment>
|
| 122 |
+
<sort_order>49</sort_order>
|
| 123 |
+
<show_in_default>1</show_in_default>
|
| 124 |
+
<show_in_website>1</show_in_website>
|
| 125 |
+
<show_in_store>0</show_in_store>
|
| 126 |
+
</merchat_abn>
|
| 127 |
+
<allowspecific translate="label">
|
| 128 |
+
<label>Payment from Applicable Countries</label>
|
| 129 |
+
<frontend_type>allowspecific</frontend_type>
|
| 130 |
+
<sort_order>90</sort_order>
|
| 131 |
+
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
| 132 |
+
<show_in_default>1</show_in_default>
|
| 133 |
+
<show_in_website>1</show_in_website>
|
| 134 |
+
<show_in_store>0</show_in_store>
|
| 135 |
+
</allowspecific>
|
| 136 |
+
<specificcountry translate="label">
|
| 137 |
+
<label>Payment from Specific Countries</label>
|
| 138 |
+
<frontend_type>multiselect</frontend_type>
|
| 139 |
+
<sort_order>91</sort_order>
|
| 140 |
+
<source_model>adminhtml/system_config_source_country</source_model>
|
| 141 |
+
<show_in_default>1</show_in_default>
|
| 142 |
+
<show_in_website>1</show_in_website>
|
| 143 |
+
<show_in_store>0</show_in_store>
|
| 144 |
+
<can_be_empty>1</can_be_empty>
|
| 145 |
+
</specificcountry>
|
| 146 |
+
<min_order_total translate="label">
|
| 147 |
+
<label>Minimum Order Total</label>
|
| 148 |
+
<frontend_type>text</frontend_type>
|
| 149 |
+
<sort_order>92</sort_order>
|
| 150 |
+
<show_in_default>1</show_in_default>
|
| 151 |
+
<show_in_website>1</show_in_website>
|
| 152 |
+
<show_in_store>0</show_in_store>
|
| 153 |
+
</min_order_total>
|
| 154 |
+
<max_order_total translate="label">
|
| 155 |
+
<label>Maximum Order Total</label>
|
| 156 |
+
<frontend_type>text</frontend_type>
|
| 157 |
+
<sort_order>93</sort_order>
|
| 158 |
+
<show_in_default>1</show_in_default>
|
| 159 |
+
<show_in_website>1</show_in_website>
|
| 160 |
+
<show_in_store>0</show_in_store>
|
| 161 |
+
</max_order_total>
|
| 162 |
+
<error_message translate="label">
|
| 163 |
+
<label>Error message</label>
|
| 164 |
+
<frontend_type>textarea</frontend_type>
|
| 165 |
+
<sort_order>94</sort_order>
|
| 166 |
+
<show_in_default>1</show_in_default>
|
| 167 |
+
<show_in_website>1</show_in_website>
|
| 168 |
+
<show_in_store>1</show_in_store>
|
| 169 |
+
</error_message>
|
| 170 |
+
<sort_order translate="label">
|
| 171 |
+
<label>Sort Order</label>
|
| 172 |
+
<frontend_type>text</frontend_type>
|
| 173 |
+
<sort_order>100</sort_order>
|
| 174 |
+
<show_in_default>1</show_in_default>
|
| 175 |
+
<show_in_website>1</show_in_website>
|
| 176 |
+
<show_in_store>0</show_in_store>
|
| 177 |
+
</sort_order>
|
| 178 |
+
<debug translate="label">
|
| 179 |
+
<label>Debug Mode</label>
|
| 180 |
+
<frontend_type>select</frontend_type>
|
| 181 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 182 |
+
<sort_order>101</sort_order>
|
| 183 |
+
<show_in_default>1</show_in_default>
|
| 184 |
+
<show_in_website>1</show_in_website>
|
| 185 |
+
<show_in_store>0</show_in_store>
|
| 186 |
+
</debug>
|
| 187 |
+
</fields>
|
| 188 |
+
</scnet_ipayby>
|
| 189 |
+
</groups>
|
| 190 |
+
</payment>
|
| 191 |
+
</sections>
|
| 192 |
+
</config>
|
package.xml
CHANGED
|
@@ -1,18 +1,18 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>SCNet_iPayBy</name>
|
| 4 |
-
<version>1.0.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL 3.0</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>SCNet iPayBy Payment Gateway</summary>
|
| 10 |
<description>SCNet iPayBy Payment Gateway</description>
|
| 11 |
-
<notes>
|
| 12 |
<authors><author><name>SCNet</name><user>oraclerob</user><email>support@scnet.com.au</email></author></authors>
|
| 13 |
-
<date>2011-11-
|
| 14 |
-
<time>
|
| 15 |
-
<contents><target name="magecommunity"><dir name="Scnet"><dir name="Ipayby"><dir name="Helper"><file name="Data.php" hash="d6397ee1ae45bbe37864a72fa1023f5c"/></dir><dir name="Model"><file name="CreditCard.php" hash="
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Payment</name><channel>core</channel><min>0.7.0</min><max></max></package></required></dependencies>
|
| 18 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>SCNet_iPayBy</name>
|
| 4 |
+
<version>1.0.1</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL 3.0</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>SCNet iPayBy Payment Gateway</summary>
|
| 10 |
<description>SCNet iPayBy Payment Gateway</description>
|
| 11 |
+
<notes>Added Customer Receipt option</notes>
|
| 12 |
<authors><author><name>SCNet</name><user>oraclerob</user><email>support@scnet.com.au</email></author></authors>
|
| 13 |
+
<date>2011-11-08</date>
|
| 14 |
+
<time>08:05:20</time>
|
| 15 |
+
<contents><target name="magecommunity"><dir name="Scnet"><dir name="Ipayby"><dir name="Helper"><file name="Data.php" hash="d6397ee1ae45bbe37864a72fa1023f5c"/></dir><dir name="Model"><file name="CreditCard.php" hash="e98393b66daf24ddc36ffdd1cea5e27f"/><file name="Observer.php" hash="c1f8b0be0f415bb103d775bd7f6bb8d8"/><file name="ResponseParser.php" hash="dc95564aeba3ccb9f9fbd68ee9073c90"/></dir><dir name="etc"><file name="config.xml" hash="a829c791e6305116f81cbe0fab9f566b"/><file name="system.xml" hash="2f1dccd58d21d83aa7ec789b02e1c661"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Scnet_Ipayby.xml" hash="bf1018cd9dc74b53586f595e64149dc0"/></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Payment</name><channel>core</channel><min>0.7.0</min><max></max></package></required></dependencies>
|
| 18 |
</package>
|
