2021-07-19 15:44:14 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class CreateLabelTemplates < ActiveRecord::Migration[6.1]
|
2021-07-20 15:35:39 +08:00
|
|
|
class LabelTemplate < ApplicationRecord
|
|
|
|
enum language_type: { zpl: 0 }
|
|
|
|
end
|
|
|
|
|
2021-07-19 15:44:14 +08:00
|
|
|
def change
|
|
|
|
create_table :label_templates do |t|
|
|
|
|
t.string :name, null: false
|
|
|
|
t.text :content, null: false
|
|
|
|
t.integer :language_type, index: true
|
|
|
|
t.boolean :default, default: false, null: false
|
|
|
|
t.string :size
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
|
|
|
|
LabelTemplate.create(
|
|
|
|
name: 'SciNote Item',
|
|
|
|
size: '1" x 0.5" / 25.4mm x 12.7mm',
|
|
|
|
language_type: :zpl,
|
|
|
|
default: true,
|
|
|
|
content:
|
|
|
|
<<~HEREDOC
|
|
|
|
^XA
|
2021-08-10 20:54:33 +08:00
|
|
|
^CF0,21
|
|
|
|
^FO10,0^FD{{item_id}}^FS
|
|
|
|
^FO5,3^BY3,3.0,25^BQN,2,4^FDMA\\{{item_id}}^FS
|
2021-08-13 17:16:17 +08:00
|
|
|
^FO100,39^FB190,20,5,L^FD{{item_name}}^FS^FS
|
2021-07-19 15:44:14 +08:00
|
|
|
^XZ
|
|
|
|
HEREDOC
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|