Method: FinModeling::ReformulatedBalanceSheet#net_operating_assets

Defined in:
lib/finmodeling/reformulated_balance_sheet.rb

#net_operating_assetsObject



22
23
24
25
26
27
28
# File 'lib/finmodeling/reformulated_balance_sheet.rb', line 22

def net_operating_assets
  cs = FinModeling::CalculationSummary.new
  cs.title = "Net Operational Assets"
  cs.rows = [ CalculationRow.new( :key => "OA", :vals => [  @operating_assets.total ] ),
              CalculationRow.new( :key => "OL", :vals => [ -@operating_liabilities.total ] ) ]
  return cs
end