|
@@ -110,12 +110,10 @@ class UserController extends O2oBaseController{
|
|
|
echo json_encode($data);exit;
|
|
|
}
|
|
|
$criteria = new EMongoCriteria();
|
|
|
- $criteria->booking_time('>=', intval($start_time));
|
|
|
- $criteria->booking_time('<', intval($end_time));
|
|
|
+ //$criteria->booking_time('>=', intval($start_time));
|
|
|
+ //$criteria->booking_time('<', intval($end_time));
|
|
|
$criteria->user('==', new MongoId($user_id));
|
|
|
$orders = ROrder::model()->findAll($criteria);
|
|
|
-
|
|
|
-
|
|
|
return CommonFn::requestAjax(true,$orders);
|
|
|
}
|
|
|
|