思迅售后吧 关注:58贴子:167
  • 0回复贴,共1

部分商品查不到库存

只看楼主收藏回复

部分商品查询不到库存
如商品条码:6926433490000 有出入库明细,商品汇总库存没
【问题答案】
问题处理有两种方法,
第一种做调价单
第二种,执行下面的语句
导致问题的主要原因在,价格表数据丢失
use hbposv8
go
insert into t_pc_branch_price (branch_no,item_no,supcust_no,sale_way,price,
base_price,sale_price,vip_price,sup_ly_rate,branch_price,branch_sale,com_flag,item_stock,base_price1,base_price2,base_price3,base_price4)
Select b.branch_no,item_no,main_supcust,item_sup_flag,(case b.trade_type when '2' then a.trans_price else a.price end),
base_price,sale_price,vip_price,sup_ly_rate,branch_price,'1','0',item_stock,base_price1,base_price2,base_price3,base_price4
From t_bd_item_info a,t_bd_branch_info b
Where b.property in ('0','1')
And b.branch_no+item_no not in (select c.branch_no+c.item_no from t_pc_branch_price c
where c.branch_no=b.branch_no and c.item_no = a.item_no)
go


IP属地:河北1楼2016-06-02 14:59回复