public function getCartTotalItems()
{
// SUBTOTAL
if (empty($this->total)) {
$this->total = $this->getTotal();
}
// COUPONTITLE
if (empty($this->coupontitle)) {
$this->coupon['title'] = $this->getCouponTitle();
}
return $this->total;
}