Friday, November 15, 2013

Magento – Customize Backend Order Grid to have SKU, E-mail Address, and Phone Number

Magento’s default back-end order grid doesn’t cut it.  I recently had a customer that wanted to be able to sort orders by sku, shipping address, shipping state, and customer e-mail address on their magento site.  Why did they want to do this?  To quickly generate reports I guess, who knows? By default you can’t sort by these items.  You have to add the fields to magento which can be some what tricky.
Anyway if you want to change the order grid from this:
Magento Order Grid on a Magento Web site with SKUs
To this on your magento web site:
Magento Order Grid with SKU
Just follow these few easy steps.
Step one create a new directory on your server at app/code/local/Mage/Adminhtml/Block/Sales/Order
Here we will be creating a file called Grid.php.
First navigate to app/code/core/Mage/Adminhtml/Block/Sales/Order and copy\paste Grid.php into the directory you just created.
Now open up app/code/local/Mage/Adminhtml/Block/Sales/Order/Grid.php
Look for the following:
1
2
3
4
protected function _getCollectionClass()
{
return 'sales/order_grid_collection';
}
Now change it to :
1
2
3
4
protected function _getCollectionClass()
{
return 'sales/order_grid_collection';
}
Next find:
1
2
3
4
5
6
protected function _prepareCollection()
{
$collection = Mage::getResourceModel($this->_getCollectionClass());
$this->setCollection($collection);
return parent::_prepareCollection();
}
and make it:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
protected function _prepareCollection()
{
$collection = Mage::getResourceModel($this->_getCollectionClass())
->join(
'sales/order_item',
'`sales/order_item`.order_id=`main_table`.entity_id',
array(
'skus' => new Zend_Db_Expr('group_concat(`sales/order_item`.sku SEPARATOR ",")'),
)
);

$collection->getSelect()->group('main_table.entity_id');

$collection->getSelect()->joinLeft(array('sfog' => 'sales_flat_order_grid'),
'main_table.entity_id = sfog.entity_id',array('sfog.shipping_name','sfog.billing_name'));

$collection->getSelect()->joinLeft(array('sfo'=>'sales_flat_order'),
'sfo.entity_id=main_table.entity_id',array('sfo.customer_email','sfo.weight',
'sfo.discount_description','sfo.increment_id','sfo.store_id','sfo.created_at','sfo.status',
'sfo.base_grand_total','sfo.grand_total'));

$collection->getSelect()->joinLeft(array('sfoa'=>'sales_flat_order_address'),
'main_table.entity_id = sfoa.parent_id AND sfoa.address_type="shipping"',array('sfoa.street',
'sfoa.city','sfoa.region','sfoa.postcode','sfoa.telephone'));

$this->setCollection($collection);

return parent::_prepareCollection();
}
Finally find:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
protected function _prepareColumns()
{

$this->addColumn('real_order_id', array(
'header'=> Mage::helper('sales')->__('Order #'),
'width' => '80px',
'type' => 'text',
'index' => 'sfo.increment_id',
));

if (!Mage::app()->isSingleStoreMode()) {
$this->addColumn('store_id', array(
'header' => Mage::helper('sales')->__('Purchased From (Store)'),
'index' => 'store_id',
'type' => 'store',
'store_view'=> true,
'display_deleted' => true,
));
}

$this->addColumn('created_at', array(
'header' => Mage::helper('sales')->__('Purchased On'),
'index' => 'created_at',
'type' => 'datetime',
'width' => '100px',
));

$this->addColumn('billing_name', array(
'header' => Mage::helper('sales')->__('Bill to Name'),
'index' => 'billing_name',
));

$this->addColumn('shipping_name', array(
'header' => Mage::helper('sales')->__('Ship to Name'),
'index' => 'shipping_name',
));

$this->addColumn('base_grand_total', array(
'header' => Mage::helper('sales')->__('G.T. (Base)'),
'index' => 'base_grand_total',
'type' => 'currency',
'currency' => 'base_currency_code',
));

$this->addColumn('grand_total', array(
'header' => Mage::helper('sales')->__('G.T. (Purchased)'),
'index' => 'grand_total',
'type' => 'currency',
'currency' => 'order_currency_code',
));

$this->addColumn('status', array(
'header' => Mage::helper('sales')->__('Status'),
'index' => 'status',
'type' => 'options',
'width' => '70px',
'options' => Mage::getSingleton('sales/order_config')->getStatuses(),
));
}
Change it to:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
protected function _prepareColumns()
{

$this->addColumn('real_order_id', array(
'header'=> Mage::helper('sales')->__('Order #'),
'width' => '80px',
'type' => 'text',
'index' => 'increment_id',
'filter_index' => 'sfo.increment_id',
));

if (!Mage::app()->isSingleStoreMode()) {
$this->addColumn('store_id', array(
'header' => Mage::helper('sales')->__('Purchased From (Store)'),
'index' => 'store_id',
'type' => 'store',
'store_view'=> true,
'display_deleted' => true,
));
}

$this->addColumn('created_at', array(
'header' => Mage::helper('sales')->__('Purchased On'),
'index' => 'created_at',
'filter_index' => 'sfo.created_at',
'type' => 'datetime',
'width' => '50px',
));

$this->addColumn('skus', array(
'header' => Mage::helper('Sales')->__('Skus'),
'width' => '350px',
'index' => 'skus',
'filter_index' => 'sku',
'type' => 'text',

));
$this->addColumn('shipping_street', array(
'header' => Mage::helper('sales')->__('Shipping Street'),
'index' => 'street',
'type' => 'text',
'filter_index' => 'sfoa.street',
'width' => '100px',
));
$this->addColumn('shipping_city', array(
'header' => Mage::helper('sales')->__('Shipping City'),
'index' => 'city',
'type' => 'text',
'filter_index' => 'sfoa.city',
'width' => '50px',
));
$this->addColumn('shipping_region', array(
'header' => Mage::helper('sales')->__('Shipping Region'),
'index' => 'region',
'type' => 'text',
'filter_index' => 'sfoa.region',
'width' => '50px',
));
$this->addColumn('customer_email', array(
'header' => Mage::helper('sales')->__('Customer Email'),
'index' => 'customer_email',
'type' => 'text',
'filter_index' => 'sfo.customer_email',
));

$this->addColumn('grand_total', array(
'header' => Mage::helper('sales')->__('Total'),
'index' => 'grand_total',
'filter_index' => 'sfo.grand_total',
'type' => 'currency',
'currency' => 'order_currency_code',
));

$this->addColumn('status', array(
'header' => Mage::helper('sales')->__('Status'),
'index' => 'status',
'filter_index' => 'sfo.status',
'type' => 'options',
'width' => '70px',
'options' => Mage::getSingleton('sales/order_config')->getStatuses(),
));
That is it, if you wanted to add lets say product weight you would use the following:
1
2
3
4
5
6
$this->addColumn('order_weight', array(
'header' => Mage::helper('sales')->__('Weight'),
'index' => 'order_weight',
'type' => 'text',
'filter_index' => 'sfo.weight',
));
}
Let’s say for some reason when you are doing searches in your brand new boxes and you get an error like
1
SQLSTATE[23000]: Integrity constraint violation: 1052 Column'status' in where clause is ambiguous
This means you did not add a filter type properly go back a line like this:
1
'filter_index' => 'sfo.itemname',
This should fix the error and fix your magento web site’s order grid!  Now you should be able to sort by sku, address, name, e-mail address. Shoot you can easily add the telephone number to this order grid if you want!
In case you are wondering I referenced these posted.  It took me a while to get the SKU’s to play nicely with all of the other information.

