Class: Centaman::Object::Extra

Inherits:
Centaman::Object show all
Defined in:
lib/centaman/object/extra.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Centaman::Object

#define_variables, #initialize

Constructor Details

This class inherits a constructor from Centaman::Object

Instance Attribute Details

#booking_time_idObject (readonly)

Returns the value of attribute booking_time_id.



3
4
5
# File 'lib/centaman/object/extra.rb', line 3

def booking_time_id
  @booking_time_id
end

#quantityObject

Returns the value of attribute quantity.



4
5
6
# File 'lib/centaman/object/extra.rb', line 4

def quantity
  @quantity
end

Instance Method Details

#after_init(args = {}) ⇒ Object



6
7
8
9
# File 'lib/centaman/object/extra.rb', line 6

def after_init(args = {})
  @quantity = 0
  @booking_time_id = args.fetch(:booking_time_id, nil)
end

#attributesObject

rubocop:disable Metrics/MethodLength



38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/centaman/object/extra.rb', line 38

def attributes
  [
    Centaman::Attribute.new(
      centaman_key: 'ExtraId',
      app_key: :id,
      type: :integer
    ),
    Centaman::Attribute.new(
      centaman_key: 'ExtraDescription',
      app_key: :extra_description,
      type: :string
    ),
    Centaman::Attribute.new(
      centaman_key: 'ExtraPrice',
      app_key: :price_including_tax,
      type: :float
    ),
    Centaman::Attribute.new(
      centaman_key: 'DepositPercentage',
      app_key: :deposit_percentage,
      type: :float
    ),
    Centaman::Attribute.new(
      centaman_key: 'IsTaxInclusive',
      app_key: :tax_inclusive,
      type: :boolean
    ),
    Centaman::Attribute.new(
      centaman_key: 'TaxPercentage',
      app_key: :tax_percentage,
      type: :float
    )
  ]
end

#calculate_price_before_taxObject



15
16
17
18
# File 'lib/centaman/object/extra.rb', line 15

def calculate_price_before_tax
  p = price_including_tax / (1 + tax_percentage / 100)
  p.round(2)
end

#descriptionObject



32
33
34
35
# File 'lib/centaman/object/extra.rb', line 32

def description
  @extra_description.gsub!('Bar Package Cocktail Cruises', 'Bar Package')
  @description = @extra_description
end

#jsonObject



20
21
22
23
24
25
26
27
28
29
30
# File 'lib/centaman/object/extra.rb', line 20

def json
  {
    id: id,
    description: description,
    quantity: quantity,
    price: price,
    deposit_percentage: deposit_percentage,
    tax_inclusive: tax_inclusive,
    tax_percentage: tax_percentage
  }
end

#priceObject



11
12
13
# File 'lib/centaman/object/extra.rb', line 11

def price
  @price ||= tax_inclusive ? calculate_price_before_tax : price_including_tax
end