5004.获取住院清单

5004.获取住院清单

Request / 说明

参数名
类型
描述
必填
TransCode
文本
ZB5004
必填
TransSerialNo
文本
业务流水号
必填
UserID
文本
用户ID
必填
SeeNo
整型
就诊ID
必填
Today
整型
日清单(1是0否)
必填

Request / 示例

``` <Request> <TransCode>ZB5004</TransCode> <TransSerialNo>20200907143027</TransSerialNo> <SeeNo>5972</SeeNo> <Today>0</Today> <UserID>8080</UserID> </Request> ```

Response / 说明

参数名
类型
描述
必填
RepCode
整型
返回值(-1错误0正确)
必填
RepMsg
文本
错误信息
必填
RepData
XML
返回信息
必填
Result
XML
费用明细
必填
ItemName
文本
项目名称
必填
ItemCategory
文本
项目分类
必填
Spec
文本
规格
必填
Unit
文本
单位
必填
Price
数值
单价
必填
Quantity
数值
数量
必填
TotalCost
数值
金额
必填
DoctorName
文本
医生姓名
必填
DeptName
文本
执行科室
必填

Response / 示例

``` <Response> <RepCode>0</RepCode> <RepMsg></RepMsg> <RepData> <Result> <ItemName>数字化摄影(DR)</ItemName> <ItemCategory>X光</ItemCategory> <Spec /> <Unit>曝光次数</Unit> <Price>60.000000</Price> <Quantity>1.0000</Quantity> <TotalCost>60.00</TotalCost> <DoctorName>张**</DoctorName> <DeptName>放射科</DeptName> </Result> <Result> <ItemName>胶片(14*17)</ItemName> <ItemCategory>其他费</ItemCategory> <Spec /> <Unit>张</Unit> <Price>25.000000</Price> <Quantity>1.0000</Quantity> <TotalCost>25.00</TotalCost> <DoctorName>张**</DoctorName> <DeptName>放射科</DeptName> </Result> <Result> <ItemName>煎药机煎药</ItemName> <ItemCategory>其他费</ItemCategory> <Spec /> <Unit>付</Unit> <Price>5.000000</Price> <Quantity>5.0000</Quantity> <TotalCost>25.00</TotalCost> <DoctorName>张**</DoctorName> <DeptName>煎药室</DeptName> </Result> <Result> <ItemName>血细胞分析(五分类)</ItemName> <ItemCategory>检验费</ItemCategory> <Spec /> <Unit>项</Unit> <Price>22.000000</Price> <Quantity>1.0000</Quantity> <TotalCost>22.00</TotalCost> <DoctorName>张**</DoctorName> <DeptName>检验科</DeptName> </Result> </RepData> </Response> ```