|
|
@@ -53,14 +53,14 @@ class TestController extends BaseController
|
|
|
$arr[$payTime] = $order;
|
|
|
}
|
|
|
}
|
|
|
- $clearList = PurchaseClearClass::getAllByCondition(['ghsShopId' => $ghsShopId, 'status' => 2], null, '*', null);
|
|
|
+ $clearList = PurchaseClearClass::getAllByCondition(['ghsShopId' => $ghsShopId, 'status' => 2], null, 'actPrice,payTime', null);
|
|
|
if (!empty($clearList)) {
|
|
|
foreach ($clearList as $clear) {
|
|
|
$payTime = $clear['payTime'] ?? '';
|
|
|
$arr[$payTime] = $clear;
|
|
|
}
|
|
|
}
|
|
|
- $refundList = RefundOrderClass::getAllByCondition(['mainId' => $mainId], null, '*', null);
|
|
|
+ $refundList = RefundOrderClass::getAllByCondition(['mainId' => $mainId], null, 'refundPrice,updateTime', null);
|
|
|
if (!empty($refundList)) {
|
|
|
foreach ($refundList as $refund) {
|
|
|
$updateTime = $refund['updateTime'] ?? '';
|