Module: G5IntegrationsValidations::CentershiftInventoryValidations

Extended by:
ActiveSupport::Concern
Defined in:
lib/g5_integrations_validations/centershift_inventory_validations.rb

Constant Summary collapse

VALID_RATE_BASES =
[
  "street_rate",
  "proforma_rate",
  "rack_rate",
  "future_rate",
  "push_rate",
  "rent_rate",
  "maximum_rent_rate",
  "minimum_rent_rate",
]
VALID_IN_STORE_RATE_BASES =
VALID_RATE_BASES + ['calculated_from_web_rate']
VALID_WEB_RATE_BASES =
VALID_RATE_BASES + ['calculated_from_in_store_rate']
CTAS_THRESHOLD_OPTIONS =
[
  "hard_reservation_with_fee",
  "hard_reservation",
  "soft_reservation",
  "quote",
]