|
|
@@ -529,4 +529,17 @@ EOF';
|
|
|
return $netto;
|
|
|
}
|
|
|
|
|
|
+ public static function pickSimgleValue($items, $fieldName) {
|
|
|
+ return array_map(
|
|
|
+ function ($row) use ($fieldName) {
|
|
|
+ return V::get($fieldName, '', $row);
|
|
|
+ }
|
|
|
+ , $items
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ public static function pickArrayValues($items, $fieldNames) {
|
|
|
+ return $items;
|
|
|
+ }
|
|
|
+
|
|
|
}
|