Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
checkrelatedentities.php
1
<?php
2
namespace
Bitrix\Sale\Cashbox\Internals
;
3
4
use Bitrix\Main\Entity\DataManager;
5
23
class
CheckRelatedEntitiesTable
extends
DataManager
24
{
25
const
ENTITY_TYPE_PAYMENT
=
'P'
;
26
const
ENTITY_TYPE_SHIPMENT
=
'S'
;
27
28
public
static
function
getTableName
()
29
{
30
return
'b_sale_check_related_entities'
;
31
}
32
33
public
static
function
getMap
()
34
{
35
return
array(
36
'ID'
=> array(
37
'primary'
=>
true
,
38
'autocomplete'
=>
true
,
39
'autoincrement'
=>
true
,
40
'data_type'
=>
'integer'
,
41
),
42
'CHECK_ID'
=> array(
43
'required'
=>
true
,
44
'data_type'
=>
'integer'
,
45
),
46
'ENTITY_ID'
=> array(
47
'required'
=>
true
,
48
'data_type'
=>
'integer'
,
49
),
50
'ENTITY_TYPE'
=> array(
51
'required'
=>
true
,
52
'data_type'
=>
'string'
,
53
),
54
'ENTITY_CHECK_TYPE'
=> array(
55
'data_type'
=>
'string'
,
56
),
57
);
58
}
59
}
Bitrix\Main\ORM\Data\DataManager
Definition
datamanager.php:33
Bitrix\Sale\Cashbox\Internals\CheckRelatedEntitiesTable
Definition
checkrelatedentities.php:24
Bitrix\Sale\Cashbox\Internals\CheckRelatedEntitiesTable\getMap
static getMap()
Definition
checkrelatedentities.php:33
Bitrix\Sale\Cashbox\Internals\CheckRelatedEntitiesTable\ENTITY_TYPE_SHIPMENT
const ENTITY_TYPE_SHIPMENT
Definition
checkrelatedentities.php:26
Bitrix\Sale\Cashbox\Internals\CheckRelatedEntitiesTable\ENTITY_TYPE_PAYMENT
const ENTITY_TYPE_PAYMENT
Definition
checkrelatedentities.php:25
Bitrix\Sale\Cashbox\Internals\CheckRelatedEntitiesTable\getTableName
static getTableName()
Definition
checkrelatedentities.php:28
Bitrix\Sale\Cashbox\Internals
modules
sale
lib
cashbox
internals
checkrelatedentities.php
Создано системой
1.10.0