370【住院护士站站-》进入“三测单”模块报错
371 【业务配置】住院医生站-“呼吸内科病房”未在西药房取药规则中维护配置
This commit is contained in:
@@ -170,6 +170,22 @@ export function getAdviceBaseInfo(queryParams) {
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取当前科室已配置的药品类别列表
|
||||
*/
|
||||
export function getConfiguredCategories(organizationId) {
|
||||
// organizationId 为空时不发送该参数,避免后端 Long 类型转换 400 错误
|
||||
const params = {};
|
||||
if (organizationId !== undefined && organizationId !== null && organizationId !== '') {
|
||||
params.organizationId = organizationId;
|
||||
}
|
||||
return request({
|
||||
url: '/doctor-station/advice/configured-categories',
|
||||
method: 'get',
|
||||
params: params,
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 保存处方(单条)
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user