|
|
@@ -172,10 +172,12 @@ const buildStatsText = (data: Record<string, any>) => {
|
|
|
`2、本周期初数:${data?.periodBeginCount ?? 0}`,
|
|
|
`3、本周入住数:${data?.weeklyCheckInCount ?? 0}`,
|
|
|
`4、本周退住数:${data?.weeklyCheckOutCount ?? 0}`,
|
|
|
- `5、本周期末数:${data?.periodEndCount ?? 0}`,
|
|
|
- `6、本周净增长长者数:${data?.weeklyNetGrowthCount ?? 0}`,
|
|
|
- `7、本月净增长长者数合计:${data?.monthlyNetGrowthCount ?? 0}`,
|
|
|
- `8、本周期末院内空余床位数:${data?.periodEndEmptyBedCount ?? 0}`
|
|
|
+ `5、本月入住数:${data?.monthlyCheckInCount ?? 0}`,
|
|
|
+ `6、本月退住数:${data?.monthlyCheckOutCount ?? 0}`,
|
|
|
+ `7、本周期末数:${data?.periodEndCount ?? 0}`,
|
|
|
+ `8、本周净增长长者数:${data?.weeklyNetGrowthCount ?? 0}`,
|
|
|
+ `9、本月净增长长者数合计:${data?.monthlyNetGrowthCount ?? 0}`,
|
|
|
+ `10、本周期末院内空余床位数:${data?.periodEndEmptyBedCount ?? 0}`
|
|
|
]
|
|
|
return lines.join('\n')
|
|
|
}
|