1 | <?php |
||
22 | class Warehouse extends \Model { |
||
23 | |||
24 | public static $objectName = 'Склад'; |
||
25 | public static $labels = [ |
||
26 | 'name' => 'Название', |
||
27 | 'time' => 'Время работы', |
||
28 | 'type' => 'Тип', |
||
29 | 'addresses' => 'Адрес', |
||
30 | 'city_id' => 'Город', |
||
31 | 'contacts' => 'Контакты', |
||
32 | ]; |
||
33 | public static $cols = [ |
||
34 | //Основные параметры |
||
35 | 'name' => ['type' => 'text'], |
||
36 | 'type' => ['type' => 'select', 'source' => 'array', 'sourceArray' => ['sale' => 'Продажи', 'local' => 'Внутренний']], |
||
37 | 'city_id' => ['type' => 'select', 'source' => 'relation', 'relation' => 'city'], |
||
38 | 'addresses' => ['type' => 'textarea'], |
||
39 | 'contacts' => ['type' => 'textarea'], |
||
40 | 'time' => ['type' => 'text'], |
||
41 | //Системные |
||
42 | 'date_create' => ['type' => 'dateTime'], |
||
43 | ]; |
||
44 | public static $dataManagers = [ |
||
45 | 'manager' => [ |
||
46 | 'name' => 'Склады', |
||
47 | 'cols' => [ |
||
48 | 'name', |
||
49 | 'city_id', |
||
50 | 'type', |
||
51 | 'addresses', |
||
52 | 'contacts', |
||
53 | ], |
||
54 | ], |
||
55 | ]; |
||
56 | public static $forms = [ |
||
57 | 'manager' => [ |
||
58 | 'map' => [ |
||
59 | ['name', 'city'], |
||
60 | ['type', 'time'], |
||
61 | ['addresses'], |
||
62 | ['contacts'], |
||
63 | ] |
||
64 | ] |
||
65 | ]; |
||
66 | |||
67 | public static function relations() { |
||
75 | |||
76 | } |
||
77 |