diff -r 72bcc7ac60da -r d0f7b4ab000f www/js/prod_export.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/www/js/prod_export.js Thu Feb 28 22:50:58 2019 +0100 @@ -0,0 +1,62 @@ +/***************************************************************************** + * Copyright (C) 2019 + * + * Michiel Broek + * + * This file is part of BMS + * + * This is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2, or (at your option) any + * later version. + * + * BrewCloud is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with ThermFerm; see the file COPYING. If not, write to the Free + * Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. + *****************************************************************************/ + + +$(document).ready(function () { + + var choice = 0; + + $("#name").html(my_name); + $("#code").html(my_code); + $("#jqxRadioButton1").jqxRadioButton({ theme: theme, width: 250, height: 23 }); + $("#jqxRadioButton2").jqxRadioButton({ theme: theme, width: 250, height: 23 }); + $("#jqxRadioButton3").jqxRadioButton({ theme: theme, width: 250, height: 23 }); + $('#jqxRadioButton1').on('checked', function (event) { + $('#Start').jqxButton({ disabled: false }); + choice = 1; + }); + $('#jqxRadioButton2').on('checked', function (event) { + $('#Start').jqxButton({ disabled: false }); + choice = 2; + }); + $('#jqxRadioButton3').on('checked', function (event) { + $('#Start').jqxButton({ disabled: false }); + choice = 3; + }); + + $('#Start').jqxButton({ template: "success", width: '100px', theme: theme, disabled: true }); + $('#Start').click(function () { + if (choice == 1) { + var url="prod_beerxml.php?record=" + my_record; + window.open(url); + } else if (choice == 2) { + var url="prod_duplicate.php?record=" + my_record; + window.open(url); + } else if (choice == 3) { + var url="prod_torecipe.php?record=" + my_record; + window.open(url); + } + // Return to the original product + window.location.href = my_return + "?record=" + my_record; + }); + +});