Class: ItemBuilder::Modes::SimpleService
- Inherits:
-
Object
- Object
- ItemBuilder::Modes::SimpleService
show all
- Includes:
- ItemBuilder::Modes
- Defined in:
- lib/item_builder/modes/simple_service.rb
Instance Attribute Summary
#bundles, #existing_alloc_stocks, #item_bundle_variants, #listing, #reserved_stocks, #stock_allocs, #variant_listings, #variants, #wh_spaces
Instance Method Summary
collapse
#base, #bundle, #bundle_variants, #existing_allocated_stock, #initialize, #listings, #stock_alloc, #variant, #warehouse
Instance Method Details
11
12
13
|
# File 'lib/item_builder/modes/simple_service.rb', line 11
def perform
to_h.merge(base)
end
|
#price ⇒ Object
29
30
31
|
# File 'lib/item_builder/modes/simple_service.rb', line 29
def price
PriceService.new(listing: listing).to_h
end
|
#quantity ⇒ Object
19
20
21
22
23
24
25
26
27
|
# File 'lib/item_builder/modes/simple_service.rb', line 19
def quantity
QuantityService.new(
listing: listing, wh_spaces: wh_spaces, variants: variants,
stock_allocs: stock_allocs, variant_listings: variant_listings,
bundles: bundles, item_bundle_variants: item_bundle_variants,
existing_alloc_stocks: existing_alloc_stocks,
reserved_stocks: reserved_stocks
).to_h
end
|
#to_h ⇒ Object
15
16
17
|
# File 'lib/item_builder/modes/simple_service.rb', line 15
def to_h
quantity.merge(price)
end
|