服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > ecshop教程 >

修改ecshop后台添加新商品后默认不上架

时间:2012-09-16 12:01来源:未知 作者:最模板 点击:
ecshop 默认添加新商品后默认为上架状态,出于某种考虑,可让新添加商品后默认为下架状态,在后台预览满意后,再批量上架。 查找/admin/goods.php $goods = array ( 'goods_id' = 0 , 'goods_desc'
ecshop默认添加新商品后默认为“上架”状态,出于某种考虑,可让新添加商品后默认为“下架”状态,在后台预览满意后,再批量上架。

查找/admin/goods.php

 

  1. $goods = array
  2.     'goods_id'      => 0, 
  3.     'goods_desc'    => '', 
  4.     'cat_id'        => $last_choose[0], 
  5.     'brand_id'      => $last_choose[1], 
  6.     'is_on_sale'    => '1', 
  7.     'is_alone_sale' => '1', 
  8.     'is_shipping' => '0', 
  9.     'other_cat'     => array(), // 扩展分类 
  10.     'goods_type'    => 0,       // 商品类型 
  11.     'shop_price'    => 0, 
  12.     'promote_price' => 0, 
  13.     'market_price'  => 0, 
  14.     'integral'      => 0, 
  15.     'goods_number'  => $_CFG['default_storage'], 
  16.     'warn_number'   => 1, 
  17.     'promote_start_date' => local_date('Y-m-d'), 
  18.     'promote_end_date'   => local_date('Y-m-d', local_strtotime('+1 month')), 
  19.     'goods_weight'  => 0, 
  20.     'give_integral' => -1, 
  21.     'rank_integral' => -1 
  22. ); 

修改为

 

  1. $goods = array
  2.     'goods_id'      => 0, 
  3.     'goods_desc'    => '', 
  4.     'cat_id'        => $last_choose[0], 
  5.     'brand_id'      => $last_choose[1], 
  6.     'is_on_sale'    => '0', //默认为“下架”状态 
  7.     'is_alone_sale' => '1', 
  8.     'is_shipping' => '0', 
  9.     'other_cat'     => array(), // 扩展分类 
  10.     'goods_type'    => 0,       // 商品类型 
  11.     'shop_price'    => 0, 
  12.     'promote_price' => 0, 
  13.     'market_price'  => 0, 
  14.     'integral'      => 0, 
  15.     'goods_number'  => $_CFG['default_storage'], 
  16.     'warn_number'   => 1, 
  17.     'promote_start_date' => local_date('Y-m-d'), 
  18.     'promote_end_date'   => local_date('Y-m-d', local_strtotime('+1 month')), 
  19.     'goods_weight'  => 0, 
  20.     'give_integral' => -1, 
  21.     'rank_integral' => -1 
  22. ); 
  23.   

 

(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(1)
100%
------分隔线----------------------------
栏目列表
热点内容