Commit 3b7c7e01 by huangchengyi

2.0

parent d1a795a1
Showing with 4 additions and 4 deletions
...@@ -40,7 +40,7 @@ class ServerController extends Controller ...@@ -40,7 +40,7 @@ class ServerController extends Controller
//联营数据导出服务 //联营数据导出服务
public function goodsComListServer($info){ public function goodsComListServer($info){
$res= ExportModel::GoodsComListExport(json_decode($info,true)); $res= ExportModel::GoodsComListExport(json_decode($info,true));
return $res; return json_encode($res);
} }
########################## ##########################
/* /*
...@@ -54,7 +54,7 @@ class ServerController extends Controller ...@@ -54,7 +54,7 @@ class ServerController extends Controller
//自营数据导出服务 //自营数据导出服务
public function goodsListServer($info){ public function goodsListServer($info){
$res= ExportModel::GoodsListExport(json_decode($info,true)); $res= ExportModel::GoodsListExport(json_decode($info,true));
return $res; return json_encode($res);
} }
########################## ##########################
/* /*
...@@ -68,7 +68,7 @@ class ServerController extends Controller ...@@ -68,7 +68,7 @@ class ServerController extends Controller
//自营数据导出服务 //自营数据导出服务
public function orderListServer($info){ public function orderListServer($info){
$res= ExportModel::OrderListExport(json_decode($info,true)); $res= ExportModel::OrderListExport(json_decode($info,true));
return $res; return json_encode($res);
} }
########################## ##########################
/* /*
...@@ -82,7 +82,7 @@ class ServerController extends Controller ...@@ -82,7 +82,7 @@ class ServerController extends Controller
//自营数据导出服务 //自营数据导出服务
public function putawayListServer($info){ public function putawayListServer($info){
$res= ExportModel::PutawayListExport(json_decode($info,true)); $res= ExportModel::PutawayListExport(json_decode($info,true));
return $res; return json_encode($res);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment