search for: _line_params

Displaying 1 result from an estimated 1 matches for "_line_params".

2009 Apr 21
0
Validate order lines on order creation (ActiveResource)
...ot aware of the rails way of doing it :) I started directing towards doing custom validation before after_create with this code: class PurchaseOrder < ActiveRecord::Base has_many :purchase_order_lines attr_accessor :new_lines def lines=(_lines) @new_lines ||= [] _lines.each do |_line_params| puts _line_params.inspect @new_lines << PurchaseOrderLine.new(_line_params) end end after_create :store_lines def store_lines new_lines.each do |line| line.purchase_order = self line.save! end end end However this does not seem elegant. How can...