Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
eventhandler.php
1<?php
2
4
8
14{
19 public static function onBusinessValueUpdate(Main\Event $event): Sale\Result
20 {
21 return (new Events\UpdateCashboxesOnBusinessValueUpdate($event))->executeEvent();
22 }
23
28 public static function onUpdatePaySystem(Main\Event $event): Sale\Result
29 {
30 return (new Events\ToggleCashboxesOnUpdatePaySystem($event))->executeEvent();
31 }
32
37 public static function onDeletePaySystem(Sale\PaySystem\Service $service): Sale\Result
38 {
39 return (new Events\DeleteCashboxesOnDeletePaySystem($service))->executeEvent();
40 }
41
47 public static function onDisabledFiscalization(Sale\PaySystem\Service $service, string $kkmId): Sale\Result
48 {
49 return (new Events\DeleteCashboxesOnDisabledFiscalization($service, $kkmId))->executeEvent();
50 }
51}
static onDisabledFiscalization(Sale\PaySystem\Service $service, string $kkmId)
static onDeletePaySystem(Sale\PaySystem\Service $service)
static onBusinessValueUpdate(Main\Event $event)
static onUpdatePaySystem(Main\Event $event)