Version Notes
Added "Shipping Description" column.
Download this release
Release Info
| Developer | Gilles Lesire |
| Extension | Noble_Extended_Order_Grid |
| Version | 1.0.5 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.4 to 1.0.5
app/code/community/Noble/AdminOrderGrid/Block/Sales/Order/Grid.php
CHANGED
|
@@ -42,6 +42,10 @@ class Noble_AdminOrderGrid_Block_Sales_Order_Grid extends Mage_Adminhtml_Block_W
|
|
| 42 |
$orderFields["shipping_method"] = "shipping_method";
|
| 43 |
}
|
| 44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
if(Mage::getStoreConfig('noble/extended_columns/customer_email')) {
|
| 46 |
$orderFields["customer_email"] = "customer_email";
|
| 47 |
}
|
|
@@ -245,6 +249,14 @@ class Noble_AdminOrderGrid_Block_Sales_Order_Grid extends Mage_Adminhtml_Block_W
|
|
| 245 |
));
|
| 246 |
}
|
| 247 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 248 |
if(Mage::getStoreConfig('noble/extended_columns/customer_email')) {
|
| 249 |
$this->addColumn('customer_email', array(
|
| 250 |
'header' => $this->__('Customer email'),
|
| 42 |
$orderFields["shipping_method"] = "shipping_method";
|
| 43 |
}
|
| 44 |
|
| 45 |
+
if(Mage::getStoreConfig('noble/extended_columns/shipping_description')) {
|
| 46 |
+
$orderFields["shipping_description"] = "shipping_description";
|
| 47 |
+
}
|
| 48 |
+
|
| 49 |
if(Mage::getStoreConfig('noble/extended_columns/customer_email')) {
|
| 50 |
$orderFields["customer_email"] = "customer_email";
|
| 51 |
}
|
| 249 |
));
|
| 250 |
}
|
| 251 |
|
| 252 |
+
if(Mage::getStoreConfig('noble/extended_columns/shipping_description')) {
|
| 253 |
+
$this->addColumn('shipping_description', array(
|
| 254 |
+
'header' => $this->__('Shipping Description'),
|
| 255 |
+
'index' => 'shipping_description'
|
| 256 |
+
));
|
| 257 |
+
}
|
| 258 |
+
|
| 259 |
+
|
| 260 |
if(Mage::getStoreConfig('noble/extended_columns/customer_email')) {
|
| 261 |
$this->addColumn('customer_email', array(
|
| 262 |
'header' => $this->__('Customer email'),
|
app/code/community/Noble/AdminOrderGrid/etc/config.xml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
<config>
|
| 3 |
<modules>
|
| 4 |
<Noble_AdminOrderGrid>
|
| 5 |
-
<version>1.0.
|
| 6 |
</Noble_AdminOrderGrid>
|
| 7 |
</modules>
|
| 8 |
<global>
|
|
@@ -39,9 +39,16 @@
|
|
| 39 |
</default_columns>
|
| 40 |
<extended_columns>
|
| 41 |
<shipping_method>0</shipping_method>
|
|
|
|
| 42 |
<payment_method>0</payment_method>
|
| 43 |
<shipping_country>0</shipping_country>
|
|
|
|
|
|
|
|
|
|
| 44 |
<billing_country>0</billing_country>
|
|
|
|
|
|
|
|
|
|
| 45 |
<customer_email>0</customer_email>
|
| 46 |
<amount_items>0</amount_items>
|
| 47 |
<weight>0</weight>
|
| 2 |
<config>
|
| 3 |
<modules>
|
| 4 |
<Noble_AdminOrderGrid>
|
| 5 |
+
<version>1.0.5</version>
|
| 6 |
</Noble_AdminOrderGrid>
|
| 7 |
</modules>
|
| 8 |
<global>
|
| 39 |
</default_columns>
|
| 40 |
<extended_columns>
|
| 41 |
<shipping_method>0</shipping_method>
|
| 42 |
+
<shipping_description>0</shipping_description>
|
| 43 |
<payment_method>0</payment_method>
|
| 44 |
<shipping_country>0</shipping_country>
|
| 45 |
+
<shipping_region>0</shipping_region>
|
| 46 |
+
<shipping_city>0</shipping_city>
|
| 47 |
+
<shipping_postcode>0</shipping_postcode>
|
| 48 |
<billing_country>0</billing_country>
|
| 49 |
+
<billing_region>0</billing_region>
|
| 50 |
+
<billing_city>0</billing_city>
|
| 51 |
+
<billing_postcode>0</billing_postcode>
|
| 52 |
<customer_email>0</customer_email>
|
| 53 |
<amount_items>0</amount_items>
|
| 54 |
<weight>0</weight>
|
app/code/community/Noble/AdminOrderGrid/etc/system.xml
CHANGED
|
@@ -145,16 +145,25 @@
|
|
| 145 |
<shipping_method translate="label">
|
| 146 |
<label>Shipping Method: </label>
|
| 147 |
<frontend_type>select</frontend_type>
|
| 148 |
-
<sort_order>
|
| 149 |
<show_in_default>1</show_in_default>
|
| 150 |
<show_in_website>0</show_in_website>
|
| 151 |
<show_in_store>0</show_in_store>
|
| 152 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 153 |
</shipping_method>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 154 |
<payment_method translate="label">
|
| 155 |
<label>Payment Method: </label>
|
| 156 |
<frontend_type>select</frontend_type>
|
| 157 |
-
<sort_order>
|
| 158 |
<show_in_default>1</show_in_default>
|
| 159 |
<show_in_website>0</show_in_website>
|
| 160 |
<show_in_store>0</show_in_store>
|
|
@@ -163,7 +172,7 @@
|
|
| 163 |
<shipping_country translate="label">
|
| 164 |
<label>Shipping Country: </label>
|
| 165 |
<frontend_type>select</frontend_type>
|
| 166 |
-
<sort_order>
|
| 167 |
<show_in_default>1</show_in_default>
|
| 168 |
<show_in_website>0</show_in_website>
|
| 169 |
<show_in_store>0</show_in_store>
|
|
@@ -172,7 +181,7 @@
|
|
| 172 |
<shipping_region translate="label">
|
| 173 |
<label>Shipping Region: </label>
|
| 174 |
<frontend_type>select</frontend_type>
|
| 175 |
-
<sort_order>
|
| 176 |
<show_in_default>1</show_in_default>
|
| 177 |
<show_in_website>0</show_in_website>
|
| 178 |
<show_in_store>0</show_in_store>
|
|
@@ -181,7 +190,7 @@
|
|
| 181 |
<shipping_city translate="label">
|
| 182 |
<label>Shipping City: </label>
|
| 183 |
<frontend_type>select</frontend_type>
|
| 184 |
-
<sort_order>
|
| 185 |
<show_in_default>1</show_in_default>
|
| 186 |
<show_in_website>0</show_in_website>
|
| 187 |
<show_in_store>0</show_in_store>
|
|
@@ -190,7 +199,7 @@
|
|
| 190 |
<shipping_postcode translate="label">
|
| 191 |
<label>Shipping Postcode: </label>
|
| 192 |
<frontend_type>select</frontend_type>
|
| 193 |
-
<sort_order>
|
| 194 |
<show_in_default>1</show_in_default>
|
| 195 |
<show_in_website>0</show_in_website>
|
| 196 |
<show_in_store>0</show_in_store>
|
|
@@ -199,7 +208,7 @@
|
|
| 199 |
<billing_country translate="label">
|
| 200 |
<label>Billing Country: </label>
|
| 201 |
<frontend_type>select</frontend_type>
|
| 202 |
-
<sort_order>
|
| 203 |
<show_in_default>1</show_in_default>
|
| 204 |
<show_in_website>0</show_in_website>
|
| 205 |
<show_in_store>0</show_in_store>
|
|
@@ -208,7 +217,7 @@
|
|
| 208 |
<billing_region translate="label">
|
| 209 |
<label>Billing Region: </label>
|
| 210 |
<frontend_type>select</frontend_type>
|
| 211 |
-
<sort_order>
|
| 212 |
<show_in_default>1</show_in_default>
|
| 213 |
<show_in_website>0</show_in_website>
|
| 214 |
<show_in_store>0</show_in_store>
|
|
@@ -217,7 +226,7 @@
|
|
| 217 |
<billing_city translate="label">
|
| 218 |
<label>Billing City: </label>
|
| 219 |
<frontend_type>select</frontend_type>
|
| 220 |
-
<sort_order>
|
| 221 |
<show_in_default>1</show_in_default>
|
| 222 |
<show_in_website>0</show_in_website>
|
| 223 |
<show_in_store>0</show_in_store>
|
|
@@ -226,7 +235,7 @@
|
|
| 226 |
<billing_postcode translate="label">
|
| 227 |
<label>Billing Postcode: </label>
|
| 228 |
<frontend_type>select</frontend_type>
|
| 229 |
-
<sort_order>
|
| 230 |
<show_in_default>1</show_in_default>
|
| 231 |
<show_in_website>0</show_in_website>
|
| 232 |
<show_in_store>0</show_in_store>
|
|
@@ -235,7 +244,7 @@
|
|
| 235 |
<customer_email translate="label">
|
| 236 |
<label>Customer Email: </label>
|
| 237 |
<frontend_type>select</frontend_type>
|
| 238 |
-
<sort_order>
|
| 239 |
<show_in_default>1</show_in_default>
|
| 240 |
<show_in_website>0</show_in_website>
|
| 241 |
<show_in_store>0</show_in_store>
|
|
@@ -244,7 +253,7 @@
|
|
| 244 |
<amount_items translate="label">
|
| 245 |
<label># of Items: </label>
|
| 246 |
<frontend_type>select</frontend_type>
|
| 247 |
-
<sort_order>
|
| 248 |
<show_in_default>1</show_in_default>
|
| 249 |
<show_in_website>0</show_in_website>
|
| 250 |
<show_in_store>0</show_in_store>
|
|
@@ -253,7 +262,7 @@
|
|
| 253 |
<weight translate="label">
|
| 254 |
<label>Weight: </label>
|
| 255 |
<frontend_type>select</frontend_type>
|
| 256 |
-
<sort_order>
|
| 257 |
<show_in_default>1</show_in_default>
|
| 258 |
<show_in_website>0</show_in_website>
|
| 259 |
<show_in_store>0</show_in_store>
|
|
@@ -262,7 +271,7 @@
|
|
| 262 |
<subtotal translate="label">
|
| 263 |
<label>Subtotal: </label>
|
| 264 |
<frontend_type>select</frontend_type>
|
| 265 |
-
<sort_order>
|
| 266 |
<show_in_default>1</show_in_default>
|
| 267 |
<show_in_website>0</show_in_website>
|
| 268 |
<show_in_store>0</show_in_store>
|
|
@@ -271,7 +280,7 @@
|
|
| 271 |
<customer_group translate="label">
|
| 272 |
<label>Customer Group: </label>
|
| 273 |
<frontend_type>select</frontend_type>
|
| 274 |
-
<sort_order>
|
| 275 |
<show_in_default>1</show_in_default>
|
| 276 |
<show_in_website>0</show_in_website>
|
| 277 |
<show_in_store>0</show_in_store>
|
|
@@ -280,7 +289,7 @@
|
|
| 280 |
<remote_ip translate="label">
|
| 281 |
<label>Remote IP: </label>
|
| 282 |
<frontend_type>select</frontend_type>
|
| 283 |
-
<sort_order>
|
| 284 |
<show_in_default>1</show_in_default>
|
| 285 |
<show_in_website>0</show_in_website>
|
| 286 |
<show_in_store>0</show_in_store>
|
|
@@ -289,7 +298,7 @@
|
|
| 289 |
<coupon_code translate="label">
|
| 290 |
<label>Coupon code: </label>
|
| 291 |
<frontend_type>select</frontend_type>
|
| 292 |
-
<sort_order>
|
| 293 |
<show_in_default>1</show_in_default>
|
| 294 |
<show_in_website>0</show_in_website>
|
| 295 |
<show_in_store>0</show_in_store>
|
| 145 |
<shipping_method translate="label">
|
| 146 |
<label>Shipping Method: </label>
|
| 147 |
<frontend_type>select</frontend_type>
|
| 148 |
+
<sort_order>205</sort_order>
|
| 149 |
<show_in_default>1</show_in_default>
|
| 150 |
<show_in_website>0</show_in_website>
|
| 151 |
<show_in_store>0</show_in_store>
|
| 152 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 153 |
</shipping_method>
|
| 154 |
+
<shipping_description translate="label">
|
| 155 |
+
<label>Shipping Description: </label>
|
| 156 |
+
<frontend_type>select</frontend_type>
|
| 157 |
+
<sort_order>210</sort_order>
|
| 158 |
+
<show_in_default>1</show_in_default>
|
| 159 |
+
<show_in_website>0</show_in_website>
|
| 160 |
+
<show_in_store>0</show_in_store>
|
| 161 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 162 |
+
</shipping_description>
|
| 163 |
<payment_method translate="label">
|
| 164 |
<label>Payment Method: </label>
|
| 165 |
<frontend_type>select</frontend_type>
|
| 166 |
+
<sort_order>215</sort_order>
|
| 167 |
<show_in_default>1</show_in_default>
|
| 168 |
<show_in_website>0</show_in_website>
|
| 169 |
<show_in_store>0</show_in_store>
|
| 172 |
<shipping_country translate="label">
|
| 173 |
<label>Shipping Country: </label>
|
| 174 |
<frontend_type>select</frontend_type>
|
| 175 |
+
<sort_order>220</sort_order>
|
| 176 |
<show_in_default>1</show_in_default>
|
| 177 |
<show_in_website>0</show_in_website>
|
| 178 |
<show_in_store>0</show_in_store>
|
| 181 |
<shipping_region translate="label">
|
| 182 |
<label>Shipping Region: </label>
|
| 183 |
<frontend_type>select</frontend_type>
|
| 184 |
+
<sort_order>225</sort_order>
|
| 185 |
<show_in_default>1</show_in_default>
|
| 186 |
<show_in_website>0</show_in_website>
|
| 187 |
<show_in_store>0</show_in_store>
|
| 190 |
<shipping_city translate="label">
|
| 191 |
<label>Shipping City: </label>
|
| 192 |
<frontend_type>select</frontend_type>
|
| 193 |
+
<sort_order>230</sort_order>
|
| 194 |
<show_in_default>1</show_in_default>
|
| 195 |
<show_in_website>0</show_in_website>
|
| 196 |
<show_in_store>0</show_in_store>
|
| 199 |
<shipping_postcode translate="label">
|
| 200 |
<label>Shipping Postcode: </label>
|
| 201 |
<frontend_type>select</frontend_type>
|
| 202 |
+
<sort_order>235</sort_order>
|
| 203 |
<show_in_default>1</show_in_default>
|
| 204 |
<show_in_website>0</show_in_website>
|
| 205 |
<show_in_store>0</show_in_store>
|
| 208 |
<billing_country translate="label">
|
| 209 |
<label>Billing Country: </label>
|
| 210 |
<frontend_type>select</frontend_type>
|
| 211 |
+
<sort_order>240</sort_order>
|
| 212 |
<show_in_default>1</show_in_default>
|
| 213 |
<show_in_website>0</show_in_website>
|
| 214 |
<show_in_store>0</show_in_store>
|
| 217 |
<billing_region translate="label">
|
| 218 |
<label>Billing Region: </label>
|
| 219 |
<frontend_type>select</frontend_type>
|
| 220 |
+
<sort_order>245</sort_order>
|
| 221 |
<show_in_default>1</show_in_default>
|
| 222 |
<show_in_website>0</show_in_website>
|
| 223 |
<show_in_store>0</show_in_store>
|
| 226 |
<billing_city translate="label">
|
| 227 |
<label>Billing City: </label>
|
| 228 |
<frontend_type>select</frontend_type>
|
| 229 |
+
<sort_order>250</sort_order>
|
| 230 |
<show_in_default>1</show_in_default>
|
| 231 |
<show_in_website>0</show_in_website>
|
| 232 |
<show_in_store>0</show_in_store>
|
| 235 |
<billing_postcode translate="label">
|
| 236 |
<label>Billing Postcode: </label>
|
| 237 |
<frontend_type>select</frontend_type>
|
| 238 |
+
<sort_order>255</sort_order>
|
| 239 |
<show_in_default>1</show_in_default>
|
| 240 |
<show_in_website>0</show_in_website>
|
| 241 |
<show_in_store>0</show_in_store>
|
| 244 |
<customer_email translate="label">
|
| 245 |
<label>Customer Email: </label>
|
| 246 |
<frontend_type>select</frontend_type>
|
| 247 |
+
<sort_order>260</sort_order>
|
| 248 |
<show_in_default>1</show_in_default>
|
| 249 |
<show_in_website>0</show_in_website>
|
| 250 |
<show_in_store>0</show_in_store>
|
| 253 |
<amount_items translate="label">
|
| 254 |
<label># of Items: </label>
|
| 255 |
<frontend_type>select</frontend_type>
|
| 256 |
+
<sort_order>265</sort_order>
|
| 257 |
<show_in_default>1</show_in_default>
|
| 258 |
<show_in_website>0</show_in_website>
|
| 259 |
<show_in_store>0</show_in_store>
|
| 262 |
<weight translate="label">
|
| 263 |
<label>Weight: </label>
|
| 264 |
<frontend_type>select</frontend_type>
|
| 265 |
+
<sort_order>270</sort_order>
|
| 266 |
<show_in_default>1</show_in_default>
|
| 267 |
<show_in_website>0</show_in_website>
|
| 268 |
<show_in_store>0</show_in_store>
|
| 271 |
<subtotal translate="label">
|
| 272 |
<label>Subtotal: </label>
|
| 273 |
<frontend_type>select</frontend_type>
|
| 274 |
+
<sort_order>275</sort_order>
|
| 275 |
<show_in_default>1</show_in_default>
|
| 276 |
<show_in_website>0</show_in_website>
|
| 277 |
<show_in_store>0</show_in_store>
|
| 280 |
<customer_group translate="label">
|
| 281 |
<label>Customer Group: </label>
|
| 282 |
<frontend_type>select</frontend_type>
|
| 283 |
+
<sort_order>280</sort_order>
|
| 284 |
<show_in_default>1</show_in_default>
|
| 285 |
<show_in_website>0</show_in_website>
|
| 286 |
<show_in_store>0</show_in_store>
|
| 289 |
<remote_ip translate="label">
|
| 290 |
<label>Remote IP: </label>
|
| 291 |
<frontend_type>select</frontend_type>
|
| 292 |
+
<sort_order>285</sort_order>
|
| 293 |
<show_in_default>1</show_in_default>
|
| 294 |
<show_in_website>0</show_in_website>
|
| 295 |
<show_in_store>0</show_in_store>
|
| 298 |
<coupon_code translate="label">
|
| 299 |
<label>Coupon code: </label>
|
| 300 |
<frontend_type>select</frontend_type>
|
| 301 |
+
<sort_order>290</sort_order>
|
| 302 |
<show_in_default>1</show_in_default>
|
| 303 |
<show_in_website>0</show_in_website>
|
| 304 |
<show_in_store>0</show_in_store>
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Noble_Extended_Order_Grid</name>
|
| 4 |
-
<version>1.0.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="https://opensource.org/licenses/gpl-license.php">GPL</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -35,7 +35,8 @@ Available custom columns are:
|
|
| 35 |
- Shipping city<br />
|
| 36 |
- Shipping postcode<br />
|
| 37 |
- Payment method<br />
|
| 38 |
-
- Shipping
|
|
|
|
| 39 |
- Billing country<br />
|
| 40 |
- Billing region<br />
|
| 41 |
- Billing city<br />
|
|
@@ -62,11 +63,11 @@ Configuring the columns is very easy. Just login to your Magento Admin panel, go
|
|
| 62 |
<h2>4. Extra information</h2>
|
| 63 |
<p>
|
| 64 |
<a href="https://github.com/KingIsulgard/Magento-Noble-Extended-Order-Grid">Visit on GitHub</a></p></description>
|
| 65 |
-
<notes>Added
|
| 66 |
<authors><author><name>Gilles Lesire</name><user>NobleHouse</user><email>gilles.lesire@noble-house.tk</email></author></authors>
|
| 67 |
-
<date>2016-02-
|
| 68 |
-
<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="
|
| 70 |
<compatible/>
|
| 71 |
<dependencies><required><php><min>4.0.0</min><max>6.0.0</max></php></required></dependencies>
|
| 72 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Noble_Extended_Order_Grid</name>
|
| 4 |
+
<version>1.0.5</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="https://opensource.org/licenses/gpl-license.php">GPL</license>
|
| 7 |
<channel>community</channel>
|
| 35 |
- Shipping city<br />
|
| 36 |
- Shipping postcode<br />
|
| 37 |
- Payment method<br />
|
| 38 |
+
- Shipping Method<br />
|
| 39 |
+
- Shipping Description<br />
|
| 40 |
- Billing country<br />
|
| 41 |
- Billing region<br />
|
| 42 |
- Billing city<br />
|
| 63 |
<h2>4. Extra information</h2>
|
| 64 |
<p>
|
| 65 |
<a href="https://github.com/KingIsulgard/Magento-Noble-Extended-Order-Grid">Visit on GitHub</a></p></description>
|
| 66 |
+
<notes>Added "Shipping Description" column.</notes>
|
| 67 |
<authors><author><name>Gilles Lesire</name><user>NobleHouse</user><email>gilles.lesire@noble-house.tk</email></author></authors>
|
| 68 |
+
<date>2016-02-22</date>
|
| 69 |
+
<time>08:43:37</time>
|
| 70 |
+
<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="91a376e975b0a6df525a6e004ebba84a"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="499a39af87fc5642604e93dd0ee9f294"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><dir name="Dropdown"><file name="Country.php" hash="c153f42c3522fbf32963c59ab79c12fb"/></dir></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="dd8f9834661e4f43e6fe7b4176431b15"/><file name="config.xml" hash="f932b7f7196a8f394e887306d36565b1"/><file name="system.xml" hash="14b04151bbae1fb6164822cb739045f8"/></dir></dir><dir name="AutoInvoice"><dir name="Model"><file name="Observer.php" hash="1d4571dfe9b0e73ff05f5979b7bad9c0"/></dir><dir name="etc"><file name="config.xml" hash="509650794f0dd267d2dee9ba96f363ef"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="PickUpOrders"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Grid.php" hash="721c5ff4187ed1f8d265fed88c65f922"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name="Order.php" hash="e15c0a54b29c13a5830b969b311084b8"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Helper"><file name="Data.php" hash="9478929620ef60358c0794d5ca9ed97e"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="PickuporderController.php" hash="b5df4be837e45debb5c53ae14e0fd96a"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="etc"><file name="adminhtml.xml" hash="460a5361cb214f82674f54a4802376f0"/><file name="config.xml" hash="9f348006972adf69078b9e3c66b6f222"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="UPSOrders"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Grid.php" hash="a174e12a444e1e53561dbce6307dd7ae"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name="Order.php" hash="36108dfce8f389f3a89d855a1250c36c"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Helper"><file name="Data.php" hash="da550aadb62e4c32b4c151004ee09675"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="UpsorderController.php" hash="6278740fd665f6275c6062c171fe15e4"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="etc"><file name="adminhtml.xml" hash="116c8f4bf7e4b9610905a70608237ef7"/><file name="config.xml" hash="98acd476cb4ecb82575dbdaa7b73a28c"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="a686a5607d70f9aebb60d8b2f4260b00"/></dir></target><target name="mageetc"><dir name="modules"><file name="Noble_AdminOrderGrid.xml" hash="1637b9c7d1a23394272986444bc3880b"/></dir></target></contents>
|
| 71 |
<compatible/>
|
| 72 |
<dependencies><required><php><min>4.0.0</min><max>6.0.0</max></php></required></dependencies>
|
| 73 |
</package>
|
