Ordermanager/src/Modules/Application/Model/d3_oxemail_ordermanager.php

704 lines
23 KiB
PHP
Raw Normal View History

2017-12-20 13:43:20 +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 (C) D3 Data Development (Inh. Thomas Dartsch)
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
* @link http://www.oxidmodule.com
*/
namespace D3\Ordermanager\Modules\Application\Model;
2018-01-11 11:45:22 +01:00
use D3\ModCfg\Application\Model\Exception\d3_cfg_mod_exception;
2019-05-15 11:31:18 +02:00
use D3\ModCfg\Application\Model\Exception\d3ParameterNotFoundException;
2018-01-11 11:45:22 +01:00
use D3\ModCfg\Application\Model\Exception\d3ShopCompatibilityAdapterException;
2019-05-15 11:31:18 +02:00
use D3\ModCfg\Application\Model\Log\d3LogInterface;
2017-12-20 13:43:20 +01:00
use D3\Ordermanager\Application\Model\d3ordermanager;
use D3\Ordermanager\Application\Model\d3ordermanager_pdfhandler;
use D3\ModCfg\Application\Model\Configuration\d3_cfg_mod;
use D3\ModCfg\Application\Model\Shopcompatibility\d3ShopCompatibilityAdapterHandler;
use D3\ModCfg\Application\Model\d3str;
2018-01-11 11:45:22 +01:00
use Doctrine\DBAL\DBALException;
2019-05-15 11:31:18 +02:00
use Exception;
2017-12-20 13:43:20 +01:00
use OxidEsales\Eshop\Application\Model\Order;
use OxidEsales\Eshop\Application\Model\Shop;
use OxidEsales\Eshop\Application\Model\Remark;
use OxidEsales\Eshop\Application\Model\Basket;
use OxidEsales\Eshop\Application\Model\Payment;
use OxidEsales\Eshop\Application\Model\Content;
2019-05-15 11:31:18 +02:00
use OxidEsales\Eshop\Core\Config;
use OxidEsales\Eshop\Core\Exception\ArticleException;
use OxidEsales\Eshop\Core\Exception\ArticleInputException;
2018-01-11 11:45:22 +01:00
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
use OxidEsales\Eshop\Core\Exception\DatabaseException;
2019-05-15 11:31:18 +02:00
use OxidEsales\Eshop\Core\Exception\NoArticleException;
2018-01-11 11:45:22 +01:00
use OxidEsales\Eshop\Core\Exception\StandardException;
2019-05-15 11:31:18 +02:00
use OxidEsales\Eshop\Core\Language;
2017-12-20 13:43:20 +01:00
use OxidEsales\Eshop\Core\Module\Module;
use OxidEsales\Eshop\Core\UtilsView;
2019-05-15 11:31:18 +02:00
use Smarty;
2017-12-20 13:43:20 +01:00
class d3_oxemail_ordermanager extends d3_oxemail_ordermanager_parent
{
2019-05-15 11:31:18 +02:00
private $_sModId = 'd3_ordermanager';
2017-12-20 13:43:20 +01:00
protected $_sOrderManagerInfoTemplate = 'd3ordermanager_info_html.tpl';
protected $_sOrderManagerInfoPlainTemplate = 'd3ordermanager_info_plain.tpl';
/** @var d3ordermanager */
public $oOrderManager;
/**
2019-05-15 11:31:18 +02:00
* d3_oxemail_ordermanager constructor.
* @throws Exception
2017-12-20 13:43:20 +01:00
*/
public function __construct()
{
2019-05-15 11:31:18 +02:00
d3GetModCfgDIC()->setParameter('d3.ordermanager.modcfgid', $this->_sModId);
/** @var Config _oConfig */
$this->_oConfig = d3GetModCfgDIC()->get('d3ox.ordermanager.'.Config::class);
2017-12-20 13:43:20 +01:00
parent::__construct();
}
/**
* @param array $aOrderManagerNotes
2019-05-15 11:31:18 +02:00
*
2017-12-20 13:43:20 +01:00
* @return bool
2019-05-15 11:31:18 +02:00
* @throws Exception
2017-12-20 13:43:20 +01:00
*/
public function d3sendOrderManagerEmail($aOrderManagerNotes)
{
startProfile(__METHOD__);
$oShop = $this->_getShop();
2019-07-09 10:27:20 +02:00
/** @var Smarty $oSmarty */
2017-12-20 13:43:20 +01:00
$oSmarty = $this->_getSmarty();
2019-05-15 11:31:18 +02:00
/** @var Config $config */
$config = d3GetModCfgDIC()->get('d3ox.ordermanager.'.Config::class);
2017-12-20 13:43:20 +01:00
$this->_setMailParams($oShop);
$this->setViewData("aNotes", $aOrderManagerNotes);
2019-05-15 11:31:18 +02:00
$this->setViewData("shopTemplateDir", $config->getTemplateDir(false));
2017-12-20 13:43:20 +01:00
$this->setViewData("oShop", $oShop);
2019-05-15 11:31:18 +02:00
$oSmarty->template_dir = $config->getTemplateDir(false);
2017-12-20 13:43:20 +01:00
$this->_processViewArray();
$this->setBody($oSmarty->fetch($this->_sOrderManagerInfoTemplate));
$this->setAltBody($oSmarty->fetch($this->_sOrderManagerInfoPlainTemplate));
2019-05-15 11:31:18 +02:00
/** @var d3LogInterface $oLog */
$oLog = d3GetModCfgDIC()->get('d3.ordermanager.log');
$oLog->notice(
2017-12-20 13:43:20 +01:00
__CLASS__,
__FUNCTION__,
__LINE__,
'send job execution info mail',
$this->getBody()
);
2019-05-15 11:31:18 +02:00
/** @var Language $oLang */
$oLang = d3GetModCfgDIC()->get('d3ox.ordermanager.'.Language::class);
$sSubject = $oLang->translateString('D3_ORDERMANAGER_MAIL_ORDERSUBJECT', 0);
2017-12-20 13:43:20 +01:00
$this->setSubject($sSubject);
$sFullName = $oShop->__get('oxshops__oxname')->getRawValue();
$this->setRecipient($oShop->getFieldData('oxinfoemail'), $sFullName);
$this->setReplyTo($oShop->getFieldData('oxinfoemail'), $oShop->__get('oxshops__oxname')->getRawValue());
$blSuccess = $this->send();
stopProfile(__METHOD__);
return $blSuccess;
}
/**
* @param $sOxId
* @return Order
2019-05-15 11:31:18 +02:00
* @throws Exception
2017-12-20 13:43:20 +01:00
*/
public function d3getOrder($sOxId)
{
if (strstr($sOxId, '@@')) {
$aOxId = explode('@@', $sOxId);
$sOxId = $aOxId[0];
}
/** @var $oOrder Order */
2019-05-15 11:31:18 +02:00
$oOrder = d3GetModCfgDIC()->get('d3ox.ordermanager.'.Order::class);
$oOrder->load($sOxId);
2017-12-20 13:43:20 +01:00
return $oOrder;
}
/**
* @param $sOxId
* @return d3ordermanager
2019-05-15 11:31:18 +02:00
* @throws Exception
2017-12-20 13:43:20 +01:00
*/
public function d3getOrderManager($sOxId)
{
/** @var $oOrder d3ordermanager */
2019-05-15 11:31:18 +02:00
$oOrderManager = d3GetModCfgDIC()->get(d3ordermanager::class);
$oOrderManager->load($sOxId);
return $oOrderManager;
2017-12-20 13:43:20 +01:00
}
/**
* @param d3ordermanager $oOrderManager
* @return bool
2018-01-11 11:45:22 +01:00
* @throws DBALException
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
* @throws DatabaseException
* @throws StandardException
* @throws d3ShopCompatibilityAdapterException
* @throws d3_cfg_mod_exception
2019-05-15 11:31:18 +02:00
* @throws Exception
2017-12-20 13:43:20 +01:00
*/
public function sendOrderManagerMail(d3ordermanager $oOrderManager)
{
$this->oOrderManager = $oOrderManager;
$aContent = $this->getOrderManagerMailContent($oOrderManager);
$oShop = $this->_getShop();
$this->setBody($aContent['html']);
$this->setAltBody($aContent['plain']);
$this->setSubject($aContent['subject']);
$this->_d3SetOrderManagerReplyAddress($oOrderManager, $oShop);
$oRemark = $this->_d3SetOrderManagerMailRecipients($oShop);
$this->_d3AddOrderManagerPdfAttachment($oOrderManager);
$blSuccess = $this->send();
if ($blSuccess && $oRemark) {
$oRemark->save();
}
return $blSuccess;
}
/**
2019-05-15 11:31:18 +02:00
* @param Shop $oShop
2017-12-20 13:43:20 +01:00
*
* @return null|Remark
2019-05-15 11:31:18 +02:00
* @throws d3ParameterNotFoundException
2017-12-20 13:43:20 +01:00
*/
protected function _d3SetOrderManagerMailRecipients(Shop $oShop)
{
$oRemark = null;
if ($this->_d3hasOrderManagerCustomerRecipient()) {
$oRemark = $this->_d3sendOrderManagerMailToCustomer($oShop);
} elseif ($this->_d3hasOrderManagerOwnerRecipient()) {
$this->_d3sendOrderManagerMailToOwner($oShop);
} elseif ($this->_d3hasOrderManagerCustomRecipient()) {
$this->_d3sendOrderManagerMailToCustom();
}
return $oRemark;
}
/**
* @param $sVarName
*
* @return mixed
2019-05-15 11:31:18 +02:00
* @throws d3ParameterNotFoundException
2017-12-20 13:43:20 +01:00
*/
protected function _d3getOrderManagerMailOption($sVarName)
{
$aEditedValues = $this->oOrderManager->getEditedValues();
return $aEditedValues[$sVarName] === false || $aEditedValues[$sVarName] === null ?
$this->oOrderManager->getValue($sVarName) :
$aEditedValues[$sVarName];
}
/**
* @return mixed
2019-05-15 11:31:18 +02:00
* @throws d3ParameterNotFoundException
2017-12-20 13:43:20 +01:00
*/
protected function _d3hasOrderManagerCustomerRecipient()
{
return $this->_d3getOrderManagerMailOption('blSendMailToCustomer');
}
/**
* @return mixed
2019-05-15 11:31:18 +02:00
* @throws d3ParameterNotFoundException
2017-12-20 13:43:20 +01:00
*/
protected function _d3hasOrderManagerOwnerRecipient()
{
return $this->_d3getOrderManagerMailOption('blSendMailToOwner');
}
/**
* @return mixed
2019-05-15 11:31:18 +02:00
* @throws d3ParameterNotFoundException
2017-12-20 13:43:20 +01:00
*/
protected function _d3hasOrderManagerCustomRecipient()
{
return $this->_d3getOrderManagerMailOption('blSendMailToCustom');
}
/**
* @return mixed
2019-05-15 11:31:18 +02:00
* @throws d3ParameterNotFoundException
2017-12-20 13:43:20 +01:00
*/
protected function _d3getOrderManagerCustomRecipientList()
{
return $this->_d3getOrderManagerMailOption('sSendMailToCustomAddress');
}
/**
* @return d3_cfg_mod
2019-05-15 11:31:18 +02:00
* @throws Exception
2017-12-20 13:43:20 +01:00
*/
public function d3GetSet()
{
2019-05-15 11:31:18 +02:00
return d3GetModCfgDIC()->get('d3.ordermanager.modcfg');
}
/**
* @return Payment
* @throws Exception
*/
public function d3GetPayment()
{
return d3GetModCfgDIC()->get('d3ox.ordermanager.'.Payment::class);
}
/**
* @return Language
* @throws Exception
*/
public function d3GetLang()
{
return d3GetModCfgDIC()->get('d3ox.ordermanager.'.Language::class);
}
/**
* required for unit tests, can't mock getConfig method
* @return Config
* @throws Exception
*/
public function d3GetConfig()
{
return d3GetModCfgDIC()->get('d3ox.ordermanager.'.Config::class);
2017-12-20 13:43:20 +01:00
}
/**
* @param d3ordermanager $oOrderManager
2019-05-15 11:31:18 +02:00
*
2017-12-20 13:43:20 +01:00
* @return array
2018-01-11 11:45:22 +01:00
* @throws DBALException
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
* @throws StandardException
2019-05-15 11:31:18 +02:00
* @throws ArticleException
* @throws ArticleInputException
* @throws NoArticleException
* @throws d3ParameterNotFoundException
2018-01-11 11:45:22 +01:00
* @throws d3ShopCompatibilityAdapterException
* @throws d3_cfg_mod_exception
2019-05-15 11:31:18 +02:00
* @throws Exception
2017-12-20 13:43:20 +01:00
*/
public function getOrderManagerMailContent(d3ordermanager $oOrderManager)
{
$this->oOrderManager = $oOrderManager;
$aContent = array();
$blTplFromAdmin = $oOrderManager->getValue('sSendMailFromTheme') == 'admin' ? true : false;
2019-05-15 11:31:18 +02:00
$oConfig = $this->d3GetConfig();
$oConfig->setAdminMode($blTplFromAdmin);
2017-12-20 13:43:20 +01:00
$oShop = $this->_getShop();
$this->_setMailParams($oShop);
2019-07-09 10:27:20 +02:00
/** @var Smarty $oSmarty */
2017-12-20 13:43:20 +01:00
$oSmarty = $this->_getSmarty();
/** @var $oBasket Basket */
$oBasket = $oOrderManager->getCurrentItem()->d3getOrderBasket4OrderManager($oOrderManager);
2019-05-15 11:31:18 +02:00
$oPayment = $this->d3GetPayment();
2017-12-20 13:43:20 +01:00
$oPayment->load($oBasket->getPaymentId());
$oOrderManager->getCurrentItem()->d3setBasket4OrderManager($oBasket);
$oOrderManager->getCurrentItem()->d3setPayment4OrderManager($oPayment);
$this->setViewData("oShop", $oShop);
$this->setViewData("oViewConf", $this->getViewConfig());
$this->setViewData("oOrder", $oOrderManager->getCurrentItem());
$this->setViewData("oUser", $oOrderManager->getCurrentItem()->getOrderUser());
2019-05-15 11:31:18 +02:00
$this->setViewData("shopTemplateDir", $this->d3GetConfig()->getTemplateDir(false));
$this->setViewData("charset", $this->d3GetLang()->translateString("charset"));
2017-12-20 13:43:20 +01:00
$this->setViewData("shop", $oShop);
$this->setViewData("order", $oOrderManager->getCurrentItem());
$this->setViewData("user", $oOrderManager->getCurrentItem()->getOrderUser());
$this->setViewData("payment", $oPayment);
$this->setViewData("oDelSet", $oOrderManager->getCurrentItem()->getDelSet());
$this->setViewData("currency", $oOrderManager->getCurrentItem()->getOrderCurrency());
$this->setViewData("basket", $oBasket);
$oSmarty->template_dir = $this->getTemplateDir4OrderManager($oOrderManager);
$this->_processViewArray();
if (false == $this->d3GetSet()->getLicenseConfigData('blUseMailSendOnly', 0)) {
$oSmarty = $this->d3SendMailHook($oSmarty);
}
$aContent = $this->_d3GenerateOrderManagerMailContent($aContent, $oSmarty);
2019-05-15 11:31:18 +02:00
$oConfig->setAdminMode(true);
2017-12-20 13:43:20 +01:00
return $aContent;
}
2019-05-15 11:31:18 +02:00
/**
* @return Module
* @throws Exception
*/
public function d3GetModule()
{
return d3GetModCfgDIC()->get('d3ox.ordermanager.'.Module::class);
}
/**
* @return d3str
* @throws Exception
*/
public function getD3Str()
{
return d3GetModCfgDIC()->get(d3str::class);
}
/**
* @return d3ShopCompatibilityAdapterHandler
* @throws Exception
*/
public function d3GetShopCompatibilityAdapterHandler()
{
return d3GetModCfgDIC()->get(d3ShopCompatibilityAdapterHandler::class);
}
2017-12-20 13:43:20 +01:00
/**
* @param d3ordermanager $oOrderManager
2019-05-15 11:31:18 +02:00
*
2017-12-20 13:43:20 +01:00
* @return string
2018-01-11 11:45:22 +01:00
* @throws StandardException
* @throws d3ShopCompatibilityAdapterException
2019-05-15 11:31:18 +02:00
* @throws Exception
2017-12-20 13:43:20 +01:00
*/
public function getTemplateDir4OrderManager($oOrderManager)
{
if ($oOrderManager->getValue('sSendMailFromTheme') == 'module') {
$sModuleId = $oOrderManager->getValue('sSendMailFromModulePath');
2019-05-15 11:31:18 +02:00
$sModulePath = $this->d3GetShopCompatibilityAdapterHandler()->call(
2017-12-20 13:43:20 +01:00
'oxmodule__getModuleFullPath',
2019-05-15 11:31:18 +02:00
array($this->d3GetModule(), $sModuleId)
2017-12-20 13:43:20 +01:00
);
2019-05-15 11:31:18 +02:00
$sPath = $this->getD3Str()->untrailingslashit($sModulePath);
2017-12-20 13:43:20 +01:00
} else {
$blAdmin = $oOrderManager->getValue('sSendMailFromTheme') == 'admin' ? true : false;
2019-05-15 11:31:18 +02:00
$sPath = $this->d3GetConfig()->getTemplateDir($blAdmin);
2017-12-20 13:43:20 +01:00
}
return $sPath;
}
/**
2019-05-15 11:31:18 +02:00
* @param Smarty $oSmarty
* @return Smarty
2017-12-20 13:43:20 +01:00
*/
2019-05-15 11:31:18 +02:00
public function d3SendMailHook( Smarty $oSmarty)
2017-12-20 13:43:20 +01:00
{
// available objects:
// oxEmail: $this
// Smarty: $oSmarty
// Ordermanager profile: $this->oOrderManager
// Order: inside smarty
// oxuser: inside smarty
return $oSmarty;
}
2019-05-15 11:31:18 +02:00
/**
* @codeCoverageIgnore because visual CMS extension issue
* @return UtilsView
* @throws Exception
*/
public function d3GetUtilsView()
{
return d3GetModCfgDIC()->get('d3ox.ordermanager.'.UtilsView::class);
}
/**
* @return Content
* @throws Exception
*/
public function d3GetContent()
{
return d3GetModCfgDIC()->get('d3ox.ordermanager.'.Content::class);
}
2017-12-20 13:43:20 +01:00
/**
* @param $aContent
2019-05-15 11:31:18 +02:00
* @param Smarty $oSmarty
2017-12-20 13:43:20 +01:00
*
* @return mixed
2019-05-15 11:31:18 +02:00
* @throws d3ParameterNotFoundException
* @throws Exception
2017-12-20 13:43:20 +01:00
*/
2019-05-15 11:31:18 +02:00
protected function _d3GenerateOrderManagerMailContent($aContent, Smarty $oSmarty)
2017-12-20 13:43:20 +01:00
{
$aEditedValues = $this->oOrderManager->getEditedValues();
if ($this->d3HasOrderManagerEditorMailContent($aEditedValues)) {
$aContent = $aEditedValues['mail'];
} elseif ($this->oOrderManager->getValue('sSendMailFromSource') == 'cms') {
$iOrderLangId = $this->oOrderManager->getCurrentItem()->getFieldData('oxlang');
2019-05-15 11:31:18 +02:00
$iCurrentLang = $this->d3GetLang()->getTplLanguage();
$this->d3GetLang()->setTplLanguage($iOrderLangId);
2017-12-20 13:43:20 +01:00
2019-05-15 11:31:18 +02:00
$oUtilsView = $this->d3GetUtilsView();
2017-12-20 13:43:20 +01:00
/** @var $oContent Content */
2019-05-15 11:31:18 +02:00
$oContent = $this->d3GetContent();
2017-12-20 13:43:20 +01:00
$oContent->setLanguage($iOrderLangId);
$oContent->load($this->oOrderManager->getValue('sSendMailFromContentname'));
$aContent['html'] = $oUtilsView->parseThroughSmarty(
$oContent->getFieldData('oxcontent'),
$oContent->getId() . 'oxcontent'
);
$aContent['subject'] = $oContent->getFieldData('oxtitle');
$oContent->load($this->oOrderManager->getValue('sSendMailFromContentnamePlain'));
$aContent['plain'] = $oUtilsView->parseThroughSmarty(
$oContent->getFieldData('oxcontent'),
$oContent->getId() . 'oxcontent'
);
2019-05-15 11:31:18 +02:00
$this->d3GetLang()->setTplLanguage($iCurrentLang);
2017-12-20 13:43:20 +01:00
} elseif ($this->oOrderManager->getValue('sSendMailFromSource') == 'template') {
$aContent['html'] = $oSmarty->fetch($this->oOrderManager->getValue('sSendMailFromTemplatename'));
$aContent['plain'] = $oSmarty->fetch($this->oOrderManager->getValue('sSendMailFromTemplatenamePlain'));
$aContent['subject'] = $oSmarty->fetch($this->oOrderManager->getValue('sSendMailFromSubject'));
}
return $aContent;
}
/**
* @param $aEditedValues
*
* @return bool
*/
public function d3HasOrderManagerEditorMailContent($aEditedValues)
{
return $this->isArrayEditorMailContent($aEditedValues) &&
$aEditedValues['mail']['subject'] &&
$aEditedValues['mail']['html'] &&
$aEditedValues['mail']['plain'];
}
/**
* @param $aEditedValues
*
* @return bool
*/
public function isArrayEditorMailContent($aEditedValues)
{
return is_array($aEditedValues) && is_array($aEditedValues['mail']);
}
/**
2019-05-15 11:31:18 +02:00
* @return Remark
* @throws Exception
*/
public function d3GetRemark()
{
return d3GetModCfgDIC()->get('d3ox.ordermanager.'.Remark::class);
}
/**
* @param Shop $oShop
2017-12-20 13:43:20 +01:00
*
* @return Remark
2019-05-15 11:31:18 +02:00
* @throws d3ParameterNotFoundException
* @throws Exception
2017-12-20 13:43:20 +01:00
*/
protected function _d3sendOrderManagerMailToCustomer(Shop $oShop)
{
$oOrderUser = $this->oOrderManager->getCurrentItem()->getOrderUser();
if ($oOrderUser->getId()) {
$sFullName = $oOrderUser->__get('oxuser__oxfname')->getRawValue() . " " .
$oOrderUser->__get('oxuser__oxlname')->getRawValue();
$this->setRecipient($oOrderUser->getFieldData('oxusername'), $sFullName);
} else {
$sFullName = $this->oOrderManager->getCurrentItem()->__get('oxorder__oxbillfname')->getRawValue() . " " .
$this->oOrderManager->getCurrentItem()->__get('oxorder__oxbilllname')->getRawValue();
$this->setRecipient($this->oOrderManager->getCurrentItem()->getFieldData('oxbillemail'), $sFullName);
}
if ($this->_d3hasOrderManagerOwnerRecipient()) {
2019-05-15 11:31:18 +02:00
$this->addBCC($oShop->getFieldData('oxinfoemail'), $oShop->__get('oxshops__oxname')->getRawValue());
2017-12-20 13:43:20 +01:00
}
if ($this->_d3HasOrderManagerCustomMailAddresses()) {
foreach ($this->_d3getOrderManagerCustomMailAddressList() as $sMailAdr) {
2019-05-15 11:31:18 +02:00
$this->addBCC(trim($sMailAdr), trim($sMailAdr));
2017-12-20 13:43:20 +01:00
}
}
// add user history
2019-05-15 11:31:18 +02:00
$oRemark = $this->d3GetRemark();
2017-12-20 13:43:20 +01:00
$aRemarkContent = array(
'oxtext' => $this->getAltBody(),
'oxparentid' => $this->oOrderManager->getCurrentItem()->getId(),
'oxtype' => 'o',
);
$oRemark->assign($aRemarkContent);
return $oRemark;
}
/**
2019-05-15 11:31:18 +02:00
* @param Shop $oShop
* @throws d3ParameterNotFoundException
2017-12-20 13:43:20 +01:00
*/
protected function _d3sendOrderManagerMailToOwner(Shop $oShop)
{
$sFullName = $oShop->__get('oxshops__oxname')->getRawValue();
$this->setRecipient($oShop->getFieldData('oxinfoemail'), $sFullName);
if ($this->_d3HasOrderManagerCustomMailAddresses()) {
foreach ($this->_d3getOrderManagerCustomMailAddressList() as $sMailAdr) {
2019-05-15 11:31:18 +02:00
$this->addBCC(trim($sMailAdr), trim($sMailAdr));
2017-12-20 13:43:20 +01:00
}
}
}
2019-05-15 11:31:18 +02:00
/**
* @throws d3ParameterNotFoundException
*/
2017-12-20 13:43:20 +01:00
protected function _d3sendOrderManagerMailToCustom()
{
2019-05-15 11:31:18 +02:00
if ($this->_d3HasOrderManagerCustomMailAddresses()) {
2017-12-20 13:43:20 +01:00
foreach ($this->_d3getOrderManagerCustomMailAddressList() as $sMailAdr) {
$this->setRecipient(trim($sMailAdr), trim($sMailAdr));
}
}
}
/**
* @return array
2019-05-15 11:31:18 +02:00
* @throws d3ParameterNotFoundException
2017-12-20 13:43:20 +01:00
*/
protected function _d3getOrderManagerCustomMailAddressList()
{
$aMailAddressList = array();
foreach (explode(';', $this->_d3getOrderManagerCustomRecipientList()) as $sAddress) {
if (strlen(trim($sAddress))) {
2019-05-15 11:31:18 +02:00
$aMailAddressList[] = trim($sAddress);
2017-12-20 13:43:20 +01:00
}
}
return $aMailAddressList;
}
/**
* @return bool
2019-05-15 11:31:18 +02:00
* @throws d3ParameterNotFoundException
2017-12-20 13:43:20 +01:00
*/
public function _d3HasOrderManagerCustomMailAddresses()
{
return $this->_d3hasOrderManagerCustomRecipient() && $this->_d3getOrderManagerCustomRecipientList();
}
/**
* @param d3ordermanager $oOrderManager
2019-05-15 11:31:18 +02:00
* @return d3ordermanager_pdfhandler
* @throws Exception
*/
public function d3GetPdfHandler(d3ordermanager $oOrderManager)
{
d3GetModCfgDIC()->set(
d3ordermanager_pdfhandler::class.'.args.ordermanager',
$oOrderManager
);
d3GetModCfgDIC()->set(
d3ordermanager_pdfhandler::class.'.args.order',
$oOrderManager->getCurrentItem()
);
return d3GetModCfgDIC()->get(d3ordermanager_pdfhandler::class);
}
/**
* @param d3ordermanager $oOrderManager
*
2018-01-11 11:45:22 +01:00
* @throws DBALException
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
* @throws StandardException
* @throws d3ShopCompatibilityAdapterException
* @throws d3_cfg_mod_exception
2019-05-15 11:31:18 +02:00
* @throws Exception
2017-12-20 13:43:20 +01:00
*/
protected function _d3AddOrderManagerPdfAttachment(d3ordermanager $oOrderManager)
{
2019-05-15 11:31:18 +02:00
$oPDFHandler = $this->d3GetPdfHandler($oOrderManager);
2017-12-20 13:43:20 +01:00
if ($oOrderManager->getValue('blActionOrderGeneratePdf_status')
&& $oOrderManager->getValue('blActionOrderPdfSendAttach')
&& $oPDFHandler->canGeneratePdf()
) {
if ($oOrderManager->getValue('blActionOrderPdfTypeInvoice')) {
$oPDFHandler->createPdf('invoice', 'attach');
$sFileName = $oPDFHandler->getPdfFileName('invoice');
$sFilePath = $oPDFHandler->getPdfSaveDir('attach') . $sFileName;
$this->addAttachment($sFilePath, $sFileName, 'base64', 'application/pdf');
}
if ($oOrderManager->getValue('blActionOrderPdfTypeDelnote')) {
$oPDFHandler->createPdf('dnote', 'attach');
$sFileName = $oPDFHandler->getPdfFileName('dnote');
$sFilePath = $oPDFHandler->getPdfSaveDir('attach') . $sFileName;
$this->addAttachment($sFilePath, $sFileName, 'base64', 'application/pdf');
}
}
}
/**
* @param d3ordermanager $oOrderManager
* @param Shop $oShop
*/
protected function _d3SetOrderManagerReplyAddress(d3ordermanager $oOrderManager, Shop $oShop)
{
if (strlen(trim($oOrderManager->getValue('sSendMailReplyAddress')))) {
$this->setFrom(trim($oOrderManager->getValue('sSendMailReplyAddress')));
$this->setReplyTo(
trim($oOrderManager->getValue('sSendMailReplyAddress')),
$oShop->__get('oxshops__oxname')->getRawValue()
);
} else {
$this->setReplyTo($oShop->getFieldData('oxinfoemail'), $oShop->__get('oxshops__oxname')->getRawValue());
}
}
}