www/import_ingredients.php

Fri, 01 May 2020 11:56:24 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Fri, 01 May 2020 11:56:24 +0200
changeset 662
4bb005694ce7
parent 311
f6fafccd8a6d
permissions
-rw-r--r--

Version 0.3.32 Inventory water and profile water edit screens updated and added ion balance fields. Moved acid specs to global.js. In prod_edit and rec_edit changed the water calculations, eliminated the double percentage calculation. The pH values in the water tab have now 2 decimal digits. The mash pH field is only shown in auto calculate mode. The calculated acid addition results are now a bit better and compare with several famous spreadsheets.

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