問題現象:用友u8批量修改計價方式?
如果初始的時候沒有對存貨檔案選擇計價方式,那么就在在數據庫里修改
select * cValueType from Inventory where is null
update Inventory set cValueType='移動平均法' where cValueType is null
若是你們曾選擇過其他計價方式 需要批量修改的話 只把 is null 改成'你選擇的計價方式' 比如你曾經把計價方式由全月平均法 改成移動平均法 應這樣寫update Inventory set cValueType='移動平均法' where cValueType ='全月平均法'