webERP Forum
Supplier selection - Printable Version

+- webERP Forum (http://www.weberp.org/forum)
+-- Forum: webERP Discussion (http://www.weberp.org/forum/forumdisplay.php?fid=1)
+--- Forum: Development Discussion & Specification (http://www.weberp.org/forum/forumdisplay.php?fid=10)
+--- Thread: Supplier selection (/showthread.php?tid=932)



Supplier selection - tomglare - 06-11-2013

I find the operation of this (SelectSupplier.php) form slightly confusing. If a search returns only one result, then the list of (one) selected suppliers is unnecessarily repeated when the page reloads, and conversely, once you have selected a supplier (either the single result of a search, or selected from the list), and then run a search which returns multiple results, the previously-selected supplier details are left on screen.

I have made a small change to this script which seems to make the resulting form a bit tidier :

if (DB_num_rows($result) == 1) {
$myrow = DB_fetch_row($result);
$SingleSupplierReturned = $myrow[0];
}
// } - removed this bracket so that the following lines are included within the same block

if (isset($SingleSupplierReturned)) {
$_SESSION['SupplierID'] = $SingleSupplierReturned;
unset($_POST['SupplierNameSearch']);
unset($_POST['SupplierCode']);
// lines added up to XXXX
unset($_POST['Search']);
} else {
unset($_SESSION['SupplierID']);
// XXXX
}
}



RE: Supplier selection - phil - 06-12-2013

Thanks tomglare - will apply your changes.