
金蝶kis专业版修改不允许负库存出库
修改之前做好备份
解决方案:新建记事本复制代码到记事本 update t_systemprofile set fvalue=0 where fcategory=’IC’ and fkey=’UnderStock’
go 保存为sql格式 。 金蝶专业版16.0以下版本在账套管理里”查看“里执行代码 14.1以上版本在金蝶系统管理里账套后面的”更多“ 执行命令即可
更多其他修改方法
不允许负库存出库
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
留言 0
还没有留言,来抢个沙发吧~