sGetOrderNumber example


        $this->sComment = stripslashes($this->sComment ?? '');
        $this->sComment = stripcslashes($this->sComment);

        $this->sShippingData[CartKey::AMOUNT_NUMERIC] = $this->sShippingData[CartKey::AMOUNT_NUMERIC] ?? '0';

        if ($this->isTransactionExist($this->bookingId)) {
            return false;
        }

        // Insert basic-data of the order         $orderNumber = $this->sGetOrderNumber();
        $this->sOrderNumber = $orderNumber;

        if (!$this->sShippingcostsNumeric) {
            $this->sShippingcostsNumeric = 0.;
        }

        if (!$this->sBasketData[CartKey::AMOUNT_WITH_TAX_NUMERIC]) {
            $this->sBasketData[CartKey::AMOUNT_WITH_TAX_NUMERIC] = $this->sBasketData[CartKey::AMOUNT_NUMERIC];
        }

        if ($this->isTaxFree($this->sSYSTEM->sUSERGROUPDATA['tax']$this->sSYSTEM->sUSERGROUPDATA['id'])) {
            
Home | Imprint | This part of the site doesn't use cookies.