Version Notes
CHANGES:
->U app/code/local/Mage/Reembolso/sql/reembolso_setup/mysql4-upgrade-0.2.1-0.2.2.php
->A app/code/local/Mage/Reembolso/sql/reembolso_setup/mysql4-install-0.2.3.php
->A app/code/local/Mage/Reembolso/sql/reembolso_setup/mysql4-upgrade-0.2.2-0.2.3.php
Download this release
Release Info
Developer | Magento Core Team |
Extension | Payment_Reembolso |
Version | 0.2.3 |
Comparing to | |
See all releases |
Code changes from version 0.2.2 to 0.2.3
- app/code/local/Mage/Reembolso/etc/config.xml +1 -1
- app/code/local/Mage/Reembolso/sql/reembolso_setup/mysql4-install-0.2.1.php +0 -22
- app/code/local/Mage/Reembolso/sql/reembolso_setup/mysql4-install-0.2.2.php +0 -0
- app/code/local/Mage/Reembolso/sql/reembolso_setup/mysql4-install-0.2.3.php +23 -0
- app/code/local/Mage/Reembolso/sql/reembolso_setup/mysql4-upgrade-0.2.1-0.2.2.php +13 -23
- app/code/local/Mage/Reembolso/sql/reembolso_setup/mysql4-upgrade-0.2.2-0.2.3.php +0 -0
- package.xml +7 -10
app/code/local/Mage/Reembolso/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Mage_Reembolso>
|
5 |
-
<version>0.2.
|
6 |
</Mage_Reembolso>
|
7 |
</modules>
|
8 |
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Mage_Reembolso>
|
5 |
+
<version>0.2.3</version>
|
6 |
</Mage_Reembolso>
|
7 |
</modules>
|
8 |
|
app/code/local/Mage/Reembolso/sql/reembolso_setup/mysql4-install-0.2.1.php
CHANGED
@@ -1,22 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
$installer = $this;
|
4 |
-
|
5 |
-
$installer->startSetup();
|
6 |
-
|
7 |
-
$installer->run("
|
8 |
-
|
9 |
-
DROP TABLE IF EXISTS {$this->getTable('reembolso')};
|
10 |
-
CREATE TABLE {$this->getTable('reembolso')} (
|
11 |
-
`reembolso_id` int(11) unsigned NOT NULL auto_increment,
|
12 |
-
`title` varchar(255) NOT NULL default '',
|
13 |
-
`shipping_method` varchar(255) NOT NULL default '',
|
14 |
-
`type` smallint(6) NOT NULL default '0',
|
15 |
-
`value` smallint(6) NOT NULL default '0',
|
16 |
-
`above` smallint(6) NOT NULL default '0',
|
17 |
-
PRIMARY KEY (`reembolso_id`)
|
18 |
-
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
19 |
-
|
20 |
-
");
|
21 |
-
|
22 |
-
$installer->endSetup();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/Mage/Reembolso/sql/reembolso_setup/mysql4-install-0.2.2.php
ADDED
File without changes
|
app/code/local/Mage/Reembolso/sql/reembolso_setup/mysql4-install-0.2.3.php
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
$installer = $this;
|
4 |
+
|
5 |
+
$installer->startSetup();
|
6 |
+
|
7 |
+
$installer->run("
|
8 |
+
|
9 |
+
DROP TABLE IF EXISTS {$this->getTable('reembolso')};
|
10 |
+
CREATE TABLE {$this->getTable('reembolso')} (
|
11 |
+
`reembolso_id` int(11) unsigned NOT NULL auto_increment,
|
12 |
+
`title` varchar(255) NOT NULL default '',
|
13 |
+
`descript` varchar(500) NOT NULL default '',
|
14 |
+
`shipping_method` varchar(255) NOT NULL default '',
|
15 |
+
`type` smallint(6) NOT NULL default '0',
|
16 |
+
`value` smallint(6) NOT NULL default '0',
|
17 |
+
`above` smallint(6) NOT NULL default '0',
|
18 |
+
PRIMARY KEY (`reembolso_id`)
|
19 |
+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
20 |
+
|
21 |
+
");
|
22 |
+
|
23 |
+
$installer->endSetup();
|
app/code/local/Mage/Reembolso/sql/reembolso_setup/mysql4-upgrade-0.2.1-0.2.2.php
CHANGED
@@ -1,23 +1,13 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
$installer = $this;
|
4 |
-
|
5 |
-
$installer->startSetup();
|
6 |
-
|
7 |
-
$installer->run("
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
`shipping_method` varchar(255) NOT NULL default '',
|
15 |
-
`type` smallint(6) NOT NULL default '0',
|
16 |
-
`value` smallint(6) NOT NULL default '0',
|
17 |
-
`above` smallint(6) NOT NULL default '0',
|
18 |
-
PRIMARY KEY (`reembolso_id`)
|
19 |
-
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
20 |
-
|
21 |
-
");
|
22 |
-
|
23 |
-
$installer->endSetup();
|
1 |
+
<?php
|
2 |
+
|
3 |
+
$installer = $this;
|
4 |
+
|
5 |
+
$installer->startSetup();
|
6 |
+
|
7 |
+
$installer->run("
|
8 |
+
|
9 |
+
ALTER TABLE {$this->getTable('reembolso')} ADD descript varchar(500)
|
10 |
+
|
11 |
+
");
|
12 |
+
|
13 |
+
$installer->endSetup();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/Mage/Reembolso/sql/reembolso_setup/mysql4-upgrade-0.2.2-0.2.3.php
ADDED
File without changes
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Payment_Reembolso</name>
|
4 |
-
<version>0.2.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
@@ -12,16 +12,13 @@
|
|
12 |
EN | Refund allows users to set up refunds for all shipping methods installed in our Magento store. Refund determines the value the user must pay by using this payment method. For each refund you must enter a title, the refund shipping method, the refund type (either fixed or variable), the refund value and the amount from which the value applied to the total amount will be selected.</description>
|
13 |
<notes><b>CHANGES:</b>
|
14 |
|
15 |
-
->U app/code/local/Mage/Reembolso/
|
16 |
-
|
17 |
-
|
18 |
-
->U app/code/local/Mage/Reembolso/Model/Reembolso.php
|
19 |
-
->A app/code/local/Mage/Reembolso/sql/reembolso_setup/mysql4-upgrade-0.2.1-0.2.2.php
|
20 |
-
->U app/design/frontend/default/default/template/reembolso/form.phtml</notes>
|
21 |
<authors><author><name>Sophie</name><user>auto-converted</user><email>lalyostres@gmail.com</email></author><author><name>Gaspar Mac</name><user>auto-converted</user><email>gasparmac@gmail.com</email></author></authors>
|
22 |
-
<date>2009-02
|
23 |
-
<time>
|
24 |
-
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="reembolso.xml" hash="c70542d55d3c5486dfe96d62d62b38c2"/></dir><dir name="template"><dir name="reembolso"><file name="form.phtml" hash="a0299c5836ce66e8748328a918fdb1d8"/><file name="info.phtml" hash="308cfe38ecfbe667beee4618b40e6b33"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="reembolso"><file name="form.phtml" hash="4a57aa7b2a37fc211d4058e836fff9e5"/><file name="info.phtml" hash="28b00b8074bdf7cabed24d30911eb5b4"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="es_ES"><file name="Mage_Reembolso.csv" hash="42e01f656ee2d0223e95e10ed54b26ce"/></dir></target><target name="magelocal"><dir name="Mage"><dir name="Reembolso"><dir name="Block"><dir name="Adminhtml"><dir name="Reembolso"><dir name="Edit"><dir name="Tab"><file name="Form.php" hash="73a9fcbe9e183cd9049203e828f325b0"/></dir><file name="Form.php" hash="a255a1faec8bd6827af597faa26ab479"/><file name="Tabs.php" hash="5cde7719cc092d44345454537eea652a"/></dir><file name="Edit.php" hash="48be62d8c1b09560fd5d876ee592b4e1"/><file name="Grid.php" hash="2290b35187430f08771fad011bcebc52"/></dir><file name="Reembolso.php" hash="4c1d115145a43091a8baf1acf2626795"/></dir><file name="Form.php" hash="21f1e325029d98571ec884bca2234e65"/><file name="Info.php" hash="33f48eab752f05362c553b63de5d9c42"/><file name="Reembolso.php" hash="1b73f115d184904b6b07c2274ff35e9b"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ReembolsoController.php" hash="8724a1fb8ae96f1111807588386b45e2"/></dir><file name="IndexController.php" hash="637815ee5aa7d6b9253ec713abfd559e"/></dir><dir name="etc"><file name="config.xml" hash="
|
25 |
<compatible/>
|
26 |
<dependencies/>
|
27 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Payment_Reembolso</name>
|
4 |
+
<version>0.2.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
12 |
EN | Refund allows users to set up refunds for all shipping methods installed in our Magento store. Refund determines the value the user must pay by using this payment method. For each refund you must enter a title, the refund shipping method, the refund type (either fixed or variable), the refund value and the amount from which the value applied to the total amount will be selected.</description>
|
13 |
<notes><b>CHANGES:</b>
|
14 |
|
15 |
+
->U app/code/local/Mage/Reembolso/sql/reembolso_setup/mysql4-upgrade-0.2.1-0.2.2.php
|
16 |
+
->A app/code/local/Mage/Reembolso/sql/reembolso_setup/mysql4-install-0.2.3.php
|
17 |
+
->A app/code/local/Mage/Reembolso/sql/reembolso_setup/mysql4-upgrade-0.2.2-0.2.3.php</notes>
|
|
|
|
|
|
|
18 |
<authors><author><name>Sophie</name><user>auto-converted</user><email>lalyostres@gmail.com</email></author><author><name>Gaspar Mac</name><user>auto-converted</user><email>gasparmac@gmail.com</email></author></authors>
|
19 |
+
<date>2009-03-02</date>
|
20 |
+
<time>14:27:30</time>
|
21 |
+
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="reembolso.xml" hash="c70542d55d3c5486dfe96d62d62b38c2"/></dir><dir name="template"><dir name="reembolso"><file name="form.phtml" hash="a0299c5836ce66e8748328a918fdb1d8"/><file name="info.phtml" hash="308cfe38ecfbe667beee4618b40e6b33"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="reembolso"><file name="form.phtml" hash="4a57aa7b2a37fc211d4058e836fff9e5"/><file name="info.phtml" hash="28b00b8074bdf7cabed24d30911eb5b4"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="es_ES"><file name="Mage_Reembolso.csv" hash="42e01f656ee2d0223e95e10ed54b26ce"/></dir></target><target name="magelocal"><dir name="Mage"><dir name="Reembolso"><dir name="Block"><dir name="Adminhtml"><dir name="Reembolso"><dir name="Edit"><dir name="Tab"><file name="Form.php" hash="73a9fcbe9e183cd9049203e828f325b0"/></dir><file name="Form.php" hash="a255a1faec8bd6827af597faa26ab479"/><file name="Tabs.php" hash="5cde7719cc092d44345454537eea652a"/></dir><file name="Edit.php" hash="48be62d8c1b09560fd5d876ee592b4e1"/><file name="Grid.php" hash="2290b35187430f08771fad011bcebc52"/></dir><file name="Reembolso.php" hash="4c1d115145a43091a8baf1acf2626795"/></dir><file name="Form.php" hash="21f1e325029d98571ec884bca2234e65"/><file name="Info.php" hash="33f48eab752f05362c553b63de5d9c42"/><file name="Reembolso.php" hash="1b73f115d184904b6b07c2274ff35e9b"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ReembolsoController.php" hash="8724a1fb8ae96f1111807588386b45e2"/></dir><file name="IndexController.php" hash="637815ee5aa7d6b9253ec713abfd559e"/></dir><dir name="etc"><file name="config.xml" hash="9ca7c4e71c2433eb292c3f6463841894"/><file name="system.xml" hash="462888971106de537e8618190d352bac"/></dir><dir name="Helper"><file name="Data.php" hash="981e6afa35c5a3b2a2a93cd032dda366"/></dir><dir name="Model"><dir name="Adminhtml"><file name="Reembolso.php" hash="094caad3d400d674dad90528eb3ef7ea"/><file name="Status.php" hash="738364aabca63cc0ab1227f372cbd1c0"/></dir><dir name="Mysql4"><dir name="Reembolso"><file name="Collection.php" hash="0caca622db6de6629a5b956b43705820"/></dir><file name="Reembolso.php" hash="5e4d2cadd46fdf0e919f6402c78ed985"/></dir><file name="Quote.php" hash="49051c6e369921f1de5835b780a30da9"/><file name="Reembolso.php" hash="4dbbdf8944d9e6c47010dcafefa7a501"/></dir><dir name="sql"><dir name="reembolso_setup"><file name="mysql4-install-0.1.0.php" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="mysql4-install-0.2.1.php" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="mysql4-install-0.2.2.php" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="mysql4-install-0.2.3.php" hash="c3a18b3257c82bbe672b5240667d871b"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="mysql4-upgrade-0.2.0-0.2.1.php" hash="66e352a38f890bce4c7173a1ce4c71e4"/><file name="mysql4-upgrade-0.2.1-0.2.2.php" hash="e3f6df0b55ea290f20a57101afceb899"/><file name="mysql4-upgrade-0.2.2-0.2.3.php" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir><file name="INFO-reembolso.txt" hash="d8d8daf56685ebca48267cb516abc198"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Reembolso.xml" hash="142e434873aea670fe99f6e83f35a44b"/></dir></target></contents>
|
22 |
<compatible/>
|
23 |
<dependencies/>
|
24 |
</package>
|