mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-26 09:42:46 +08:00
Merge pull request #4542 from rekonder/aj_SCI_7346
Update default density for label templates [SCI-7346]
This commit is contained in:
commit
482044a448
5 changed files with 5 additions and 5 deletions
|
@ -135,7 +135,7 @@
|
|||
methods: {
|
||||
setDefaults() {
|
||||
!this.unit && (this.unit = 'in');
|
||||
!this.density && (this.density = 8);
|
||||
!this.density && (this.density = 12);
|
||||
!this.width && (this.width = this.unit === 'in' ? 2 : 50.8);
|
||||
!this.height && (this.height = this.unit === 'in' ? 1 : 25.4);
|
||||
},
|
||||
|
|
|
@ -8,7 +8,7 @@ class FluicsLabelTemplate < LabelTemplate
|
|||
height_mm: 12.7,
|
||||
content: Extends::DEFAULT_LABEL_TEMPLATE[:zpl],
|
||||
unit: 0,
|
||||
density: 8
|
||||
density: 12
|
||||
)
|
||||
end
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ class ZebraLabelTemplate < LabelTemplate
|
|||
height_mm: 12.7,
|
||||
content: Extends::DEFAULT_LABEL_TEMPLATE[:zpl],
|
||||
unit: 0,
|
||||
density: 8
|
||||
density: 12
|
||||
)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -4,7 +4,7 @@ class AddLabelTemplateUnits < ActiveRecord::Migration[6.1]
|
|||
def up
|
||||
change_table :label_templates, bulk: true do |t|
|
||||
t.integer :unit, default: 0
|
||||
t.integer :density, default: 8
|
||||
t.integer :density, default: 12
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -712,7 +712,7 @@ CREATE TABLE public.label_templates (
|
|||
height_mm double precision,
|
||||
height_mm double precision,
|
||||
unit integer DEFAULT 0,
|
||||
density integer DEFAULT 8
|
||||
density integer DEFAULT 12
|
||||
);
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue