[使用心得]金蝶专业版账套启用后如何修改后台参数,一句搞定
(2013-04-27 10:32:59)
标签:
erpit常见问题金蝶会计 |
分类: 金蝶KIS专业版 |
不允许负库存出库
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
修改会计启用期间和年度
UPDATE t_SystemProfile SET FValue = 0 WHERE (FCategory = 'gl') AND
(FKey = 'Closed')
go

加载中…