手动修改编辑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整合cps 的一些文章.香...
- ecshop2.7.1二次开发属性库存
ecshoo2.7.1电子商务系统,在很多特殊的时候,都需对属性库存进行管理,...
- ecshop退款插件2.7.1utf版
ecshop退款插件2.7.1utf版重要可以通过会员中心,会员在收到货之后,发现...