服务热线:022-26677809 , 13821206318
坚守“用户之友”的初心,做“专业的奋斗者”,始终坚持“持续创新”
首页 > 知识库 > 正文

民间非营利企业性质预设科目

- 浏览:1127 - 发布时间:2012-02-11 13:27:08.0


知识库详细内容

问题版本: 302-用友T3-用友通标准版 问题模块: 804-系统环境
问题状态: 2-?终解决方案 关 键 字: 民间非营利企业性质预设科目
适用产品: T3系列 补 丁 号:
问题名称: 民间非营利企业性质预设科目
问题现象: 利用民间非营利企业性质预设科目时,在损益类中增加支出类科目时它提示”科目编码首位与分类编号不符接受此编号吗
原因分析:
修改语句
use ufsystem
go
update GL_CodeClass set cclass=收入,cclass_engl=SR where (itrade=34) and inum=4
insert into GL_CodeClass (itrade,inum,cclass,cclass_engl,inumany,nproperty,bl_r,bcheck) values (34,5,费用,FY,0,1,1,0)
go
update GL_DPrecode set cclass = 收入 , cclass_engl = SR where itrade_id = 34 and cclass =收入费用
update GL_DPrecode set cclass = 费用,cclass_engl = FY where ccode like 5% and itrade_id = 34 and cclass = 收入
解决方案:
修改语句
use ufsystem
go
update GL_CodeClass set cclass=收入,cclass_engl=SR where (itrade=34) and inum=4
insert into GL_CodeClass (itrade,inum,cclass,cclass_engl,inumany,nproperty,bl_r,bcheck) values (34,5,费用,FY,0,1,1,0)
go
update GL_DPrecode set cclass = 收入 , cclass_engl = SR where itrade_id = 34 and cclass =收入费用
update GL_DPrecode set cclass = 费用,cclass_engl = FY where ccode like 5% and itrade_id = 34 and cclass = 收入
go