Version Notes
Thanks given to:
Spheric, Atlasit, Ajayksh, Erenaud
Download this release
Release Info
Developer | Magento Core Team |
Extension | Order_Status |
Version | 0.1.2 |
Comparing to | |
See all releases |
Code changes from version 0.1.1 to 0.1.2
app/code/community/Mage/Sales/Community/Default.php
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
* @category Admin
|
16 |
+
* @package Status
|
17 |
+
* @copyright Copyright (c) 2009 Digital Addiction CC. (http://www.digitaladdiction.co.za)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
*
|
20 |
+
* Thanks goes to Spheric, Atlasit, Ajayksh, Erenaud for all brainstorming in the following thread:
|
21 |
+
* http://www.magentocommerce.com/boards/viewthread/9976/P45/
|
22 |
+
* I compiled this using Spherics instructions, and I can only take credit for creating the actual status's below:
|
23 |
+
*
|
24 |
+
* Additional Status's Included:
|
25 |
+
*
|
26 |
+
* Pending - Credit Card Reserved
|
27 |
+
* Pending - Stock has been ordered
|
28 |
+
* Pending - Proof of Payment Received
|
29 |
+
*
|
30 |
+
* Processing - Payment has Cleared
|
31 |
+
* Processing - Credit Card has been Settled
|
32 |
+
* Processing - Stock has been received and scanned
|
33 |
+
* Processing - Stock has been invoiced, packaged and awaiting courier
|
34 |
+
* Processing - Stock has been invoiced, packaged and ready to be posted
|
35 |
+
* Processing - Stock is ready and awaiting collection
|
36 |
+
*
|
37 |
+
* Complete - Courier has collected
|
38 |
+
* Complete - Stock has been posted
|
39 |
+
* Complete - Stock has been collected
|
40 |
+
*
|
41 |
+
* Cancelled - As per Customer Request
|
42 |
+
* Cancelled - Customer not Responding
|
43 |
+
* Cancelled - Stock Item Discontinued
|
44 |
+
* Cancelled - Suspected Fraud
|
45 |
+
*
|
46 |
+
* Back Order
|
47 |
+
*/
|
48 |
+
|
49 |
+
class Mage_Sales_Community extends Mage_Sales {
|
50 |
+
}
|
51 |
+
|
52 |
+
?>
|
app/code/{local/Mage/Sales/Local → community/Mage/Sales/Community}/etc/config.xml
RENAMED
@@ -50,9 +50,9 @@
|
|
50 |
|
51 |
<config>
|
52 |
<modules>
|
53 |
-
<
|
54 |
-
<version>0.1.
|
55 |
-
</
|
56 |
</modules>
|
57 |
<global>
|
58 |
<sales>
|
50 |
|
51 |
<config>
|
52 |
<modules>
|
53 |
+
<Mage_Sales_Community>
|
54 |
+
<version>0.1.2</version>
|
55 |
+
</Mage_Sales_Community>
|
56 |
</modules>
|
57 |
<global>
|
58 |
<sales>
|
app/code/local/Mage/Sales/Local/Default.php
DELETED
@@ -1,29 +0,0 @@
|
|
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_Sales
|
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 |
-
class Mage_Sales_Local extends Mage_Sales {
|
27 |
-
}
|
28 |
-
|
29 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/etc/modules/Status.xml
CHANGED
@@ -13,13 +13,45 @@
|
|
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 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
-->
|
18 |
<config>
|
19 |
<modules>
|
20 |
-
<
|
21 |
<active>true</active>
|
22 |
-
<codePool>
|
23 |
-
</
|
24 |
</modules>
|
25 |
</config>
|
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 |
+
* @category Admin
|
17 |
+
* @package Status
|
18 |
+
* @copyright Copyright (c) 2009 Digital Addiction CC. (http://www.digitaladdiction.co.za)
|
19 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
20 |
*/
|
21 |
+
*/ Thanks goes to Spheric, Atlasit, Ajayksh, Erenaud for all brainstorming in the following thread:
|
22 |
+
*/ http://www.magentocommerce.com/boards/viewthread/9976/P45/
|
23 |
+
*/ I compiled this using Spherics instructions, and I can only take credit for creating the actual status's below:
|
24 |
+
*/
|
25 |
+
*/ Additional Status's Included:
|
26 |
+
*/
|
27 |
+
*/ Pending - Credit Card Reserved
|
28 |
+
*/ Pending - Stock has been ordered
|
29 |
+
*/ Pending - Proof of Payment Received
|
30 |
+
*/
|
31 |
+
*/ Processing - Payment has Cleared
|
32 |
+
*/ Processing - Credit Card has been Settled
|
33 |
+
*/ Processing - Stock has been received and scanned
|
34 |
+
*/ Processing - Stock has been invoiced, packaged and awaiting courier
|
35 |
+
*/ Processing - Stock has been invoiced, packaged and ready to be posted
|
36 |
+
*/ Processing - Stock is ready and awaiting collection
|
37 |
+
*/
|
38 |
+
*/ Complete - Courier has collected
|
39 |
+
*/ Complete - Stock has been posted
|
40 |
+
*/ Complete - Stock has been collected
|
41 |
+
*/
|
42 |
+
*/ Cancelled - As per Customer Request
|
43 |
+
*/ Cancelled - Customer not Responding
|
44 |
+
*/ Cancelled - Stock Item Discontinued
|
45 |
+
*/ Cancelled - Suspected Fraud
|
46 |
+
*/
|
47 |
+
*/ Back Order
|
48 |
+
*/
|
49 |
-->
|
50 |
<config>
|
51 |
<modules>
|
52 |
+
<Mage_Sales_Community>
|
53 |
<active>true</active>
|
54 |
+
<codePool>community</codePool>
|
55 |
+
</Mage_Sales_Community>
|
56 |
</modules>
|
57 |
</config>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Order_Status</name>
|
4 |
-
<version>0.1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/gpl-license.php">GNU General Public License (GPL)</license>
|
7 |
<channel>community</channel>
|
@@ -41,13 +41,16 @@ Below is the list of New Status's that have been added:
|
|
41 |
To add your own Status's you can edit the following file:
|
42 |
magento_root/app/code/local/sales/local/etc/config.xml
|
43 |
|
44 |
-
Just follow the istructions of the grey text in that file
|
|
|
|
|
|
|
45 |
<notes>Thanks given to:
|
46 |
Spheric, Atlasit, Ajayksh, Erenaud</notes>
|
47 |
<authors><author><name>Itai Etzman</name><user>auto-converted</user><email>webmaster@digitaladdiction.co.za</email></author></authors>
|
48 |
-
<date>2009-06-
|
49 |
-
<time>
|
50 |
-
<contents><target name="
|
51 |
<compatible/>
|
52 |
<dependencies/>
|
53 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Order_Status</name>
|
4 |
+
<version>0.1.2</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/gpl-license.php">GNU General Public License (GPL)</license>
|
7 |
<channel>community</channel>
|
41 |
To add your own Status's you can edit the following file:
|
42 |
magento_root/app/code/local/sales/local/etc/config.xml
|
43 |
|
44 |
+
Just follow the istructions of the grey text in that file.
|
45 |
+
|
46 |
+
Version 0.1.2 Update:
|
47 |
+
Moved files to Community Codepool instead of Local Codepool</description>
|
48 |
<notes>Thanks given to:
|
49 |
Spheric, Atlasit, Ajayksh, Erenaud</notes>
|
50 |
<authors><author><name>Itai Etzman</name><user>auto-converted</user><email>webmaster@digitaladdiction.co.za</email></author></authors>
|
51 |
+
<date>2009-06-23</date>
|
52 |
+
<time>21:57:34</time>
|
53 |
+
<contents><target name="magecommunity"><dir name="Mage"><dir name="Sales"><dir name="Community"><dir name="etc"><file name="config.xml" hash="4965abead2b68d23a40ef65177aed4b5"/></dir><file name="Default.php" hash="10cf2756430903367c2538b0c15de524"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Status.xml" hash="d064d4f204095f283f441926290b12d6"/></dir></target></contents>
|
54 |
<compatible/>
|
55 |
<dependencies/>
|
56 |
</package>
|