/**
  * Get Quotation total by Quotation number
  *
  * @param  integer $no
  * @return mixed
  */
 public function total($no)
 {
     $handle = $this->getHandle($no);
     return $this->client->Quotation_GetNetAmount(['quotationHandle' => $handle])->Quotation_GetNetAmountResult;
 }