November
23
WebERP 3.08 has a bug in Stocks.php which makes entering new inventory items impossible if more than one category available.
Here a quick fix:
In order to get 3.08 working with stock item entry, just comment out the small amount of javascript near the top of the Stocks.php script. However, if you are using additional stock category properties, then to see them, you will have to re-enter that part number to be able to add them.
Code:
<script LANGUAGE="JavaScript">
function ReloadForm(form)
{
document.ItemForm.submit.click();
//var val=ItemForm.StockID.value;
self.location='Stocks.php?&StockID=' + ItemForm.StockID.value;
}
</script>



