Added the ability to search on product status

This commit is contained in:
Erik Thuning 2021-09-15 16:34:25 +02:00
parent 78ac0574b9
commit dbdceadb5e

@ -120,7 +120,8 @@ class Product extends Entity {
$fields = array('brand' => 'get_brand', $fields = array('brand' => 'get_brand',
'name' => 'get_name', 'name' => 'get_name',
'invoice' => 'get_invoice', 'invoice' => 'get_invoice',
'serial' => 'get_serial'); 'serial' => 'get_serial',
'status' => 'get_status');
foreach($terms as $term) { foreach($terms as $term) {
$key = $term->get_key(); $key = $term->get_key();
@ -130,6 +131,7 @@ class Product extends Entity {
case 'name': case 'name':
case 'invoice': case 'invoice':
case 'serial': case 'serial':
case 'status':
// If $key is a standard field, check against its value // If $key is a standard field, check against its value
$getter = $fields[$key]; $getter = $fields[$key];
$value = $this->$getter(); $value = $this->$getter();