Changeset 436 for trunk/form_classes.php


Ignore:
Timestamp:
Oct 12, 2012, 11:37:49 AM (12 years ago)
Author:
chronos
Message:
  • P5idáno: Tabulky Zboží a sklady v Správě dat.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/form_classes.php

    r435 r436  
    22
    33$FormClasses = array(
     4  'Product' => array(
     5    'Title' => 'Zboží',
     6    'Table' => 'Product',
     7    'DefaultSortColumn' => 'Name',
     8    'Items' => array(
     9      'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''),
     10      'Price' => array('Type' => 'Integer', 'Caption' => 'Cena', 'Default' => '0'),
     11      'Count' => array('Type' => 'Integer', 'Caption' => 'Počet', 'Default' => ''),
     12      'Date' => array('Type' => 'Date', 'Caption' => 'Datum', 'Default' => ''),
     13      'Segment' => array('Type' => 'TNetworkSegment', 'Caption' => 'Úsek', 'Default' => ''),
     14      'Used' => array('Type' => 'Boolean', 'Caption' => 'Použito', 'Default' => '0'),
     15      'Info' => array('Type' => 'Text', 'Caption' => 'Informace', 'Default' => ''),
     16      'User' => array('Type' => 'TMember', 'Caption' => 'Uživatel', 'Default' => ''),
     17      'Consumption' => array('Type' => 'Integer', 'Caption' => 'Spotřeba', 'Default' => ''),
     18      'DeviceId' => array('Type' => 'String', 'Caption' => 'Označení', 'Default' => ''),
     19      'DeprecatedPrice' => array('Type' => 'Float', 'Caption' => 'Odpisová cena', 'Default' => ''),
     20      'StockCard' => array('Type' => 'TStockCard', 'Caption' => 'Zboží', 'Default' => ''),
     21    ),
     22  ),
     23  'Stock' => array(
     24    'Title' => 'Sklady',
     25    'Table' => 'Stock',
     26    'DefaultSortColumn' => 'Name',
     27    'Items' => array(
     28      'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''),
     29    ),
     30  ),
    431  'FinanceBillingPeriod' => array(
    532    'Title' => 'Platební období',
     
    504531    'Filter' => '1',
    505532  ),
     533  'TStockCard' => array(
     534    'Type' => 'Reference',
     535    'Table' => 'StockCard',
     536    'Id' => 'Id',
     537    'Name' => 'Name',
     538    'Filter' => '1',
     539  ),
    506540);
    507541
Note: See TracChangeset for help on using the changeset viewer.