Topic: Supplier Description is overwritten
Items and Inventory -> Items -> Purchase Pricing
On every "Purchase Order Delivery" action the "Supplier's Code or Description" is overwritten with the product name in the "General Settings" tab.
Here is the fix:
purchasing/includes/purchasing_db.inc
Line 113
if ($description != "")
$sql .= ",supplier_description=".db_escape($description);
$sql .= " WHERE stock_id=".db_escape($stock_id)." AND supplier_id=".db_escape($supplier_id);
should be:
if ($description = "")
$sql .= ",supplier_description=".db_escape($description);
$sql .= " WHERE stock_id=".db_escape($stock_id)." AND supplier_id=".db_escape($supplier_id);