我正在努力解决这个问题,看起来应该很简单 - 我只是不明白为什么它不会起作用。
我的付款视图中有以下循环,我想要link_to删除和编辑。 我传递了@bill对象和past_payment对象。
我收到此错误:没有路由匹配{:action =>"编辑",:bill_id => 11,:controller =>"付款" ,:id => nil}缺少必需的键:[:id]
我无法理解为什么我无法从past_payment获得:id。我尝试过使用past_payment.id并通过将其作为表格的一部分打印来确保它存在于对象上。如果我静态输入id,似乎可以工作。
<div class="row">
<div class="col-md-6">
<h4>Payment for : <%= @bill.vendor.full_vendor %></h4>
<p>Amount Owing: <%= humanized_money_with_symbol @bill.owing %></p>
<p>Due: <%= @bill.due_date.to_formatted_s(:rfc822) %> </p>
</div>
<div class="col-md-6">
<h4>Payment Options</h4>
<table class="table table-striped table-responsive">
<tr>
<td><%=image_tag("40px_BPAY_2012_PORT_BLUE.png", alt: "BPay_Image")%></td>
<td><p>biller code:</br><%= @bill.vendor.bpay_biller_code %></p></td>
<td><p>ref number:</br><%= @bill.vendor.bpay_ref %></p></td>
</tr>
</table>
</div>
</div>
<div class="row col-md-12">
<h4>This Payment</h4>
</div>
<%= form_for(@payment, url: :bill_payments, html: { method: "post", class: "form-horizontal", role: "form" } ) do |payment| %>
<div class="form-group col-md-12">
<%= payment.label :amount, class: "control-label sr-only" %>
<%= payment.text_field :amount, data: { role: 'money', aSign: '$'}, class: "form-control", placeholder: "Amount Paid" %>
<%= payment.label :receipt_number, class: "control-label sr-only" %>
<%= payment.text_field :receipt_number, class: "form-control", placeholder: "Receipt #" %>
<%= payment.label :notes, class: "control-label sr-only" %>
<%= payment.text_area :notes, class: "form-control", rows: "1", placeholder: "Notes" %>
<div class="form-inline">
<%= payment.label :payment_date, class: "control-label sr-only" %>
<%= payment.date_select :payment_date, { order: [ :day, :month, :year ],
start_year: 2014,
end_year:2020 },
class: "form-control" %>
</div>
</div>
<%= payment.submit "Pay", class: "btn btn-default" %>
<% end %>
</br>
<div class="row">
<div class="col-md-12">
<h4>Previous Payments</h4>
<table class="table table-striped table-responsive">
<tr>
<th>Amount Paid</th>
<th>Receipt #</th>
<th>Date Paid</th>
<th colspan="2">Actions</th>
</tr>
<% @bill.payments.each do |past_payment| %>
<tr>
<td><p><%= humanized_money_with_symbol past_payment.amount %></p></td>
<td><p><%= past_payment.receipt_number %></p></td>
<td>
<% if not past_payment.payment_date == nil %>
<p><%= past_payment.payment_date.to_formatted_s(:rfc822) %></p>
<% end %>
</td>
--> <td>
<%= link_to "Edit", edit_bill_payment_path(@bill, past_payment), method: :patch %>
</td>
<td>
<%= link_to "Delete", bill_payment_path(@bill, past_payment), method: :delete,
--> data: { confirm: "Are you sure?" } %>
</td>
</tr>
<% end %>
</table>
</div>
</div>
控制器代码
class PaymentsController < ApplicationController
before_action :authenticate_user!
def new
@bill=Bill.find(params[:bill_id])
@payment=@bill.payments.new
end
def edit
@bill=Bill.find(params[:bill_id])
@payment=@bill.payments.find(:id)
end
def update
@bill=Bill.find(params[:bill_id])
if @bill.payments(payment_params).update
flash[:success] = "This payment has been updated"
redirect_to new_bill_payment_url(params[:bill_id])
else
flash[:error] = "There has been a problem updateing this payment"
redirect_to :back
end
end
def create
@bill=Bill.find(params[:bill_id])
if @bill.payments.save
flash[:success] = "This payment has been registered"
redirect_to new_bill_payment_url(params[:bill_id])
else
flash[:error] = "There has been a problem with this payment"
redirect_to :back
end
end
def destroy
@bill=Bill.find(params[:bill_id])
if @bill.payments.find(params[:id]).destroy
flash[:success] = "This payment has been removed"
redirect_to new_bill_payment_url(params[:bill_id])
else
flash[:error] = "There has been a problem removing this payment"
redirect_to :back
end
end
private
def payment_params
params.require(:payment).permit(:id, :bill_id,:receipt_number, :notes, :amount,
:payment_date)
end
end
路线片段
resources :bills do
resources :payments, only: [:new, :create, :edit, :destroy]
end
比尔模型
class Bill < ActiveRecord::Base
belongs_to :user
belongs_to :vendor
has_many :payments, dependent: :destroy
accepts_nested_attributes_for :payments, allow_destroy: true
validates :vendor_id, :amount, :due_date, :bill_type, presence: true
validate :over_payment
monetize :amount_cents
monetize :gst_cents
monetize :owing_cents
def owing_cents
self.amount_cents - self.payments.sum(:amount_cents)
end
def gst_cents
self.amount_cents/11
end
private
def over_payment
if self.payments.sum(:amount_cents) > owing_cents
errors.add(:amount, "Over payment of a bill not allowed
add interest or penitalties as a negitive payment first")
end
end
end
感谢您的帮助。
答案 0 :(得分:1)
在操作中,您在任何地方都使用@bill=Bill.find(params[:bill_id])
,但@bill
有:id
,而不是:bill_id
。这就是问题。你真正想要的是使用@bill=Bill.find(params[:id])
。
您使用的链接:<%= link_to "Pay", new_bill_payment_path(bill) %>
为您提供:id=>nil
,因为没有帐单对象,但@bill,因此链接最有可能是<%= link_to "Pay", new_bill_payment_path(@bill) %>
答案 1 :(得分:0)
以下解决了我的问题。
<td>
<%= link_to "Edit", edit_bill_payment_path(@bill, id: "#{past_payment.id}"), method: :patch %>
</td>
<td>
<%= link_to "Delete", bill_payment_path(@bill, id: "#{past_payment.id}"), method: :delete, data: { confirm: "Are you sure?" } %>
</td>
我不确定这是最佳做法还是为什么使用past_payment对象不起作用。我认为需要做更多的研究。
感谢那些回复的人。