Noble_Extended_Order_Grid - Version 1.0.3

Version Notes

Fixed issue with non standard payment methods not showing up in the column filter select field.

Download this release

Release Info

Developer Gilles Lesire
Extension Noble_Extended_Order_Grid
Version 1.0.3
Comparing to
See all releases


Code changes from version 1.0.2 to 1.0.3

app/code/community/Noble/AdminOrderGrid/Block/Sales/Order/Grid.php CHANGED
@@ -539,6 +539,10 @@ class Noble_AdminOrderGrid_Block_Sales_Order_Grid extends Mage_Adminhtml_Block_W
539
  $optionText = 'MSP Visa';
540
  } elseif ($option->getMethod() == "paypal") {
541
  $optionText = 'PayPal';
 
 
 
 
542
  }
543
 
544
  if($optionText) {
539
  $optionText = 'MSP Visa';
540
  } elseif ($option->getMethod() == "paypal") {
541
  $optionText = 'PayPal';
542
+ } elseif ($option->getMethod() == "ugiftcert") {
543
+ $optionText = 'Unirgy Gift Certificate';
544
+ } else {
545
+ $optionText = ucfirst($option->getMethod());
546
  }
547
 
548
  if($optionText) {
app/code/community/Noble/AdminOrderGrid/Block/Sales/Order/Grid/Renderer/Paymentmethod.php CHANGED
@@ -41,6 +41,8 @@ class Noble_AdminOrderGrid_Block_Sales_Order_Grid_Renderer_Paymentmethod extends
41
  return 'MSP Visa';
42
  } elseif ($value == "paypal") {
43
  return 'PayPal';
 
 
44
  }
45
 
46
  return ucfirst($value);
41
  return 'MSP Visa';
42
  } elseif ($value == "paypal") {
43
  return 'PayPal';
44
+ } elseif ($value == "ugiftcert") {
45
+ return 'Unirgy Gift Certificate';
46
  }
47
 
48
  return ucfirst($value);
package.xml CHANGED
@@ -1,16 +1,22 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Noble_Extended_Order_Grid</name>
4
- <version>1.0.2</version>
5
  <stability>stable</stability>
6
- <license uri="https://raw.githubusercontent.com/KingIsulgard/Magento-Noble-Extended-Order-Grid/master/license.md">GPL</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>This extension gives the user the flexibility to customize the orders grid in the admin.</summary>
10
- <description>&lt;p&gt;&#xD;
11
- This extension gives the user the flexibility to customize the orders grid in the admin by removing existing columns or even adding custom columns to the grid.&#xD;
 
 
 
 
 
 
 
12
  &lt;/p&gt;&#xD;
13
- &#xD;
14
  &lt;h2&gt;Overview&lt;/h2&gt;&#xD;
15
  &lt;ol&gt;&#xD;
16
  &lt;li&gt;Features&lt;/li&gt;&#xD;
@@ -55,12 +61,12 @@ Configuring the columns is very easy. Just login to your Magento Admin panel, go
55
  &lt;/p&gt;&#xD;
56
  &lt;h2&gt;4. Extra information&lt;/h2&gt;&#xD;
57
  &lt;p&gt;&#xD;
58
- Github: https://github.com/KingIsulgard/Magento-Noble-Extended-Order-Grid&lt;/p&gt;</description>
59
- <notes>Added extended columns Weight and Remote IP</notes>
60
  <authors><author><name>Gilles Lesire</name><user>NobleHouse</user><email>gilles.lesire@gmail.com</email></author></authors>
61
- <date>2016-02-03</date>
62
- <time>11:08:41</time>
63
- <contents><target name="magecommunity"><dir name="Noble"><dir name="AdminOrderGrid"><dir name="Block"><dir name="Sales"><dir name="Order"><dir name="Grid"><dir name="Renderer"><file name="CustomerGroup.php" hash="0415c522a79744de05fdbabbe293233d"/><file name="Paymentmethod.php" hash="2bd441864434d36cf455cb8fbf7fd399"/><file name="Shippingmethod.php" hash="fb337469e0f8f40b91d9efc5197c4ce2"/></dir></dir><file name="Grid.php" hash="eea00fec48b19884f46c14b2110422df"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="f26371c30f43b67fc7e8895e67af20b9"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><dir name="Dropdown"><file name="Country.php" hash="15aaf45cb5ee39ac3dbf94cab44d46fd"/></dir></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="dd8f9834661e4f43e6fe7b4176431b15"/><file name="config.xml" hash="467754d8e88bf2616c4cb3184f973f0f"/><file name="system.xml" hash="82875e917a5dc2a1b8a9647ab0a610f9"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Noble_AdminOrderGrid.xml" hash="1637b9c7d1a23394272986444bc3880b"/></dir></target></contents>
64
  <compatible/>
