购物车下商品列表显示单位

2016-07-07 14:55 来源:www.chinab4c.com 作者:ecshop专家



问题:购物车下商品列表显示单位
修改文件: includes目录下lib_order.php及flow.dwt文件
修改步骤:
1、在includes/lib_order.php 文件function cart_goods()函数中找
$arr[$key]['formated_subtotal']= price_format($value['subtotal'], false);(大概在870行上下)
在其下一行加代码:
/*购物车显示单位 修改一 start*/
$sql="select measure_unit from ".$GLOBALS['ecs']->table('goods')."g left join " . $GLOBALS['ecs']->talbe("category") . " cong.cat_id=c.cat_id where goods_id='{$value['goods_id']}'";
$measure_unit=$GLOBALS['db']->getOne($sql);
$arr[$key]['measure_unit']=$measure_unit;
/*购物车显示单位 修改一 end*/

2、继续在lib_order.php文件function get_cart_goods()函数中找$goods_list[] = $row;(大概在1643行上下)
在其上一行加代码:
/*购物车显示单位 修改二 start */
$sql="select measure_unit from ".$GLOBALS['ecs']->table('goods')." g left join " . $GLOBALS['ecs']->table("category") . "c on g.cat_id=c.cat_id where goods_id='{$row['goods_id']}'";
$measure_unit=$GLOBALS['db']->getOne($sql);
$row['measure_unit']=$measure_unit;
/*购物车显示单位 修改二 end */

3、在flow.dwt文件中调用:在适当的地方插入{$goods.measure_unit},如价格后面加一列,将其字段加入。
4、测试ok

效果如下:

回答:
那么批发里,如何显示单位呢?

正在找...