手动修改编辑ecshop订单销售记录
2010-02-02 18:22 来源:www.chinab4c.com 作者:admin
1:alter table ecs_goods add column sales_count int(1) default 0;
2:admin/goods.php
elseif ($_REQUEST['act'] == 'edit_sales_count')
{
check_authz_json('goods_manage');
$goods_id = intval($_POST['id']);
$sort_order = intval($_POST['val']);
if ($exc->edit("sales_count = '$sort_order', last_update=" .gmtime(), $goods_id))
{
clear_cache_files();
make_json_result($sort_order);
}
}
3:admin/templates/goods_list.htm
<th>销售数量</th>
<td align="center"><span onclick="listTable.edit(this, 'edit_sales_count', {$goods.goods_id})">{$goods.sort_order}</span></td>
4:category.php的function category_get_goods($children, $brand, $min, $max, $ext, $size, $page, $sort, $order)
增以下g.sales_count
$arr[$row['goods_id']]['sales_count'] = $row['sales_count'];
5:goods_list.lbi
<div class="sales-volume">已销售:<em><!--{if $goods.sales_count}--> {$goods.sales_count} <!--{else}--> 0 <!--{/if}--></em>件</div>
最近更新
常用插件
- ecshop整合招商银行php支付
最近有个朋友,他是用ecshop的。为了和招商银行合作,必须开发出基于...
- ecshop后台商品列表编辑属
ecshop后台商品列表编辑属性规格,这个功能十分重要,当我们在后台,录...
- ecshop二次开发打印采购单
在ecshop电子商务系统的开发和使用过程中,我们常常要统计订单的信息...
- ecshop留言板改进
ecshop留言板 改进,这个插件主要是为了改进ecshop留言板功能插件,我们可...
- ecshop退款插件2.7.1utf版
ecshop退款插件2.7.1utf版重要可以通过会员中心,会员在收到货之后,发现...