问题现象:用友u8批量修改计价方式?

如果初始的时候没有对存货档案选择计价方式,那么就在在数据库里修改

select * cValueType from Inventory where is null

update Inventory set cValueType='移动平均法' where  cValueType is null

若是你们曾选择过其他计价方式 需要批量修改的话 只把 is null 改成'你选择的计价方式'  比如你曾经把计价方式由全月平均法  改成移动平均法 应这样写update Inventory set cValueType='移动平均法' where  cValueType ='全月平均法'