|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册账号
×
T+-常见问题
【问题现象】:客户点开预制资产负债表,发现公式错误,但是是预制报表,不想一个个修改,想恢复系统预制的资产负债表公式
【解决方案】:备份数据,
1.执行脚本,查找对应的templateSourceID
select templateSourceID,* from SR_Template where name ='资产负债表'
数据库找到对应templateSourceID是 :-15001,则按以下脚本进行修改,如果查出来的templateSourceID是其他的数,下方脚本的-15001,换成查出来的值即可
脚本如下:
DELETE SR_ReportDataFormula where idReportDataDTO in (Select id FROM SR_ReportData where templateID in(-15001))
DELETE SR_ReportDataCell where idReportDataDTO in(Select id FROM SR_ReportData where templateID in(-15001))
DELETE SR_ReportData where templateID in(-15001)
DELETE SR_PeriodTemplate where TemplateID in(-15001)
DELETE SR_KeyWord where TemplateID in(-15001)
DELETE SR_TemplateCell where idTemplateDTO in(Select id FROM SR_Template where templateSourceID in(-15001))
DELETE SR_Template where templateSourceID in(-15001) |
|