linkmobility4oxid/src/Modules/Application/Model/OrderModel.php

47 lines
1.3 KiB
PHP
Raw Normal View History

<?php
/**
2022-07-13 13:21:52 +02:00
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* https://www.d3data.de
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
2022-07-13 13:21:52 +02:00
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
* @link https://www.oxidmodule.com
*/
2022-07-13 13:21:52 +02:00
declare(strict_types=1);
namespace D3\Linkmobility4OXID\Modules\Application\Model;
use D3\Linkmobility4OXID\Modules\Core\EmailCore;
2023-01-09 22:17:30 +01:00
use D3\TestingTools\Production\IsMockable;
2023-01-15 22:24:49 +01:00
use Exception;
use OxidEsales\Eshop\Core\Email;
2022-07-27 09:27:59 +02:00
use Psr\Container\ContainerExceptionInterface;
use Psr\Container\NotFoundExceptionInterface;
class OrderModel extends OrderModel_parent
{
2023-01-09 22:17:30 +01:00
use IsMockable;
2022-07-27 09:27:59 +02:00
/**
* @return void
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
2023-01-15 22:24:49 +01:00
* @throws Exception
2022-07-27 09:27:59 +02:00
*/
public function cancelOrder(): void
{
2023-01-09 22:17:30 +01:00
// parent::cancelOrder();
$this->d3CallMockableFunction([OrderModel_parent::class, 'cancelOrder']);
2022-07-27 09:27:59 +02:00
if ((bool) $this->getFieldData('oxstorno') === true) {
/** @var EmailCore $Email */
2023-01-09 22:17:30 +01:00
$Email = d3GetOxidDIC()->get('d3ox.linkmobility.'.Email::class);
$Email->d3SendCancelMessage($this);
}
}
2022-07-13 13:23:48 +02:00
}