Thursday, November 14, 2013

how to create custom user passwor rest page in joomla using ajax out side joomla root folder

 hey guy this code for joomla  reset passwor page in joomla using ajax out side joomla root like old password to your own password change. custom ajax page
setp->1
create your reset component paste in your rest view page

 <script type="text/javascript" language="javascript">
  $(document).ready(function() {
      $("#driver").click(function(event){
        var currentpass=$('#oldpassword').val();
        var newpass=$('#newpass').val();
       
        var conformpass=$('#conformpass').val();
        var userid=$('#userid').val(); 
        var username=$('#username').val();
       
        if(currentpass==''){
            $('#oldpassword').addClass('invalid');
            return false;
            }else if(newpass==''){
                $('#oldpassword').removeClass('invalid');
                $('#newpass').addClass('invalid');
            return false;
                }
            else if(conformpass==''){
                $('#conformpass').addClass('invalid');
            return false;
                }
            else{
            $('#oldpassword').removeClass('invalid');
            $('#newpass').removeClass('invalid');
            $('#conformpass').removeClass('invalid');
                }
       
         $('#loading').addClass('resetloader');
          $.post(
             "http://joomla/ajaxresetpassword.php",
             { oldpass: currentpass,newpass:newpass,confirmpass:conformpass,userid:userid,username:username,},
             function(data) {
           
           
             $('#loading').removeClass('resetloader');
             if(data=='passwrod has been changed'){
                $('#oldpassword').val('');
                $('#newpass').val('');
                $('#conformpass').val('');
           
             }
                 alert(data);
                $('#stage').html(data);
             }

          );
      });
   });
   </script>
      <div id="tab2" class="tab_content">
      <form action="" method="get" name="" >
  <table width="100%" border="0" cellpadding="0" cellspacing="0">
    <tr class="tr-spac">
      <td class="left-td gray-color">Username</td>
      <td class="right-td"><?php echo $user->username;?></td>
     <input type="hidden" value="<?php echo $this->user_state->virtuemart_user_id;?>" name="userid" id="userid" />
      <input type="hidden" value="<?php echo $user->username;?>" name="username" id="username" />
    </tr>
    <tr class="tr-spac">
      <td colspan="2" class="left-td gray-color"><a href="#">Current Password</a></td>
      <td class="right-td"><input type="password" name="oldpassword" id="oldpassword" class="inputbox"  /></td>
        </tr>
    <tr class="tr-spac">
     <td colspan="2" class="left-td gray-color"><a href="#">New Password</a></td>
     <td class="right-td"><input type="password" name="newpass" id="newpass" class="inputbox"  /></td>
    </tr>
    <tr class="tr-spac" style="border-bottom:none;">
       <td colspan="2" class="left-td gray-color" style="padding-bottom:16px;"><a href="#">Confirm Password</a></td>
       <td class="right-td"><input type="password" name="conformpass" id="conformpass" class="inputbox"  /><div id="loading">&nbsp;</div></td>
    </tr>
   
    <tr >
      <td colspan="2">
     <div class="editbg" style="float:right;">
    <a href="#" id="driver" >Save</a>     
  
    </td>
    </tr>
  </table>       
  </form>
  </div>


