www/js/prod_divide.js

changeset 817
6ee186182c70
parent 816
d76f623d487c
child 818
f9c071906643
equal deleted inserted replaced
816:d76f623d487c 817:6ee186182c70
1 /*****************************************************************************
2 * Copyright (C) 2019-2020
3 *
4 * Michiel Broek <mbroek at mbse dot eu>
5 *
6 * This file is part of BMS
7 *
8 * This is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2, or (at your option) any
11 * later version.
12 *
13 * BrewCloud is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with ThermFerm; see the file COPYING. If not, write to the Free
20 * Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
21 *****************************************************************************/
22
23
24 $(document).ready(function() {
25
26 $('#divide_type').jqxDropDownList({
27 theme: theme,
28 source: SplitAdapter,
29 valueMember: 'id',
30 displayMember: 'nl',
31 width: 180,
32 height: 23,
33 autoDropDownHeight: true
34 });
35
36 // Calculate the volume in the main batch.
37 function calcLeftover() {
38 rows = $('#splitGrid').jqxGrid('getrows');
39 leftover = Round(available, 1);
40 for (i = 0; i < rows.length; i++) {
41 row = rows[i];
42 leftover = Round(leftover - row.split_size, 1);
43 console.log('i:' + i + ' split_size:' + row.split_size);
44 }
45 $('#leftover').val(leftover);
46 console.log('calcLeftover():' + leftover);
47 }
48
49 // Calculate available volume but ignore the current row.
50 function calcRoom(r) {
51 var rows, row, i, vol = 0;
52
53 rows = $('#splitGrid').jqxGrid('getrows');
54 for (i = 0; i < rows.length; i++) {
55 row = rows[i];
56 if (i != r)
57 vol += row.split_size;
58 }
59 maxvolume = Round(available - minvolume - vol, 1);
60 console.log('calcRoom(' + r + '):' + vol + ' room:' + maxvolume);
61 }
62
63 var dataRecord = {},
64 i,
65 available = 0,
66 leftover = 0,
67 minvolume = 0,
68 maxvolume = 0,
69 url = 'includes/db_product.php',
70
71 // Prepare the data
72 source = {
73 datatype: 'json',
74 cache: false,
75 datafields: [
76 // From prod_main
77 { name: 'record', type: 'number' },
78 { name: 'uuid', type: 'string' },
79 { name: 'name', type: 'string' },
80 { name: 'code', type: 'string' },
81 { name: 'birth', type: 'string' },
82 { name: 'stage', type: 'int' },
83 { name: 'notes', type: 'string' },
84 { name: 'log_brew', type: 'int' },
85 { name: 'log_fermentation', type: 'int' },
86 { name: 'log_ispindel', type: 'int' },
87 { name: 'log_co2pressure', type: 'int' },
88 { name: 'inventory_reduced', type: 'int' },
89 { name: 'locked', type: 'int' },
90 { name: 'eq_name', type: 'string' },
91 { name: 'eq_boil_size', type: 'float' },
92 { name: 'eq_batch_size', type: 'float' },
93 { name: 'eq_tun_volume', type: 'float' },
94 { name: 'eq_tun_weight', type: 'float' },
95 { name: 'eq_tun_specific_heat', type: 'float' },
96 { name: 'eq_tun_material', type: 'int' },
97 { name: 'eq_tun_height', type: 'float' },
98 { name: 'eq_top_up_water', type: 'float' },
99 { name: 'eq_trub_chiller_loss', type: 'float' },
100 { name: 'eq_evap_rate', type: 'float' },
101 { name: 'eq_boil_time', type: 'float' },
102 { name: 'eq_calc_boil_volume', type: 'int' },
103 { name: 'eq_top_up_kettle', type: 'float' },
104 { name: 'eq_hop_utilization', type: 'float' },
105 { name: 'eq_notes', type: 'string' },
106 { name: 'eq_lauter_volume', type: 'float' },
107 { name: 'eq_lauter_height', type: 'float' },
108 { name: 'eq_lauter_deadspace', type: 'float' },
109 { name: 'eq_kettle_volume', type: 'float' },
110 { name: 'eq_kettle_height', type: 'float' },
111 { name: 'eq_mash_volume', type: 'float' },
112 { name: 'eq_mash_max', type: 'float' },
113 { name: 'eq_efficiency', type: 'float' },
114 { name: 'brew_date_start', type: 'string' },
115 { name: 'brew_mash_ph', type: 'float' },
116 { name: 'brew_mash_sg', type: 'float' },
117 { name: 'brew_mash_efficiency', type: 'float' },
118 { name: 'brew_sparge_est', type: 'float' },
119 { name: 'brew_sparge_ph', type: 'float' },
120 { name: 'brew_preboil_volume', type: 'float' },
121 { name: 'brew_preboil_sg', type: 'float' },
122 { name: 'brew_preboil_ph', type: 'float' },
123 { name: 'brew_preboil_efficiency', type: 'float' },
124 { name: 'brew_aboil_volume', type: 'float' },
125 { name: 'brew_aboil_sg', type: 'float' },
126 { name: 'brew_aboil_ph', type: 'float' },
127 { name: 'brew_aboil_efficiency', type: 'float' },
128 { name: 'brew_cooling_method', type: 'int' },
129 { name: 'brew_cooling_time', type: 'float' },
130 { name: 'brew_cooling_to', type: 'float' },
131 { name: 'brew_whirlpool9', type: 'float' },
132 { name: 'brew_whirlpool7', type: 'float' },
133 { name: 'brew_whirlpool6', type: 'float' },
134 { name: 'brew_whirlpool2', type: 'float' },
135 { name: 'brew_fermenter_volume', type: 'float' },
136 { name: 'brew_fermenter_extrawater', type: 'float' },
137 { name: 'brew_fermenter_tcloss', type: 'float' },
138 { name: 'brew_aeration_time', type: 'float' },
139 { name: 'brew_aeration_speed', type: 'float' },
140 { name: 'brew_aeration_type', type: 'int' },
141 { name: 'brew_fermenter_sg', type: 'float' },
142 { name: 'brew_fermenter_ibu', type: 'float' },
143 { name: 'brew_fermenter_color', type: 'float' },
144 { name: 'brew_date_end', type: 'string' },
145 { name: 'og', type: 'float' },
146 { name: 'fg', type: 'float' },
147 { name: 'primary_start_temp', type: 'float' },
148 { name: 'primary_max_temp', type: 'float' },
149 { name: 'primary_end_temp', type: 'float' },
150 { name: 'primary_end_sg', type: 'float' },
151 { name: 'primary_end_date', type: 'string' },
152 { name: 'secondary_temp', type: 'float' },
153 { name: 'secondary_end_sg', type: 'float' },
154 { name: 'secondary_end_date', type: 'string' },
155 { name: 'tertiary_temp', type: 'float' },
156 { name: 'package_date', type: 'string' },
157 { name: 'package_volume', type: 'float' },
158 { name: 'package_infuse_amount', type: 'float' },
159 { name: 'package_infuse_abv', type: 'float' },
160 { name: 'package_infuse_notes', type: 'string' },
161 { name: 'package_abv', type: 'float' },
162 { name: 'package_ph', type: 'float' },
163 { name: 'bottle_amount', type: 'float' },
164 { name: 'bottle_carbonation', type: 'float' },
165 { name: 'bottle_priming_water', type: 'float' },
166 { name: 'bottle_priming_amount', type: 'float' },
167 { name: 'bottle_carbonation_temp', type: 'float' },
168 { name: 'keg_amount', type: 'float' },
169 { name: 'keg_carbonation', type: 'float' },
170 { name: 'keg_priming_water', type: 'float' },
171 { name: 'keg_priming_amount', type: 'float' },
172 { name: 'keg_carbonation_temp', type: 'float' },
173 { name: 'keg_forced_carb', type: 'int' },
174 { name: 'keg_pressure', type: 'float' },
175 { name: 'taste_notes', type: 'string' },
176 { name: 'taste_rate', type: 'float' },
177 { name: 'taste_date', type: 'string' },
178 { name: 'taste_color', type: 'string' },
179 { name: 'taste_transparency', type: 'string' },
180 { name: 'taste_head', type: 'string' },
181 { name: 'taste_aroma', type: 'string' },
182 { name: 'taste_taste', type: 'string' },
183 { name: 'taste_mouthfeel', type: 'string' },
184 { name: 'taste_aftertaste', type: 'string' },
185 { name: 'st_name', type: 'string' },
186 { name: 'st_letter', type: 'string' },
187 { name: 'st_guide', type: 'string' },
188 { name: 'st_category', type: 'string' },
189 { name: 'st_category_number', type: 'int' },
190 { name: 'st_type', type: 'int' },
191 { name: 'st_og_min', type: 'float' },
192 { name: 'st_og_max', type: 'float' },
193 { name: 'st_fg_min', type: 'float' },
194 { name: 'st_fg_max', type: 'float' },
195 { name: 'st_ibu_min', type: 'float' },
196 { name: 'st_ibu_max', type: 'float' },
197 { name: 'st_color_min', type: 'float' },
198 { name: 'st_color_max', type: 'float' },
199 { name: 'st_carb_min', type: 'float' },
200 { name: 'st_carb_max', type: 'float' },
201 { name: 'st_abv_min', type: 'float' },
202 { name: 'st_abv_max', type: 'float' },
203 { name: 'type', type: 'int' },
204 { name: 'batch_size', type: 'float' },
205 { name: 'boil_size', type: 'float' },
206 { name: 'boil_time', type: 'float' },
207 { name: 'efficiency', type: 'float' },
208 { name: 'est_og', type: 'float' },
209 { name: 'est_fg', type: 'float' },
210 { name: 'est_abv', type: 'float' },
211 { name: 'est_color', type: 'float' },
212 { name: 'color_method', type: 'int' },
213 { name: 'est_ibu', type: 'float' },
214 { name: 'ibu_method', type: 'int' },
215 { name: 'est_carb', type: 'float' },
216 { name: 'sparge_temp', type: 'float' },
217 { name: 'sparge_ph', type: 'float' },
218 { name: 'sparge_volume', type: 'float' },
219 { name: 'sparge_source', type: 'int' },
220 { name: 'sparge_acid_type', type: 'int' },
221 { name: 'sparge_acid_perc', type: 'float' },
222 { name: 'sparge_acid_amount', type: 'float' },
223 { name: 'mash_ph', type: 'float' },
224 { name: 'mash_name', type: 'string' },
225 { name: 'calc_acid', type: 'int' },
226 { name: 'w1_name', type: 'string' },
227 { name: 'w1_amount', type: 'float' },
228 { name: 'w1_calcium', type: 'float' },
229 { name: 'w1_sulfate', type: 'float' },
230 { name: 'w1_chloride', type: 'float' },
231 { name: 'w1_sodium', type: 'float' },
232 { name: 'w1_magnesium', type: 'float' },
233 { name: 'w1_total_alkalinity', type: 'float' },
234 { name: 'w1_ph', type: 'float' },
235 { name: 'w1_cost', type: 'float' },
236 { name: 'w2_name', type: 'string' },
237 { name: 'w2_amount', type: 'float' },
238 { name: 'w2_calcium', type: 'float' },
239 { name: 'w2_sulfate', type: 'float' },
240 { name: 'w2_chloride', type: 'float' },
241 { name: 'w2_sodium', type: 'float' },
242 { name: 'w2_magnesium', type: 'float' },
243 { name: 'w2_total_alkalinity', type: 'float' },
244 { name: 'w2_ph', type: 'float' },
245 { name: 'w2_cost', type: 'float' },
246 { name: 'wg_amount', type: 'float' },
247 { name: 'wg_calcium', type: 'float' },
248 { name: 'wg_sulfate', type: 'float' },
249 { name: 'wg_chloride', type: 'float' },
250 { name: 'wg_sodium', type: 'float' },
251 { name: 'wg_magnesium', type: 'float' },
252 { name: 'wg_total_alkalinity', type: 'float' },
253 { name: 'wg_ph', type: 'float' },
254 { name: 'wb_calcium', type: 'float' },
255 { name: 'wb_sulfate', type: 'float' },
256 { name: 'wb_chloride', type: 'float' },
257 { name: 'wb_sodium', type: 'float' },
258 { name: 'wb_magnesium', type: 'float' },
259 { name: 'wb_total_alkalinity', type: 'float' },
260 { name: 'wb_ph', type: 'float' },
261 { name: 'wa_acid_name', type: 'int' },
262 { name: 'wa_acid_perc', type: 'int' },
263 { name: 'wa_base_name', type: 'int' },
264 { name: 'starter_enable', type: 'int' },
265 { name: 'starter_type', type: 'int' },
266 { name: 'starter_sg', type: 'float' },
267 { name: 'starter_viability', type: 'int' },
268 { name: 'starter_viability', type: 'int' },
269 { name: 'prop1_type', type: 'int' },
270 { name: 'prop1_volume', type: 'float' },
271 { name: 'prop2_type', type: 'int' },
272 { name: 'prop2_volume', type: 'float' },
273 { name: 'prop3_type', type: 'int' },
274 { name: 'prop3_volume', type: 'float' },
275 { name: 'prop4_type', type: 'int' },
276 { name: 'prop4_volume', type: 'float' },
277 { name: 'divide_type', type: 'int' },
278 { name: 'divide_size', type: 'float' },
279 { name: 'divide_parts', type: 'int' },
280 { name: 'fermentables', type: 'string' },
281 { name: 'hops', type: 'string' },
282 { name: 'miscs', type: 'string' },
283 { name: 'yeasts', type: 'string' },
284 { name: 'mashs', type: 'string' }
285 ],
286 id: 'record',
287 url: url + '?record=' + my_record
288 },
289
290 // Load data and select one record.
291 dataAdapter = new $.jqx.dataAdapter(source, {
292 loadComplete: function() {
293 var records = dataAdapter.records;
294 dataRecord = records[0];
295 // Hidden record uuid
296 $('#name').val(dataRecord.name);
297 $('#code').val(dataRecord.code);
298 $('#stage').val(StageData[dataRecord.stage].nl);
299 // Disable stages that are already done.
300 for (i = 0; i < SplitData.length; i++) {
301 if (SplitData[i].ok < dataRecord.stage)
302 $('#divide_type').jqxDropDownList('disableAt', i);
303 }
304 },
305 loadError: function(jqXHR, status, error) {
306 },
307 beforeLoadComplete: function(records) {
308 $('#jqxLoader').jqxLoader('open');
309 }
310 });
311
312 var editSplit = function(data) {
313 var splitSource = {
314 datatype: 'local',
315 cache: false,
316 async: false,
317 datafields: [
318 { name: 'split_code', type: 'string' },
319 { name: 'split_name', type: 'string' },
320 { name: 'split_size', type: 'float' }
321 ],
322 addrow: function(rowid, rowdata, position, commit) {
323 console.log('split addrow ' + rowid);
324 commit(true);
325 },
326 deleterow: function(rowid, commit) {
327 console.log('split deleterow ' + rowid);
328 commit(true);
329 }
330 },
331 splitAdapter = new $.jqx.dataAdapter(splitSource, {});
332 $('#splitGrid').jqxGrid({
333 width: 1240,
334 height: 375,
335 source: splitAdapter,
336 editable: true,
337 enabletooltips: true,
338 selectionmode: 'singlecell',
339 editmode: 'click',
340 theme: theme,
341 showtoolbar: true,
342 rendertoolbar: function(toolbar) {
343 var container = $('<div style="overflow: hidden; position: relative; margin: 5px;"></div>');
344 toolbar.append(container);
345 container.append('<input style="float: left; margin-left: 165px;" id="saddrowbutton" type="button" value="Nieuwe splitsing" />');
346 container.append('<input style="float: left; margin-left: 565px;" id="sdeleterowbutton" type="button" value="Verwijder splitsing" />');
347 $('#saddrowbutton').jqxButton({ template: 'primary', theme: theme, disabled: true, height: 27, width: 150 });
348 $('#saddrowbutton').on('click', function() {
349 var row = {}, rowscount = $('#splitGrid').jqxGrid('getdatainformation').rowscount;
350 row['split_code'] = dataRecord.code + '-' + (rowscount + 1);
351 row['split_name'] = dataRecord.name + ' ' + (rowscount + 1);
352 row['split_size'] = 0;
353 $('#splitGrid').jqxGrid('addrow', null, row);
354 $('#sdeleterowbutton').jqxButton({ disabled: false }); // Enable delete
355 $('#divide_type').jqxDropDownList({ disabled: true }); // Disable dropdown
356 });
357 // Delete last added split
358 $('#sdeleterowbutton').jqxButton({ template: 'danger', theme: theme, disabled: true, height: 27, width: 150 });
359 $('#sdeleterowbutton').on('click', function() {
360 var rowscount, id, row;
361 rowscount = $('#splitGrid').jqxGrid('getdatainformation').rowscount;
362 id = $('#splitGrid').jqxGrid('getrowid', rowscount - 1);
363 // First, give back this batch volume.
364 row = $('#splitGrid').jqxGrid('getrowdata', id);
365 leftover = Round(leftover + row.split_size, 1);
366 if (leftover > available)
367 leftover = available;
368 $('#leftover').val(leftover);
369 // Then delete the row.
370 $('#splitGrid').jqxGrid('deleterow', id);
371 if (rowscount == 1) {
372 $('#sdeleterowbutton').jqxButton({ disabled: true }); // No more rows
373 $('#divide_type').jqxDropDownList({ disabled: false });
374 }
375 });
376 },
377 columns: [
378 { text: 'Splits code', datafield: 'split_code', width: 120, editable: false },
379 { text: 'Splits naam', datafield: 'split_name' },
380 { text: 'Splits volume', datafield: 'split_size', width: 120, align: 'right', cellsalign: 'right', cellsformat: 'f1', columntype: 'numberinput',
381 validation: function(cell, value) {
382 if (value < 0 || value > maxvolume) {
383 return { result: false, message: 'Volume should be between 0 and ' + maxvolume + ' liter' };
384 }
385 return true;
386 },
387 createeditor: function(row, cellvalue, editor) {
388 editor.jqxNumberInput({ decimalDigits: 1, digits: 3 });
389 }
390 }
391 ]
392 });
393 $('#splitGrid').on('cellbeginedit', function(event) {
394 var args = event.args;
395 calcRoom(args.rowindex); // Make maxvolume available.
396 });
397 $('#splitGrid').on('cellvaluechanged', function(event) {
398 var args = event.args;
399 //console.log("cellvaluechanged, Column: " + args.datafield + ", Row: " + (1 + args.rowindex) + ", Value: " + args.value);
400 calcLeftover();
401 });
402 };
403
404 dataAdapter.dataBind();
405 editSplit(dataRecord);
406
407 // initialize the input fields.
408 $('#name').jqxTooltip({ content: 'De naam voor dit product.' });
409 $('#name').jqxInput({ theme: theme, width: 640, height: 23 });
410 $('#code').jqxTooltip({ content: 'Product code nummer.' });
411 $('#code').jqxInput({ theme: theme, width: 100, height: 23 });
412 $('#stage').jqxTooltip({ content: 'De productie fase van dit product.' });
413 $('#stage').jqxInput({ theme: theme, width: 100, height: 23 });
414 $('#available').jqxNumberInput(Show1dec);
415 $('#leftover').jqxNumberInput(Show1dec);
416 $('#divide_type').val(0);
417 $('#divide_type').on('select', function(event) {
418 var index = event.args.index;
419 dataRecord.divide_type = index;
420 switch (index) {
421 case 0:
422 available = 0;
423 break;
424 case 1:
425 available = dataRecord.boil_size;
426 break;
427 case 2:
428 available = dataRecord.batch_size;
429 break;
430 case 3:
431 available = dataRecord.brew_fermenter_volume;
432 break;
433 case 4:
434 case 5:
435 available = Round(dataRecord.brew_fermenter_volume * 0.92, 1); // Estimate volume without yeast trub
436 break;
437 case 6:
438 available = dataRecord.package_volume;
439 break;
440 }
441 leftover = available;
442 console.log('divide_type:' + index + ' available:' + available);
443 $('#available').val(available);
444 $('#leftover').val(leftover);
445 if (index != 0) {
446 $('#saddrowbutton').jqxButton({ disabled: false });
447 } else {
448 $('#saddrowbutton').jqxButton({ disabled: true });
449 }
450 });
451
452 $('#Cancel').jqxButton({ template: 'primary', width: '80px', theme: theme });
453 $('#Cancel').bind('click', function() {
454 window.location.href = my_return;
455 });
456
457 $('#Save').jqxButton({ template: 'success', width: '80px', theme: theme });
458 $('#Save').bind('click', function() {
459 var rows, row, i, div, data;
460 if (! leftover) {
461 console.log('Save and no volume left');
462 alert('Fout, er is geen volume over in de hoofd batch.');
463 } else if (leftover != available) {
464 console.log('Save and there are splits');
465
466 // Send all the info to the database. The server handles the splitting.
467 var divide_data = new Array();
468 row = {};
469 row.name = dataRecord.name;
470 row.code = dataRecord.code;
471 row.size = Round(leftover, 4);
472 row.factor = Round((leftover / available), 4);
473 row.part = 0;
474 divide_data.push(row);
475
476 rows = $('#splitGrid').jqxGrid('getrows');
477 for (i = 0; i < rows.length; i++) {
478 row = rows[i];
479 console.log('split ' + i);
480 div = {};
481 div.size = Round(row.split_size, 4);
482 div.factor = Round((row.split_size / available), 4);
483 div.part = i + 1;
484 div.name = row.split_name;
485 div.code = row.split_code;
486 divide_data.push(div);
487 }
488
489 // Send the data to the server
490 div = {};
491 div.record = dataRecord.record;
492 div.divide_type = dataRecord.divide_type;
493 div.divide_parts = i;
494 div.divide_data = divide_data;
495 data = $.param(div);
496 $.ajax({
497 dataType: 'json',
498 url: 'includes/db_divides.php',
499 cache: false,
500 data: data,
501 type: 'POST',
502 success: function(data) {
503 if (data.error) {
504 console.log('insert divides: error ' + data.msg);
505 alert('Fout: ' + data.msg);
506 } else {
507 console.log('insert divides: success');
508 }
509 window.location.href = my_return;
510 },
511 error: function(jqXHR, textStatus, errorThrown) {
512 console.log('insert divides: ' + textStatus);
513 }
514 });
515 } // if (leftover != available)
516 });
517 });

mercurial