/*------------------------------------------------------ */
		
		
			//-- 修改市场价格
		
		
			/*------------------------------------------------------ */
		
		
			elseif ($_REQUEST['act'] == 'edit_market_price')
		
		
			{
		
		
			check_authz_json('goods_manage');
		
		
			
		
		
			$goods_id       = intval($_POST['id']);
		
		
			$goods_price    = floatval($_POST['val']);
		
		
			
		
		
			if ($goods_price < 0 || $goods_price == 0 && $_POST['val'] != "$goods_price")
		
		
			{
		
		
			make_json_error($_LANG['shop_price_invalid']);
		
		
			}
		
		
			else
		
		
			{
		
		
			if ($exc->edit(" market_price = '$goods_price', last_update=" .gmtime(), $goods_id))
		
		
			{
		
		
			clear_cache_files();
		
		
			make_json_result(number_format($goods_price, 2, '.', ''));
		
		
			}
		
		
			}
		
		
			}
		
		
		
		
			3、lib_goods.php
		
		
		
		
			function goods_list约910行
		
		
		
		
			
				$filter = page_and_size($filter);
			
			
			
			
				$sql = "SELECT goods_id, goods_name, goods_type, goods_sn, shop_price,market_price,
			
			
			
			
				以上红色为增加部分