www/import_ingredients.php

Sun, 02 Jun 2019 12:48:54 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 02 Jun 2019 12:48:54 +0200
changeset 392
544d7d0183b2
parent 311
f6fafccd8a6d
permissions
-rw-r--r--

Added 15 fields to the recipes table. Added 18 fields to the products table. These are calculated values that are now stored in the database so export programs can use these values without calculating them again. Product and recipe print have water and mash schedule added. Product print has brewday results added if the brewday is over. The ingredients layout changed in the product and recipe prints.

<?php
require_once($_SERVER['DOCUMENT_ROOT'].'/includes/global.inc.php');
if ($my_select == "fermentables" )
	page_header('Vergistbare ingredi&euml;nten import', 'import_ingredients');
else if ($my_select == "hops" )
	page_header('Hoppen import', 'import_ingredients');
else if ($my_select == "miscs" )
	page_header('Diverse ingredi&euml;nten import', 'import_ingredients');
else if ($my_select == "yeasts")
	page_header('Gisten import', 'import_ingredients');
else if ($my_select == "styles")
	page_header('Bierstijlen import', 'import_ingredients');
else
	page_header('Bummer', '');
?>

   <div id="MainPanel">
    <div style="float: left; margin-left: 240px; margin-top: 50px;">
<?php
     if ($my_select == "fermentables")
	echo '<div align="center">Vergistbare ingredi&euml;nten xml bestand upload.</div><br>' . PHP_EOL;
     else if ($my_select == "hops")
	echo '<div align="center">Hoppen xml bestand upload.</div><br>' . PHP_EOL;
     else if ($my_select == "miscs")
	echo '<div align="center">Diverse ingredi&euml;nten xml bestand upload.</div><br>' . PHP_EOL;
     else if ($my_select == "yeasts")
	echo '<div align="center">Gisten xml bestand upload.</div><br>' . PHP_EOL;
     else if ($my_select == "styles")
	echo '<div align="center">Bierstijlen xml bestand upload.</div><br>' . PHP_EOL;
?>
     <div id="eventsPanel"> </div>
     <div style="float: left; margin-top: 10px;" id="jqxFileUpload"> </div>
    </div>
   </div>

<?php
page_footer();
?>

mercurial