|
@@ -186,12 +186,12 @@ class CommonController extends Controller
|
186
|
186
|
}
|
187
|
187
|
if($wechat_id) {
|
188
|
188
|
$os = array();
|
189
|
|
- $houseApplianceCleanOrder = HouseApplianceCleanOrder::where("wechat_id", $wechat_id)
|
|
189
|
+ /*$houseApplianceCleanOrder = HouseApplianceCleanOrder::where("wechat_id", $wechat_id)
|
190
|
190
|
->orderBy('id', 'desc')->get();
|
191
|
191
|
$houseCleanOrder = HouseCleanOrder::where("wechat_id", $wechat_id)
|
192
|
192
|
->orderBy('id', 'desc')->get();
|
193
|
193
|
$housekeeperOrder = HousekeeperOrder::where("wechat_id", $wechat_id)
|
194
|
|
- ->orderBy('id', 'desc')->get();
|
|
194
|
+ ->orderBy('id', 'desc')->get();*/
|
195
|
195
|
$maternityMatronOrder = MaternityMatronOrder::where("wechat_id", $wechat_id)
|
196
|
196
|
->orderBy('id', 'desc')->get();
|
197
|
197
|
$productOrder = ProductOrder::where("wechat_id", $wechat_id)
|
|
@@ -199,10 +199,10 @@ class CommonController extends Controller
|
199
|
199
|
|
200
|
200
|
$optionOrder = OptionOrder::where("wechat_id", $wechat_id)
|
201
|
201
|
->orderBy('id', 'desc')->get();
|
202
|
|
-
|
|
202
|
+/*
|
203
|
203
|
array_push($os, $houseApplianceCleanOrder);
|
204
|
204
|
array_push($os, $houseCleanOrder);
|
205
|
|
- array_push($os, $housekeeperOrder);
|
|
205
|
+ array_push($os, $housekeeperOrder);*/
|
206
|
206
|
array_push($os, $maternityMatronOrder);
|
207
|
207
|
array_push($os, $optionOrder);
|
208
|
208
|
//array_push($os, $productOrder);
|