10

我对表格和金钱宝石有疑问。

这是我的问题:

  1. 我创建了一个具有“金额”字段(映射到货币对象)的记录。假设我输入 10(美元)。
  2. 金钱宝石将其转换为 1000(美分)
  3. 我编辑了同一条记录,表单将金额字段预填充为 1000
  4. 如果我保存记录而不更改任何内容,它会将 1000(美元)转换为 100000(美分)

如何让它以美元而不是美分显示预先填充的金额?

编辑:

我尝试像这样编辑 _form.html:

= f.text_field(:amount, :to_money)

我得到这个错误:

undefined method `merge' for :to_money:Symbol
4

4 回答 4

12

给定如下迁移:

class CreateItems < ActiveRecord::Migration
  def self.up
    create_table :items do |t|
      t.integer :cents
      t.string :currency
      t.timestamps
    end
  end

  def self.down
    drop_table :items
  end
end

和一个模型如下:

class Item < ActiveRecord::Base
  composed_of :amount,
    :class_name  => "Money",
    :mapping     => [%w(cents cents), %w(currency currency_as_string)],
    :constructor => Proc.new { |cents, currency| Money.new(cents || 0, currency || Money.default_currency) },
    :converter   => Proc.new { |value| value.respond_to?(:to_money) ? value.to_money : raise(ArgumentError, "Can't conver #{value.class} to Money") }
end

那么这个表单代码应该可以完美运行(我刚刚在 Rails 3.0.3 下测试过),每次保存/编辑时都能正确显示和保存美元金额。(这是使用默认的脚手架更新/创建方法)。

<%= form_for(@item) do |f| %>
  <div class="field">
    <%= f.label :amount %><br />
    <%= f.text_field :amount %>
  </div>
  <div class="actions">
    <%= f.submit %>
  </div>
<% end %>
于 2011-02-01T01:49:14.303 回答
3

如果您的表中有多个货币字段,并且您不能将它们全部命名为“美分”。

class CreateItems < ActiveRecord::Migration
  def self.up
    create_table :items do |t|
      t.integer :purchase_price_cents
      t.string :currency
      t.timestamps
    end
  end

  def self.down
    drop_table :items
  end
end

这会将您的模型更改为

class Item < ActiveRecord::Base

  composed_of :purchase_price,
    :class_name  => "Money",
    :mapping     => [%w(purchase_price_cents cents), %w(currency currency_as_string)],
    :constructor => Proc.new { |purchase_price_cents, currency| Money.new(purchase_price_cents || 0, currency || Money.default_currency) },
    :converter   => Proc.new { |value| value.respond_to?(:to_money) ? value.to_money : raise(ArgumentError, "Can't convert #{value.class} to Money") }

end
于 2011-04-15T20:46:45.153 回答
3

您现在可以直接编辑货币化字段(money-rails 1.3.0):

# add migration
add_column :products, :price, :price_cents

# set monetize for this field inside the model
class Product
  monetize :price_cents
end

# inside form use .price instead of .price_cents method
f.text_field :price

https://stackoverflow.com/a/30763084/46039

于 2015-12-15T00:51:03.477 回答
-1

货币化和简单的形式,步骤如下:

  1. 移民

add_monetize :table, :amount

  1. 带有验证的模型

货币化:amount_cents,allow_nil:true,numerity:{greater_than:0}

  1. 控制器许可参数(此处不要使用 amount_cents)

params.require(:model).permit(:amount)

  1. 简单的表单输入

当它被保存时,它将以美分保存在 db 的 amount_cents 列中

于 2019-01-16T00:57:41.470 回答