32 lines
951 B
Ruby
32 lines
951 B
Ruby
# -*- encoding : utf-8 -*-
|
|
module DocumentLineHelper
|
|
|
|
|
|
def link_to_remove_fields(name, f)
|
|
f.hidden_field(:_destroy) + link_to(name, "#",:onclick => "if(confirm('Voulez-vous vraiment supprimer cette ligne ?')) {remove_fields(this);return false;}else{return false;}")
|
|
end
|
|
|
|
def link_to_add_fields(name, f, association)
|
|
new_object = f.object.class.reflect_on_association(association).klass.new()
|
|
|
|
|
|
if association == :product_options
|
|
|
|
|
|
|
|
new_object.product_option_langs << ProductOptionLang.new(:lang => LangSite.first.slug)
|
|
|
|
|
|
|
|
|
|
end
|
|
fields = f.fields_for(association, new_object, :child_index => "new_#{association}") do |builder|
|
|
|
|
render(controller.class.parents[0].to_s.downcase+"/"+association.to_s + "/form", :form => builder)
|
|
end
|
|
|
|
link_to name,"#", :onclick => "add_fields(this, \"#{association}\", \"#{escape_javascript(fields)}\");return false;"
|
|
end
|
|
|
|
end
|