Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
- Add Logistics component with progress tracking - Add OrderDetail component for order information - Support data-driven steps and actions - Add blue color scale to widget SCSS - Fix node overflow and progress bar rendering issues - Add English translations for dashboard components Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
56 lines
1.7 KiB
Ruby
56 lines
1.7 KiB
Ruby
# == Schema Information
|
|
#
|
|
# Table name: reporting_events
|
|
#
|
|
# id :bigint not null, primary key
|
|
# event_end_time :datetime
|
|
# event_start_time :datetime
|
|
# name :string
|
|
# value :float
|
|
# value_in_business_hours :float
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# account_id :integer
|
|
# conversation_id :integer
|
|
# inbox_id :integer
|
|
# user_id :integer
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_reporting_events_on_account_id (account_id)
|
|
# index_reporting_events_on_conversation_id (conversation_id)
|
|
# index_reporting_events_on_created_at (created_at)
|
|
# index_reporting_events_on_inbox_id (inbox_id)
|
|
# index_reporting_events_on_name (name)
|
|
# index_reporting_events_on_user_id (user_id)
|
|
# reporting_events__account_id__name__created_at (account_id,name,created_at)
|
|
#
|
|
|
|
class ReportingEvent < ApplicationRecord
|
|
validates :account_id, presence: true
|
|
validates :name, presence: true
|
|
validates :value, presence: true
|
|
|
|
belongs_to :account
|
|
belongs_to :user, optional: true
|
|
belongs_to :inbox, optional: true
|
|
belongs_to :conversation, optional: true
|
|
|
|
# Scopes for filtering
|
|
scope :filter_by_date_range, lambda { |range|
|
|
where(created_at: range) if range.present?
|
|
}
|
|
|
|
scope :filter_by_inbox_id, lambda { |inbox_id|
|
|
where(inbox_id: inbox_id) if inbox_id.present?
|
|
}
|
|
|
|
scope :filter_by_user_id, lambda { |user_id|
|
|
where(user_id: user_id) if user_id.present?
|
|
}
|
|
|
|
scope :filter_by_name, lambda { |name|
|
|
where(name: name) if name.present?
|
|
}
|
|
end
|