TREEWALKER LEARNING CENTER
A blog to learn about Apps, Barcode, RFID, POS, IOT, Beacons and much more.....Display products and payment method in order grid in magento
Recently we were asked by the client to display the products name and payment method in order grid in magento. To achieve that we have override the Mage_Adminhtml_Block_Widget_Grid class. We have created a module by name TW_Salesproduct. You can give name whatever you...
What is beacon?
Beacon is a device which transmits the data using Bluetooth Low Energy (BLE) technology. Any device which is Bluetooth enabled captures the data transmitted by the beacon with a certain proximity radius. It consumes less battery and detects the location of the device...
Merging multiple excel files data in single master excel file
Few days back I was looking for merging the multiple excel file, located at some specific path, in single excel file. To achieve that I used the library “PHPExcel”. If you can download the git by clicking the below link Download PHPExcel To start with , you can...
Add custom amount in order total in Magento
In one of the project I was supposed to use the custom tax instead of magento tax and it was used for the display purpose. In our case Tax percent was associated with each product through custom attribute field .. To achieve this I have analyzed magento default tax...
Overriding admin controller for print invoice in magento
Few days back I was supposed to integrate pdf library to generate invoice pdf instead of Zend Pdf. For that I tried to override the Invoice print action . Below are the steps you need to follow to override magento admin controller. STEP 1 : Create simple module Eg...
Closure in Javascript
Closures is concept functions have access to variables that were available in the scope where the function was created. To understand it fully below are the set of examples which will help you to understand: var Car = function(model){ this.model = model; // member...
Objects in javascript for beginners
Objects in JavaScript, just as in many other programming languages, can be compared to objects in real life.In JavaScript, an object is a standalone entity, with properties and type. A JavaScript object has properties associated with it. A property of an object can be...
Integrating apache solr search with magento 1.x version
First time I tried the solr search in one of the magento1.x store.. I am new to solr so it took time for me to understand and working of the solr. I got enough help from the links I have mentioned in my article which helped me to accomplish the task. After...
How to create custom module in Magento 2
Now Magento 2 has been launched , which has been completely revamped from what we had in Magento 1.x. Here we have displayed step by step process to create new Magento 2 module. TW is the namespace and Hello is the module name Step1: we need create a module.xml file...
Adding configurable product to cart from catalog list page in magento
This is the common requirement now of most of the customer to give the option to the end user to add the configurable product to cart from list page directly. Recently I did it for one of my client . The basic problem which we generally face while adding configurable...
Recent Comments