手动修改编辑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购物车功能改进[插件
ecshop购物车功能改进[插件套餐]主要是我们最近开发工作和开发项目中。...
- ecshop红包修改成满多少减
我们在长期使用ecshop的时候,我们可以发现。ecshop的红包是一个非常强...
- ecshop通用红包编码
很多时候,为了结合促销,必须扩展一下ecshop的红包功能。ecshop的红包...
- ecshop降价通知登记插件
ecshop降价通知登记插件,主要是为了方便某些客户,对商品价格要求比...
- ecshop分类树中统计商品数
最近忙于开发其他项目,在不少朋友不断要求和催促的情况下,做出了该小...