ajax_autocomplete umgestellt auf get_models und inline JSON (20% schneller als template)
[kivitendo-erp.git] / SL / DB / Part.pm
index 3fb34ba..94ce4d2 100644 (file)
@@ -179,6 +179,10 @@ sub get_chart {
   return $charts->{$taxzone}->{$type};
 }
 
+sub long_description {
+  join ' ', grep $_, map $_[0]->$_, qw(partnumber description);
+}
+
 1;
 
 __END__