有问题文章留言 看内容决定收费与免费
另外接收数据库质疑 勒索病毒数据恢复等项目。

盘点差异表中数据为0,如何解决?

【问题描述】

存货盘点审核后,但是盘点差异表中没有盘点数据

【问题答案】

现有盘点差异数据请备份后执行以下语句处理:

use hbposev9_branch    —-总部修改为use hbposev9
go
update t_im_check_sum set check_qty=a.qty  from
( select b.check_no, a.item_no , sum(a.real_qty) qty from
  t_im_check_detail a , t_im_check_master b
 where a.sheet_no=b.sheet_no
 group by b.check_no, a.item_no) a,
t_im_check_sum,
t_im_check_init
where a.item_no=t_im_check_sum.item_no and a.check_no=t_im_check_sum.sheet_no
and t_im_check_sum.sheet_no=t_im_check_init.sheet_no
and t_im_check_init.approve_flag=’0′
go
update t_im_check_sum set balance_qty= check_qty-stock_qty 
go

—–根据存货盘点单数量汇总更新差异处理单的盘点数量,只适用调整未审核的差异处理单。



赞(0)
未经允许不得转载:思迅软件知识库 » 盘点差异表中数据为0,如何解决?
分享到: 更多 (0)

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址