/**
  * Delete Quotation by
  * Quotation number
  * @param  integer $no
  * @return boolean
  */
 public function delete($no)
 {
     $handle = $this->getHandle($no);
     $this->client->Quotation_Delete(array('quotationHandle' => $handle));
     return true;
 }