弹出临床路径修改
-
更新标准版的websys.inc.xml与websys.DHCChartStyle.xml
-
写配置父表
select * from websys.StandardType where code='websys'
--上面查询如果没有记录,则插入记录
INSERT INTO websys.StandardType (code) VALUES('websys')
-
插入配置子表
select * from websys.StandardTypeItem where parref='websys'
-- 上面查询结果中如果没有NotAutoOpenCPW,则插入记录
INSERT INTO websys.StandardTypeItem (parref,code,description,storedvalue) VALUES('websys','NotAutoOpenCPW',"不自动打开临床路径界面",1)