关于在ecshop后台加产品默认非上架状态

2016-09-11 20:39 来源: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.   
  24.