`
kirenenko04
  • 浏览: 152349 次
  • 性别: Icon_minigender_2
  • 来自: 上海
社区版块
存档分类
最新评论

Add Shipment to Adminhtml Order List Grid

 
阅读更多

1. rewrite the grid block file

<global>
        <blocks>
            <adminhtml>
                <rewrite>
                   <sales_order_grid>Raveinfosys_Deleteorder_Block_Adminhtml_Sales_Order_Grid</sales_order_grid>
                </rewrite>	

 2. edit _prepareCollection function to left join ·sales_flat_order· table

    protected function _prepareCollection()
    {
        $collection = Mage::getResourceModel($this->_getCollectionClass());
        $collection->getSelect()->joinLeft(array('b'=>'sales_flat_order'),'b.entity_id = main_table.entity_id',array('shipping_description'));
        $this->setCollection($collection);
        return parent::_prepareCollection();
    }

 3.add a 'shipping_description' column to _prepareColumns()function

 $this->addColumn('shipping_description', array(
        		'header' => Mage::helper('sales')->__('Shipping Method'),
        		'index' => 'shipping_description'
        ));

 

 

分享到:
评论

相关推荐

    Add Custom Properties to a PropertyGrid

    Add Custom Properties to a PropertyGrid.c#属性有用的例子。 http://www.codeproject.com/KB/vb/PropertyGridEx.aspx

    VC6_add files to project失效解决方法

    在使用Microsoft Visual C++ 6.0(简称VC6)进行C++开发时,有时会遇到"Add Files to Project"功能失效的问题,这使得无法通过菜单项将新文件添加到项目中,对开发流程造成不便。本文将详细介绍如何解决这个问题,并...

    Add Python to the search path on Windows

    Add Python to the search path on Windows

    Ansible报错解决方法...added 'IP' (ECDSA) to the list of known hosts

    在使用Ansible自动化运维工具时,可能会遇到各种错误情况,其中一种常见的报错是"Permanently added 'IP' (ECDSA) to the list of known hosts"。这个错误信息是由于SSH安全策略导致的,当Ansible尝试连接到一个新的...

    Add-nofollow-to-XFN WordPress增加nofollow标签.rar

    插件名称:Add-nofollow-to-XFN 插件功能:在WordPress后台的"链接" - "添加新链接"中的"链接关系(XFN)"中增加一个"nofollow"选项,安装插件后效果如下: 安装方法: 下载插件压缩包,解压后将 "Add-nofollow-to...

    add_arrow_to_line.m

    matlab功能函数,给直线加上箭头,使之成为矢线,起点[a,b],终点[c,d] 引用格式:add_arrow_to_line(a, c, b, d, color, linewidth, length_arrow) length_arrow指箭头边线长度

    add-to-list:扩展到列表项目

    这个名为“add-to-list”的项目,显然是一个JavaScript实现的功能,它允许用户通过输入框向列表中动态添加元素。这个功能对于创建交互式Web应用非常有用,比如任务管理器、购物清单或任何需要用户添加新条目的应用。...

    java List排序工具类

    new OrderUtils().order(list, "name", OrderUtils.DESC); 相关实例代码: public static void main(String[] args) { List&lt;Person&gt; list = getData(); // 获取无序数据 new OrderUtils().order(list, "name", ...

    AddToAny:分享任何地方「AddToAny: Share Anywhere」-crx插件

    功能:-AddToAny的通用共享按钮和智能菜单-基于您可能已经在使用的服务进行个性化-与Gmail,WhatsApp,LinkedIn和更多社交媒体网络共享-AddToAny的“更多”按钮可让您随时随时访问任何其他服务-正确-单击以从上下文...

    Altium_Designer设计中Unknown_Pin和Failed_to_add_class_member如何解决

    ### Altium Designer设计中Unknown_Pin和Failed_to_add_class_member问题解决方案 #### 一、问题概述 在使用Altium Designer进行电路板设计时,经常会遇到Unknown_Pin和Failed_to_add_class_member这两种错误提示...

    C#多线程List的非线程安全性

    public void AddToList(T item) { lock (listLock) { myList.Add(item); } } ``` 2. 使用线程安全的集合:.NET框架提供了线程安全的集合类,如ConcurrentBag、ConcurrentQueue和ConcurrentStack等,它们在内部...

    自己的链表程序list.c

    liststruct list_head{ ...void __list_add(struct list_head *new, struct list_head *prev, struct list_head *next) { next-&gt;prev = new; new-&gt;next = next; new-&gt;prev = prev; prev-&gt;next = new; }

    DataSet 转化为List的通用方法

    list.Add(dr[columnName]); } return list; } ``` 这种方法简化了类型转换的过程,直接返回该列的所有值,存储为`List&lt;object&gt;`。 #### 四、总结 将`DataSet`转换为`List`不仅可以提升数据处理的灵活性,还能...

    FlexGraphics_V_1.79_D4-XE10.2_Downloadly.ir

    - ADD: Add TFlexPanel.InvalidateControl virtual method which calls from TFlexControl.Invalidate and can be overriden (it is possible now to catch all object invalidation calls). - FIX: The TFlexPanel....

    关于SVN添加无用的受控文件后,取消文件受控的方法

    - 选中需要删除的文件或目录,右键点击,选择`TortoiseSVN -&gt; 取消版本控制并添加到忽略列表`(或者`Unversion and add to ignore list`)。 - 这个操作会先标记文件/目录为从版本库中删除,并保留本地副本。 - ...

    C#_StringList的用法

    aList.Add("a"); aList.Add("b"); aList.Add("c"); aList.Add("d"); aList.Add("e"); 结果为 abcde。 2. public virtual void Insert(int index, object value):将元素插入 ArrayList 的指定索引处。 例如:...

    用Booklist编写图书管理系统

    Welcome to the book list program for book names.What would you like to do ?1. add an element to end of lis t2. add an element at a location 3. find an element by book name (linear search) 4. find ...

    add_to_archive.py

    add_to_archive

    WCF中动态设置KnownType的示例代码

    -------' with data contract name 'Dog:http://schemas.datacontract.org/2004/07/Serialization' is not expected. Consider using a DataContractResolver or add any types not known statically to the list of...

    js模拟list和map

    javascript 模拟 java中的 List,Map js文件为 js/utils.js IE6.0 测试通过 &lt;br&gt;List: add(var obj) //添加一个元素 remove(var index) //删除一个元素 get(var index) //获取一个元素 remove...

Global site tag (gtag.js) - Google Analytics