Changeset 499 for trunk/form_classes.php


Ignore:
Timestamp:
Mar 3, 2013, 11:27:30 PM (12 years ago)
Author:
chronos
Message:
  • Přidáno: Tabulky pro evidenci importu plateb z účtu a pro seznam měn.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/form_classes.php

    r498 r499  
    1717
    1818$FormClasses = array(   
     19  'FinanceBankImport' => array(
     20    'Title' => 'Import plateb z účtu',
     21    'Table' => 'FinanceBankImport',
     22    'Items' => array(
     23      'BankAccount' => array('Type' => 'TBankAccount', 'Caption' => 'Účet'),
     24      'Time' => array('Type' => 'Date', 'Caption' => 'Čas', 'Default' => ''),
     25      'Identification' => array('Type' => 'String', 'Caption' => 'Kód operace', 'Default' => ''),
     26      'AccountNumber' => array('Type' => 'String', 'Caption' => 'Číslo účtu', 'Default' => ''),
     27      'VariableSymbol' => array('Type' => 'String', 'Caption' => 'Variabilní symbol', 'Default' => ''),
     28      'ConstantSymbol' => array('Type' => 'String', 'Caption' => 'Konstantní symbol', 'Default' => ''),
     29      'SpecificSymbol' => array('Type' => 'String', 'Caption' => 'Specifický symbol', 'Default' => ''),
     30      'Value' => array('Type' => 'Float', 'Caption' => 'Částka', 'Default' => ''),
     31      'Currency' => array('Type' => 'TCurrency', 'Caption' => 'Měna', 'Default' => ''),
     32      'Description' => array('Type' => 'String', 'Caption' => 'Popis operace', 'Default' => ''),
     33      'OffsetAccountName' => array('Type' => 'String', 'Caption' => 'Jméno protiúčtu', 'Default' => ''),
     34      'FinanceOperation' => array('Type' => 'TFinanceOperation', 'Caption' => 'Přiřazená operace', 'Default' => '', 'Null' => true),
     35    ),
     36  ),
     37  'Currency' => array(
     38    'Title' => 'Měny',
     39    'Table' => 'Currency',
     40    'Items' => array(
     41      'Code' => array('Type' => 'String', 'Caption' => 'Kód'),
     42      'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''),
     43      'Symbol' => array('Type' => 'String', 'Caption' => 'Symbol', 'Default' => ''),
     44    ),
     45  ),
    1946  'EmailQueue' => array(
    2047    'Title' => 'Fronta e-mailů',
     
    10761103    'Filter' => '1',
    10771104  ),
     1105  'TCurrency' => array(
     1106    'Type' => 'Reference',
     1107    'Table' => 'Currency',
     1108    'Id' => 'Id',
     1109    'Name' => 'Code',
     1110    'Filter' => '1',
     1111  ),
    10781112  'TFinanceInvoice' => array(
    10791113    'Type' => 'Reference',
    10801114    'Table' => 'FinanceInvoice',
     1115    'Id' => 'Id',
     1116    'Name' => 'BillCode',
     1117    'Filter' => '1',
     1118  ),
     1119  'TFinanceOperation' => array(
     1120    'Type' => 'Reference',
     1121    'Table' => 'FinanceOperation',
    10811122    'Id' => 'Id',
    10821123    'Name' => 'BillCode',
Note: See TracChangeset for help on using the changeset viewer.