Changeset 939 for trunk/Modules/Customer/Customer.php
- Timestamp:
- Aug 2, 2022, 9:26:10 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Customer/Customer.php
r914 r939 39 39 'Consumption' => array('Type' => 'TCustomerStockSerialNumber', 'Caption' => 'Spotřeba zařízení', 'Default' => ''), 40 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), 41 42 'ChangeAction' => array('Type' => 'TActionEnum', 'Caption' => 'Změna - akce', 'Default' => '', 'Null' => true), 42 43 'ChangeTime' => array('Type' => 'DateTime', 'Caption' => 'Změna - čas', 'Default' => '', 'Null' => true, 'NotInList' => true), … … 92 93 'ChangeReplaceId' => array('Type' => 'TService', 'Caption' => 'Změna - položka', 'Default' => '', 'Null' => true), 93 94 'CustomerRel' => array('Type' => 'TServiceCustomerRelListService', 'Caption' => 'Placení zákazníky', 'Default' => ''), 95 'TvRel' => array('Type' => 'TServiceTvRelListService', 'Caption' => 'TV kanály', 'Default' => ''), 94 96 ), 95 97 )); … … 194 196 'Type' => 'ManyToOne', 195 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', 196 205 'Id' => 'Id', 197 206 'Ref' => 'Service', … … 338 347 $Desc->AddBoolean('Blocked'); 339 348 $Desc->AddInteger('PayDay'); 349 $Desc->AddDateTime('PaymentEmailTime'); 340 350 $Desc->AddChangeAction(); 341 351 return $Desc;
Note:
See TracChangeset
for help on using the changeset viewer.