Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
sellcheck.php
1<?php
2
3namespace Bitrix\Sale\Cashbox;
4
7
8Main\Localization\Loc::loadMessages(__FILE__);
9
14class SellCheck extends Check
15{
19 public static function getType()
20 {
21 return 'sell';
22 }
23
28 public static function getCalculatedSign()
29 {
30 return static::CALCULATED_SIGN_INCOME;
31 }
32
36 public static function getName()
37 {
38 return Main\Localization\Loc::getMessage('SALE_CASHBOX_SELL_NAME');
39 }
40
44 public static function getSupportedEntityType()
45 {
46 return static::SUPPORTED_ENTITY_TYPE_ALL;
47 }
48
52 public static function getSupportedRelatedEntityType()
53 {
54 return static::SUPPORTED_ENTITY_TYPE_ALL;
55 }
56}