Moved all SQL statements from PHP files into relevant *_db.inc files.
[fa-stable.git] / purchasing / po_entry_items.php
index 988c90faf3a1b15af98e82d0c8eb5af3af9484cb..a09b2e14d74f8ff9158c4ccc912c08b944bdd7a2 100644 (file)
@@ -227,10 +227,7 @@ function handle_add_new_item()
 
                if ($allow_update == true)
                {
-                       $sql = "SELECT description, units, mb_flag
-                               FROM ".TB_PREF."stock_master WHERE stock_id = ".db_escape($_POST['stock_id']);
-
-                   $result = db_query($sql,"The stock details for " . $_POST['stock_id'] . " could not be retrieved");
+                       $result = get_short_info($_POST['stock_id']);
 
                    if (db_num_rows($result) == 0)
                    {