医生诊间开药、打印处方、药房配药发药界面看看不见药品名称-------运维日志21

来源:互联网 发布:四川网络交易监管网 编辑:程序博客网 时间:2024/06/09 20:17

医生诊间开药、打印处方、药房配药发药界面看看不见药品名称,这是缺少脚本,药品的通用名没有读取出来。



↓↓↓↓↓↓解决方法↓↓↓↓↓↓

执行如下脚本:

update t_bse_itemalias_drug a set a.PRINTNAME_VCHR = a.itemname_vchr;update t_bse_itemalias_drug a set a.PRINTFLAG_INT = '1';--上面语句执行无效时,执行下面的语句,执行前注意要将t_bse_medicine表中MEDNORMALNAME_VCHR字段长度改为200.(处方)update t_bse_medicine t set t.mednormalname_vchr = t.medicinename_vchr where t.mednormalname_vchr is null--上面语句执行无效时,执行下面的语句(医生诊间)update t_bse_chargeitem a set a.itemcommname_vchr = a.itemname_vchr where a.itemcommname_vchr is null;


0 0