-------------------------------------------------------------------------------------------------------

create joomla/ajaxresetpassword.php
<?php

//access joomla db and other liabray class
################################################################################
#######
define('_JEXEC',1);
define('DS', DIRECTORY_SEPARATOR );
define('JPATH_BASE', $_SERVER[ 'DOCUMENT_ROOT' ].'/joomla' );

require_once( JPATH_BASE . DS . 'includes' . DS . 'defines.php' );
require_once( JPATH_BASE . DS . 'includes' . DS . 'framework.php' );
require_once( JPATH_BASE . DS . 'libraries' . DS . 'joomla' . DS . 'factory.php' );
$mainframe =& JFactory::getApplication('site');
$db =& JFactory::getDBO();
################################################################################
#########

//get user post request
########################################################
 $currentpass          =JRequest::getVar('oldpass');   #
                                                        #
 $newpassword          =JRequest::getVar('newpass');    #
 $confirmpassword      =JRequest::getVar('confirmpass');#
 $ExistUserid          =JRequest::getVar('userid');     #
 $ExistUsername        =JRequest::getVar('username');   #
##############################################
//store temp session user id and username for check exist
###############################################
 $check_user_username   = $ExistUsername;      #
 $check_user_id         = $ExistUserid;        #
                                               #
###############################################
 //retrive user current password from database for checking
#########################################################################
##################################### 
   $TablePrefix=$db->getPrefix();
   $TableName=$TablePrefix.'users';
   $sqlquery="select password from $TableName where username='$check_user_username'  and id=$check_user_id";
 
   $db->setQuery($sqlquery);
   $result=$db->loadObject();
  

checkpassword($currentpass,$newpassword,$confirmpassword,$result->password,$check_user_id,
$TableName,$db);


//785f9b9a8385a739b05cc92105dda7ca:JtjrzbzPQNQAYWKVvORRawlV0TwaGWzm

function checkpassword(&$currentpass,&$newpass,&$confimpass,&$retrivepass,&$userid,&$TableName,&$db){
      $makepass_array = explode(':',$retrivepass);
      $joomla_pass = $makepass_array[0];
      $joomla_salt = $makepass_array[1];         
      $comparepass=md5($currentpass.$joomla_salt);
      if($joomla_pass == $comparepass)
        {
                if($newpass==$confimpass)
                {
       
                    $gnrtnewpas=md5($confimpass.$joomla_salt);           
                    $gnrtnewpas = $gnrtnewpas.':'.$joomla_salt;                   
                    $updtquery="UPDATE $TableName SET password ='$gnrtnewpas'  where id=$userid";
                    $db->setQuery($updtquery);
                    $db->query();
                    if ($db->getErrorNum())
                    { 
                        echo $db->getErrorMsg(); 
                        return false; 
                    }
          echo "passwrod has been changed";
          return true;
       
        }else{
            echo "Confirm password dose not match";
            return false;
        }
        }else
        { 
            echo "incorrect Current password ";
            return false;
        }


}