My system helps users generate quotes by creating Quote objects with nested Line Item objects. I got reports that when the form is being edited, the total is being set at 0. When I looked at what was going on, I made the following notes:

Steps to reproduce:

1. Login and Create a New Quote.
2. Edit the quote.
3. Add 1 more item to the quote

Result:

Total becomes zero.

Expected result:

Total is updated with new item.

Cause:

It seems that historical line items aren't sending their info the update method properly. One observation: historical line items id's aren't being used to identify them in the hash, eg: "1320703132369"=>{ ... new line item params ... }, "0"=>{ ... old line item params ...} - Specifically: Form helpers are not populating the nested form elements with ID's as hash identifiers when viewing the form to edit a quote. The ID is listed as a param instead of as the identifier in the nested form's hash structure. This can be seen as soon as the form is rendered by the rails form-helper.

Example:

<div class="product_name">EMA-100080-01 </div>
<div class="product_quantity"><input id="quote_line_items_attributes_0_quantity" name="quote[line_items_attributes][0][quantity]" size="5" value="1" type="text"><input id="quote_line_items_attributes_0_product_id" name="quote[line_items_attributes][0][product_id]" value="1" type="hidden"><input id="quote_line_items_attributes_0_product_part_number" name="quote[line_items_attributes][0][product_part_number]" value="EMA-100080-01" type="hidden"><input id="quote_line_items_attributes_0_product_description" name="quote[line_items_attributes][0][product_description]" value="SVGA+ Rev 2 Color Microdisplay with .5mm glass cover" type="hidden"></div>
<div class="product_remove"><input id="quote_line_items_attributes_0__delete" name="quote[line_items_attributes][0][_delete]" type="hidden"><a class="minus_link" href="#" onclick="$(this).up('.line_item').hide(); $(this).previous().value = '1'; return false;">-</a></div>
<div class="breaker"></div>

Resolution:

A quick fix is to eliminate quote editing, and let them just trash it and start over. Ideally we can get the form to populate correctly when editing.

So far:

I've tried updating the views to pass the object id explicitly, but no dice.

Here's the pertinent code for the view:

  <% form.fields_for :line_items do |line_item_form| -%>
<% var_dump (line_item_form.object.product_id)%>
<%= render :partial => '/quotes/line_item', :locals => { :form => line_item_form, :product_id => line_item_form.object.product_id, :id=>line_item_form.object.id } %>

And here's the code for the line_item partial:

<div class="line_item">
<%- product = Product.find(product_id) if
local_assigns[:product].nil? -%>

<div class="product_name"><%= product.part_number %> </div>
<div class="product_quantity"><%= form.text_field :quantity, :size => 5 %><%= form.hidden_field :product_id, :value=>product.id %><%= form.hidden_field :product_part_number, :value=>product.part_number %><%= form.hidden_field :product_description, :value=>product.description %></div>
<div class="product_remove"><%= remove_line_item_link(form) %></div>
<div class="breaker"></div>

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.