www/rec_export.php

Sat, 11 May 2019 23:13:40 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 11 May 2019 23:13:40 +0200
changeset 358
3be8c2278fd7
parent 303
98c2afc88780
child 359
98354ef399cd
permissions
-rw-r--r--

Added flags for each ingredient group for the supplies state. On the main screen show the state of the supplies if the product stage is not yet packaged. Calculate the state of the supplies for fermentables, hops, yeasts and miscs. In the grids don't show the inventory values after they are used and reduced. On the fermentables tab show the weight of the grains to mash.

<?php
require_once($_SERVER['DOCUMENT_ROOT'].'/includes/global.inc.php');
page_header('Recept export', 'rec_export');
?>

   <div id="MainPanel">
    <div id='export_table'>
     <table style='width: 100%; padding: 10px;'>
      <tr><th colspan=2>Export recept</th></tr>
      <tr><td colspan="2">&nbsp;</td></tr>
      <tr>
       <td align="right" style="vertical-align: top;">Naam:</td>
       <td align="left"><div style='margin-left: 10px;' id='name'></div></td>
      </tr>
      <tr>
       <td align="right" style="vertical-align: top;">Maak beerxml bestand:</td>
       <td align="left"><div style='margin-left: 10px;' id='jqxRadioButton1'></div></td>
      </tr>
      <tr>
       <td align="right" style="vertical-align: top;">Dupliceer als nieuw recept:</td>
       <td align="left"><div style='margin-left: 10px;' id='jqxRadioButton2'></div></td>
      </tr>
      <tr>
       <td align="right" style="vertical-align: top;">Copieer als brouw product:</td>
       <td align="left"><div style='margin-left: 10px;' id='jqxRadioButton3'></div></td>
      </tr>
      <tr><td colspan="2">&nbsp;</td></tr>
      <tr>
       <td align="right" style="vertical-align: top;"></td>
       <td align="left"><input type="button" id="Start" value="Start" /></td>
      </tr>
     </table>
    </div>
   </div>

<?php
page_footer();
?>

mercurial