trabajo-afectivo/lib/import/otrs/article_customer_factory.rb

18 lines
400 B
Ruby
Raw Permalink Normal View History

2022-01-01 13:38:12 +00:00
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
module Import
module OTRS
module ArticleCustomerFactory
extend Import::Factory
def skip?(record, *_args)
return true if record['SenderType'] != 'customer'
return true if record['CreatedBy'].to_i != 1
2017-11-23 08:09:44 +00:00
return true if record['From'].blank?
false
end
end
end
end