2018-01-25 11:30:17 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This Software is the property of Data Development and is protected
|
|
|
|
* by copyright law - it is NOT Freeware.
|
|
|
|
*
|
|
|
|
* Any unauthorized use of this software without a valid license
|
|
|
|
* is a violation of the license agreement and will be prosecuted by
|
|
|
|
* civil and criminal law.
|
|
|
|
*
|
|
|
|
* http://www.shopmodule.com
|
|
|
|
*
|
|
|
|
* @copyright © D³ Data Development, Thomas Dartsch
|
2018-02-23 12:30:57 +01:00
|
|
|
* @author D³ Data Development - Daniel Seifert <info@shopmodule.com>
|
2018-01-25 11:30:17 +01:00
|
|
|
* @link http://www.oxidmodule.com
|
|
|
|
*/
|
|
|
|
|
2019-10-16 14:56:55 +02:00
|
|
|
namespace D3\Devhelper\Modules\Application\Model;
|
|
|
|
|
2020-11-11 22:29:10 +01:00
|
|
|
use oxarticleinputexception;
|
|
|
|
use OxidEsales\Eshop\Application\Model\Basket;
|
|
|
|
use OxidEsales\Eshop\Application\Model\Order;
|
2019-10-16 14:56:55 +02:00
|
|
|
use OxidEsales\Eshop\Application\Model\Voucher;
|
|
|
|
use OxidEsales\Eshop\Core\DatabaseProvider;
|
|
|
|
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
|
|
|
|
use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
|
|
|
|
use OxidEsales\Eshop\Core\Model\ListModel;
|
|
|
|
use OxidEsales\Eshop\Core\Registry;
|
2020-11-11 22:29:10 +01:00
|
|
|
use oxnoarticleexception;
|
2019-10-16 14:56:55 +02:00
|
|
|
|
2018-01-25 11:30:17 +01:00
|
|
|
class d3_dev_oxorder extends d3_dev_oxorder_parent
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @return d3_dev_oxbasket
|
|
|
|
*/
|
|
|
|
public function d3DevGetOrderBasket()
|
|
|
|
{
|
|
|
|
/** @var d3_dev_oxbasket $oBasket */
|
|
|
|
$oBasket = $this->_getOrderBasket();
|
|
|
|
|
|
|
|
// add this order articles to basket and recalculate basket
|
2019-10-16 14:56:55 +02:00
|
|
|
$this->_d3AddOrderArticlesToBasket($oBasket, $this->getOrderArticles());
|
|
|
|
|
2018-01-25 11:30:17 +01:00
|
|
|
// recalculating basket
|
|
|
|
$oBasket->calculateBasket(true);
|
|
|
|
$oBasket->d3ClearBasketItemArticles();
|
|
|
|
|
|
|
|
$this->_oPayment = $this->_setPayment($oBasket->getPaymentId());
|
|
|
|
|
|
|
|
return $oBasket;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
2018-02-23 12:30:57 +01:00
|
|
|
* @throws DatabaseConnectionException
|
2018-01-25 11:30:17 +01:00
|
|
|
*/
|
|
|
|
public function d3getLastOrderId()
|
|
|
|
{
|
2020-11-11 22:29:10 +01:00
|
|
|
$orderNr = (int) Registry::getRequest()->getRequestEscapedParameter('d3ordernr');
|
2018-01-25 11:30:17 +01:00
|
|
|
$sWhere = 1;
|
|
|
|
if ($orderNr) {
|
2020-11-12 08:50:36 +01:00
|
|
|
$sWhere = ' oxordernr = ? ';
|
2018-01-25 11:30:17 +01:00
|
|
|
}
|
2020-11-12 08:50:36 +01:00
|
|
|
$parameters = [$orderNr];
|
2018-01-25 11:30:17 +01:00
|
|
|
|
2020-11-24 23:05:30 +01:00
|
|
|
$sSelect = "SELECT oxid FROM ".oxNew(Order::class)->getViewName()." WHERE ".
|
|
|
|
"oxuserid != '' AND ".
|
|
|
|
"oxshopid = ".Registry::getConfig()->getShopId()." AND ".
|
|
|
|
$sWhere." ORDER BY oxorderdate DESC LIMIT 1";
|
2018-01-25 11:30:17 +01:00
|
|
|
|
2020-11-12 08:50:36 +01:00
|
|
|
return DatabaseProvider::getDb(DatabaseProvider::FETCH_MODE_ASSOC)->getOne($sSelect, $parameters);
|
2018-01-25 11:30:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-02-23 12:30:57 +01:00
|
|
|
* @throws DatabaseConnectionException
|
|
|
|
* @throws DatabaseErrorException
|
2018-01-25 11:30:17 +01:00
|
|
|
*/
|
|
|
|
public function d3getLastOrder()
|
|
|
|
{
|
|
|
|
$this->load($this->d3getLastOrderId());
|
|
|
|
$this->_d3AddVouchers();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-11-11 22:29:10 +01:00
|
|
|
* @return d3_dev_oxbasket|Basket
|
2018-01-25 11:30:17 +01:00
|
|
|
*/
|
|
|
|
public function getBasket()
|
|
|
|
{
|
|
|
|
$oBasket = parent::getBasket();
|
|
|
|
|
|
|
|
if (false == $oBasket && Registry::getConfig()->getActiveView()->getClassKey() == 'd3dev') {
|
|
|
|
$oBasket = $this->d3DevGetOrderBasket();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $oBasket;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-02-23 12:30:57 +01:00
|
|
|
* @throws DatabaseConnectionException
|
|
|
|
* @throws DatabaseErrorException
|
2018-01-25 11:30:17 +01:00
|
|
|
*/
|
|
|
|
protected function _d3AddVouchers()
|
|
|
|
{
|
2020-11-11 22:29:10 +01:00
|
|
|
$sSelect = "SELECT oxid FROM ".oxNew(Voucher::class)->getViewName()." WHERE oxorderid = ?";
|
2018-01-25 11:30:17 +01:00
|
|
|
|
2020-11-11 22:29:10 +01:00
|
|
|
$aResult = DatabaseProvider::getDb(DatabaseProvider::FETCH_MODE_ASSOC)->getAll(
|
|
|
|
$sSelect,
|
|
|
|
[$this->getId()]
|
|
|
|
);
|
2018-01-25 11:30:17 +01:00
|
|
|
|
|
|
|
foreach ($aResult as $aFields) {
|
2018-02-23 12:30:57 +01:00
|
|
|
$oVoucher = oxNew(Voucher::class);
|
2018-01-25 11:30:17 +01:00
|
|
|
$oVoucher->load($aFields['oxid']);
|
|
|
|
$this->_aVoucherList[$oVoucher->getId()] = $oVoucher;
|
|
|
|
}
|
|
|
|
}
|
2019-10-16 14:56:55 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds order articles back to virtual basket. Needed for recalculating order.
|
|
|
|
*
|
|
|
|
* @param d3_dev_oxbasket $oBasket basket object
|
|
|
|
* @param ListModel $aOrderArticles order articles
|
2020-11-11 22:29:10 +01:00
|
|
|
* @throws oxArticleInputException
|
|
|
|
* @throws oxNoArticleException
|
2019-10-16 14:56:55 +02:00
|
|
|
*/
|
|
|
|
protected function _d3AddOrderArticlesToBasket($oBasket, $aOrderArticles)
|
|
|
|
{
|
|
|
|
// if no order articles, return empty basket
|
|
|
|
if (count($aOrderArticles) > 0) {
|
|
|
|
//adding order articles to basket
|
|
|
|
foreach ($aOrderArticles as $oOrderArticle) {
|
|
|
|
$oBasket->d3addOrderArticleToBasket($oOrderArticle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-25 11:30:17 +01:00
|
|
|
}
|