Newer
Older
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
<?php
/**
* This file contains QUI\ERP\Process
*/
namespace QUI\ERP;
use QUI;
use QUI\Permissions\Permission;
/**
* Class Process
*
* @package QUI\ERP
*/
class Process
{
/**
* @var string
*/
protected $processId;
/**
* @var null|array
*/
protected $transactions = null;
/**
* Process constructor.
*
* @param string $processId - the global process id
*/
public function __construct($processId)
{
$this->processId = $processId;
}
//region messages
/**
* Add a comment to the history
*
* @param string $comment
*/
public function addHistory($comment)
{
$history = $this->getAttribute('history');
$History = QUI\ERP\Comments::unserialize($history);
$History->addComment($comment);
$this->setAttribute('history', $History->toJSON());
QUI::getDataBase()->update(
Handler::getInstance()->invoiceTable(),
['history' => $History->toJSON()],
['id' => $this->processId]
);
}
/**
* Return the invoice history
*
* @return QUI\ERP\Comments
*/
public function getHistory()
{
$history = $this->getAttribute('history');
return QUI\ERP\Comments::unserialize($history);
}
//endregion
//region invoice
/**
* Return if the process has invoices or not
*
* @return bool
*/
public function hasInvoice()
{
$invoices = $this->getInvoices();
foreach ($invoices as $Invoice) {
if ($Invoice instanceof QUI\ERP\Accounting\Invoice\Invoice) {
return true;
}
}
return false;
}
/**
* Return if the process has temporary invoices or not
*
* @return bool
*/
public function hasTemporaryInvoice()
{
$invoices = $this->getInvoices();
foreach ($invoices as $Invoice) {
if ($Invoice instanceof QUI\ERP\Accounting\Invoice\InvoiceTemporary) {
return true;
}
}
return false;
}
/**
* Return all invoices from the process
*
* @return array
*/
public function getInvoices()
{
$Handler = QUI\ERP\Accounting\Invoice\Handler::getInstance();
$invoices = $Handler->getInvoicesByGlobalProcessId($this->processId);
return $invoices;
}
//endregion
//region order
/**
* @return bool
*/
public function hasOrder()
{
return !($this->getOrder() === null);
}
/**
* Return the order, if the process has an order
*
* @return null|Order\Order|Order\OrderInProcess|Order\Order|Order\Order
*/
public function getOrder()
{
try {
QUI::getPackage('quiqqer/order');
} catch (QUI\Exception $Exception) {
return null;
}
$OrderHandler = QUI\ERP\Order\Handler::getInstance();
try {
return $OrderHandler->getOrderByGlobalProcessId($this->processId);
} catch (QUI\Exception $Exception) {
QUI\System\Log::writeDebugException($Exception);
}
try {
return $OrderHandler->getOrderByHash($this->processId);
} catch (QUI\Exception $Exception) {
QUI\System\Log::writeDebugException($Exception);
}
return null;
}
//endregion
//region transactions
/**
* @return bool
*/
public function hasTransactions()
{
$transactions = $this->getTransactions();
return !!count($transactions);
}
/**
* Return all related transactions
*
* @return QUI\ERP\Accounting\Payments\Transactions\Transaction[];
*/
public function getTransactions()
{
try {
QUI::getPackage('quiqqer/payment-transactions');
} catch (QUI\Exception $Exception) {
return [];
}
if ($this->transactions !== null) {
return $this->transactions;
}
$Transactions = QUI\ERP\Accounting\Payments\Transactions\Handler::getInstance();
$this->transactions = $Transactions->getTransactionsByProcessId($this->processId);
return $this->transactions;
}
//endregion
}