Fixed bug in with new shared multiple suppliers feature.

This commit is contained in:
Benjamin Meichsner 2013-06-12 10:47:54 +02:00
parent 25fbb47320
commit f4a0e29297
3 changed files with 10 additions and 4 deletions

View file

@ -0,0 +1,6 @@
module SuppliersHelper
def associated_supplier_names(shared_supplier)
"(#{shared_supplier.suppliers.map(&:name).join(', ')})"
end
end