【问】存货盘点单中,有的货号一输入,软件立刻卡死? | ||
【适用版本】专卖店9 | 【模块】基础业务 | 【点击数】30 |
【知识编号】Z2017082400002 | ||
【问题描述】存货盘点单中,有的货号一输入,软件立刻卡死? 销售界面输入一切正常。 |
use isszmv9
go
–查询货号和附加码相同的商品
select b.item_no,b.item_barcode,a.* from t_bd_item_info a ,t_bd_item_barcode b
where a.item_no =b.item_barcode
–删除货号跟附加条码重复的附加码(执行前,请先备份数据库)
delete from t_bd_item_barcode where item_barcode in
(select b.item_barcode from t_bd_item_info a ,t_bd_item_barcode b where a.item_no =b.item_barcode)