Class: LabelPrinter::Label::SampleManifestTube

Inherits:
BaseTube
  • Object
show all
Defined in:
lib/label_printer/label/sample_manifest_tube.rb

Instance Attribute Summary collapse

Attributes included from MultipleLabels

#count

Instance Method Summary collapse

Methods inherited from BaseTube

#assets, #barcode, #build_label, #date_today, #round_label_bottom_line, #round_label_top_line, #second_line, #third_line

Methods included from MultipleLabels

#create_labels, #labels

Constructor Details

#initialize(options) ⇒ SampleManifestTube

Returns a new instance of SampleManifestTube.



7
8
9
10
11
# File 'lib/label_printer/label/sample_manifest_tube.rb', line 7

def initialize(options)
  super()
  @sample_manifest = options[:sample_manifest]
  @only_first_label = options[:only_first_label]
end

Instance Attribute Details

#only_first_labelObject (readonly)

Returns the value of attribute only_first_label.



5
6
7
# File 'lib/label_printer/label/sample_manifest_tube.rb', line 5

def only_first_label
  @only_first_label
end

#sample_manifestObject (readonly)

Returns the value of attribute sample_manifest.



5
6
7
# File 'lib/label_printer/label/sample_manifest_tube.rb', line 5

def sample_manifest
  @sample_manifest
end

Instance Method Details

#first_line(_tube = nil) ⇒ Object



13
14
15
# File 'lib/label_printer/label/sample_manifest_tube.rb', line 13

def first_line(_tube = nil)
  sample_manifest.study.abbreviation
end

#tubesObject



17
18
19
20
21
# File 'lib/label_printer/label/sample_manifest_tube.rb', line 17

def tubes
  return [sample_manifest.printables.first] if only_first_label

  sample_manifest.printables
end