2022-07-08 09:49:39 +02:00
|
|
|
<?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
|
2022-07-08 09:49:39 +02:00
|
|
|
*
|
|
|
|
* @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-08 09:49:39 +02:00
|
|
|
*/
|
|
|
|
|
2022-07-13 13:21:52 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2022-07-08 09:49:39 +02:00
|
|
|
namespace D3\Linkmobility4OXID\Modules\Application\Model;
|
|
|
|
|
2022-07-20 11:57:58 +02:00
|
|
|
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;
|
2022-07-08 09:49:39 +02:00
|
|
|
use OxidEsales\Eshop\Core\Email;
|
2022-07-27 09:27:59 +02:00
|
|
|
use Psr\Container\ContainerExceptionInterface;
|
|
|
|
use Psr\Container\NotFoundExceptionInterface;
|
2022-07-08 09:49:39 +02:00
|
|
|
|
|
|
|
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
|
2022-07-08 09:49:39 +02:00
|
|
|
{
|
2023-01-09 22:17:30 +01:00
|
|
|
// parent::cancelOrder();
|
|
|
|
$this->d3CallMockableFunction([OrderModel_parent::class, 'cancelOrder']);
|
2022-07-08 09:49:39 +02:00
|
|
|
|
2022-07-27 09:27:59 +02:00
|
|
|
if ((bool) $this->getFieldData('oxstorno') === true) {
|
2022-07-20 11:57:58 +02:00
|
|
|
/** @var EmailCore $Email */
|
2023-01-09 22:17:30 +01:00
|
|
|
$Email = d3GetOxidDIC()->get('d3ox.linkmobility.'.Email::class);
|
2022-07-08 09:49:39 +02:00
|
|
|
$Email->d3SendCancelMessage($this);
|
|
|
|
}
|
|
|
|
}
|
2022-07-13 13:23:48 +02:00
|
|
|
}
|