scinote-web/app/models/zebra_label_template.rb
ajugo 0493d6f31d
Fix label template preview issues [SCI-7313] (#4514)
* Add preview label at open modal [SCI-7313]

* Add density and unit to the label template [SCI-7313]
2022-10-11 10:58:37 +02:00

15 lines
324 B
Ruby

# frozen_string_literal: true
class ZebraLabelTemplate < LabelTemplate
def self.default
ZebraLabelTemplate.new(
name: I18n.t('label_templates.default_zebra_name'),
width_mm: 25.4,
height_mm: 12.7,
content: Extends::DEFAULT_LABEL_TEMPLATE[:zpl],
unit: 0,
density: 8
)
end
end