patient_ad_note
Fetch an inpatient admission note in HTML format using the case number and admission date, returning the medical record summary.
Instructions
取得住院病歷摘要 (HTML)。
Args: caseno: 住院案件號,由 patient_ad_list 返回 adidate: 入院日期 (YYYY-MM-DD 或 YYYYMMDD),由 patient_ad_list 返回的 住院日期_iso
Example: # 步驟 1: 取得住院清單 ad_list = await patient_ad_list(..., hisno) # → [{'住院日期': '20250930', '住院日期_iso': '2025-09-30', 'caseno': '33365977', ...}]
# 步驟 2: 用 caseno 和 住院日期_iso 取得住院病歷
ad_note = await patient_ad_note(..., hisno, caseno='33365977', adidate='2025-09-30')內部轉換: API 需要 YYYYMMDD 格式,會自動轉換。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| hisno | Yes | ||
| caseno | Yes | ||
| eip_id | Yes | ||
| adidate | Yes | ||
| eip_password | Yes |