egov_utils 0.5.1 → 0.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2d2e1d5673dcde5b5b71dfc3c0ff99b58358b0cffd8aa96e34d08a2792d89701
4
- data.tar.gz: f98cff1bdc1746110b2be974637e3e709bb4c5d04276f817ac6c38a00ad59128
3
+ metadata.gz: 6c7404de774b1b5bb75b4528608dbf47d049bcafdb9b53d8f8dfb2089ef12ac8
4
+ data.tar.gz: b748146456eb6e9db1c5cdf9fba4cd523084fe05d99fdc5cadf1ac5f48274356
5
5
  SHA512:
6
- metadata.gz: fbb27b66ed09a7ae7db1d8ced5521e26b21c1ba24cf07a6173969dbc9d09938bcdf22579cfa3b879bdb263ef71a2b4bc27d8b988745eabf14224b755a621762f
7
- data.tar.gz: a3c4478a134879f7598dd57eb1e476253cf3828c587aa114914809a966ab68ee61176d58d22e145cc26f3a64a9965f8f9dd58f5e63b895ab48871a79b7983089
6
+ metadata.gz: ff6e3b1508eb5e1d5f95e5e8945c2c6d9d99e715b3e096f75484c553aff80bd7f6d3c84fa37e1a2cc7dcced18451dfe563f9465fb65b5e952fe4469dc91879f0
7
+ data.tar.gz: c5ecb9e8209c7996add1aaca3021b71a6b5ab9464272a605cf0ead3b6312c7981382a365aff1dbddad8afc1c1573651c922b40e44b967d984bdf687b3f8855e4
@@ -19,6 +19,14 @@ $ ->
19
19
  item = grid.dataItem(index)
20
20
  $.ajax('<%= polymorphic_path(schema.model) %>/'+item.id+'/edit.js')
21
21
 
22
+ prepareDownload = (format) ->
23
+ return (index) -> downloadRecord(format, index)
24
+
25
+ downloadRecord = (format, index) ->
26
+ grid = $("#<%= grid_id %>").swidget()
27
+ item = grid.dataItem(index)
28
+ $(event.target).data('id', item.id)
29
+
22
30
  <% if local_assigns[:detail_for] %>
23
31
  <% detail_col = schema.column(detail_for) %>
24
32
  detailCreated = (evt)->
@@ -95,6 +103,11 @@ $ ->
95
103
  width: 150
96
104
  title: "<%= t('label_actions') %>"
97
105
  buttons: [
106
+ <% if can?(:read, schema.model) %>
107
+ <% local_assigns.fetch(:downloads, {}).each do |format, label| %>
108
+ { cls: 'btn btn-sm btn-secondary <%= "download-button-#{format}" %>', caption: '<%= label %>', click: prepareDownload('<%= format %>') },
109
+ <% end %>
110
+ <% end %>
98
111
  <% if can?(:update, schema.model) %>
99
112
  {cls: 'btn btn-sm btn-primary', caption: '<%= t('label_edit') %>', click: editRecord},
100
113
  <% end %>
@@ -20,7 +20,7 @@ module AzaharaSchemaCurrency
20
20
 
21
21
  def value(record)
22
22
  val = super(record)
23
- val = BigDecimal.new( val.to_s ) unless val.is_a?(BigDecimal)
23
+ val = BigDecimal(val.to_s.presence || 0) unless val.is_a?(BigDecimal)
24
24
  val
25
25
  end
26
26
 
@@ -1,3 +1,3 @@
1
1
  module EgovUtils
2
- VERSION = '0.5.1'
2
+ VERSION = '0.6.2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: egov_utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ondřej Ezr
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-14 00:00:00.000000000 Z
11
+ date: 2021-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails