Ignore:
Timestamp:
May 18, 2013, 8:21:50 PM (11 years ago)
Author:
chronos
Message:
  • Upraveno: Některé formulářové typy přesunuty do jednotlivých modulů.
  • Přidáno: Moduly Customer, Task a Stock.
File:
1 edited

Legend:

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

    r521 r538  
    2929  {
    3030    parent::Start();
    31     $FormClass = array(
     31    $this->System->FormManager->RegisterClass('ImportBankFile', array(
    3232      'Title' => 'Import souborů s platbami',
    3333      'Table' => 'FinanceBank',
     
    3737        'File' => array('Type' => 'File', 'Caption' => 'Soubor', 'Default' => ''),
    3838      ),
    39     );
    40     $this->System->FormManager->RegisterClass('ImportBankFile', $FormClass);
     39    ));
     40    $this->System->FormManager->RegisterClass('FinanceBankImport', array(
     41      'Title' => 'Import plateb z účtu',
     42      'Table' => 'FinanceBankImport',
     43      'Items' => array(
     44        'BankAccount' => array('Type' => 'TBankAccount', 'Caption' => 'Účet', 'Default' => ''),
     45        'Time' => array('Type' => 'Date', 'Caption' => 'Čas', 'Default' => ''),
     46        'Identification' => array('Type' => 'String', 'Caption' => 'Kód operace', 'Default' => ''),
     47        'AccountNumber' => array('Type' => 'String', 'Caption' => 'Číslo účtu', 'Default' => ''),
     48        'VariableSymbol' => array('Type' => 'String', 'Caption' => 'Variabilní symbol', 'Default' => ''),
     49        'ConstantSymbol' => array('Type' => 'String', 'Caption' => 'Konstantní symbol', 'Default' => ''),
     50        'SpecificSymbol' => array('Type' => 'String', 'Caption' => 'Specifický symbol', 'Default' => ''),
     51        'Value' => array('Type' => 'Float', 'Caption' => 'Částka', 'Default' => ''),
     52        'Currency' => array('Type' => 'TCurrency', 'Caption' => 'Měna', 'Default' => ''),
     53        'Description' => array('Type' => 'String', 'Caption' => 'Popis operace', 'Default' => ''),
     54        'OffsetAccountName' => array('Type' => 'String', 'Caption' => 'Jméno protiúčtu', 'Default' => ''),
     55        'FinanceOperation' => array('Type' => 'TFinanceOperation', 'Caption' => 'Přiřazená operace', 'Default' => '', 'Null' => true),
     56      ),
     57    ));
     58   
    4159    $this->System->RegisterPage(array('finance', 'import-api'), 'PageImportAPI');
    4260    $this->System->RegisterPage(array('finance', 'import-soubor'), 'PageImportFile');
Note: See TracChangeset for help on using the changeset viewer.