2017-03-07 09:37:28 +00:00
|
|
|
class RequestContract
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
|
2017-03-08 06:10:32 +00:00
|
|
|
field :new_site_cost, type: Integer, :default => 0
|
|
|
|
field :hosting_with_rulingdigital_cost, type: Integer, :default => 0
|
|
|
|
field :service_cost, type: Integer, :default => 0
|
|
|
|
field :option_module_cost, type: Integer, :default => 0
|
|
|
|
field :customized_module_cost, type: Integer, :default => 0
|
|
|
|
field :template_cost, type: Integer, :default => 0
|
|
|
|
field :customized_template_cost, type: Integer, :default => 0
|
|
|
|
field :rwd_cost, type: Integer, :default => 0
|
|
|
|
|
2017-03-07 09:37:28 +00:00
|
|
|
has_one :site_request
|
|
|
|
end
|