From cdbe5509e1259fc8b1269ca453e7c90d91454e93 Mon Sep 17 00:00:00 2001 From: Isaac Lewis Date: Thu, 25 Oct 2018 12:36:17 -0700 Subject: [PATCH] default raw to false on combrw --- lib/syspro/business_objects/combrw.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/syspro/business_objects/combrw.rb b/lib/syspro/business_objects/combrw.rb index 7370389..6ec521d 100644 --- a/lib/syspro/business_objects/combrw.rb +++ b/lib/syspro/business_objects/combrw.rb @@ -12,7 +12,7 @@ module Syspro attr_accessor :browse_name, :start_at_key, :start_condition, :return_rows, :filters, :table_name, :title, :columns - def call(user_id, raw) + def call(user_id, raw = false) xml_in = template.result(binding) params = { 'UserId' => user_id, 'XmlIn' => xml_in } resp = ComBrw.browse(params) -- libgit2 0.21.4