www/getwatersources.php

Mon, 12 Nov 2018 16:34:43 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 12 Nov 2018 16:34:43 +0100
changeset 89
082c23b26055
parent 54
294dda7f1779
child 99
f433193f7bb6
permissions
-rw-r--r--

Missing Water agent costs from Brouwhulp import are now added from the imported miscs database. The printed recipe report now calculates the beer color from the ingredients. Also set during recipes import. This will later allow to set the color method for each recipe individually.

<?php
require_once('config.php');

$query = "SELECT * FROM inventory_waters ORDER BY name";
$connect = mysqli_connect(DBASE_HOST,DBASE_USER,DBASE_PASS,DBASE_NAME);
if (! $connect) {
	echo "[]";
	return;
}
$result = mysqli_query($connect, $query);
while ($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) {
	$waters[] = array(
		'record' => $row['record'],
		'name' => $row['name'],
		'unlimited_stock' => $row['unlimited_stock'],
		'calcium' => $row['calcium'],
		'sulfate' => $row['sulfate'],
		'chloride' => $row['chloride'],
		'sodium' => $row['sodium'],
		'magnesium' => $row['magnesium'],
		'ph' => $row['ph'],
		'total_alkalinity' => $row['total_alkalinity'],
		'default_water' => $row['default_water'],
		'cost' => $row['cost']
	);
}
echo json_encode($waters);

mercurial