|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册账号
×
T+-库存核算
【问题现象】:存货1001-10027A有录库存期初 库存台账能查到 存货明细账跳不出来 。
【问题分析】:[ol]整理存货总账和现存量,及重新计价没有效果查看期初库存里面有数据录入。
通过语句查看,是有这个单据的。[/ol] select*from ST_RDRecord where id='1037'
select idRDRecordDTO,idwarehouse,*from ST_RDRecord_b where idinventory in(select id from AA_Inventory where code='1001-10027A')
select accountPeriod,AccountYearPeriod,*from ST_SubsidiaryBook
where idinventory in(select id from AA_Inventory where code='1001-10027A')
发现SYS0911-2017-12-00000001单据中对应的字段里面accountPeriod,AccountYearPeriod的值不正确,期初应该显示为accountPeriod=0,AccountYearPeriod=202100
【解决方案】:
备份数据,执行脚本。
UPDATE dbo.ST_SubsidiaryBook SET accountPeriod = 0 ,AccountYearPeriod = '202100'
WHERE accountPeriod 0 AND idvouchertype = 121
EXEC dbo.SCM_SP_RebuildSummarybook
【总结】:
针对此类问题,需要排查以下:
[ol]期初库存是否录入及审核查询存货明细账表ST_SubsidiaryBook,accountPeriod = 0 ,AccountYearPeriod = '202100' 表示的期初数据。如不是的话,需要进行更改。[/ol] |
|