打完PT107553补丁之后社保档案表单报错
金蝶云社区-gong_gl_lang
gong_gl_lang
0人赞赏了该文章 358次浏览 未经作者许可,禁止转载编辑于2020年02月13日 08:41:06

是因为脚本中缺少添加单位基数和社保基数字段的内容,请在查询分析器中执行如下2条语句解决问题
If not exists (select * from KSQL_USERCOLUMNS where KSQL_COL_NAME ='FSelfBase' and KSQL_COL_TABNAME='T_HR_SSocTypeItem')
alter table T_HR_SSocTypeItem add FSelfBase NUMERIC(28,10);

If not exists (select * from KSQL_USERCOLUMNS where KSQL_COL_NAME ='FCompanyBase' and KSQL_COL_TABNAME='T_HR_SSocTypeItem')
alter table T_HR_SSocTypeItem add FCompanyBase NUMERIC(28,10);