金蝶专业版账套启用后,允许负库存出库、结账

首页 » 金蝶专业版账套启用后,允许负库存出库、结账

不允许负库存出库
  1. update t_systemprofile set fvalue=0 where fcategory=’IC’ and fkey=’UnderStock’
  2. Go
不允许负库存结账
  1. update t_systemprofile set fvalue=0 where fcategory=’IC’ and fkey=’UnderStockCalculate’
  2. Go
库存保存更新
  1. update t_systemprofile set fvalue=1 where fcategory=’IC’ and fkey=’UPSTOCKWHENSAVE’
  2. Go
库存审核更新
  1. update t_systemprofile set fvalue=0 where fcategory=’IC’ and fkey=’UPSTOCKWHENSAVE’
  2. Go
允许负库存出库
  1. update t_systemprofile set fvalue=1 where fcategory=’IC’ and fkey=’UnderStock’
  2. Go
允许负库存结账
  1. update t_systemprofile set fvalue=1 where fcategory=’IC’ and fkey=’UnderStockCalculate’   
  2. Go