【问】盘点时提示,该商品尺码未定义,如下图 | ||
【适用版本】专卖店9 | 【模块】基础业务 | 【点击数】56 |
【知识编号】Z2015012100032 | ||
【问题描述】 |
use hbfsv9
go
delete from t_bd_base_code where size_group_id=’SI’ and type_no = ‘SI’
go
select * into base_code1 from t_bd_base_code where type_no = ‘SI’
go
alter table base_code1 add [id] int identity(1,1)
go
insert into t_bd_base_code select type_no,code_id,code_name,english_name,code_type,memo,[id],’SI’ from base_code1
go