2005-04-19 19:23:10 +00:00
|
|
|
<?
|
|
|
|
|
2025-01-29 03:30:48 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the Science-ation project
|
|
|
|
* Science-ation Website: https://science-ation.ca
|
|
|
|
*
|
|
|
|
* This file was part of the 'Science Fair In A Box' project
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Sci-Tech Ontario Inc <info@scitechontario.org>
|
|
|
|
* Copyright (C) 2005 James Grant <james@lightbox.org>
|
|
|
|
* Copyright (C) 2024 AlgoLibre Inc. <science-ation@algolibre.io>
|
|
|
|
*
|
|
|
|
* This program 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, version 2.
|
|
|
|
*
|
|
|
|
* This program 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 this program; see the file COPYING. If not, write to
|
|
|
|
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
2005-04-19 19:23:10 +00:00
|
|
|
?>
|
|
|
|
<?
|
2007-12-20 16:41:57 +00:00
|
|
|
echo "To run this script, edit it and comment out the 'exit' (and this message) at the beginning";
|
|
|
|
exit;
|
|
|
|
|
2025-01-29 03:30:48 +00:00
|
|
|
include '../common.inc.php';
|
2005-04-19 19:23:10 +00:00
|
|
|
|
2025-01-29 03:30:48 +00:00
|
|
|
$projq = $pdo->prepare("SELECT id FROM registrations WHERE status='complete' OR status='paymentpending' AND year='2008'");
|
|
|
|
$projq->execute();
|
|
|
|
while ($projr = $projq->fetch(PDO::FETCH_OBJ)) {
|
|
|
|
$reg_id = $projr->id;
|
2025-02-09 17:24:37 +00:00
|
|
|
$q = $pdo->prepare("SELECT projects.projectcategories_id, projects.projectdivisions_id FROM projects WHERE registrations_id=?");
|
|
|
|
$q->execute([$reg_id]);
|
2025-01-29 03:30:48 +00:00
|
|
|
$r = $q->fetch(PDO::FETCH_OBJ);
|
2005-04-19 19:23:10 +00:00
|
|
|
|
2025-01-29 03:30:48 +00:00
|
|
|
$projectnumber = $config['project_num_format'];
|
|
|
|
// first replace the division and category
|
|
|
|
$projectnumber = str_replace('D', $r->projectdivisions_id, $projectnumber);
|
|
|
|
$projectnumber = str_replace('C', $r->projectcategories_id, $projectnumber);
|
2005-04-19 19:23:10 +00:00
|
|
|
|
2025-01-29 03:30:48 +00:00
|
|
|
// now change the N to a % so we can use it as a wildcard
|
|
|
|
$querynum = str_replace('N', '%', $projectnumber);
|
2025-02-09 17:24:37 +00:00
|
|
|
$searchq = $pdo->prepare("SELECT projectnumber FROM projects WHERE year=? AND projectnumber LIKE ?");
|
|
|
|
$searchq->execute([$config['FAIRYEAR'],$querynum]);
|
2025-01-29 03:30:48 +00:00
|
|
|
print ("SELECT projectnumber FROM projects WHERE year='" . $config['FAIRYEAR'] . "' AND projectnumber LIKE '$querynum'\n");
|
|
|
|
$searchnum = $searchq->rowCount();
|
|
|
|
echo "searchnum=$searchnum \n";
|
|
|
|
if ($searchq->rowCount()) {
|
|
|
|
// first, put them all in an array
|
|
|
|
$proj_nums = array();
|
|
|
|
while ($searchr = $searchq->fetch(PDO::FETCH_OBJ)) {
|
|
|
|
$proj_nums[] = $searchr->projectnumber;
|
2005-04-19 19:23:10 +00:00
|
|
|
}
|
2025-01-29 03:30:48 +00:00
|
|
|
print_r($proj_nums);
|
2005-04-19 19:23:10 +00:00
|
|
|
|
2025-01-29 03:30:48 +00:00
|
|
|
// we will eventually find a good number, so lets loop forever until we find a good one
|
|
|
|
$testnum = 1;
|
|
|
|
$Nnum = 1;
|
|
|
|
$ok = false;
|
|
|
|
do {
|
|
|
|
$Nnum = sprintf('%02d', $testnum);
|
|
|
|
$test_projectnumber = str_replace('N', $Nnum, $projectnumber);
|
|
|
|
echo "seeing if $test_projectnumber is in proj_nums\n";
|
|
|
|
if (!in_array($test_projectnumber, $proj_nums))
|
|
|
|
$ok = true;
|
|
|
|
$testnum++;
|
|
|
|
} while (!$ok);
|
|
|
|
} else {
|
|
|
|
$Nnum = '01';
|
2005-04-19 19:23:10 +00:00
|
|
|
}
|
2025-01-29 03:30:48 +00:00
|
|
|
|
|
|
|
$projectnumber = str_replace('N', $Nnum, $projectnumber);
|
2025-02-09 17:24:37 +00:00
|
|
|
$stmt = $pdo->prepare("UPDATE projects SET projectnumber=? WHERE registrations_id=? AND year=?");
|
|
|
|
$stmt->execute([$projectnumber,$reg_id,$config['FAIRYEAR']]);
|
2025-01-29 03:30:48 +00:00
|
|
|
if ($projectnumber) {
|
|
|
|
echo "Assigned new project number $projectnumber\n";
|
|
|
|
} else {
|
|
|
|
echo "Eeek! couldnt assign project number for $reg_id";
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
$assigned++;
|
|
|
|
}
|
|
|
|
echo "assigned=$assigned";
|
|
|
|
|
2005-04-19 19:23:10 +00:00
|
|
|
?>
|