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