mirror of
https://github.com/anthonyaxenov/atol-online.git
synced 2024-11-22 16:14:34 +00:00
Скорректирован Document::jsonSerialize() - не выдаёт пустого кассира
This commit is contained in:
parent
12b98dcdac
commit
9ea1c81666
@ -401,11 +401,11 @@ class Document extends Entity
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
{
|
||||
$json = [
|
||||
'company' => $this->getCompany()->jsonSerialize(), // обязательно
|
||||
'payments' => $this->payments->jsonSerialize(), // обязательно
|
||||
'cashier' => $this->getCashier() ?? '',
|
||||
];
|
||||
$json['company'] = $this->getCompany()->jsonSerialize();// обязательно
|
||||
$json['payments'] = $this->payments->jsonSerialize(); // обязательно
|
||||
if ($this->getCashier()) {
|
||||
$json['cashier'] = $this->getCashier();
|
||||
}
|
||||
if ($this->getCorrectionInfo()) {
|
||||
$json['correction_info'] = $this->getCorrectionInfo()->jsonSerialize(); // обязательно для коррекционных
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user