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

2016-09-07 22:02 来源:www.chinab4c.com 作者:ecshop专家

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.   

 

(责任编辑:chinab4c)