doupi8598 2013-11-03 18:57
浏览 41
已采纳

在订单管理管理页面Prestashop上显示产品代码

How to show product code data on Order Management Page admin in Prestashop I am lost in files. Please help me Thanks in Advance

  • 写回答

1条回答 默认 最新

  • douyan8961 2013-11-04 15:49
    关注

    I found a solution, I don't know its allow or not to answer your own question here but I post this answer with this hope that it will help someone

    I chage the query on AdminOrdersController.php

    Full Link is >>> myshop/controllers/admin/AdminOrdersController.php

    $this->_select = '
            od.product_name AS products_zee,         /* This is the main thing which I changed */
            a.id_currency,
            a.id_order AS id_pdf,
            CONCAT(LEFT(c.`firstname`, 1), \'. \', c.`lastname`) AS `customer`,
            osl.`name` AS `osname`,
            os.`color`,
            IF((SELECT COUNT(so.id_order) FROM `'._DB_PREFIX_.'orders` so WHERE so.id_customer = a.id_customer) > 1, 0, 1) as new';
    
            $this->_join = '
            LEFT JOIN `'._DB_PREFIX_.'order_detail` od ON (od.`id_order` = a.`id_order`)
            LEFT JOIN `'._DB_PREFIX_.'customer` c ON (c.`id_customer` = a.`id_customer`)
            LEFT JOIN `'._DB_PREFIX_.'address` addr ON (a.`id_address_delivery` = addr.`id_address`)
            LEFT JOIN `'._DB_PREFIX_.'order_state` os ON (os.`id_order_state` = a.`current_state`)
            LEFT JOIN `'._DB_PREFIX_.'order_state_lang` osl ON (os.`id_order_state` = osl.`id_order_state` AND osl.`id_lang` = '.(int)$this->context->language->id.')';
            $this->_orderBy = 'id_order';
            $this->_orderWay = 'DESC';
    

    After that I add array after this code

    'reference' => array(
                'title' => $this->l('Reference'),
                'align' => 'center',
                'width' => 65
     ),
    
    
    'products_zee' => array(
        'title' => $this->l('Products'),
        'align' => 'center',
        'width' => 85
    ),
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 poi合并多个word成一个新word,原word中横版没了.
  • ¥15 求MCSCANX 帮助
  • ¥15 机器学习训练相关模型
  • ¥15 Todesk 远程写代码 anaconda jupyter python3
  • ¥15 我的R语言提示去除连锁不平衡时clump_data报错,图片以下所示,卡了好几天了,苦恼不知道如何解决,有人帮我看看怎么解决吗?
  • ¥15 在获取boss直聘的聊天的时候只能获取到前40条聊天数据
  • ¥20 关于URL获取的参数,无法执行二选一查询
  • ¥15 液位控制,当液位超过高限时常开触点59闭合,直到液位低于低限时,断开
  • ¥15 marlin编译错误,如何解决?
  • ¥15 VUE项目怎么运行,系统打不开