00001 <?php
00002
00007 class oxOrder extends oxBase
00008 {
00009
00014 const ORDER_STATE_MAILINGERROR = 0;
00015
00020 const ORDER_STATE_OK = 1;
00021
00026 const ORDER_STATE_PAYMENTERROR = 2;
00027
00032 const ORDER_STATE_ORDEREXISTS = 3;
00033
00038 const ORDER_STATE_INVALIDDELIVERY = 4;
00039
00044 const ORDER_STATE_INVALIDPAYMENT = 5;
00045
00050 const ORDER_STATE_INVALIDTSPROTECTION = 6;
00051
00057 protected $_aSkipSaveFields = array( 'oxorderdate' );
00058
00064 protected $_oArticles = null;
00065
00071 protected $_oDelSet = null;
00072
00078 protected $_oGiftCard = null;
00079
00085 protected $_oPaymentType = null;
00086
00092 protected $_oPayment = null;
00093
00099 protected $_aVoucherList = null;
00100
00106 protected $_oDelPrice = null;
00107
00113 protected $_oUser = null;
00114
00120 protected $_oBasket = null;
00121
00127 protected $_oWrappingPrice = null;
00128
00134 protected $_oPaymentPrice = null;
00135
00141 protected $_oTsProtectionPrice = null;
00142
00148 protected $_sClassName = 'oxorder';
00149
00155 protected $_blSeparateNumbering = null;
00156
00162 protected $_iOrderLang = null;
00163
00169 protected $_blReloadDelivery = true;
00170
00176 protected $_blReloadDiscount = true;
00177
00183 protected $_oOrderCurrency = null;
00184
00188 public function __construct()
00189 {
00190 parent::__construct();
00191 $this->init( 'oxorder' );
00192
00193
00194 $this->setSeparateNumbering( $this->getConfig()->getConfigParam( 'blSeparateNumbering') );
00195
00196 }
00197
00205 public function __get( $sName )
00206 {
00207 if ( $sName == 'oDelSet' ) {
00208 return $this->getDelSet();
00209 }
00210
00211 if ( $sName == 'oxorder__oxbillcountry' ) {
00212 return $this->getBillCountry();
00213 }
00214
00215 if ( $sName == 'oxorder__oxdelcountry' ) {
00216 return $this->getDelCountry();
00217 }
00218 }
00219
00227 public function assign( $dbRecord )
00228 {
00229
00230 parent::assign( $dbRecord );
00231
00232 $oUtilsDate = oxUtilsDate::getInstance();
00233
00234
00235 $this->oxorder__oxorderdate = new oxField( $oUtilsDate->formatDBDate( $this->oxorder__oxorderdate->value));
00236 $this->oxorder__oxsenddate = new oxField( $oUtilsDate->formatDBDate( $this->oxorder__oxsenddate->value));
00237 }
00238
00246 protected function _getCountryTitle( $sCountryId )
00247 {
00248 $sTitle = null;
00249 if ( $sCountryId && $sCountryId != '-1' ) {
00250 $oCountry = oxNew( 'oxcountry' );
00251 $oCountry->loadInLang( $this->getOrderLanguage(), $sCountryId );
00252 $sTitle = $oCountry->oxcountry__oxtitle->value;
00253 }
00254
00255 return $sTitle;
00256 }
00257
00265 public function getOrderArticles( $blExcludeCanceled = false )
00266 {
00267
00268 if ( $this->_oArticles === null ) {
00269 $sTable = getViewName( "oxorderarticles" );
00270 $sSelect = "select {$sTable}.* from {$sTable}
00271 where {$sTable}.oxorderid = '".$this->getId() . "'" .
00272 ( $blExcludeCanceled ? " and {$sTable}.oxstorno != 1 ": " " ) ."
00273 order by {$sTable}.oxartid";
00274
00275
00276 $oArticles = oxNew( 'oxlist' );
00277 $oArticles->init( 'oxorderarticle' );
00278 $oArticles->selectString( $sSelect );
00279
00280
00281 return $oArticles;
00282 }
00283 return $this->_oArticles;
00284 }
00285
00293 public function setOrderArticleList( $aOrderArticleList )
00294 {
00295 $this->_oArticles = $aOrderArticleList;
00296 }
00297
00303 public function getOrderDeliveryPrice()
00304 {
00305 if ( $this->_oDelPrice != null ) {
00306 return $this->_oDelPrice;
00307 }
00308
00309 $this->_oDelPrice = oxNew( 'oxprice' );
00310 $this->_oDelPrice->setBruttoPriceMode();
00311 $this->_oDelPrice->setPrice( $this->oxorder__oxdelcost->value, $this->oxorder__oxdelvat->value );
00312 return $this->_oDelPrice;
00313 }
00314
00320 public function getOrderWrappingPrice()
00321 {
00322 if ( $this->_oWrappingPrice != null ) {
00323 return $this->_oWrappingPrice;
00324 }
00325
00326 $this->_oWrappingPrice = oxNew( 'oxprice' );
00327 $this->_oWrappingPrice->setBruttoPriceMode();
00328 $this->_oWrappingPrice->setPrice( $this->oxorder__oxwrapcost->value, $this->oxorder__oxwrapvat->value );
00329 return $this->_oWrappingPrice;
00330 }
00331
00337 public function getOrderPaymentPrice()
00338 {
00339 if ( $this->_oPaymentPrice != null ) {
00340 return $this->_oPaymentPrice;
00341 }
00342
00343 $this->_oPaymentPrice = oxNew( 'oxprice' );
00344 $this->_oPaymentPrice->setBruttoPriceMode();
00345 $this->_oPaymentPrice->setPrice( $this->oxorder__oxpaycost->value, $this->oxorder__oxpayvat->value );
00346 return $this->_oPaymentPrice;
00347 }
00348
00354 public function getOrderTsProtectionPrice()
00355 {
00356 if ( $this->_oTsProtectionPrice != null ) {
00357 return $this->_oTsProtectionPrice;
00358 }
00359
00360 $this->_oTsProtectionPrice = oxNew( 'oxprice' );
00361 $this->_oTsProtectionPrice->setBruttoPriceMode();
00362 $this->_oTsProtectionPrice->setPrice( $this->oxorder__oxtsprotectcosts->value, $this->getConfig()->getConfigParam( 'dDefaultVAT' ) );
00363 return $this->_oTsProtectionPrice;
00364 }
00365
00372 public function getOrderNetSum()
00373 {
00374 $dTotalNetSum = 0;
00375
00376 $dTotalNetSum += $this->oxorder__oxtotalnetsum->value;
00377 $dTotalNetSum += $this->getOrderDeliveryPrice()->getNettoPrice();
00378 $dTotalNetSum += $this->getOrderWrappingPrice()->getNettoPrice();
00379 $dTotalNetSum += $this->getOrderPaymentPrice()->getNettoPrice();
00380
00381 return $dTotalNetSum;
00382 }
00383
00404 public function finalizeOrder( oxBasket $oBasket, $oUser, $blRecalculatingOrder = false )
00405 {
00406
00407 $sGetChallenge = oxSession::getVar( 'sess_challenge' );
00408 if ( $this->_checkOrderExist( $sGetChallenge ) ) {
00409 oxUtils::getInstance()->logger( 'BLOCKER' );
00410
00411 return self::ORDER_STATE_ORDEREXISTS;
00412 }
00413
00414
00415 if ( !$blRecalculatingOrder ) {
00416
00417 $this->setId( $sGetChallenge );
00418
00419
00420 if ( $iOrderState = $this->validateOrder( $oBasket, $oUser ) ) {
00421 return $iOrderState;
00422 }
00423 }
00424
00425
00426 $this->_setUser( $oUser );
00427
00428
00429 $this->_loadFromBasket( $oBasket );
00430
00431
00432 $oUserPayment = $this->_setPayment( $oBasket->getPaymentId() );
00433
00434
00435
00436 if ( !$blRecalculatingOrder ) {
00437 $this->_setFolder();
00438 }
00439
00440
00441 $this->save();
00442
00443
00444
00445 if ( !$blRecalculatingOrder ) {
00446 $blRet = $this->_executePayment( $oBasket, $oUserPayment );
00447 if ( $blRet !== true ) {
00448 return $blRet;
00449 }
00450 }
00451
00452
00453 if ( !$blRecalculatingOrder && $oBasket->getTsProductId()) {
00454 $blRet = $this->_executeTsProtection( $oBasket );
00455 if ( $blRet !== true ) {
00456 return $blRet;
00457 }
00458 }
00459
00460
00461 oxSession::deleteVar( 'ordrem' );
00462 oxSession::deleteVar( 'stsprotection' );
00463
00464
00465 $this->_setOrderStatus( 'OK' );
00466
00467
00468 $oBasket->setOrderId( $this->getId() );
00469
00470
00471 $this->_updateWishlist( $oBasket->getContents(), $oUser );
00472
00473
00474 $this->_updateNoticeList( $oBasket->getContents(), $oUser );
00475
00476
00477
00478 if ( !$blRecalculatingOrder ) {
00479 $this->_markVouchers( $oBasket, $oUser );
00480 }
00481
00482
00483
00484 if ( !$blRecalculatingOrder ) {
00485 $iRet = $this->_sendOrderByEmail( $oUser, $oBasket, $oUserPayment );
00486 } else {
00487 $iRet = self::ORDER_STATE_OK;
00488 }
00489
00490 return $iRet;
00491 }
00492
00500 protected function _setOrderStatus( $sStatus )
00501 {
00502 $oDb = oxDb::getDb();
00503 $sQ = 'update oxorder set oxtransstatus='.$oDb->quote( $sStatus ).' where oxid='.$oDb->quote( $this->getId() );
00504 $oDb->execute( $sQ );
00505
00506
00507 $this->oxorder__oxtransstatus = new oxField( $sStatus, oxField::T_RAW );
00508 }
00509
00520 protected function _loadFromBasket( oxBasket $oBasket )
00521 {
00522 $myConfig = $this->getConfig();
00523
00524
00525 if ( $myConfig->getConfigParam( 'blStoreIPs' ) && $this->oxorder__oxip->value === null ) {
00526 $this->oxorder__oxip = new oxField(oxUtilsServer::getInstance()->getRemoteAddress(), oxField::T_RAW);
00527 }
00528
00529
00530 $this->oxorder__oxtotalnetsum = new oxField(oxUtils::getInstance()->fRound($oBasket->getDiscountedNettoPrice()), oxField::T_RAW);
00531 $this->oxorder__oxtotalbrutsum = new oxField($oBasket->getProductsPrice()->getBruttoSum(), oxField::T_RAW);
00532 $this->oxorder__oxtotalordersum = new oxField($oBasket->getPrice()->getBruttoPrice(), oxField::T_RAW);
00533
00534
00535 $iVatIndex = 1;
00536 foreach ( $oBasket->getProductVats(false) as $iVat => $dPrice ) {
00537 $this->{"oxorder__oxartvat$iVatIndex"} = new oxField($iVat, oxField::T_RAW);
00538 $this->{"oxorder__oxartvatprice$iVatIndex"} = new oxField($dPrice, oxField::T_RAW);
00539 $iVatIndex ++;
00540 }
00541
00542
00543 if ( ( $oPaymentCost = $oBasket->getCosts( 'oxpayment' ) ) ) {
00544 $this->oxorder__oxpaycost = new oxField($oPaymentCost->getBruttoPrice(), oxField::T_RAW);
00545 $this->oxorder__oxpayvat = new oxField($oPaymentCost->getVAT(), oxField::T_RAW);
00546 }
00547
00548
00549 if ( ( $oDeliveryCost = $oBasket->getCosts( 'oxdelivery' ) ) ) {
00550 $this->oxorder__oxdelcost = new oxField($oDeliveryCost->getBruttoPrice(), oxField::T_RAW);
00551
00552 $this->oxorder__oxdelvat = new oxField($oDeliveryCost->getVAT(), oxField::T_RAW);
00553 $this->oxorder__oxdeltype = new oxField($oBasket->getShippingId(), oxField::T_RAW);
00554 }
00555
00556
00557 if ( $this->oxorder__oxremark->value === null ) {
00558 $this->oxorder__oxremark = new oxField(oxSession::getVar( 'ordrem' ), oxField::T_RAW);
00559 }
00560
00561
00562 $oCur = $myConfig->getActShopCurrencyObject();
00563 $this->oxorder__oxcurrency = new oxField($oCur->name);
00564 $this->oxorder__oxcurrate = new oxField($oCur->rate, oxField::T_RAW);
00565
00566
00567 if ( ( $oVoucherDiscount = $oBasket->getVoucherDiscount() ) ) {
00568 $this->oxorder__oxvoucherdiscount = new oxField($oVoucherDiscount->getBruttoPrice(), oxField::T_RAW);
00569 }
00570
00571
00572 if ( $this->_blReloadDiscount ) {
00573 $dDiscount = 0;
00574 $aDiscounts = $oBasket->getDiscounts();
00575 if ( count($aDiscounts) > 0 ) {
00576 foreach ($aDiscounts as $oDiscount) {
00577 $dDiscount += $oDiscount->dDiscount;
00578 }
00579 }
00580 $this->oxorder__oxdiscount = new oxField($dDiscount, oxField::T_RAW);
00581 }
00582
00583
00584 $this->oxorder__oxlang = new oxField( $this->getOrderLanguage() );
00585
00586
00587
00588 $this->oxorder__oxtransstatus = new oxField('ERROR', oxField::T_RAW);
00589
00590
00591 $this->_setOrderArticles( $oBasket->getContents() );
00592
00593
00594 $this->_setWrapping( $oBasket );
00595
00596
00597 $this->_setTsProtection( $oBasket );
00598 }
00599
00606 public function getOrderLanguage()
00607 {
00608 if ( $this->_iOrderLang === null ) {
00609 if ( isset( $this->oxorder__oxlang->value ) ) {
00610 $this->_iOrderLang = oxLang::getInstance()->validateLanguage( $this->oxorder__oxlang->value );
00611 } else {
00612 $this->_iOrderLang = oxLang::getInstance()->getBaseLanguage();
00613 }
00614 }
00615 return $this->_iOrderLang;
00616 }
00617
00625 protected function _setUser( $oUser )
00626 {
00627
00628 $this->oxorder__oxuserid = new oxField($oUser->getId());
00629
00630
00631 $this->oxorder__oxbillcompany = clone $oUser->oxuser__oxcompany;
00632 $this->oxorder__oxbillemail = clone $oUser->oxuser__oxusername;
00633 $this->oxorder__oxbillfname = clone $oUser->oxuser__oxfname;
00634 $this->oxorder__oxbilllname = clone $oUser->oxuser__oxlname;
00635 $this->oxorder__oxbillstreet = clone $oUser->oxuser__oxstreet;
00636 $this->oxorder__oxbillstreetnr = clone $oUser->oxuser__oxstreetnr;
00637 $this->oxorder__oxbilladdinfo = clone $oUser->oxuser__oxaddinfo;
00638 $this->oxorder__oxbillustid = clone $oUser->oxuser__oxustid;
00639 $this->oxorder__oxbillcity = clone $oUser->oxuser__oxcity;
00640 $this->oxorder__oxbillcountryid = clone $oUser->oxuser__oxcountryid;
00641 $this->oxorder__oxbillstateid = clone $oUser->oxuser__oxstateid;
00642 $this->oxorder__oxbillzip = clone $oUser->oxuser__oxzip;
00643 $this->oxorder__oxbillfon = clone $oUser->oxuser__oxfon;
00644 $this->oxorder__oxbillfax = clone $oUser->oxuser__oxfax;
00645 $this->oxorder__oxbillsal = clone $oUser->oxuser__oxsal;
00646
00647
00648
00649 if ( ( $oDelAdress = $this->getDelAddressInfo() ) ) {
00650
00651 $this->oxorder__oxdelcompany = clone $oDelAdress->oxaddress__oxcompany;
00652 $this->oxorder__oxdelfname = clone $oDelAdress->oxaddress__oxfname;
00653 $this->oxorder__oxdellname = clone $oDelAdress->oxaddress__oxlname;
00654 $this->oxorder__oxdelstreet = clone $oDelAdress->oxaddress__oxstreet;
00655 $this->oxorder__oxdelstreetnr = clone $oDelAdress->oxaddress__oxstreetnr;
00656 $this->oxorder__oxdeladdinfo = clone $oDelAdress->oxaddress__oxaddinfo;
00657 $this->oxorder__oxdelcity = clone $oDelAdress->oxaddress__oxcity;
00658 $this->oxorder__oxdelcountryid = clone $oDelAdress->oxaddress__oxcountryid;
00659 $this->oxorder__oxdelstateid = clone $oDelAdress->oxaddress__oxstateid;
00660 $this->oxorder__oxdelzip = clone $oDelAdress->oxaddress__oxzip;
00661 $this->oxorder__oxdelfon = clone $oDelAdress->oxaddress__oxfon;
00662 $this->oxorder__oxdelfax = clone $oDelAdress->oxaddress__oxfax;
00663 $this->oxorder__oxdelsal = clone $oDelAdress->oxaddress__oxsal;
00664 }
00665 }
00666
00674 protected function _setWrapping( oxBasket $oBasket )
00675 {
00676 $myConfig = $this->getConfig();
00677
00678
00679 if ( ( $oWrappingCost = $oBasket->getCosts( 'oxwrapping' ) ) ) {
00680 $this->oxorder__oxwrapcost = new oxField($oWrappingCost->getBruttoPrice(), oxField::T_RAW);
00681
00682
00683 if ( $myConfig->getConfigParam( 'blCalcVatForWrapping' ) ) {
00684 $this->oxorder__oxwrapvat = new oxField($oWrappingCost->getVAT(), oxField::T_RAW);
00685 }
00686 }
00687
00688
00689 $this->oxorder__oxcardid = new oxField($oBasket->getCardId(), oxField::T_RAW);
00690
00691
00692 $this->oxorder__oxcardtext = new oxField($oBasket->getCardMessage(), oxField::T_RAW);
00693 }
00694
00703 protected function _setOrderArticles( $aArticleList )
00704 {
00705
00706 $this->_oArticles = oxNew( 'oxlist' );
00707 $iCurrLang = $this->getOrderLanguage();
00708
00709
00710 foreach ( $aArticleList as $oContent ) {
00711
00712
00713
00714 $oProduct = $oContent->getArticle( true, null, true);
00715
00716
00717 if ( $oProduct->isOrderArticle() ) {
00718 $oOrderArticle = $oProduct;
00719 } else {
00720
00721
00722 if ( $iCurrLang != $oProduct->getLanguage() ) {
00723 $oProduct->loadInLang( $iCurrLang, $oProduct->getProductId() );
00724 }
00725
00726
00727 $sSelList = '';
00728 if ( count( $aChosenSelList = $oContent->getChosenSelList() ) ) {
00729 foreach ( $aChosenSelList as $oItem ) {
00730 if ( $sSelList ) {
00731 $sSelList .= ", ";
00732 }
00733 $sSelList .= "{$oItem->name} : {$oItem->value}";
00734 }
00735 }
00736
00737 $oOrderArticle = oxNew( 'oxorderarticle' );
00738 $oOrderArticle->setIsNewOrderItem( true );
00739 $oOrderArticle->copyThis( $oProduct );
00740 $oOrderArticle->setId();
00741
00742 $oOrderArticle->oxorderarticles__oxartnum = clone $oProduct->oxarticles__oxartnum;
00743 $oOrderArticle->oxorderarticles__oxselvariant = new oxField( trim( $sSelList.' '.$oProduct->oxarticles__oxvarselect->getRawValue() ), oxField::T_RAW );
00744 $oOrderArticle->oxorderarticles__oxshortdesc = new oxField( $oProduct->oxarticles__oxshortdesc->getRawValue(), oxField::T_RAW );
00745
00746 $oOrderArticle->oxorderarticles__oxtitle = new oxField( trim( $oProduct->oxarticles__oxtitle->getRawValue() ), oxField::T_RAW );
00747
00748
00749 if ( !is_array( $aPersParams = $oProduct->getPersParams() ) ) {
00750 $aPersParams = $oContent->getPersParams();
00751 }
00752 if ( is_array( $aPersParams ) && count( $aPersParams )) {
00753 $oOrderArticle->oxorderarticles__oxpersparam = new oxField( serialize( $aPersParams ), oxField::T_RAW );
00754 }
00755 }
00756
00757
00758 $oOrderArticle->oxorderarticles__oxorderid = new oxField( $this->getId() );
00759 $oOrderArticle->oxorderarticles__oxartid = new oxField( $oContent->getProductId() );
00760 $oOrderArticle->oxorderarticles__oxamount = new oxField( $oContent->getAmount() );
00761
00762
00763 $oPrice = $oContent->getPrice();
00764 $oOrderArticle->oxorderarticles__oxnetprice = new oxField( $oPrice->getNettoPrice(), oxField::T_RAW );
00765 $oOrderArticle->oxorderarticles__oxvatprice = new oxField( $oPrice->getVatValue(), oxField::T_RAW );
00766 $oOrderArticle->oxorderarticles__oxbrutprice = new oxField( $oPrice->getBruttoPrice(), oxField::T_RAW );
00767 $oOrderArticle->oxorderarticles__oxvat = new oxField( $oPrice->getVat(), oxField::T_RAW );
00768
00769 $oUnitPtice = $oContent->getUnitPrice();
00770 $oOrderArticle->oxorderarticles__oxnprice = new oxField( $oUnitPtice->getNettoPrice(), oxField::T_RAW );
00771 $oOrderArticle->oxorderarticles__oxbprice = new oxField( $oUnitPtice->getBruttoPrice(), oxField::T_RAW );
00772
00773
00774 $oOrderArticle->oxorderarticles__oxwrapid = new oxField( $oContent->getWrappingId(), oxField::T_RAW );
00775
00776
00777 $oOrderArticle->oxorderarticles__oxordershopid = new oxField( $oContent->getShopId(), oxField::T_RAW );
00778
00779
00780 $oOrderArticle->oxorderarticles__oxisbundle = new oxField( $oContent->isBundle() );
00781
00782
00783
00784
00785 $oOrderArticle->oProduct = $oProduct;
00786
00787
00788 $this->_oArticles->offsetSet( $oOrderArticle->getId(), $oOrderArticle );
00789 }
00790 }
00791
00803 protected function _executePayment( oxBasket $oBasket, $oUserpayment )
00804 {
00805 $oPayTransaction = $this->_getGateway();
00806 $oPayTransaction->setPaymentParams( $oUserpayment );
00807
00808 if ( !$oPayTransaction->executePayment( $oBasket->getPrice()->getBruttoPrice(), $this ) ) {
00809 $this->delete();
00810
00811
00812 if ( method_exists( $oPayTransaction, 'getLastError' ) ) {
00813 if ( ( $sLastError = $oPayTransaction->getLastError() ) ) {
00814 return $sLastError;
00815 }
00816 }
00817
00818
00819 if ( method_exists( $oPayTransaction, 'getLastErrorNo' ) ) {
00820 if ( ( $iLastErrorNo = $oPayTransaction->getLastErrorNo() ) ) {
00821 return $iLastErrorNo;
00822 }
00823 }
00824
00825 return self::ORDER_STATE_PAYMENTERROR;
00826 }
00827 return true;
00828 }
00829
00836 protected function _getGateway()
00837 {
00838 return oxNew( 'oxPaymentGateway' );
00839 }
00840
00848 protected function _setPayment( $sPaymentid )
00849 {
00850
00851 $aDynvalue = oxSession::getVar( 'dynvalue' );
00852 $aDynvalue = $aDynvalue ? $aDynvalue : oxConfig::getParameter( 'dynvalue' );
00853
00854
00855 $oPayment = oxNew( 'oxpayment' );
00856
00857 if (!$oPayment->load( $sPaymentid )) {
00858 return null;
00859 }
00860
00861
00862 if ( !$aDynvalue && ( $oUserpayment = $this->getPaymentType() ) ) {
00863 if ( is_array( $aStoredDynvalue = $oUserpayment->getDynValues() ) ) {
00864 foreach ( $aStoredDynvalue as $oVal ) {
00865 $aDynvalue[$oVal->name] = $oVal->value;
00866 }
00867 }
00868 }
00869
00870 $oPayment->setDynValues( oxUtils::getInstance()->assignValuesFromText( $oPayment->oxpayments__oxvaldesc->value ) );
00871
00872
00873 $aDynVal = array();
00874
00875 if ( is_array( $aPaymentDynValues = $oPayment->getDynValues() ) ) {
00876 foreach ( $aPaymentDynValues as $key => $oVal ) {
00877 if ( isset( $aDynvalue[$oVal->name] ) ) {
00878 $oVal->value = $aDynvalue[$oVal->name];
00879 }
00880
00881
00882 $aPaymentDynValues[$key] = $oVal;
00883 $aDynVal[$oVal->name] = $oVal->value;
00884 }
00885 }
00886
00887
00888
00889
00890 $oUserpayment = oxNew( 'oxuserpayment' );
00891 $oUserpayment->oxuserpayments__oxuserid = clone $this->oxorder__oxuserid;
00892 $oUserpayment->oxuserpayments__oxpaymentsid = new oxField($sPaymentid, oxField::T_RAW);
00893 $oUserpayment->oxuserpayments__oxvalue = new oxField(oxUtils::getInstance()->assignValuesToText( $aDynVal ), oxField::T_RAW);
00894 $oUserpayment->oxpayments__oxdesc = clone $oPayment->oxpayments__oxdesc;
00895 $oUserpayment->oxpayments__oxlongdesc = clone $oPayment->oxpayments__oxlongdesc;
00896 $oUserpayment->setDynValues( $aPaymentDynValues );
00897 $oUserpayment->save();
00898
00899
00900 $this->oxorder__oxpaymentid = new oxField($oUserpayment->getId(), oxField::T_RAW);
00901 $this->oxorder__oxpaymenttype = clone $oUserpayment->oxuserpayments__oxpaymentsid;
00902
00903
00904 return $oUserpayment;
00905 }
00906
00912 protected function _setFolder()
00913 {
00914 $myConfig = $this->getConfig();
00915 $this->oxorder__oxfolder = new oxField(key( $myConfig->getShopConfVar( 'aOrderfolder', $myConfig->getShopId() ) ), oxField::T_RAW);
00916 }
00917
00927 protected function _updateWishlist( $aArticleList, $oUser )
00928 {
00929
00930 foreach ( $aArticleList as $oContent) {
00931 if ( ( $sWishId = $oContent->getWishId() ) ) {
00932
00933
00934 if ( $sWishId == $oUser->getId() ) {
00935 $oUserBasket = $oUser->getBasket( 'wishlist' );
00936 } else {
00937 $aWhere = array( 'oxuserbaskets.oxuserid' => $sWishId, 'oxuserbaskets.oxtitle' => 'wishlist' );
00938 $oUserBasket = oxNew( 'oxuserbasket' );
00939 $oUserBasket->assignRecord( $oUserBasket->buildSelectString( $aWhere ) );
00940 }
00941
00942
00943 if ( $oUserBasket ) {
00944 if ( !($sProdId = $oContent->getWishArticleId() )) {
00945 $sProdId = $oContent->getProductId();
00946 }
00947 $oUserBasketItem = $oUserBasket->getItem( $sProdId, $oContent->getSelList() );
00948 $dNewAmount = $oUserBasketItem->oxuserbasketitems__oxamount->value - $oContent->getAmount();
00949 if ( $dNewAmount < 0) {
00950 $dNewAmount = 0;
00951 }
00952 $oUserBasket->addItemToBasket( $sProdId, $dNewAmount, $oContent->getSelList(), true );
00953 }
00954 }
00955 }
00956 }
00957
00967 protected function _updateNoticeList( $aArticleList, $oUser )
00968 {
00969
00970 if ( $oUserBasket = $oUser->getBasket( 'noticelist' ) ) {
00971
00972 foreach ( $aArticleList as $oContent) {
00973 $sProdId = $oContent->getProductId();
00974
00975
00976 $oUserBasketItem = $oUserBasket->getItem( $sProdId, $oContent->getSelList(), $oContent->getPersParams() );
00977 $dNewAmount = $oUserBasketItem->oxuserbasketitems__oxamount->value - $oContent->getAmount();
00978 if ( $dNewAmount < 0) {
00979 $dNewAmount = 0;
00980 }
00981 $oUserBasket->addItemToBasket( $sProdId, $dNewAmount, $oContent->getSelList(), true, $oContent->getPersParams() );
00982 }
00983 }
00984 }
00985
00995 protected function _markVouchers( $oBasket, $oUser )
00996 {
00997 $this->_aVoucherList = $oBasket->getVouchers();
00998
00999 if ( is_array( $this->_aVoucherList ) ) {
01000 foreach ( $this->_aVoucherList as $sVoucherId => $oSimpleVoucher) {
01001 $oVoucher = oxNew( 'oxvoucher' );
01002 $oVoucher->load( $sVoucherId );
01003 $oVoucher->markAsUsed( $this->oxorder__oxid->value, $oUser->oxuser__oxid->value, $oSimpleVoucher->dVoucherdiscount );
01004
01005 $this->_aVoucherList[$sVoucherId] = $oVoucher;
01006 }
01007 }
01008 }
01009
01015 public function save()
01016 {
01017 if ( ( $blSave = parent::save() ) ) {
01018
01019
01020 $oOrderArticles = $this->getOrderArticles();
01021 if ( $oOrderArticles && count( $oOrderArticles ) > 0 ) {
01022 foreach ( $oOrderArticles as $oOrderArticle ) {
01023 $oOrderArticle->save();
01024 }
01025 }
01026 }
01027
01028 return $blSave;
01029 }
01030
01037 public function getDelAddressInfo()
01038 {
01039 $oDelAdress = null;
01040 if (! ($soxAddressId = oxConfig::getParameter( 'deladrid' ) ) ) {
01041 $soxAddressId = oxSession::getVar( 'deladrid' );
01042 }
01043 if ( $soxAddressId ) {
01044 $oDelAdress = oxNew( 'oxaddress' );
01045 $oDelAdress->load( $soxAddressId );
01046
01047
01048 if ( $oDelAdress->oxaddress__oxcountryid->value && $oDelAdress->oxaddress__oxcountryid->value != -1 ) {
01049 $oCountry = oxNew( 'oxcountry' );
01050 $oCountry->load( $oDelAdress->oxaddress__oxcountryid->value );
01051 $oDelAdress->oxaddress__oxcountry = clone $oCountry->oxcountry__oxtitle;
01052 }
01053 }
01054 return $oDelAdress;
01055 }
01056
01067 public function validateStock( $oBasket )
01068 {
01069 foreach ( $oBasket->getContents() as $key => $oContent ) {
01070 try {
01071 $oProd = $oContent->getArticle();
01072 } catch ( oxNoArticleException $oEx ) {
01073 $oBasket->removeItem( $key );
01074 throw $oEx;
01075 } catch ( oxArticleInputException $oEx ) {
01076 $oBasket->removeItem( $key );
01077 throw $oEx;
01078 }
01079
01080
01081 $dArtStockAmount = $oBasket->getArtStockInBasket( $oProd->getId(), $key );
01082 $iOnStock = $oProd->checkForStock( $oContent->getAmount(), $dArtStockAmount );
01083 if ( $iOnStock !== true ) {
01084 $oEx = oxNew( 'oxOutOfStockException' );
01085 $oEx->setMessage( 'EXCEPTION_OUTOFSTOCK_OUTOFSTOCK' );
01086 $oEx->setArticleNr( $oProd->oxarticles__oxartnum->value );
01087 $oEx->setProductId( $oProd->getId() );
01088 $oEx->setRemainingAmount( $oProd->oxarticles__oxstock->value );
01089 throw $oEx;
01090 }
01091 }
01092 }
01093
01099 protected function _insert()
01100 {
01101 $myConfig = $this->getConfig();
01102 $oUtilsDate = oxUtilsDate::getInstance();
01103
01104
01105 if ( !$this->oxorder__oxorderdate->value ) {
01106 $this->oxorder__oxorderdate = new oxField(date( 'Y-m-d H:i:s', $oUtilsDate->getTime() ), oxField::T_RAW);
01107 } else {
01108 $this->oxorder__oxorderdate = new oxField( $oUtilsDate->formatDBDate( $this->oxorder__oxorderdate->value, true ));
01109 }
01110 $this->oxorder__oxshopid = new oxField($myConfig->getShopId(), oxField::T_RAW);
01111
01112 $this->oxorder__oxsenddate = new oxField( $oUtilsDate->formatDBDate( $this->oxorder__oxsenddate->value, true ));
01113
01114 if ( ( $blInsert = parent::_insert() ) ) {
01115
01116 if ( !$this->oxorder__oxordernr->value ) {
01117 $aWhere = '';
01118
01119 if ( $this->_blSeparateNumbering ) {
01120 $aWhere = array( 'oxshopid = "'.$myConfig->getShopId().'"' );
01121 }
01122 $this->_setRecordNumber( 'oxordernr', $aWhere );
01123 }
01124 }
01125 return $blInsert;
01126 }
01127
01133 protected function _update()
01134 {
01135 $this->oxorder__oxsenddate = new oxField(oxUtilsDate::getInstance()->formatDBDate( $this->oxorder__oxsenddate->value, true ));
01136 return parent::_update();
01137 }
01138
01147 public function delete( $sOxId = null )
01148 {
01149 if ( $sOxId ) {
01150 if ( !$this->load( $sOxId ) ) {
01151
01152 return false;
01153 }
01154 } elseif ( !$sOxId ) {
01155 $sOxId = $this->getId();
01156 }
01157
01158
01159 if ( !$sOxId ) {
01160 return false;
01161 }
01162
01163
01164
01165 $oOrderArticles = $this->getOrderArticles( false );
01166 foreach ( $oOrderArticles as $oOrderArticle ) {
01167 $oOrderArticle->delete();
01168 }
01169
01170
01171 if ( $oPaymentType = $this->getPaymentType() ) {
01172 $oPaymentType->delete();
01173 }
01174
01175 return parent::delete( $sOxId );
01176 }
01177
01187 public function recalculateOrder( $aNewArticles = array() )
01188 {
01189 oxDb::startTransaction();
01190
01191 try {
01192 $oBasket = $this->_getOrderBasket();
01193
01194
01195 $this->_addOrderArticlesToBasket( $oBasket, $this->getOrderArticles( true ) );
01196
01197
01198 $this->_addArticlesToBasket( $oBasket, $aNewArticles );
01199
01200
01201 $oBasket->calculateBasket( true );
01202
01203
01204 $iRet = $this->finalizeOrder( $oBasket, $this->getOrderUser(), true );
01205
01206
01207 if ( $iRet !== 1 ) {
01208 oxDb::rollbackTransaction();
01209 } else {
01210 oxDb::commitTransaction();
01211 }
01212
01213 } catch( Exception $oE ) {
01214
01215 oxDb::rollbackTransaction();
01216
01217 if ( defined( 'OXID_PHP_UNIT' ) ) {
01218 throw $oE;
01219 }
01220 }
01221 }
01222
01223 protected $_oOrderBasket = null;
01231 protected function _getOrderBasket( $blStockCheck = true )
01232 {
01233 $this->_oOrderBasket = oxNew( "oxbasket" );
01234
01235
01236 $this->_oOrderBasket->setStockCheckMode( $blStockCheck );
01237
01238
01239 $this->_oOrderBasket->setBasketUser( $this->getOrderUser() );
01240
01241
01242 $this->_oOrderBasket->setOrderId( $this->getId() );
01243
01244
01245 $aCurrencies = $this->getConfig()->getCurrencyArray();
01246 foreach ( $aCurrencies as $oCur ) {
01247 if ($oCur->name == $this->oxorder__oxcurrency->value) {
01248 $oBasketCur = $oCur;
01249 break;
01250 }
01251 }
01252
01253
01254 $this->_oOrderBasket->setBasketCurrency( $oBasketCur );
01255
01256
01257 $this->_oOrderBasket->setCardId( $this->oxorder__oxcardid->value );
01258 $this->_oOrderBasket->setCardMessage( $this->oxorder__oxcardtext->value );
01259
01260 if ( $this->_blReloadDiscount ) {
01261 $oDb = oxDb::getDb( true );
01262
01263 $this->_oOrderBasket->setSkipVouchersChecking( true );
01264
01265
01266 $sQ = 'select oxid from oxvouchers where oxorderid = '.$oDb->quote( $this->getId() );
01267 $aVouchers = $oDb->getAll( $sQ );
01268 foreach ( $aVouchers as $aVoucher ) {
01269 $this->_oOrderBasket->addVoucher( $aVoucher['oxid'] );
01270 }
01271 } else {
01272 $this->_oOrderBasket->setDiscountCalcMode( false );
01273 $this->_oOrderBasket->setVoucherDiscount( $this->oxorder__oxvoucherdiscount->value );
01274 $this->_oOrderBasket->setTotalDiscount( $this->oxorder__oxdiscount->value );
01275 }
01276
01277
01278 if ( !$this->_blReloadDelivery ) {
01279 $this->_oOrderBasket->setDeliveryPrice( $this->getOrderDeliveryPrice() );
01280 } else {
01281
01282 $this->_oOrderBasket->setShipping( $this->oxorder__oxdeltype->value );
01283 $this->_oOrderBasket->setDeliveryPrice( null );
01284 }
01285
01286
01287 $this->_oOrderBasket->setPayment( $this->oxorder__oxpaymenttype->value );
01288
01289 return $this->_oOrderBasket;
01290 }
01291
01300 public function setDelivery( $sDeliveryId )
01301 {
01302 $this->reloadDelivery( true );
01303 $this->oxorder__oxdeltype = new oxField( $sDeliveryId );
01304 }
01305
01311 public function getOrderUser()
01312 {
01313 if ($this->_oUser === null ) {
01314 $this->_oUser = oxNew( "oxuser" );
01315 $this->_oUser->load( $this->oxorder__oxuserid->value );
01316
01317
01318 if ( $this->_isLoaded ) {
01319
01320 $this->_oUser->oxuser__oxcompany = clone $this->oxorder__oxbillcompany;
01321 $this->_oUser->oxuser__oxusername = clone $this->oxorder__oxbillemail;
01322 $this->_oUser->oxuser__oxfname = clone $this->oxorder__oxbillfname;
01323 $this->_oUser->oxuser__oxlname = clone $this->oxorder__oxbilllname;
01324 $this->_oUser->oxuser__oxstreet = clone $this->oxorder__oxbillstreet;
01325 $this->_oUser->oxuser__oxstreetnr = clone $this->oxorder__oxbillstreetnr;
01326 $this->_oUser->oxuser__oxaddinfo = clone $this->oxorder__oxbilladdinfo;
01327 $this->_oUser->oxuser__oxustid = clone $this->oxorder__oxbillustid;
01328
01329
01330 $this->_oUser->oxuser__oxcity = clone $this->oxorder__oxbillcity;
01331 $this->_oUser->oxuser__oxcountryid = clone $this->oxorder__oxbillcountryid;
01332 $this->_oUser->oxuser__oxstateid = clone $this->oxorder__oxbillstateid;
01333 $this->_oUser->oxuser__oxzip = clone $this->oxorder__oxbillzip;
01334 $this->_oUser->oxuser__oxfon = clone $this->oxorder__oxbillfon;
01335 $this->_oUser->oxuser__oxfax = clone $this->oxorder__oxbillfax;
01336 $this->_oUser->oxuser__oxsal = clone $this->oxorder__oxbillsal;
01337 }
01338 }
01339
01340 return $this->_oUser;
01341 }
01342
01350 public function pdfFooter( $oPdf )
01351 {
01352 }
01353
01361 public function pdfHeaderplus( $oPdf )
01362 {
01363 }
01364
01372 public function pdfHeader( $oPdf )
01373 {
01374 }
01375
01384 public function genPdf( $sFilename, $iSelLang = 0 )
01385 {
01386 }
01387
01393 public function getInvoiceNum()
01394 {
01395 $sQ = 'select max(oxorder.oxinvoicenr) from oxorder where oxorder.oxshopid = "'.$this->getConfig()->getShopId().'" ';
01396 return ( ( int ) oxDb::getDb()->getOne( $sQ ) + 1 );
01397 }
01398
01404 public function getNextBillNum()
01405 {
01406 $sQ = 'select max(cast(oxorder.oxbillnr as unsigned)) from oxorder where oxorder.oxshopid = "'.$this->getConfig()->getShopId().'" ';
01407 return ( ( int ) oxDb::getDb()->getOne( $sQ ) + 1 );
01408 }
01409
01415 public function getShippingSetList()
01416 {
01417
01418 if ( !( $sShipId = $this->oxorder__oxdelcountryid->value ) ) {
01419 $sShipId = $this->oxorder__oxbillcountryid->value;
01420 }
01421
01422 $oBasket = $this->_getOrderBasket( false );
01423
01424
01425 $this->_addOrderArticlesToBasket( $oBasket, $this->getOrderArticles() );
01426
01427
01428 $oBasket->calculateBasket( true );
01429
01430
01431 $oDeliveryList = oxNew( "oxDeliveryList", "core" );
01432 $oDeliveryList->setCollectFittingDeliveriesSets( true );
01433
01434 return $oDeliveryList->getDeliveryList( $oBasket, $this->getOrderUser(), $sShipId );
01435 }
01436
01442 public function getVoucherNrList()
01443 {
01444 $oDB = oxDb::getDb( true );
01445 $aVouchers = array();
01446 $sSelect = "select oxvouchernr from oxvouchers where oxorderid = ".$oDB->quote( $this->oxorder__oxid->value );
01447 $rs = $oDB->execute( $sSelect);
01448 if ($rs != false && $rs->recordCount() > 0) {
01449 while (!$rs->EOF) {
01450 $aVouchers[] = $rs->fields['oxvouchernr'];
01451 $rs->moveNext();
01452 }
01453 }
01454 return $aVouchers;
01455 }
01456
01464 public function getOrderSum( $blToday = false )
01465 {
01466 $sSelect = 'select sum(oxtotalordersum / oxcurrate) from oxorder where ';
01467 $sSelect .= 'oxshopid = "'.$this->getConfig()->getShopId().'" and oxorder.oxstorno != "1" ';
01468
01469 if ( $blToday ) {
01470 $sSelect .= 'and oxorderdate like "'.date( 'Y-m-d').'%" ';
01471 }
01472
01473 return ( double ) oxDb::getDb()->getOne( $sSelect );
01474 }
01475
01483 public function getOrderCnt( $blToday = false )
01484 {
01485 $sSelect = 'select count(*) from oxorder where ';
01486 $sSelect .= 'oxshopid = "'.$this->getConfig()->getShopId().'" and oxorder.oxstorno != "1" ';
01487
01488 if ( $blToday ) {
01489 $sSelect .= 'and oxorderdate like "'.date( 'Y-m-d').'%" ';
01490 }
01491
01492 return ( int ) oxDb::getDb()->getOne( $sSelect );
01493 }
01494
01495
01503 protected function _checkOrderExist( $sOxId = null )
01504 {
01505 if ( !$sOxId) {
01506 return false;
01507 }
01508
01509 $oDb = oxDb::getDb();
01510 if ( $oDb->getOne( 'select oxid from oxorder where oxid = '.$oDb->quote( $sOxId ) ) ) {
01511 return true;
01512 }
01513
01514 return false;
01515 }
01516
01526 protected function _sendOrderByEmail( $oUser = null, $oBasket = null, $oPayment = null )
01527 {
01528 $iRet = self::ORDER_STATE_MAILINGERROR;
01529
01530
01531 $this->_oUser = $oUser;
01532 $this->_oBasket = $oBasket;
01533 $this->_oPayment = $oPayment;
01534
01535 $oxEmail = oxNew( 'oxemail' );
01536
01537
01538 if ( $oxEmail->sendOrderEMailToUser( $this ) ) {
01539
01540 $iRet = self::ORDER_STATE_OK;
01541 }
01542
01543
01544 $oxEmail->sendOrderEMailToOwner( $this );
01545
01546 return $iRet;
01547 }
01548
01554 public function getBasket()
01555 {
01556 return $this->_oBasket;
01557 }
01558
01564 public function getPayment()
01565 {
01566 return $this->_oPayment;
01567 }
01568
01574 public function getVoucherList()
01575 {
01576 return $this->_aVoucherList;
01577 }
01578
01584 public function getDelSet()
01585 {
01586 if ( $this->_oDelSet == null ) {
01587
01588 $this->_oDelSet = oxNew( 'oxdeliveryset' );
01589 $this->_oDelSet->load( $this->oxorder__oxdeltype->value );
01590 }
01591
01592 return $this->_oDelSet;
01593 }
01594
01600 public function getPaymentType()
01601 {
01602 if ( $this->oxorder__oxpaymentid->value && $this->_oPaymentType === null ) {
01603 $this->_oPaymentType = false;
01604 $oPaymentType = oxNew( 'oxuserpayment' );
01605 if ( $oPaymentType->load( $this->oxorder__oxpaymentid->value ) ) {
01606 $this->_oPaymentType = $oPaymentType;
01607 }
01608 }
01609
01610 return $this->_oPaymentType;
01611 }
01612
01618 public function getGiftCard()
01619 {
01620 if ( $this->oxorder__oxcardid->value && $this->_oGiftCard == null ) {
01621 $this->_oGiftCard = oxNew( 'oxwrapping' );
01622 $this->_oGiftCard->load( $this->oxorder__oxcardid->value );
01623 }
01624
01625 return $this->_oGiftCard;
01626 }
01627
01635 public function setSeparateNumbering( $blSeparateNumbering = null )
01636 {
01637 $this->_blSeparateNumbering = $blSeparateNumbering;
01638 }
01639
01647 public function getLastUserPaymentType( $sUserId)
01648 {
01649 $oDb = oxDb::getDb();
01650 $sQ = 'select oxorder.oxpaymenttype from oxorder where oxorder.oxshopid="'.$this->getConfig()->getShopId().'" and oxorder.oxuserid='.$oDb->quote( $sUserId ).' order by oxorder.oxorderdate desc ';
01651 $sLastPaymentId = $oDb->getOne( $sQ );
01652 return $sLastPaymentId;
01653 }
01654
01663 protected function _addOrderArticlesToBasket( $oBasket, $aOrderArticles )
01664 {
01665
01666 if ( count( $aOrderArticles ) > 0 ) {
01667
01668
01669 foreach ( $aOrderArticles as $oOrderArticle ) {
01670 $oBasket->addOrderArticleToBasket( $oOrderArticle );
01671 }
01672 }
01673 }
01674
01683 protected function _addArticlesToBasket( $oBasket, $aArticles )
01684 {
01685
01686 if ( count($aArticles ) > 0 ) {
01687
01688
01689 foreach ( $aArticles as $oArticle ) {
01690 $aSel = isset( $oArticle->oxorderarticles__oxselvariant ) ? $oArticle->oxorderarticles__oxselvariant->value : null;
01691 $aPersParam = isset( $oArticle->oxorderarticles__oxpersparam ) ? $oArticle->getPersParams() : null;
01692 $oBasket->addToBasket( $oArticle->oxorderarticles__oxartid->value,
01693 $oArticle->oxorderarticles__oxamount->value,
01694 $aSel, $aPersParam );
01695 }
01696 }
01697 }
01698
01704 public function getTotalOrderSum()
01705 {
01706 $oCur = $this->getConfig()->getActShopCurrencyObject();
01707 return number_format( (double)$this->oxorder__oxtotalordersum->value, $oCur->decimal, '.', '');
01708 }
01709
01717 public function getProductVats( $blFormatCurrency = true )
01718 {
01719 $aVats = array();
01720 if ($this->oxorder__oxartvat1->value) {
01721 $aVats[$this->oxorder__oxartvat1->value] = $this->oxorder__oxartvatprice1->value;
01722 }
01723 if ($this->oxorder__oxartvat2->value) {
01724 $aVats[$this->oxorder__oxartvat2->value] = $this->oxorder__oxartvatprice2->value;
01725 }
01726
01727 if ( $blFormatCurrency ) {
01728 $oLang = oxLang::getInstance();
01729 $oCur = $this->getConfig()->getActShopCurrencyObject();
01730 foreach ( $aVats as $sKey => $dVat ) {
01731 $aVats[$sKey] = $oLang->formatCurrency( $dVat, $oCur );
01732 }
01733 }
01734 return $aVats;
01735 }
01736
01742 public function getBillCountry()
01743 {
01744 if ( !$this->oxorder__oxbillcountry->value ) {
01745 $this->oxorder__oxbillcountry = new oxField($this->_getCountryTitle( $this->oxorder__oxbillcountryid->value ));
01746 }
01747 return $this->oxorder__oxbillcountry;
01748 }
01749
01755 public function getDelCountry()
01756 {
01757 if ( !$this->oxorder__oxdelcountry->value ) {
01758 $this->oxorder__oxdelcountry = new oxField($this->_getCountryTitle( $this->oxorder__oxdelcountryid->value ));
01759 }
01760 return $this->oxorder__oxdelcountry;
01761 }
01769 public function reloadDelivery( $blReload )
01770 {
01771 $this->_blReloadDelivery = $blReload;
01772 }
01773
01781 public function reloadDiscount( $blReload )
01782 {
01783 $this->_blReloadDiscount = $blReload;
01784 }
01785
01791 public function cancelOrder()
01792 {
01793 $this->oxorder__oxstorno = new oxField( 1 );
01794 if ( $this->save() ) {
01795
01796 foreach ( $this->getOrderArticles() as $oOrderArticle ) {
01797 $oOrderArticle->cancelOrderArticle();
01798 }
01799 }
01800 }
01801
01808 public function getOrderCurrency()
01809 {
01810 if ( $this->_oOrderCurrency === null ) {
01811
01812
01813 $aCurrencies = $this->getConfig()->getCurrencyArray();
01814 $this->_oOrderCurrency = current( $aCurrencies );
01815
01816 foreach ( $aCurrencies as $oCurr ) {
01817 if ( $oCurr->name == $this->oxorder__oxcurrency->value ) {
01818 $this->_oOrderCurrency = $oCurr;
01819 break;
01820 }
01821 }
01822 }
01823 return $this->_oOrderCurrency;
01824 }
01825
01835 public function validateOrder( $oBasket, $oUser )
01836 {
01837
01838 $iValidState = $this->validateStock( $oBasket );
01839
01840 if ( !$iValidState ) {
01841
01842 $iValidState = $this->validateDelivery( $oBasket );
01843 }
01844
01845 if ( !$iValidState ) {
01846
01847 $iValidState = $this->validatePayment( $oBasket );
01848 }
01849
01850 return $iValidState;
01851 }
01852
01861 public function validateDelivery( $oBasket )
01862 {
01863
01864
01865 if ( $oBasket->getPaymentId() == 'oxempty') {
01866 return;
01867 }
01868 $oDb = oxDb::getDb();
01869
01870 $oDelSet = oxNew( "oxdeliveryset" );
01871 $sTable = $oDelSet->getViewName();
01872
01873 $sQ = "select 1 from {$sTable} where {$sTable}.oxid=".
01874 $oDb->quote( $oBasket->getShippingId() )." and ".$oDelSet->getSqlActiveSnippet();
01875
01876 if ( !$oDb->getOne( $sQ ) ) {
01877
01878 return self::ORDER_STATE_INVALIDDELIVERY;
01879 }
01880 }
01881
01890 public function validatePayment( $oBasket )
01891 {
01892 $oDb = oxDb::getDb();
01893
01894 $oPayment = oxNew( "oxpayment" );
01895 $sTable = $oPayment->getViewName();
01896
01897 $sQ = "select 1 from {$sTable} where {$sTable}.oxid=".
01898 $oDb->quote( $oBasket->getPaymentId() )." and ".$oPayment->getSqlActiveSnippet();
01899
01900 if ( !$oDb->getOne( $sQ ) ) {
01901 return self::ORDER_STATE_INVALIDPAYMENT;
01902 }
01903 }
01904
01912 protected function _setTsProtection( oxBasket $oBasket )
01913 {
01914
01915 if ( ( $oTsProtectionCost = $oBasket->getCosts( 'oxtsprotection' ) ) ) {
01916 $this->oxorder__oxtsprotectcosts = new oxField($oTsProtectionCost->getBruttoPrice(), oxField::T_RAW);
01917 }
01918
01919
01920 $this->oxorder__oxtsprotectid = new oxField($oBasket->getTsProductId(), oxField::T_RAW);
01921 }
01922
01931 protected function _executeTsProtection( oxBasket $oBasket )
01932 {
01933 $aValues['tsProductId'] = $this->oxorder__oxtsprotectid->value;
01934 $aValues['amount'] = $oBasket->getPrice()->getBruttoPrice();
01935 $oCur = $this->getConfig()->getActShopCurrencyObject();
01936 $aValues['currency'] = $oCur->name;
01937 $aValues['buyerEmail'] = $this->oxorder__oxbillemail->value;
01938 $aValues['shopCustomerID'] = $this->oxorder__oxuserid->value;
01939 $aValues['shopOrderID'] = $this->oxorder__oxordernr->value;
01940 $aValues['orderDate'] = $this->oxorder__oxorderdate->value;
01941 $sPaymentId = $oBasket->getPaymentId();
01942 $oTsProtection = oxNew('oxtsprotection');
01943 $blRes = $oTsProtection->requestForTsProtection( $aValues, $sPaymentId );
01944
01945
01946
01947
01948 return true;
01949 }
01950
01956 public function getFormattedTotalNetSum()
01957 {
01958 return oxLang::getInstance()->formatCurrency( $this->oxorder__oxtotalnetsum->value, $this->getOrderCurrency() );
01959 }
01960
01966 public function getFormattedTotalBrutSum()
01967 {
01968 return oxLang::getInstance()->formatCurrency( $this->oxorder__oxtotalbrutsum->value, $this->getOrderCurrency() );
01969 }
01970
01976 public function getFormattedeliveryCost()
01977 {
01978 return oxLang::getInstance()->formatCurrency( $this->oxorder__oxdelcost->value, $this->getOrderCurrency() );
01979 }
01980
01986 public function getFormattedPayCost()
01987 {
01988 return oxLang::getInstance()->formatCurrency( $this->oxorder__oxpaycost->value, $this->getOrderCurrency() );
01989 }
01990
01996 public function getFormattedWrapCost()
01997 {
01998 return oxLang::getInstance()->formatCurrency( $this->oxorder__oxwrapcost->value, $this->getOrderCurrency() );
01999 }
02000
02006 public function getFormattedTotalVouchers()
02007 {
02008 return oxLang::getInstance()->formatCurrency( $this->oxorder__oxvoucherdiscount->value, $this->getOrderCurrency() );
02009 }
02010
02016 public function getFormattedDiscount()
02017 {
02018 return oxLang::getInstance()->formatCurrency( $this->oxorder__oxdiscount->value, $this->getOrderCurrency() );
02019 }
02020
02026 public function getFormattedTotalOrderSum()
02027 {
02028 return oxLang::getInstance()->formatCurrency( $this->oxorder__oxtotalordersum->value, $this->getOrderCurrency() );
02029 }
02030
02036 public function getShipmentTrackingUrl()
02037 {
02038 if ( $this->_sShipTrackUrl === null && $this->oxorder__oxtrackcode->value ) {
02039 $this->_sShipTrackUrl = "http://www.dpd.de/cgi-bin/delistrack?typ=1&lang=de&pknr=".$this->oxorder__oxtrackcode->value;
02040 }
02041
02042 return $this->_sShipTrackUrl;
02043 }
02044 }