手动修改编辑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强力批量删除订单插件V1.0,可以批量强力的删除任何状态的订单。...
- ecshop后台商品列表显示会
使用和开发ecshop的人都知道,在ecshop中存在不同的等级价格问题,ecsh...
- ecshop显示购买记录和全部
ecshop在商品详细页面,有些特定的商品,需要在下面显示一些购买记录...