Changeset 738 for trunk/Modules/Employee/Employee.php
- Timestamp:
- Apr 14, 2015, 10:20:16 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Employee/Employee.php
r736 r738 37 37 'Contract' => array('Type' => 'TContract', 'Caption' => 'Smlouva', 'Default' => ''), 38 38 ), 39 )); 40 39 )); 40 $this->System->FormManager->RegisterFormType('TEmployee', array( 41 41 'Type' => 'Reference', 42 43 44 45 46 )); 42 'Table' => 'Employee', 43 'Id' => 'Id', 44 'Name' => 'CONCAT_WS(" ", NULLIF(`FirstName`, ""), NULLIF(`SecondName`, ""))', 45 'Filter' => '1', 46 )); 47 47 $this->System->FormManager->RegisterFormType('TEmployeeSalaryList', array( 48 49 50 51 52 48 'Type' => 'ManyToOne', 49 'Table' => 'EmployeeSalary', 50 'Id' => 'Id', 51 'Ref' => 'Employee', 52 'Filter' => '1', 53 53 )); 54 54 }
Note:
See TracChangeset
for help on using the changeset viewer.