Version Notes
Return Merchant Authorization
Download this release
Release Info
| Developer | wakensys |
| Extension | Jayje |
| Version | 1.00.17 |
| Comparing to | |
| See all releases | |
Code changes from version 1.00.16 to 1.00.17
- app/code/community/jayje/Rma/Block/Adminhtml/Rma/Edit/Tab/Form.php +6 -7
- app/code/community/jayje/Rma/Block/Adminhtml/Rma/Edit/Tab/Order.php +1 -32
- app/code/community/jayje/Rma/Block/Adminhtml/Rma/Ritems.phtmt.php +0 -89
- app/code/community/jayje/Rma/Block/Adminhtml/Rma/ritem.php +0 -91
- app/code/community/jayje/Rma/Block/Rma.php +1 -1
- package.xml +7 -7
app/code/community/jayje/Rma/Block/Adminhtml/Rma/Edit/Tab/Form.php
CHANGED
|
@@ -7,13 +7,9 @@ class Jayje_Rma_Block_Adminhtml_Rma_Edit_Tab_Form extends Mage_Adminhtml_Block_W
|
|
| 7 |
$form = new Varien_Data_Form();
|
| 8 |
$this->setForm($form);
|
| 9 |
$fieldset = $form->addFieldset('rma_form', array('legend'=>Mage::helper('rma')->__('RMA information')));
|
| 10 |
-
// $customer_id = Mage::registry('rma_data')->getCustomerId();
|
| 11 |
-
// $customer = Mage::getModel('customer/customer')->load($customer_id)->getName();
|
| 12 |
-
|
| 13 |
-
$id = $this->getRequest()->getParam('id');
|
| 14 |
-
if($id != ''){
|
| 15 |
-
|
| 16 |
|
|
|
|
|
|
|
| 17 |
Mage::register('rid', $id);
|
| 18 |
|
| 19 |
$fieldset->addField('title', 'label', array(
|
|
@@ -29,6 +25,7 @@ if($id != ''){
|
|
| 29 |
'required' => false,
|
| 30 |
'name' => 'increment_id',
|
| 31 |
));
|
|
|
|
| 32 |
$fieldset->addField('customer_id', 'hidden', array(
|
| 33 |
'label' => Mage::helper('rma')->__('Customer Name'),
|
| 34 |
'class' => 'required-entry',
|
|
@@ -37,7 +34,8 @@ if($id != ''){
|
|
| 37 |
));
|
| 38 |
|
| 39 |
|
| 40 |
-
}else{
|
|
|
|
| 41 |
$fieldset->addField('title', 'text', array(
|
| 42 |
'label' => Mage::helper('rma')->__('Title'),
|
| 43 |
'class' => 'required-entry',
|
|
@@ -51,6 +49,7 @@ if($id != ''){
|
|
| 51 |
'required' => false,
|
| 52 |
'name' => 'increment_id',
|
| 53 |
));
|
|
|
|
| 54 |
$fieldset->addField('customer_id', 'text', array(
|
| 55 |
'label' => Mage::helper('rma')->__('Customer Name'),
|
| 56 |
'class' => 'required-entry',
|
| 7 |
$form = new Varien_Data_Form();
|
| 8 |
$this->setForm($form);
|
| 9 |
$fieldset = $form->addFieldset('rma_form', array('legend'=>Mage::helper('rma')->__('RMA information')));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
|
| 11 |
+
$id = $this->getRequest()->getParam('id');
|
| 12 |
+
if($id != ''){
|
| 13 |
Mage::register('rid', $id);
|
| 14 |
|
| 15 |
$fieldset->addField('title', 'label', array(
|
| 25 |
'required' => false,
|
| 26 |
'name' => 'increment_id',
|
| 27 |
));
|
| 28 |
+
|
| 29 |
$fieldset->addField('customer_id', 'hidden', array(
|
| 30 |
'label' => Mage::helper('rma')->__('Customer Name'),
|
| 31 |
'class' => 'required-entry',
|
| 34 |
));
|
| 35 |
|
| 36 |
|
| 37 |
+
}else{
|
| 38 |
+
|
| 39 |
$fieldset->addField('title', 'text', array(
|
| 40 |
'label' => Mage::helper('rma')->__('Title'),
|
| 41 |
'class' => 'required-entry',
|
| 49 |
'required' => false,
|
| 50 |
'name' => 'increment_id',
|
| 51 |
));
|
| 52 |
+
|
| 53 |
$fieldset->addField('customer_id', 'text', array(
|
| 54 |
'label' => Mage::helper('rma')->__('Customer Name'),
|
| 55 |
'class' => 'required-entry',
|
app/code/community/jayje/Rma/Block/Adminhtml/Rma/Edit/Tab/Order.php
CHANGED
|
@@ -1,36 +1,5 @@
|
|
| 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_Adminhtml
|
| 23 |
-
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
-
*/
|
| 26 |
-
|
| 27 |
-
/**
|
| 28 |
-
* Adminhtml sales orders grid
|
| 29 |
-
*
|
| 30 |
-
* @category Mage
|
| 31 |
-
* @package Mage_Adminhtml
|
| 32 |
-
* @author Magento Core Team <core@magentocommerce.com>
|
| 33 |
-
*/
|
| 34 |
class Jayje_Rma_Block_Adminhtml_Rma_Edit_Tab_Order extends Mage_Adminhtml_Block_Widget_Grid
|
| 35 |
{
|
| 36 |
|
| 1 |
<?php
|
| 2 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
class Jayje_Rma_Block_Adminhtml_Rma_Edit_Tab_Order extends Mage_Adminhtml_Block_Widget_Grid
|
| 4 |
{
|
| 5 |
|
app/code/community/jayje/Rma/Block/Adminhtml/Rma/Ritems.phtmt.php
DELETED
|
@@ -1,89 +0,0 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
$order_id = $_GET['oid'];
|
| 3 |
-
require("app/Mage.php");
|
| 4 |
-
umask(0);
|
| 5 |
-
Mage::app();
|
| 6 |
-
$increment_id = Mage::getModel('sales/order')->load(12)->getData();
|
| 7 |
-
//print_r($increment_id);
|
| 8 |
-
?>
|
| 9 |
-
<script>
|
| 10 |
-
function checkQty(id){
|
| 11 |
-
var rma_qty = document.getElementById("rma"+id).value;
|
| 12 |
-
var o_qty = document.getElementById("o"+id).value;
|
| 13 |
-
if(isNaN(rma_qty)){
|
| 14 |
-
alert('not number');
|
| 15 |
-
document.getElementById("rma"+id).value=1
|
| 16 |
-
}else{
|
| 17 |
-
if(o_qty >= rma_qty){
|
| 18 |
-
// alert('Rma quantity should be less than ordered quantity');
|
| 19 |
-
//document.getElementById("rma"+id).value=1
|
| 20 |
-
}else{
|
| 21 |
-
alert('Rma quantity should be less than ordered quantity');
|
| 22 |
-
document.getElementById("rma"+id).value=1
|
| 23 |
-
}
|
| 24 |
-
}
|
| 25 |
-
}
|
| 26 |
-
</script>
|
| 27 |
-
<div class="entry-edit">
|
| 28 |
-
<div class="entry-edit-head">
|
| 29 |
-
<h4 class="icon-head head-products">Items RMA Requested for</h4>
|
| 30 |
-
</div>
|
| 31 |
-
</div><div class="grid np">
|
| 32 |
-
<div class="hor-scroll">
|
| 33 |
-
<table cellspacing="0" class="data order-tables" width="90%">
|
| 34 |
-
<thead>
|
| 35 |
-
<tr class="headings">
|
| 36 |
-
<th><strong>Product</strong></th><th><strong>Price</strong></th><th><strong>Qty</strong></th><th><strong>Return <br />Qty</strong></th>
|
| 37 |
-
</tr>
|
| 38 |
-
</thead>
|
| 39 |
-
<tbody class="even">
|
| 40 |
-
<?php
|
| 41 |
-
|
| 42 |
-
$items = Mage::getModel('sales/order')->load($order_id)->getAllItems();
|
| 43 |
-
foreach ($items as $itemId => $item)
|
| 44 |
-
{
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
echo $tf= checkRmaProduct($order_id, $item->getProductId())
|
| 48 |
-
?>
|
| 49 |
-
<tr class="border">
|
| 50 |
-
<td>
|
| 51 |
-
<div id="order_item_33" class="item-container">
|
| 52 |
-
<div class="item-text">
|
| 53 |
-
<h5 class="title"><span id="order_item_33_title"><?php echo $item->getName() ?></span></h5>
|
| 54 |
-
</div>
|
| 55 |
-
</div>
|
| 56 |
-
</td>
|
| 57 |
-
<td>
|
| 58 |
-
<span class="price-excl-tax">
|
| 59 |
-
<span class="price"><?php echo $item->getPrice() ?></span>
|
| 60 |
-
</span>
|
| 61 |
-
</td><td><strong><?php echo round($item->getQtyOrdered()) ?></strong></td>
|
| 62 |
-
<td>
|
| 63 |
-
<input type="hidden" id="o<?php echo $item->getProductId() ?>" size="2" name="" value="<?php echo $item->getQtyOrdered() ?>" />
|
| 64 |
-
|
| 65 |
-
<?php if($tf>0){ ?>
|
| 66 |
-
Already Requested
|
| 67 |
-
<?php }else{ ?>
|
| 68 |
-
<input type="text" id="rma<?php echo $item->getProductId() ?>" size="2" name="qty_<?php echo $itemId; ?>" value="1" autocomplete="off" onkeyup="return checkQty(<?php echo $item->getProductId() ?>)" />
|
| 69 |
-
<?php } ?>
|
| 70 |
-
|
| 71 |
-
<input type="hidden" size="2" name="pid_<?php echo $itemId; ?>" value="<?php echo $item->getProductId() ?>" /></td>
|
| 72 |
-
<input type="hidden" size="2" name="price_<?php echo $itemId; ?>" value="<?php echo $item->getPrice() ?>" /></td>
|
| 73 |
-
</tr>
|
| 74 |
-
<?php } ?><tr><td> <input type="hidden" size="2" name="maxpid" value="<?php echo $itemId ?>" /></td>
|
| 75 |
-
</td></tr>
|
| 76 |
-
</tbody>
|
| 77 |
-
</table>
|
| 78 |
-
</div><?php
|
| 79 |
-
function checkRmaProduct($oid, $pid){
|
| 80 |
-
$db = Mage::getSingleton('core/resource')->getConnection('core_read');
|
| 81 |
-
$que = "SELECT product_id FROM `rma_products` WHERE `order_id` ='$oid' and `product_id` = '$pid' LIMIT 0 , 1";
|
| 82 |
-
$result = $db->query($que);
|
| 83 |
-
$resultn = $result->fetch(PDO::FETCH_ASSOC);
|
| 84 |
-
extract($resultn);
|
| 85 |
-
return $product_id;
|
| 86 |
-
|
| 87 |
-
}
|
| 88 |
-
|
| 89 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/jayje/Rma/Block/Adminhtml/Rma/ritem.php
DELETED
|
@@ -1,91 +0,0 @@
|
|
| 1 |
-
rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
|
| 2 |
-
<?php
|
| 3 |
-
$order_id = $this->getRequest()->getParam('oid');
|
| 4 |
-
$order_id = $_GET['oid'];
|
| 5 |
-
require("app/Mage.php");
|
| 6 |
-
umask(0);
|
| 7 |
-
Mage::app();
|
| 8 |
-
$increment_id = Mage::getModel('sales/order')->load(12)->getData();
|
| 9 |
-
//print_r($increment_id);
|
| 10 |
-
?>
|
| 11 |
-
<script>
|
| 12 |
-
function checkQty(id){
|
| 13 |
-
var rma_qty = document.getElementById("rma"+id).value;
|
| 14 |
-
var o_qty = document.getElementById("o"+id).value;
|
| 15 |
-
if(isNaN(rma_qty)){
|
| 16 |
-
alert('not number');
|
| 17 |
-
document.getElementById("rma"+id).value=1
|
| 18 |
-
}else{
|
| 19 |
-
if(o_qty >= rma_qty){
|
| 20 |
-
// alert('Rma quantity should be less than ordered quantity');
|
| 21 |
-
//document.getElementById("rma"+id).value=1
|
| 22 |
-
}else{
|
| 23 |
-
alert('Rma quantity should be less than ordered quantity');
|
| 24 |
-
document.getElementById("rma"+id).value=1
|
| 25 |
-
}
|
| 26 |
-
}
|
| 27 |
-
}
|
| 28 |
-
</script>
|
| 29 |
-
<div class="entry-edit">
|
| 30 |
-
<div class="entry-edit-head">
|
| 31 |
-
<h4 class="icon-head head-products">Items RMA Requested for</h4>
|
| 32 |
-
</div>
|
| 33 |
-
</div><div class="grid np">
|
| 34 |
-
<div class="hor-scroll">
|
| 35 |
-
<table cellspacing="0" class="data order-tables" width="90%">
|
| 36 |
-
<thead>
|
| 37 |
-
<tr class="headings">
|
| 38 |
-
<th><strong>Product</strong></th><th><strong>Price</strong></th><th><strong>Qty</strong></th><th><strong>Return <br />Qty</strong></th>
|
| 39 |
-
</tr>
|
| 40 |
-
</thead>
|
| 41 |
-
<tbody class="even">
|
| 42 |
-
<?php
|
| 43 |
-
|
| 44 |
-
$items = Mage::getModel('sales/order')->load($order_id)->getAllItems();
|
| 45 |
-
foreach ($items as $itemId => $item)
|
| 46 |
-
{
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
echo $tf= checkRmaProduct($order_id, $item->getProductId())
|
| 50 |
-
?>
|
| 51 |
-
<tr class="border">
|
| 52 |
-
<td>
|
| 53 |
-
<div id="order_item_33" class="item-container">
|
| 54 |
-
<div class="item-text">
|
| 55 |
-
<h5 class="title"><span id="order_item_33_title"><?php echo $item->getName() ?></span></h5>
|
| 56 |
-
</div>
|
| 57 |
-
</div>
|
| 58 |
-
</td>
|
| 59 |
-
<td>
|
| 60 |
-
<span class="price-excl-tax">
|
| 61 |
-
<span class="price"><?php echo $item->getPrice() ?></span>
|
| 62 |
-
</span>
|
| 63 |
-
</td><td><strong><?php echo round($item->getQtyOrdered()) ?></strong></td>
|
| 64 |
-
<td>
|
| 65 |
-
<input type="hidden" id="o<?php echo $item->getProductId() ?>" size="2" name="" value="<?php echo $item->getQtyOrdered() ?>" />
|
| 66 |
-
|
| 67 |
-
<?php if($tf>0){ ?>
|
| 68 |
-
Already Requested
|
| 69 |
-
<?php }else{ ?>
|
| 70 |
-
<input type="text" id="rma<?php echo $item->getProductId() ?>" size="2" name="qty_<?php echo $itemId; ?>" value="1" autocomplete="off" onkeyup="return checkQty(<?php echo $item->getProductId() ?>)" />
|
| 71 |
-
<?php } ?>
|
| 72 |
-
|
| 73 |
-
<input type="hidden" size="2" name="pid_<?php echo $itemId; ?>" value="<?php echo $item->getProductId() ?>" /></td>
|
| 74 |
-
<input type="hidden" size="2" name="price_<?php echo $itemId; ?>" value="<?php echo $item->getPrice() ?>" /></td>
|
| 75 |
-
</tr>
|
| 76 |
-
<?php } ?><tr><td> <input type="hidden" size="2" name="maxpid" value="<?php echo $itemId ?>" /></td>
|
| 77 |
-
</td></tr>
|
| 78 |
-
</tbody>
|
| 79 |
-
</table>
|
| 80 |
-
</div><?php
|
| 81 |
-
function checkRmaProduct($oid, $pid){
|
| 82 |
-
$db = Mage::getSingleton('core/resource')->getConnection('core_read');
|
| 83 |
-
$que = "SELECT product_id FROM `rma_products` WHERE `order_id` ='$oid' and `product_id` = '$pid' LIMIT 0 , 1";
|
| 84 |
-
$result = $db->query($que);
|
| 85 |
-
$resultn = $result->fetch(PDO::FETCH_ASSOC);
|
| 86 |
-
extract($resultn);
|
| 87 |
-
return $product_id;
|
| 88 |
-
|
| 89 |
-
}
|
| 90 |
-
|
| 91 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/jayje/Rma/Block/Rma.php
CHANGED
|
@@ -20,7 +20,7 @@ class Jayje_Rma_Block_Rma extends Mage_Core_Block_Template
|
|
| 20 |
public function getOrder(){
|
| 21 |
$db = Mage::getSingleton('core/resource')->getConnection('core_read');
|
| 22 |
$customerid =Mage::helper('customer')->getCustomer()->getData('entity_id') ;
|
| 23 |
-
$que = "SELECT entity_id, increment_id, grand_total, store_currency_code
|
| 24 |
ORDER BY increment_id DESC LIMIT 0,30";
|
| 25 |
$result = $db->query($que);
|
| 26 |
while( $resultn = $result->fetch(PDO::FETCH_ASSOC)){
|
| 20 |
public function getOrder(){
|
| 21 |
$db = Mage::getSingleton('core/resource')->getConnection('core_read');
|
| 22 |
$customerid =Mage::helper('customer')->getCustomer()->getData('entity_id') ;
|
| 23 |
+
$que = "SELECT entity_id, increment_id, grand_total, store_currency_code FROM `sales_flat_order` where customer_id='$customerid'
|
| 24 |
ORDER BY increment_id DESC LIMIT 0,30";
|
| 25 |
$result = $db->query($que);
|
| 26 |
while( $resultn = $result->fetch(PDO::FETCH_ASSOC)){
|
package.xml
CHANGED
|
@@ -1,18 +1,18 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Jayje</name>
|
| 4 |
-
<version>1.00.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>Jayje</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
-
<summary>
|
| 10 |
-
<description>
|
| 11 |
-
<notes>
|
| 12 |
-
<authors><author><name>
|
| 13 |
<date>2012-12-30</date>
|
| 14 |
-
<time>
|
| 15 |
-
<contents><target name="magecommunity"><dir name="jayje"><dir name="Rma"><dir name="Block"><dir name="Adminhtml"><dir name="Rma"><dir name="Edit"><file name="Form.php" hash="196f8531d8ef88443e7e920bff442542"/><dir name="Tab"><file name="Comments.php" hash="fe7ddb97471bf179aa01307ba66b93cf"/><file name="Form.php" hash="
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Jayje</name>
|
| 4 |
+
<version>1.00.17</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>Jayje</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
+
<summary>Return Merchant Authorization</summary>
|
| 10 |
+
<description>Return Merchant Authorization</description>
|
| 11 |
+
<notes>Return Merchant Authorization</notes>
|
| 12 |
+
<authors><author><name>wakensys</name><user>wakensys</user><email>admin@wakensys.com</email></author><author><name>ratheepan s</name><user>ratheepan</user><email>s.ratheepan@gmail.com</email></author></authors>
|
| 13 |
<date>2012-12-30</date>
|
| 14 |
+
<time>06:09:42</time>
|
| 15 |
+
<contents><target name="magecommunity"><dir name="jayje"><dir name="Rma"><dir name="Block"><dir name="Adminhtml"><dir name="Rma"><dir name="Edit"><file name="Form.php" hash="196f8531d8ef88443e7e920bff442542"/><dir name="Tab"><file name="Comments.php" hash="fe7ddb97471bf179aa01307ba66b93cf"/><file name="Form.php" hash="a8071f82a0537c9a6254a757f90cc48c"/><file name="Order.php" hash="83c66a24f18ca3efdfaff6fdc177f1d1"/></dir><file name="Tabs.php" hash="a8b189c45f14ed59bc0a32a285282256"/></dir><file name="Edit.php" hash="c239694953040ce27623147b42e31678"/><file name="Grid.php" hash="b9208e316a6963148a4081748793a893"/><file name="Info.php" hash="1472ae84058732c1abcb0010df2cf909"/></dir><file name="Rma.php" hash="796b752d34baf1cc7a12cfd785e61413"/></dir><file name="Ajax.php" hash="d48b9b1dae080c65a3d068de821b6c39"/><file name="Rma.php" hash="6a9f03f1bef86b924377a92dc34e2797"/></dir><dir name="Helper"><file name="Data.php" hash="1dc7076d01d55a0631f52efcae1c4fa5"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Rma"><file name="Collection.php" hash="4778a373d8d39632a0a30e5430ed7544"/></dir><file name="Rma.php" hash="a0a5300cab5552207c05ed9d57970918"/></dir><file name="Rma.php" hash="e09a0f0d5dd7f23a3bc982faf27fe5d0"/><file name="Status.php" hash="de1335652bfbb0d3b50061ab104f7c71"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="RmaController.php" hash="bee790f592f4924a7b5fe384e7758700"/></dir><file name="IndexController.php" hash="af519d1ff3a4a280d379b501a11fda95"/></dir><dir name="etc"><file name="adminhtml.xml" hash="d1d774f537d3aaa91df1b1b3c22e5d08"/><file name="config.xml" hash="002071ae7899b012aeff498ae6afbfff"/><file name="system.xml" hash="da3d2c7327b3b5b1bf741785af4d0f3e"/></dir><dir name="sql"><dir name="Rma_setup"><file name="mysql4-install-0.1.0.php" hash="45cb74ea442ac6c10dd63fca10c71c9f"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="rma.xml" hash="37bf5d17c2cca450e4ada722aa44f162"/></dir><dir name="template"><dir name="rma"><file name="comments.phtml" hash="4f1b21142176608ae8cf82792a695be9"/><file name="info.phtml" hash="c302ed388fc16e9544289b3f5bdabdc0"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="rma.xml" hash="e38cc9f629b81a89f4ee1f0a2d61a18c"/></dir><dir name="template"><dir name="rma"><file name="oitems.phtml" hash="35c8c272c6dcd90742ceef5e4ea44345"/><file name="request.phtml" hash="8fc37ae9bb222a26c5fdc1f90bd1b500"/><file name="ritem.php" hash="db7cb534747549671ac07c82cece5d83"/><file name="ritem.phtml" hash="d4ca1fd480e822209586c80bae49f8c3"/><file name="rma.phtml" hash="177e1bef8e642613be7505d03107c74f"/><file name="view.phtml" hash="94c838dde1f5bf71279582d9c244e368"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="app"><dir name="etcmodules"><file name="Jayje_Rma.xml" hash=""/></dir></dir><dir name="js"><file name="jquery-1.4.2.js" hash="10092eee563dec2dca82b77d2cf5a1ae"/></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
