Changeset 765 for trunk/Modules


Ignore:
Timestamp:
Nov 6, 2015, 8:40:19 PM (9 years ago)
Author:
chronos
Message:
  • Added: Customer support activity table.
  • Added: Show operations for operation group.
Location:
trunk/Modules
Files:
4 edited

Legend:

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

    r755 r765  
    3434        'UserRel' => array('Type' => 'TUserCustomerRelListCustomer', 'Caption' => 'Přiřazení uživatelé', 'Default' => ''),
    3535        'ServiceRel' => array('Type' => 'TServiceCustomerRelListCustomer', 'Caption' => 'Placené služby', 'Default' => ''),
     36        'SupportActivity' => array('Type' => 'TSupportActivityListCustomer', 'Caption' => 'Zákaznická podpora', 'Default' => ''),
    3637        'Consumption' => array('Type' => 'TCustomerStockSerialNumber', 'Caption' => 'Spotřeba zařízení', 'Default' => ''),
    3738      ),
     
    148149      'Filter' => '1',
    149150    ));
     151    $this->System->FormManager->RegisterClass('SupportActivity', array(
     152      'Title' => 'Zákaznická podpora',
     153      'Table' => 'SupportActivity',
     154      'DefaultSortColumn' => 'Time',
     155      'Items' => array(
     156        'Time' => array('Type' => 'DateTime', 'Caption' => 'Čas', 'Default' => ''),
     157        'Description' => array('Type' => 'Text', 'Caption' => 'Popis', 'Default' => ''),
     158        'Customer' => array('Type' => 'TMember', 'Caption' => 'Zákazník', 'Default' => ''),
     159        'User' => array('Type' => 'TUser', 'Caption' => 'Pracovník', 'Default' => ''),
     160      ),
     161    ));
     162    $this->System->FormManager->RegisterFormType('TSupportActivityListCustomer', array(
     163      'Type' => 'ManyToOne',
     164      'Table' => 'SupportActivity',
     165      'Id' => 'Id',
     166      'Ref' => 'Customer',
     167      'Filter' => '1',
     168    ));
    150169
    151170    $this->System->ModuleManager->Modules['IS']->RegisterDashboardItem('Customer',
  • trunk/Modules/Finance/Finance.php

    r761 r765  
    297297        'ValueSign' => array('Type' => 'TFinanceValueSign', 'Caption' => 'Znaménko hodnoty', 'Default' => '0'),
    298298        'Direction' => array('Type' => 'TFinanceDirection', 'Caption' => 'Směr', 'Default' => '0'),
     299        'Items' => array('Type' => 'TFinanceOperationListGroup', 'Caption' => 'Operace', 'Default' => ''),
    299300      ),
    300301    ));
  • trunk/Modules/FinanceBankAPI/FileImport.php

    r764 r765  
    7878    $DbResult = $this->Database->select('FinanceBank', '*', 'Id='.$BankAccount['Bank']);
    7979    $Bank = $DbResult->fetch_assoc();
    80     $Output .= 'Účet: '.$BankAccount['Number'].'/'.$Bank['Code'].' ('.$Bank['Name'].')';
     80    $Output .= 'Účet: '.$BankAccount['Number'].'/'.$Bank['Code'].' ('.$Bank['Name'].')'."\n";
    8181
    8282    if($Bank['Code'] == '2010') $Import = new ImportFio($this->System);
  • trunk/Modules/FinanceBankAPI/ImportFio.php

    r738 r765  
    3838        $Output .= '<td>'.$Record['UserIdent'].'</td>';
    3939        $Output .= '<td>'.$Record['Value'].'</td>';
    40         $Output .= '</tr>';
     40        $Output .= '</tr>'."\n";
    4141      }
    4242    }
Note: See TracChangeset for help on using the changeset viewer.