0

顧客と請求書のモデルがあります。顧客には多くの請求書があり、請求書は顧客に属します。請求書には多くの請求書アイテムがあり、請求書アイテムは請求書に属します

class Customer < ActiveRecord::Base
 attr_accessible :billing_address, :customer_currency, :email, :first_name, :last_name,    :mobile, :name, :payment_terms, :phase_type, :pays_vat
 validates_presence_of :first_name, :last_name, :mobile, :billing_address, :payment_terms,    :phase_type, :customer_currency

has_many :invoices

validates :email, 
    :presence => true,
    :uniqueness => true, 
    :email_format => true
validates :name, :mobile, :presence => true, :uniqueness => true
end

請求書モデル

class Invoice < ActiveRecord::Base
 belongs_to :customer
 attr_accessible :approved_by, :due_date, :invoice_date, :terms, :customer_id, :customer

 validates :invoice_date, presence: true
 validates :due_date, presence: true
 validates :customer, presence: true
 has_many :invoice_items
 accepts_nested_attributes_for :invoice_items
end

請求書アイテムモデル

class InvoiceItem < ActiveRecord::Base
 belongs_to :invoice
 attr_accessible :amount, :description, :rate, :tax_amount
end

すべての請求書とそれに対応するアイテムを一覧表示する請求書のインデックスページを作成しましたが、請求書アイテムの金額にアクセスしてインデックスページに表示する方法が課題です。

app / views / index.html.erb

<div class="row">
<div class="span12">
<table class="table table-striped">
<thead>
<tr>
  <th>Invoice ID </th>
  <th>Customer Name </th>
  <th>Invoice Date </th>
  <th>Amount</th>
</tr>
</thead>
<tbody>
<% @invoices.each do |invoice| %>
  <tr>
    <td><%= link_to invoice.id, invoice_path(invoice) %></td>
    <td><%= invoice.customer.name %></td>
    <td><%= invoice.invoice_date %></td>
    <td><%= invoice.invoice_items.amount %></td>
  </tr>
<% end %>
</tbody>
</table>
<div class="form actions">
<p>
    <%= link_to t('.new', :default => t("helpers.links.new")),
                new_invoice_path, :class => 'btn btn-primary' %>
</p>
</div>  
 </div>
</div>

invoice.invoice_items.amountは、その請求書のInvoice_itemsからその金額を返しません。何か案は?

以下は私のInvoices_controllerインデックスメソッドです

class InvoicesController < ApplicationController
before_filter :authenticate_user!

 def index
  @invoices = Invoice.includes(:customer, :invoice_items).all
 end
end
4

3 に答える 3

0


invoice.invoice_items.count
またはを使用して任意の要素の量を取得できます
invoice.invoice_items.size

于 2012-12-29T10:08:31.393 に答える
0
invoice.invoice_items.first.amount
于 2012-12-29T10:39:26.790 に答える
0

イテレータinvoice_items内で繰り返します@invoices

<% @invoices.each do |invoice| %>
  <tr>
    <td><%= link_to invoice.id, invoice_path(invoice) %></td>
    <td><%= invoice.customer.name %></td>
    <td><%= invoice.invoice_date %></td>

    <% invoice.invoice_items.each do |invoice_item| %>
      <td><%= invoice_item.rate %></td>
      <td><%= invoice_item.amount %></td>
  </tr>
<% end %>

テーブルを調整する

于 2012-12-29T10:48:19.333 に答える