语句原创
金蝶云社区-皎月
皎月
7人赞赏了该文章 636次浏览 未经作者许可,禁止转载编辑于2021年12月14日 12:47:23

不允许负库存出库

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


赞 7