www/inv_yeasts.php

Fri, 09 Apr 2021 14:45:18 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Fri, 09 Apr 2021 14:45:18 +0200
changeset 725
30346e5b9e12
parent 630
ffe0416614b3
child 727
08f91a68e757
permissions
-rw-r--r--

Added pitch rate fields for gram/hl for dry yeast.

14
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
1 <?php
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
2 require_once($_SERVER['DOCUMENT_ROOT'].'/includes/global.inc.php');
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
3 page_header('Gist inventaris', 'inv_yeasts');
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
4 ?>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
5
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
6 <div id="jqxgrid"></div>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
7 <div style="margin-top: 30px;">
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
8 <div id="cellbegineditevent"></div>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
9 <div style="margin-top: 10px;" id="cellendeditevent"></div>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
10 </div>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
11
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
12 <!-- Popup editor window. -->
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
13 <div id="popupWindow">
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
14 <div>Wijzig gist</div>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
15 <div style="overflow: hidden;">
198
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
16 <table style="width: 100%;">
14
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
17 <tr>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
18 <td align="right" style="vertical-align: top;">Gist naam:</td>
512
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
19 <td align="left" colspan="5" style="vertical-align: top;"><input id="name" /></td>
14
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
20 </tr>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
21 <tr>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
22 <td align="right" style="vertical-align: top;">Productcode:</td>
512
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
23 <td align="left" colspan="5" style="vertical-align: top;"><input id="product_id" /></td>
14
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
24 </tr>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
25 <tr>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
26 <td align="right" style="vertical-align: top;">Opmerkingen:</td>
512
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
27 <td align="left" colspan="5"><textarea id="notes"></textarea></td>
14
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
28 </tr>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
29 <tr>
198
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
30 <td align="right" style="vertical-align: top;">Type:</td>
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
31 <td align="left"><div id="type"></div></td>
725
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
32 <td align="right" style="vertical-align: top;">Ent van g/hl:</td>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
33 <td align="left" style="vertical-align: top;"><input id="pitch_lo" readonly /></div><input type="button" id="but_pitch_lo" value="?" style="margin-left: 10px" /></td>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
34 <td align="right" style="vertical-align: top;">Min temperatuur &deg;C:</td>
198
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
35 <td align="left"><div id="min_temperature"></div></td>
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
36 </tr>
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
37 <tr>
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
38 <td align="right" style="vertical-align: top;">Gist vorm:</td>
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
39 <td align="left"><div id="form"></div></td>
725
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
40 <td align="right" style="vertical-align: top;">Ent tot g/hl:</td>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
41 <td align="left" style="vertical-align: top;"><input id="pitch_hi" readonly /><input type="button" id="but_pitch_hi" value="?" style="margin-left: 10px" /></td>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
42 <td align="right" style="vertical-align: top;">Max temperatuur &deg;C:</td>
198
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
43 <td align="left"><div id="max_temperature"></div></td>
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
44 </tr>
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
45 <tr>
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
46 <td align="right" style="vertical-align: top;">Laboratorium:</td>
512
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
47 <td align="left" colspan="3" style="vertical-align: top;"><input id="laboratory" /></td>
201
f9b7e3f6be7c Fixed yeast database import differences between grams, ml and packs. Added cells field filled with defaults. Some edit screen improvements. Dynamic prompts depending on the yeast type. Disable men and filter of most columns in the yeasts list. Friendlier display of inverntory.
Michiel Broek <mbroek@mbse.eu>
parents: 198
diff changeset
48 <td align="right" style="vertical-align: top;">Vergistingsgraad %:</td>
198
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
49 <td align="left"><div id="attenuation"></div></td>
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
50 </tr>
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
51 <tr>
313
9f45d09c2071 Added alcohol tolerance field in the yeasts database.
Michiel Broek <mbroek@mbse.eu>
parents: 201
diff changeset
52 <td rowspan="4" align="right" style="vertical-align: top;">Geschikt voor:</td>
512
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
53 <td rowspan="4" align="left" colspan="3"><textarea id="best_for"></textarea></td>
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
54 <td align="right" style="vertical-align: top;">Alcohol tolerantie:</td>
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
55 <td align="left"><div id="tolerance"></div></td>
198
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
56 </tr>
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
57 <tr>
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
58 <td align="right" style="vertical-align: top;">Flocculatie:</td>
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
59 <td align="left"><div id="flocculation"></div></td>
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
60 </tr>
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
61 <tr>
201
f9b7e3f6be7c Fixed yeast database import differences between grams, ml and packs. Added cells field filled with defaults. Some edit screen improvements. Dynamic prompts depending on the yeast type. Disable men and filter of most columns in the yeasts list. Friendlier display of inverntory.
Michiel Broek <mbroek@mbse.eu>
parents: 198
diff changeset
62 <td align="right" style="vertical-align: top;"><div id="pmpt_cells">cells:</div></td>
f9b7e3f6be7c Fixed yeast database import differences between grams, ml and packs. Added cells field filled with defaults. Some edit screen improvements. Dynamic prompts depending on the yeast type. Disable men and filter of most columns in the yeasts list. Friendlier display of inverntory.
Michiel Broek <mbroek@mbse.eu>
parents: 198
diff changeset
63 <td align="left"><div id="cells"></div></td>
f9b7e3f6be7c Fixed yeast database import differences between grams, ml and packs. Added cells field filled with defaults. Some edit screen improvements. Dynamic prompts depending on the yeast type. Disable men and filter of most columns in the yeasts list. Friendlier display of inverntory.
Michiel Broek <mbroek@mbse.eu>
parents: 198
diff changeset
64 </tr>
f9b7e3f6be7c Fixed yeast database import differences between grams, ml and packs. Added cells field filled with defaults. Some edit screen improvements. Dynamic prompts depending on the yeast type. Disable men and filter of most columns in the yeasts list. Friendlier display of inverntory.
Michiel Broek <mbroek@mbse.eu>
parents: 198
diff changeset
65 <tr>
512
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
66 <td align="right" style="vertical-align: top;">Maximum Hergebruik:</td>
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
67 <td align="left"><div id="max_reuse"></div></td>
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
68 </tr>
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
69 <tr>
630
ffe0416614b3 Added short_desc to the yeast inventory database for short remarks in the yeastlab pdf list
Michiel Broek <mbroek@mbse.eu>
parents: 512
diff changeset
70 <td align="right" style="vertical-align: top;">Gistbank tekst:</td>
ffe0416614b3 Added short_desc to the yeast inventory database for short remarks in the yeastlab pdf list
Michiel Broek <mbroek@mbse.eu>
parents: 512
diff changeset
71 <td align="left" colspan="3" style="vertical-align: top;"><input id="short_desc" /></td>
ffe0416614b3 Added short_desc to the yeast inventory database for short remarks in the yeastlab pdf list
Michiel Broek <mbroek@mbse.eu>
parents: 512
diff changeset
72 <td align="right" style="vertical-align: top;">Ent temperatuur &deg;C:</td>
ffe0416614b3 Added short_desc to the yeast inventory database for short remarks in the yeastlab pdf list
Michiel Broek <mbroek@mbse.eu>
parents: 512
diff changeset
73 <td align="left"><div id="pitch_temperature"></div></td>
ffe0416614b3 Added short_desc to the yeast inventory database for short remarks in the yeastlab pdf list
Michiel Broek <mbroek@mbse.eu>
parents: 512
diff changeset
74 </tr>
ffe0416614b3 Added short_desc to the yeast inventory database for short remarks in the yeastlab pdf list
Michiel Broek <mbroek@mbse.eu>
parents: 512
diff changeset
75 <tr>
512
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
76 <td align="right" style="vertical-align: top;">POF+:</td>
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
77 <td align="left"><div id="pofpos"></div></td>
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
78 <td align="right" style="vertical-align: top;">Zymocide+:</td>
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
79 <td align="left"><div id="zymocide"></div></td>
630
ffe0416614b3 Added short_desc to the yeast inventory database for short remarks in the yeastlab pdf list
Michiel Broek <mbroek@mbse.eu>
parents: 512
diff changeset
80 <td align="right" style="vertical-align: top;">Oogst tijd uren:</td>
ffe0416614b3 Added short_desc to the yeast inventory database for short remarks in the yeastlab pdf list
Michiel Broek <mbroek@mbse.eu>
parents: 512
diff changeset
81 <td align="left"><div id="harvest_time"></div></td>
313
9f45d09c2071 Added alcohol tolerance field in the yeasts database.
Michiel Broek <mbroek@mbse.eu>
parents: 201
diff changeset
82 </tr>
9f45d09c2071 Added alcohol tolerance field in the yeasts database.
Michiel Broek <mbroek@mbse.eu>
parents: 201
diff changeset
83 <tr>
512
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
84 <td align="right" style="vertical-align: top;">STA1 (diastatic) gen:</td>
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
85 <td align="left"><div id="sta1"></div></td>
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
86 <td align="right" style="vertical-align: top;">Oogst van boven:</td>
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
87 <td align="left"><div id="harvest_top"></div></td>
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
88 <td align="right" style="vertical-align: top;">Bevat bacteri&euml;n:</td>
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
89 <td align="left"><div id="bacteria"></div></td>
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
90 </tr>
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
91 <tr>
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
92 <td colspan="6"><hr></td>
14
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
93 </tr>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
94 <tr>
201
f9b7e3f6be7c Fixed yeast database import differences between grams, ml and packs. Added cells field filled with defaults. Some edit screen improvements. Dynamic prompts depending on the yeast type. Disable men and filter of most columns in the yeasts list. Friendlier display of inverntory.
Michiel Broek <mbroek@mbse.eu>
parents: 198
diff changeset
95 <td align="right" style="vertical-align: top;"><div id="pmpt_inventory">Voorraad xx:</div></td>
14
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
96 <td align="left"><div id="inventory"></div></td>
512
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
97 <td></td><td></td>
198
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
98 <td align="right" style="vertical-align: top;">Productie datum:</td>
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
99 <td align="left" style="vertical-align: top;"><div id="production_date"></div></td>
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
100 </tr>
f0ec83e1e01f Switches yeasts inventory to indexed names and translations. Database save is using POST instead of GET. Redesigned the web page. Added total cost display which updates on inventory changes.
Michiel Broek <mbroek@mbse.eu>
parents: 39
diff changeset
101 <tr>
201
f9b7e3f6be7c Fixed yeast database import differences between grams, ml and packs. Added cells field filled with defaults. Some edit screen improvements. Dynamic prompts depending on the yeast type. Disable men and filter of most columns in the yeasts list. Friendlier display of inverntory.
Michiel Broek <mbroek@mbse.eu>
parents: 198
diff changeset
102 <td align="right" style="vertical-align: top;"><div id="pmpt_cost">Prijs per xx:</div></td>
14
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
103 <td align="left"><div id="cost"></div></td>
512
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
104 <td align="right" style="vertical-align: top;">Waarde voorraad &euro;:</td>
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
105 <td align="left"><div id="totval"></div></td>
14
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
106 <td align="right" style="vertical-align: top;">THT datum:</td>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
107 <td align="left" style="vertical-align: top;"><div id="tht_date"></div></td>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
108 </tr>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
109 <tr>
201
f9b7e3f6be7c Fixed yeast database import differences between grams, ml and packs. Added cells field filled with defaults. Some edit screen improvements. Dynamic prompts depending on the yeast type. Disable men and filter of most columns in the yeasts list. Friendlier display of inverntory.
Michiel Broek <mbroek@mbse.eu>
parents: 198
diff changeset
110 <td style="padding-top: 20px;" align="right"><input type="button" id="Delete" value="Verwijder" /></td>
314
f943efa07d9f Added yeast duplicate button
Michiel Broek <mbroek@mbse.eu>
parents: 313
diff changeset
111 <td style="padding-top: 20px;" align="left"><input type="button" id="Clone" value="Kloon" /></td>
512
4451af8b6295 Added new fields in inventory_yeasts for Kveik and extra generic flags. Currently these fields do nothing but adding extra information in the database. Added Brett, Kveik and Hybrid yeast types.
Michiel Broek <mbroek@mbse.eu>
parents: 314
diff changeset
112 <td></td><td></td>
14
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
113 <td align="right"></td>
201
f9b7e3f6be7c Fixed yeast database import differences between grams, ml and packs. Added cells field filled with defaults. Some edit screen improvements. Dynamic prompts depending on the yeast type. Disable men and filter of most columns in the yeasts list. Friendlier display of inverntory.
Michiel Broek <mbroek@mbse.eu>
parents: 198
diff changeset
114 <td style="padding-top: 20px;" align="left"><input style="margin-right: 5px;" type="button" id="Save" value="Sla op" /><input id="Cancel" type="button" value="Annuleer" /></td>
14
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
115 </tr>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
116 </table>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
117 </div>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
118 </div>
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
119
725
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
120 <div id="pitchloWindow">
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
121 <div>Enten droge gist ondergrens</div>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
122 <div style="overflow: hidden;">
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
123 <table style="width: 100%;">
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
124 <col width="50%">
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
125 <col width="50%">
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
126 <tr>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
127 <td align="right" style="vertical-align: top;">Enten gram/hl:</td>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
128 <td style="padding: 3px;"><div id="gr_hl_lo"></div></td>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
129 </tr>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
130 <tr>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
131 <td align="right" style="vertical-align: top;">Bij dit SG:</td>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
132 <td style="padding: 3px;"><div id="sg_lo" /></div></td>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
133 </tr>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
134 <tr>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
135 <td style="padding-top: 30px;" colspan="2" align="center">
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
136 <input id="pitchloReady" type="button" value="Ok" />
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
137 </td>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
138 </tr>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
139 </table>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
140 </div>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
141 </div>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
142
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
143 <div id="pitchhiWindow">
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
144 <div>Enten droge gist bovengrens</div>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
145 <div style="overflow: hidden;">
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
146 <table style="width: 100%;">
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
147 <col width="50%">
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
148 <col width="50%">
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
149 <tr>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
150 <td align="right" style="vertical-align: top;">Enten gram/hl:</td>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
151 <td style="padding: 3px;"><div id="gr_hl_hi"></div></td>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
152 </tr>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
153 <tr>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
154 <td align="right" style="vertical-align: top;">Bij dit SG:</td>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
155 <td style="padding: 3px;"><div id="sg_hi" /></div></td>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
156 </tr>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
157 <tr>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
158 <td style="padding-top: 30px;" colspan="2" align="center">
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
159 <input id="pitchhiReady" type="button" value="Ok" />
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
160 </td>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
161 </tr>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
162 </table>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
163 </div>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
164 </div>
30346e5b9e12 Added pitch rate fields for gram/hl for dry yeast.
Michiel Broek <mbroek@mbse.eu>
parents: 630
diff changeset
165
14
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
166 <?php
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
167 confirm_delete();
39
400aae9fb0c8 Some small fixes
Michiel Broek <mbroek@mbse.eu>
parents: 33
diff changeset
168 page_footer();
14
d9dfd703df83 Added yeast inventory screens
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
169 ?>

mercurial