www/import_ingredients.php

Wed, 06 May 2020 14:14:14 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Wed, 06 May 2020 14:14:14 +0200
changeset 667
1246550451ca
parent 311
f6fafccd8a6d
permissions
-rw-r--r--

Removed the last compressed css file. Reworked all mash steps, implemented deconction steps. Added calculations for infuse amounts and decoctions amounts. The mash steps are now manually sorted in the editor grids to have full control over the steps order. Display errors in red in the grid. Updated beerxml export, the product checklist and print output of the products and recipes for all these mash steps changes.

<?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