当手术计费弹窗中点击"签发"耗材时,因耗材的locationId(发放库房)为空导致后端异常。 在DoctorStationAdviceAppServiceImpl.handDevice方法中,当locationId为null时,使用登录用户的科室ID作为默认值, 与NurseBillingAppService中的处理方式保持一致。
46 lines
965 B
JavaScript
Executable File
46 lines
965 B
JavaScript
Executable File
export const inpatientNurseNavs = [
|
|
{
|
|
label: '入出转',
|
|
path: '/inHospital/statistics/inOut',
|
|
icon: 'Document',
|
|
accent: '#5b8ff9',
|
|
},
|
|
{
|
|
label: '护理记录',
|
|
path: '/inHospital/statistics/nursingRecord',
|
|
icon: 'MedicineBox',
|
|
accent: '#13c2c2',
|
|
},
|
|
{
|
|
label: '三测单',
|
|
path: '/inHospital/statistics/tprChart',
|
|
icon: 'List',
|
|
accent: '#ffc53d',
|
|
},
|
|
{
|
|
label: '医嘱执行',
|
|
path: '/inHospital/statistics/medicalOrderExecution',
|
|
icon: 'Finished',
|
|
accent: '#73d13d',
|
|
},
|
|
{
|
|
label: '医嘱校对',
|
|
path: '/inHospital/statistics/medicalOrderProofread',
|
|
icon: 'EditPen',
|
|
accent: '#ff7a45',
|
|
},
|
|
{
|
|
label: '汇总发药申请',
|
|
path: '/inHospital/statistics/drugDistribution',
|
|
icon: 'Collection',
|
|
accent: '#597ef7',
|
|
},
|
|
{
|
|
label: '住院记账',
|
|
path: '/inHospital/statistics/InpatientBilling',
|
|
icon: 'Tickets',
|
|
accent: '#9e60ff',
|
|
},
|
|
];
|
|
|