金蝶專業版修改負庫存SQL語句

如果你會用SQL語句的話,可以試試,方法百度一下吧
不允許負庫存出庫
update t_systemprofile set fvalue=0 where fcategory='IC' and fkey='UnderStock'
Go

不允許負庫存結賬
update t_systemprofile set fvalue=0 where fcategory='IC' and fkey='UnderStockCalculate'
Go

庫存保存更新
update t_systemprofile set fvalue=1 where fcategory='IC' and fkey='UPSTOCKWHENSAVE'
Go

庫存審覈更新
update t_systemprofile set fvalue=0 where fcategory='IC' and fkey='UPSTOCKWHENSAVE'
Go

允許負庫存出庫
update t_systemprofile set fvalue=1 where fcategory='IC' and fkey='UnderStock'
Go

允許負庫存結賬
update t_systemprofile set fvalue=1 where fcategory='IC' and fkey='UnderStockCalculate'
Go


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章