金蝶专业版修改负库存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


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