调试财务溯源

This commit is contained in:
lewis 2025-03-20 15:29:55 +08:00
parent 7f843c5698
commit e2b47ab17b

View File

@ -68,6 +68,7 @@ class PurchaseFundsLists extends BaseAdminDataLists implements ListsSearchInterf
$item['status_name'] = '已超额';
}
$item['audit_time'] = empty($item['audit_time']) ? '' : date('Y-m-d H:i:s', $item['audit_time']);
$item['supply_price'] = ProductSourceLinkInfo::where('purchase_funds_id', $item['id'])->where('types', ProductSourceLinkInfo::TypeOut)->sum('total_price');
$item['current_profit'] = ProductSourceLinkInfo::where('purchase_funds_id', $item['id'])->where('types', ProductSourceLinkInfo::TypeOrder)->sum('total_price');
})
->toArray();