Magento get quote id from quote : If you are working with magento quotes and want quote id you can use following method to get the magento quote id.
This is how you can get quote id
$quoteId = Mage::getSingleton('adminhtml/session_quote')->getQuote()->getId();
Which will return the quote id from current Admin quote session.