feat: lic文件名取提供的;合同数等

This commit is contained in:
caiyuchao
2025-08-13 10:23:06 +08:00
parent 706b125d18
commit d7cb6664f5
6 changed files with 60 additions and 26 deletions

View File

@@ -29,7 +29,11 @@
c.*,
u.nickname author,
u.avatar,
p.`name` project_name
p.`name` project_name,
p.status,
p.business_owner,
p.technical_owner_a,
CONCAT( cu.`code`, p.`code` ) serial_no
FROM
(
SELECT
@@ -51,6 +55,8 @@
AND u.deleted = 0
LEFT JOIN crm_project p ON c.project_id = p.id
AND p.deleted = 0
LEFT JOIN crm_customer cu ON p.customer_id = cu.id
AND cu.deleted = 0
ORDER BY
c.update_time DESC
LIMIT 10