Added serial in product tables

This commit is contained in:
Erik Thuning 2019-06-12 11:42:16 +02:00
parent 8485264714
commit 402980a304
2 changed files with 7 additions and 0 deletions

@ -71,6 +71,9 @@
<th>
Namn
</th>
<th>
Serienummer
</th>
<th>
Status
</th>
@ -88,6 +91,9 @@
<td>
¤item_link¤
</td>
<td>
¤serial¤
</td>
<td>
¤available¤
</td>

@ -159,6 +159,7 @@ abstract class Page extends Responder {
}
}
$rows .= replace(array('available' => $available,
'serial' => $product->get_serial(),
'status' => $status,
'item_link' => $prodlink),
$this->fragments['product_row']);