65
  <dependencies><required><php><min>4.0.0</min><max>6.0.0</max></php></required></dependencies>
66
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Noble_Extended_Order_Grid</name>
4
+ <version>1.0.3</version>
5
  <stability>stable</stability>
6
+ <license uri="https://opensource.org/licenses/gpl-license.php">GPL</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>This extension gives the user the flexibility to customize the orders grid in the admin.</summary>
10
+ <description>&lt;h2&gt;Description&lt;/h2&gt;&#xD;
11
+ &lt;p&gt;&#xD;
12
+ Managing orders is probably the most frequent task you'll be doing in Magento when running your store. Unfortunately most of the information of an order is not visible in the order grid out of the box, making it impossible to filter on attributes which might be more relevant to you. &#xD;
13
+ &lt;/p&gt;&#xD;
14
+ &lt;p&gt;&#xD;
15
+ This extension gives the user the flexibility to customize the orders grid in the admin by removing existing columns or even adding custom columns to the grid. This way you will be able to customize and use the order grid however you want. Only display and be able to filter on the attributes you need for your store.&#xD;
16
+ &lt;/p&gt;&#xD;
17
+ &lt;p&gt;&#xD;
18
+ Tailor your order grid using a simple to use form in the admin configuration area in just a few seconds. This is a real time saver for anyone who prefers not to mess around in the Magento core files himself.&#xD;
19
  &lt;/p&gt;&#xD;
 
20
  &lt;h2&gt;Overview&lt;/h2&gt;&#xD;
21
  &lt;ol&gt;&#xD;
22
  &lt;li&gt;Features&lt;/li&gt;&#xD;
61
  &lt;/p&gt;&#xD;
62
  &lt;h2&gt;4. Extra information&lt;/h2&gt;&#xD;
63
  &lt;p&gt;&#xD;
64
+ &lt;a href="https://github.com/KingIsulgard/Magento-Noble-Extended-Order-Grid"&gt;Visit on GitHub&lt;/a&gt;&lt;/p&gt;</description>
65
+ <notes>Fixed issue with non standard payment methods not showing up in the column filter select field.</notes>
66
  <authors><author><name>Gilles Lesire</name><user>NobleHouse</user><email>gilles.lesire@gmail.com</email></author></authors>
67
+ <date>2016-02-09</date>
68
+ <time>13:12:46</time>
69
+ <contents><target name="magecommunity"><dir name="Noble"><dir name="AdminOrderGrid"><dir name="Block"><dir name="Sales"><dir name="Order"><dir name="Grid"><dir name="Renderer"><file name="CustomerGroup.php" hash="0415c522a79744de05fdbabbe293233d"/><file name="Paymentmethod.php" hash="78748496a1d56afb0435db876f32c276"/><file name="Shippingmethod.php" hash="fb337469e0f8f40b91d9efc5197c4ce2"/></dir></dir><file name="Grid.php" hash="b27077b825f07c83888784f8205959bb"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="f26371c30f43b67fc7e8895e67af20b9"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><dir name="Dropdown"><file name="Country.php" hash="15aaf45cb5ee39ac3dbf94cab44d46fd"/></dir></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="dd8f9834661e4f43e6fe7b4176431b15"/><file name="config.xml" hash="467754d8e88bf2616c4cb3184f973f0f"/><file name="system.xml" hash="82875e917a5dc2a1b8a9647ab0a610f9"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Noble_AdminOrderGrid.xml" hash="1637b9c7d1a23394272986444bc3880b"/></dir></target></contents>
70
  <compatible/>
71
  <dependencies><required><php><min>4.0.0</min><max>6.0.0</max></php></required></dependencies>
72
  </package>