:offstfsal:Symbol 的未定义方法“to_i”

undefined method `to_i' for :offstfsal:Symbol

我收到 :offstfsal:Symbol 的错误未定义方法“to_i” 在 activeadmin 中。看起来 to_i 已被删除。任何建议都会有所帮助。

    index :title => "Office Expenses" do
    selectable_column
    column "Staff Salary", :offstfsal
    column "Visa & Medical", :offstvimed
    column "Total" do |total|
        :offstfsal.to_i + :offstvimed.to_i
    end
column "Total" do |model|
    model.offstfsal.to_i + model.offstvimed.to_i
end