Ignore:
Timestamp:
Apr 14, 2015, 10:20:16 PM (9 years ago)
Author:
chronos
Message:
  • Removed: Spaces on end of line.
  • Modified: Tabs converted to spaces.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Employee/Employee.php

    r736 r738  
    3737        'Contract' => array('Type' => 'TContract', 'Caption' => 'Smlouva', 'Default' => ''),
    3838      ),
    39     ));         
    40         $this->System->FormManager->RegisterFormType('TEmployee', array(
     39    ));
     40    $this->System->FormManager->RegisterFormType('TEmployee', array(
    4141      'Type' => 'Reference',
    42         'Table' => 'Employee',
    43         'Id' => 'Id',
    44         'Name' => 'CONCAT_WS(" ", NULLIF(`FirstName`, ""), NULLIF(`SecondName`, ""))',
    45         'Filter' => '1',
    46     ));   
     42      'Table' => 'Employee',
     43      'Id' => 'Id',
     44      'Name' => 'CONCAT_WS(" ", NULLIF(`FirstName`, ""), NULLIF(`SecondName`, ""))',
     45      'Filter' => '1',
     46    ));
    4747    $this->System->FormManager->RegisterFormType('TEmployeeSalaryList', array(
    48         'Type' => 'ManyToOne',
    49         'Table' => 'EmployeeSalary',
    50         'Id' => 'Id',
    51         'Ref' => 'Employee',
    52         'Filter' => '1',
     48      'Type' => 'ManyToOne',
     49      'Table' => 'EmployeeSalary',
     50      'Id' => 'Id',
     51      'Ref' => 'Employee',
     52      'Filter' => '1',
    5353    ));
    5454  }
Note: See TracChangeset for help on using the changeset viewer.