Files
opensourcepos/application/views/barcode_sheet.php
pappastech ecdf3a5aa1 Version 2.0_RC1. Upgrade to CI 2.1.0.
Tom

git-svn-id: svn+ssh://jekkos@svn.code.sf.net/p/opensourcepos/code/@24 c3eb156b-1dc0-44e1-88ae-e38439141b53
2012-01-16 02:16:01 +00:00

29 lines
600 B
PHP

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php echo $this->lang->line('items_generate_barcodes'); ?></title>
</head>
<body>
<table width='50%' align='center' cellpadding='20'>
<tr>
<?php
$count = 0;
foreach($items as $item)
{
$barcode = $item['id'];
$text = $item['name'];
if ($count % 2 ==0 and $count!=0)
{
echo '</tr><tr>';
}
echo "<td><img src='index.php?c=barcode&barcode=$barcode&text=$text&width=256' /></td>";
$count++;
}
?>
</tr>
</table>
</body>
</html>