<thead>
		<tr>
			<th>Nombre</th>
			<th>Grupo</th>
			<th>Stock M&iacute;nimo</th>
			<th>Stock Total</th>
			<th>Precio Unitario</th>
			<th>Precio Caja</th>
			<th>Precio Paquete</th>		
			<th>Lote</th>
			<th>Imagen</th>
		</tr>
		</thead>
		<tbody>
		<?php 
    $items = Item::getAllFromStore($store->id, "", "");
    foreach ($items as $item) {
        $titem = "";
        if ($item->type == 'Dvd-cd') {
            $titem = "multiple";
        } else {
            if ($item->type == 'Estuches') {
                $titem = "normal";
            } else {
                $titem = "stnd";
            }
        }
        ?>
		<tr>
			<?php 
        $urlLotNew = Forms::getLink(FORM_LOT_NEW, array("item" => $item->id, "store" => $store->id));