labimotion 1.0.10 → 1.0.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 95963019e270001284bfb6a75a085785c40c49e71af21d10d9565c38f439a7da
4
- data.tar.gz: f51abb8bde5af0eb4908747622b6a6c8e20caf5ad603adc10e0d520fa1c1d339
3
+ metadata.gz: 7ddd7650762797d557ff280a60b4bb89bea1a3514941e741f4c0cb8c4b87e4ab
4
+ data.tar.gz: 146b83a224742e7a75f39c606b71259a0a217dbbea679dc6010be8c11cb7d26e
5
5
  SHA512:
6
- metadata.gz: 87e851bf6615b5161e8193aa5ee13e65c6bcf83a6214a23f3c104aeaa865399d8480b53176f8b8c7b3f4631d254a4c0588d2d667542022db4004905b816754ec
7
- data.tar.gz: e0a302cefad4050e905b01dc195f79b0c4262eb9883f0b39d12687f09e86dca957cccd708383f278756115543018f6dda86b75968769e07b8c23c0887ee70810
6
+ metadata.gz: 91c70dea416babdc050b80793020c614ad4d2ddb07632ffca1186919f9b4e149a98c7f0840b7c2f3c5876d0c75c465f1038fe3392a13a35092d109a92c211b89
7
+ data.tar.gz: 8e71a05bc1215ce367a80f6e48a2452256b0236d7392cc394229c0bfc18d739d81004e86f5e0a25a8ee3d03c35f30eb32f67715f4437e219f7780d549b79e218
@@ -99,9 +99,9 @@ module Labimotion
99
99
  wb = @xfile.workbook
100
100
  gds = Labimotion::Dataset.find_by(element_id: id, element_type: 'Container')
101
101
  cds = Container.find(id)
102
- cds.attachments.where(aasm_state: 'csv').each do |att|
102
+ cds.attachments.where(aasm_state: 'csv').each_with_index do |att, idx|
103
103
  name = File.basename(att.filename, '.csv')
104
- sheet = @xfile.workbook.add_worksheet(name: name.slice(0, 25))
104
+ sheet = @xfile.workbook.add_worksheet(name: "#{name.slice(0, 25)}_#{idx + 1}")
105
105
 
106
106
  if Labimotion::IS_RAILS5 == true
107
107
  File.open(att.store.path) do |fi|
@@ -22,10 +22,12 @@ module Labimotion
22
22
  end
23
23
 
24
24
  def exec_converter
25
+ return if self.has_attribute?(:con_state) == false || !con_state.present?
26
+
25
27
  #return if attachable_id.nil?
26
- return if Labimotion::IS_RAILS5 == false && con_state != Labimotion::ConState::WAIT
28
+ return if Labimotion::IS_RAILS5 == false && self.con_state != Labimotion::ConState::WAIT
27
29
 
28
- return if self.has_attribute?(:con_state) == false || con_state.nil? || con_state == Labimotion::ConState::NONE
30
+ return if self.has_attribute?(:con_state) == false || self.con_state.nil? || self.con_state == Labimotion::ConState::NONE
29
31
 
30
32
  case con_state
31
33
  when Labimotion::ConState::NMR
@@ -3,7 +3,7 @@
3
3
  ## Labimotion Version
4
4
  module Labimotion
5
5
  IS_RAILS5 = false
6
- VERSION_ELN = '1.0.10'
6
+ VERSION_ELN = '1.0.12'
7
7
  VERSION_REPO = '0.3.1'
8
8
 
9
9
  VERSION = Labimotion::VERSION_REPO if Labimotion::IS_RAILS5 == true
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: labimotion
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.10
4
+ version: 1.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chia-Lin Lin
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-09-19 00:00:00.000000000 Z
12
+ date: 2023-10-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails