历史已经审核上报的报表如何取消自动重算的属性呢?原创
金蝶云社区-wwx
wwx
2人赞赏了该文章 157次浏览 未经作者许可,禁止转载编辑于2022年08月23日 14:20:22

解决办法:后台修改。

脚本:

select FISOPENAUTOCALC from T_RPT_Report where fid in (select rpt.fid  from t_rpt_report rpt inner join t_org_company c on c.fid = rpt.fcompanyid left join t_rpt_template t on t.fid = rpt.ftemplateid where c.fnumber = '组织编码'   and rpt.fyear = '年度'   and rpt.fperiod = '期间'   and t.fnumber = '模板编码'

把查出来的结果改成0就行了

FISOPENAUTOCALC字段为0表示打开不自动重算。

赞 2