www/rec_export.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 359
98354ef399cd
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');
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 align="right" style="vertical-align: top;">Print dit recept:</td>
       <td align="left"><div style='margin-left: 10px;' id='jqxRadioButton4'></div></td>
      </tr>
      <tr>
       <td align="right" style="vertical-align: top;">Export voor forum:</td>
       <td align="left"><div style='margin-left: 10px;' id='jqxRadioButton5'></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