1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php
/**
* This file is part of the Klarna Core module
*
* (c) Klarna Bank AB (publ)
*
* For the full copyright and license information, please view the NOTICE
* and LICENSE files that were distributed with this source code.
*/
namespace Klarna\Core\Model\ResourceModel;
use Magento\Framework\Model\ResourceModel\Db\AbstractDb;
use Magento\Sales\Api\Data\OrderInterface as MageOrder;
/**
* Class Order
*
* @package Klarna\Core\Model\ResourceModel
*/
class Order extends AbstractDb
{
/**
* Get order identifier by Reservation
*
* @param string $reservationId
* @return false|int
*/
public function getIdByReservationId($reservationId)
{
$connection = $this->getConnection();
$select = $connection->select()->from($this->getMainTable(), 'id')
->where('reservation_id = :reservation_id');
$bind = [':reservation_id' => (string)$reservationId];
return $connection->fetchOne($select, $bind);
}
/**
* Get order identifier by Klarna Order ID
*
* @param string $klarnaOrderId
* @return int|false
*/
public function getIdByKlarnaOrderId($klarnaOrderId)
{
$connection = $this->getConnection();
$select = $connection->select()->from($this->getMainTable(), 'id')
->where('klarna_order_id = :klarna_order_id');
$bind = [':klarna_order_id' => (string)$klarnaOrderId];
return $connection->fetchOne($select, $bind);
}
/**
* Get order identifier by order
*
* @param MageOrder $mageOrder
* @return false|int
*/
public function getIdByOrder(MageOrder $mageOrder)
{
$connection = $this->getConnection();
$select = $connection->select()->from($this->getMainTable(), 'id')
->where('order_id = :order_id');
$bind = [':order_id' => (string)$mageOrder->getId()];
return $connection->fetchOne($select, $bind);
}
/**
* Get order ID by Session ID
*
* @param string $sessionId
* @return string
*/
public function getIdBySessionId($sessionId)
{
$connection = $this->getConnection();
$select = $connection->select()->from($this->getMainTable(), 'id')
->where('session_id = :session_id');
$bind = [':session_id' => (string)$sessionId];
return $connection->fetchOne($select, $bind);
}
/**
* Constructor
*
* @codeCoverageIgnore
* @codingStandardsIgnoreLine
*/
protected function _construct()
{
$this->_init('klarna_core_order', 'id');
}
}