|
|
@@ -3113,7 +3113,6 @@ XL;
|
|
|
$id = $order->id ?? 0;
|
|
|
$customId = $order->customId ?? 0;
|
|
|
$mainId = $order->mainId ?? 0;
|
|
|
- $showAddress = $order->showAddress ?? '';
|
|
|
$oldSameTimeIds = $order->sameTimeIds ?? '';
|
|
|
|
|
|
//找到当前订单客户的账单日期为 $date 的所有订单,然后更新同天内的所有订单的 sameTimeIds(加此次要改变的订单的订单号$id)
|
|
|
@@ -3122,7 +3121,6 @@ XL;
|
|
|
$dayOrders = self::getAllByCondition([
|
|
|
'mainId' => $mainId,
|
|
|
'customId' => $customId,
|
|
|
- 'showAddress' => $showAddress,
|
|
|
'payTime' => ['between', [$startTime, $endTime]]
|
|
|
], 'id ASC', 'id, sameTimeIds');
|
|
|
|