source: trunk/Modules/Customer/Customer.php@ 941

Last change on this file since 941 was 941, checked in by chronos, 3 years ago
  • Fixed: DateTime type null value handling.
File size: 20.5 KB
Line 
1<?php
2
3class ModuleCustomer extends Module
4{
5 function __construct(System $System)
6 {
7 parent::__construct($System);
8 $this->Name = 'Customer';
9 $this->Version = '1.0';
10 $this->Creator = 'Chronos';
11 $this->License = 'GNU/GPLv3';
12 $this->Description = 'Customer management';
13 $this->Dependencies = array(ModuleUser::GetName(), ModuleFinance::GetName());
14 $this->Models = array(Member::GetClassName(), MemberPayment::GetClassName(), SupportActivity::GetClassName(), ServiceCategory::GetClassName(),
15 Service::GetClassName(), ServiceCustomerRel::GetClassName(), UserCustomerRel::GetClassName(), AddressPlace::GetClassName());
16 }
17
18 function DoStart(): void
19 {
20 $this->System->FormManager->RegisterClass('Member', array(
21 'Title' => 'Zákazníci',
22 'Table' => 'Member',
23 'DefaultSortColumn' => 'Name',
24 'Items' => array(
25 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''),
26 'ResponsibleUser' => array('Type' => 'TUser', 'Caption' => 'Zodpovědný uživatel', 'Default' => ''),
27 'Subject' => array('Type' => 'TSubject', 'Caption' => 'Subjekt', 'Default' => ''),
28 'AddressPlace' => array('Type' => 'TAddressPlace', 'Caption' => 'Adresní místo', 'Default' => '', 'Null' => true),
29 'FamilyMemberCount' => array('Type' => 'String', 'Caption' => 'Bydlících osob', 'Default' => '0', 'Suffix' => 'osob'),
30 'MembershipDate' => array('Type' => 'Date', 'Caption' => 'Datum členství', 'Default' => ''),
31 'BillingPeriod' => array('Type' => 'TFinanceBillingPeriod', 'Caption' => 'Fakturační období aktuální', 'Default' => ''),
32 'BillingPeriodLastDate' => array('Type' => 'Date', 'Caption' => 'Datum poslední fakturace', 'Default' => ''),
33 'Blocked' => array('Type' => 'Boolean', 'Caption' => 'Blokování', 'Default' => '0'),
34 'PayDay' => array('Type' => 'Integer', 'Caption' => 'Den placení', 'Default' => '1', 'Suffix' => 'den'),
35 'Devices' => array('Type' => 'TDeviceList', 'Caption' => 'Registrovaná zařízení', 'Default' => ''),
36 'UserRel' => array('Type' => 'TUserCustomerRelListCustomer', 'Caption' => 'Přiřazení uživatelé', 'Default' => ''),
37 'ServiceRel' => array('Type' => 'TServiceCustomerRelListCustomer', 'Caption' => 'Placené služby', 'Default' => ''),
38 'SupportActivity' => array('Type' => 'TSupportActivityListCustomer', 'Caption' => 'Zákaznická podpora', 'Default' => ''),
39 'Consumption' => array('Type' => 'TCustomerStockSerialNumber', 'Caption' => 'Spotřeba zařízení', 'Default' => ''),
40 'Contract' => array('Type' => 'TContract', 'Caption' => 'Smlouva', 'Default' => '', 'Null' => true),
41 'PaymentEmailTime' => array('Type' => 'DateTime', 'Caption' => 'Čas platebního emailu', 'Default' => 'now', 'Null' => true, 'NotInList' => true),
42 'ChangeAction' => array('Type' => 'TActionEnum', 'Caption' => 'Změna - akce', 'Default' => '', 'Null' => true),
43 'ChangeTime' => array('Type' => 'DateTime', 'Caption' => 'Změna - čas', 'Default' => '', 'Null' => true, 'NotInList' => true),
44 'ChangeReplaceId' => array('Type' => 'TMember', 'Caption' => 'Změna - položka', 'Default' => '0', 'Null' => true, 'NotInList' => true),
45 ),
46 'ItemActions' => array(
47 array('Caption' => 'Klientská sekce', 'URL' => '/finance/platby/?i=#RowId'),
48 ),
49 ));
50 $this->System->FormManager->RegisterClass('MemberPayment', array(
51 'Title' => 'Placení zákazníků',
52 'Table' => 'MemberPayment',
53 'Items' => array(
54 'Member' => array('Type' => 'TMember', 'Caption' => 'Zákazník', 'Default' => '', 'ReadOnly' => true),
55 'MonthlyTotal' => array('Type' => 'Integer', 'Caption' => 'Celkem měsíčně', 'Default' => '0', 'Suffix' => 'Kč', 'ReadOnly' => true),
56 'MonthlyInternet' => array('Type' => 'Integer', 'Caption' => 'Internet měsíčně', 'Default' => '', 'Suffix' => 'Kč', 'ReadOnly' => true),
57 'MonthlyConsumption' => array('Type' => 'Integer', 'Caption' => 'Spotřeba měsíčně', 'Default' => '', 'Suffix' => 'Kč', 'ReadOnly' => true),
58 'MonthlyPlus' => array('Type' => 'Integer', 'Caption' => 'Měsíčně plus', 'Default' => '', 'Suffix' => 'Kč', 'ReadOnly' => true),
59 'Cash' => array('Type' => 'Integer', 'Caption' => 'Kredit', 'Default' => '', 'Suffix' => 'Kč', 'ReadOnly' => true),
60 ),
61 'Actions' => array(
62 array('Caption' => 'Přepočítat', 'URL' => '/finance/sprava/?Operation=Recalculate'),
63 ),
64 ));
65 $this->System->FormManager->RegisterFormType('TMember', array(
66 'Type' => 'Reference',
67 'Table' => 'Member',
68 'Id' => 'Id',
69 'Name' => 'Name',
70 'Filter' => '1',
71 ));
72 $this->System->FormManager->RegisterClass('Service', array(
73 'Title' => 'Služby',
74 'Table' => 'Service',
75 'DefaultSortColumn' => 'Name',
76 'Items' => array(
77 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''),
78 'Category' => array('Type' => 'TServiceCategory', 'Caption' => 'Skupina', 'Default' => '', 'Null' => true),
79 'Price' => array('Type' => 'Integer', 'Caption' => 'Cena', 'Default' => '0', 'Suffix' => 'Kč'),
80 'VAT' => array('Type' => 'TFinanceVATType', 'Caption' => 'Sazba DPH', 'Default' => '0', 'Suffix' => ''),
81 'CustomerCount' => array('Type' => 'Integer', 'Caption' => 'Počet zákazníků', 'Default' => '', 'ReadOnly' => true,
82 'SQL' => '(SELECT COUNT(*) FROM `ServiceCustomerRel` LEFT JOIN `Member` ON `Member`.`Id`=`ServiceCustomerRel`.`Customer` WHERE (`ServiceCustomerRel`.`Service`=#Id) AND (`Member`.`Blocked`=0))'),
83 'Public' => array('Type' => 'Boolean', 'Caption' => 'Veřejné', 'Default' => ''),
84 'InternetSpeedMin' => array('Type' => 'Integer', 'Caption' => 'Min. rychlost internetu', 'Default' => '0', 'Suffix' => 'bit/s'),
85 'InternetSpeedMax' => array('Type' => 'Integer', 'Caption' => 'Max. rychlost internetu', 'Default' => '0', 'Suffix' => 'bit/s'),
86 'UploadAsymmetry' => array('Type' => 'Integer', 'Caption' => 'Asymetrie odesílání', 'Default' => '1'),
87 'Memory' => array('Type' => 'Integer', 'Caption' => 'Paměť', 'Default' => '0', 'Suffix' => 'GB'),
88 'MemorySwap' => array('Type' => 'Integer', 'Caption' => 'Odkládací oddíl', 'Default' => '0', 'Suffix' => 'GB'),
89 'Storage' => array('Type' => 'Integer', 'Caption' => 'Úložiště', 'Default' => '0', 'Suffix' => 'GB'),
90 'CPUCount' => array('Type' => 'Integer', 'Caption' => 'Počet jader', 'Default' => '0', 'Suffix' => ''),
91 'ChangeAction' => array('Type' => 'TActionEnum', 'Caption' => 'Změna - akce', 'Default' => '', 'Null' => true),
92 'ChangeTime' => array('Type' => 'DateTime', 'Caption' => 'Změna - čas', 'Default' => '', 'Null' => true),
93 'ChangeReplaceId' => array('Type' => 'TService', 'Caption' => 'Změna - položka', 'Default' => '', 'Null' => true),
94 'CustomerRel' => array('Type' => 'TServiceCustomerRelListService', 'Caption' => 'Placení zákazníky', 'Default' => ''),
95 'TvRel' => array('Type' => 'TServiceTvRelListService', 'Caption' => 'TV kanály', 'Default' => ''),
96 ),
97 ));
98 $this->System->FormManager->RegisterClass('ServiceCategory', array(
99 'Title' => 'Kategorie služeb',
100 'Table' => 'ServiceCategory',
101 'Items' => array(
102 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''),
103 'Items' => array('Type' => 'TServiceListServiceCategory', 'Caption' => 'Služby', 'Default' => ''),
104 ),
105 ));
106 $this->System->FormManager->RegisterClass('ServiceCustomerRel', array(
107 'Title' => 'Služby zákazníka',
108 'Table' => 'ServiceCustomerRel',
109 'Items' => array(
110 'Service' => array('Type' => 'TService', 'Caption' => 'Služba', 'Default' => ''),
111 'Customer' => array('Type' => 'TMember', 'Caption' => 'Zákazník', 'Default' => ''),
112 'SpeedLimit' => array('Type' => 'TNetworkSpeedLimit', 'Caption' => 'Omezení rychlosti', 'Default' => null, 'Null' => true),
113 'Devices' => array('Type' => 'TNetworkDeviceListService', 'Caption' => 'Zařízení', 'Default' => ''),
114 'Subnets' => array('Type' => 'TNetworkSubnetListService', 'Caption' => 'Podsítě', 'Default' => ''),
115 'ChangeAction' => array('Type' => 'TActionEnum', 'Caption' => 'Změna - akce', 'Default' => '', 'Null' => true),
116 'ChangeTime' => array('Type' => 'DateTime', 'Caption' => 'Změna - čas', 'Default' => '', 'Null' => true, 'NotInList' => true),
117 'ChangeReplaceId' => array('Type' => 'TServiceCustomerRel', 'Caption' => 'Změna - položka', 'Default' => '', 'Null' => true, 'NotInList' => true),
118 ),
119 ));
120 $this->System->FormManager->RegisterClass('AddressPlace', array(
121 'Title' => 'Adresní místno',
122 'Table' => 'AddressPlace',
123 'DefaultSortColumn' => 'HouseNumber',
124 'DefaultSortOrder' => 1,
125 'Items' => array(
126 'Town' => array('Type' => 'String', 'Caption' => 'Město', 'Default' => ''),
127 'Street' => array('Type' => 'String', 'Caption' => 'Ulice', 'Default' => ''),
128 'HouseNumber' => array('Type' => 'Integer', 'Caption' => 'Číslo domu', 'Default' => ''),
129 'HouseNumberType' => array('Type' => 'THouseNumberType', 'Caption' => 'Typ čísla', 'Default' => ''),
130 'Psc' => array('Type' => 'Integer', 'Caption' => 'PSČ', 'Default' => ''),
131 'RuianCode' => array('Type' => 'Integer', 'Caption' => 'Kód Ruian', 'Default' => ''),
132 'Customers' => array('Type' => 'TCustomerListAddressPlace', 'Caption' => 'Zákazníci', 'Default' => '', 'Null' => true, 'NotInList' => true),
133 ),
134 ));
135 $this->System->FormManager->RegisterFormType('TAddressPlace', array(
136 'Type' => 'Reference',
137 'Table' => 'AddressPlace',
138 'Id' => 'Id',
139 'Name' => 'CONCAT_WS(" ", NULLIF(AddressPlace.Town, ""), REPLACE(REPLACE(AddressPlace.HouseNumberType, "0", ""), 1, "e.v."), NULLIF(AddressPlace.HouseNumber, ""))',
140 'Filter' => '1',
141 ));
142 $this->System->FormManager->RegisterFormType('THouseNumberType', array(
143 'Type' => 'Enumeration',
144 'States' => array(0 => 'Popisné', 1 => 'Evidenční'),
145 ));
146 $this->System->FormManager->RegisterFormType('TCustomerListAddressPlace', array(
147 'Type' => 'ManyToOne',
148 'Table' => 'Member',
149 'Id' => 'Id',
150 'Ref' => 'AddressPlace',
151 'Filter' => '1',
152 ));
153 $this->System->FormManager->RegisterFormType('TServiceCategory', array(
154 'Type' => 'Reference',
155 'Table' => 'ServiceCategory',
156 'Id' => 'Id',
157 'Name' => 'Name',
158 'Filter' => '1',
159 ));
160 $this->System->FormManager->RegisterFormType('TService', array(
161 'Type' => 'Reference',
162 'Table' => 'Service',
163 'Id' => 'Id',
164 'Name' => 'Name',
165 'Filter' => '1',
166 ));
167 $this->System->FormManager->RegisterFormType('TServiceCustomerRel', array(
168 'Type' => 'Reference',
169 'Table' => 'ServiceCustomerRel',
170 'Id' => 'Id',
171 'Name' => 'Id',
172 'Filter' => '1',
173 ));
174 $this->System->FormManager->RegisterFormType('TServiceCustomerRelListCustomer', array(
175 'Type' => 'ManyToOne',
176 'Table' => 'ServiceCustomerRel',
177 'Id' => 'Id',
178 'Ref' => 'Customer',
179 'Filter' => '1',
180 ));
181 $this->System->FormManager->RegisterFormType('TNetworkDeviceListService', array(
182 'Type' => 'ManyToOne',
183 'Table' => 'NetworkDevice',
184 'Id' => 'Id',
185 'Ref' => 'Service',
186 'Filter' => '1',
187 ));
188 $this->System->FormManager->RegisterFormType('TNetworkSubnetListService', array(
189 'Type' => 'ManyToOne',
190 'Table' => 'NetworkSubnet',
191 'Id' => 'Id',
192 'Ref' => 'Service',
193 'Filter' => '1',
194 ));
195 $this->System->FormManager->RegisterFormType('TServiceCustomerRelListService', array(
196 'Type' => 'ManyToOne',
197 'Table' => 'ServiceCustomerRel',
198 'Id' => 'Id',
199 'Ref' => 'Service',
200 'Filter' => '1',
201 ));
202 $this->System->FormManager->RegisterFormType('TServiceTvRelListService', array(
203 'Type' => 'ManyToOne',
204 'Table' => 'ServiceTvRel',
205 'Id' => 'Id',
206 'Ref' => 'Service',
207 'Filter' => '1',
208 ));
209 $this->System->FormManager->RegisterFormType('TServiceListServiceCategory', array(
210 'Type' => 'ManyToOne',
211 'Table' => 'Service',
212 'Id' => 'Id',
213 'Ref' => 'Category',
214 'Filter' => '1',
215 ));
216 $this->System->FormManager->RegisterClass('SupportActivity', array(
217 'Title' => 'Zákaznická podpora',
218 'Table' => 'SupportActivity',
219 'DefaultSortColumn' => 'Time',
220 'Items' => array(
221 'Time' => array('Type' => 'DateTime', 'Caption' => 'Čas', 'Default' => ''),
222 'Description' => array('Type' => 'Text', 'Caption' => 'Popis', 'Default' => ''),
223 'Customer' => array('Type' => 'TMember', 'Caption' => 'Zákazník', 'Default' => ''),
224 'User' => array('Type' => 'TUser', 'Caption' => 'Pracovník', 'Default' => ''),
225 ),
226 ));
227 $this->System->FormManager->RegisterFormType('TSupportActivityListCustomer', array(
228 'Type' => 'ManyToOne',
229 'Table' => 'SupportActivity',
230 'Id' => 'Id',
231 'Ref' => 'Customer',
232 'Filter' => '1',
233 ));
234 $this->System->FormManager->RegisterClass('UserCustomerRel', array(
235 'Title' => 'Vztahy uživatel - zákazník',
236 'Table' => 'UserCustomerRel',
237 'Items' => array(
238 'User' => array('Type' => 'TUser', 'Caption' => 'Uživatel', 'Default' => ''),
239 'Customer' => array('Type' => 'TMember', 'Caption' => 'Zákazník', 'Default' => ''),
240 ),
241 ));
242 $this->System->FormManager->RegisterFormType('TCustomerListContract', array(
243 'Type' => 'ManyToOne',
244 'Table' => 'Member',
245 'Id' => 'Id',
246 'Ref' => 'Contract',
247 'Filter' => '1',
248 ));
249
250 $this->System->RegisterPage(['user', 'dokumenty'], 'PageCustomerDocuments');
251
252 ModuleIS::Cast(Core::Cast($this->System)->GetModule('IS'))->RegisterDashboardItem('Customer',
253 array($this, 'ShowDashboardItem'));
254 }
255
256 function ShowDashboardItem(): string
257 {
258 $DbResult = $this->Database->select('Member', 'COUNT(*)', '1');
259 $DbRow = $DbResult->fetch_row();
260 $Output = 'Zákazníků: registrovaných: <a href="'.$this->System->Link('/is/?a=list&amp;t=Member').'">'.$DbRow['0'].'</a>';
261
262 $DbResult = $this->Database->select('Member', 'COUNT(*)', '(`Blocked`=0) AND (`BillingPeriod`<>1)');
263 $DbRow = $DbResult->fetch_row();
264 $Output .= ' aktivních: <a href="'.$this->System->Link('/is/?a=list&t=Member&amp;filter=1&amp;FilterBlocked=0&amp;FilterBillingPeriod=Nikdy&amp;FilterOpBillingPeriod=notequal').'">'.$DbRow['0'].'</a>';
265
266 $DbResult = $this->Database->select('Member', 'COUNT(*)', '(`Blocked`=0) AND (`BillingPeriod`<>1) AND '.
267 '((SELECT SUM(Service.Price) FROM ServiceCustomerRel LEFT JOIN Service ON Service.Id=ServiceCustomerRel.Service WHERE ServiceCustomerRel.Customer=Member.Id) <> 0)');
268 $DbRow = $DbResult->fetch_row();
269 $Output .= ' platících: <a href="'.$this->System->Link('/is/?a=list&t=Member&amp;filter=1&amp;FilterBlocked=0&amp;FilterBillingPeriod=Nikdy&amp;FilterOpBillingPeriod=notequal').'">'.$DbRow['0'].'</a><br/>';
270
271 return $Output;
272 }
273}
274
275class PageCustomerDocuments extends Page
276{
277 function __construct(System $System)
278 {
279 parent::__construct($System);
280 $this->Title = 'Dokumenty';
281 $this->Description = 'Dokumenty klienta';
282 $this->ParentClass = 'PageUser';
283 }
284
285 function Show(): string
286 {
287 $Output = '<br/><div><strong>Dostupné dokumenty:</strong></div><br/>';
288
289 $User = &ModuleUser::Cast($this->System->GetModule('User'))->User;
290
291 // Determine which customer should be displayed
292 if (array_key_exists('i', $_GET))
293 {
294 if (!$User->CheckPermission('Finance', 'Manage')) return 'Nemáte oprávnění';
295 $CustomerId = $_GET['i'];
296 } else
297 {
298 if (!$User->CheckPermission('Customer', 'DisplayCustomerDocuments')) return 'Nemáte oprávnění';
299 $UserId = ModuleUser::Cast($this->System->GetModule('User'))->User->User['Id'];
300 $DbResult = $this->Database->query('SELECT `Customer` FROM `UserCustomerRel` WHERE `User`='.$UserId.' LIMIT 1');
301 if ($DbResult->num_rows > 0)
302 {
303 $CustomerUserRel = $DbResult->fetch_assoc();
304 $CustomerId = $CustomerUserRel['Customer'];
305 } else return $this->SystemMessage('Chyba', 'Nejste zákazníkem');
306 }
307
308 // Load customer info
309 $DbResult = $this->Database->query('SELECT * FROM `Member` WHERE `Id`='.$CustomerId);
310 if ($DbResult->num_rows == 1)
311 {
312 $Customer = $DbResult->fetch_assoc();
313 } else return $this->SystemMessage('Položka nenalezena', 'Zákazník nenalezen');
314
315 if ($Customer['Contract'] != '')
316 {
317 $DbResult = $this->Database->query('SELECT Contract.*, File.Hash AS FileHash, DocumentLineCode.Name AS BillCodeText FROM Contract '.
318 'LEFT JOIN File ON File.Id=Contract.File '.
319 'LEFT JOIN DocumentLineCode ON DocumentLineCode.Id=Contract.BillCode '.
320 'WHERE (Contract.Id='.$Customer['Contract'].')');
321 if ($DbResult->num_rows > 0)
322 {
323 $Contract = $DbResult->fetch_assoc();
324 if ($Contract['File'] > 0) $Output .= 'Smlouva: <a href="'.$this->System->Link('/file?h='.$Contract['FileHash']).'">'.$Contract['BillCodeText'].'</a><br/>';
325 else $Output .= 'Smlouva: '.$Contract['BillCodeText'].'<br/>';
326 $Output .= 'Všeobecné smluvní podmínky: <a href="https://www.zdechov.net/docs/V%C5%A1eobecn%C3%A9%20smluvn%C3%AD%20podm%C3%ADnky.pdf">PDF</a><br/>';
327 }
328 }
329 return $Output;
330 }
331}
332
333class Member extends Model
334{
335 static function GetModelDesc(): ModelDesc
336 {
337 $Desc = new ModelDesc(self::GetClassName());
338 $Desc->AddString('Name');
339 $Desc->AddReference('Subject', Subject::GetClassName());
340 $Desc->AddReference('ResponsibleUser', User::GetClassName());
341 $Desc->AddInteger('FamilyMemberCount');
342 $Desc->AddDate('MembershipDate');
343 $Desc->AddInteger('MemberState');
344 $Desc->AddInteger('GPS');
345 $Desc->AddReference('BillingPeriod', FinanceBillingPeriod::GetClassName());
346 $Desc->AddDate('BillingPeriodLastDate');
347 $Desc->AddBoolean('Blocked');
348 $Desc->AddInteger('PayDay');
349 $Desc->AddDateTime('PaymentEmailTime');
350 $Desc->AddChangeAction();
351 return $Desc;
352 }
353}
354
355class MemberPayment extends Model
356{
357 static function GetModelDesc(): ModelDesc
358 {
359 $Desc = new ModelDesc(self::GetClassName());
360 $Desc->AddReference('Member', Member::GetClassName());
361 $Desc->AddFloat('MonthlyTotal');
362 $Desc->AddFloat('MonthlyInternet');
363 $Desc->AddFloat('MonthlyConsumption');
364 $Desc->AddFloat('MonthlyPlus');
365 $Desc->AddFloat('Cash');
366 return $Desc;
367 }
368}
369
370class Service extends Model
371{
372 static function GetModelDesc(): ModelDesc
373 {
374 $Desc = new ModelDesc(self::GetClassName());
375 $Desc->AddString('Name');
376 $Desc->AddReference('Category', ServiceCategory::GetClassName());
377 $Desc->AddInteger('Price');
378 $Desc->AddInteger('VAT');
379 $Desc->AddChangeAction();
380 $Desc->AddBoolean('Public');
381 $Desc->AddInteger('InternetSpeedMax');
382 $Desc->AddInteger('InternetSpeedMin');
383 $Desc->AddInteger('InternetUploadAsymmetry');
384 $Desc->AddInteger('Memory');
385 $Desc->AddInteger('MemorySwap');
386 $Desc->AddInteger('Storage');
387 $Desc->AddInteger('CPUCount');
388 return $Desc;
389 }
390}
391
392class ServiceCategory extends Model
393{
394 static function GetModelDesc(): ModelDesc
395 {
396 $Desc = new ModelDesc(self::GetClassName());
397 $Desc->AddString('Name');
398 return $Desc;
399 }
400}
401
402class SupportActivity extends Model
403{
404 static function GetModelDesc(): ModelDesc
405 {
406 $Desc = new ModelDesc(self::GetClassName());
407 $Desc->AddDateTime('Time');
408 $Desc->AddString('Description');
409 $Desc->AddReference('Customer', Member::GetClassName());
410 $Desc->AddReference('User', User::GetClassName());
411 return $Desc;
412 }
413}
414
415class ServiceCustomerRel extends Model
416{
417 static function GetModelDesc(): ModelDesc
418 {
419 $Desc = new ModelDesc(self::GetClassName());
420 $Desc->AddReference('Service', Service::GetClassName());
421 $Desc->AddReference('Customer', Member::GetClassName());
422 $Desc->AddChangeAction();
423 $Desc->AddInteger('SpeedLimit');
424 return $Desc;
425 }
426}
427
428class UserCustomerRel extends Model
429{
430 static function GetModelDesc(): ModelDesc
431 {
432 $Desc = new ModelDesc(self::GetClassName());
433 $Desc->AddReference('User', User::GetClassName());
434 $Desc->AddReference('Customer', Member::GetClassName());
435 return $Desc;
436 }
437}
438
439class AddressPlace extends Model
440{
441 static function GetModelDesc(): ModelDesc
442 {
443 $Desc = new ModelDesc(self::GetClassName());
444 $Desc->AddString('Town');
445 $Desc->AddString('Street');
446 $Desc->AddString('HouseNumber');
447 $Desc->AddEnum('HouseNumberType', array('Popisné', 'Evidenční'));
448 $Desc->AddString('Psc');
449 $Desc->AddInteger('RuianCode');
450 return $Desc;
451 }
452}
Note: See TracBrowser for help on using the repository browser.