Changeset 742 for trunk/Application/FormClasses.php
- Timestamp:
- Jul 7, 2015, 12:12:12 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/FormClasses.php
r740 r742 30 30 'Shortcut' => array('Type' => 'String', 'Caption' => 'Kód', 'Default' => ''), 31 31 'Sequence' => array('Type' => 'TDocumentLineSequenceListLine', 'Caption' => 'Čísleníky', 'Default' => ''), 32 'Codes' => array('Type' => 'TDocumentLineCodeList', 'Caption' => 'Kódy', 'Default' => ''), 32 33 ), 33 34 ), … … 43 44 'Operations' => array('Type' => 'TFinanceOperationListDocumentLine', 'Caption' => 'Finanční operace', 'Default' => ''), 44 45 'Invoices' => array('Type' => 'TFinanceInvoiceListDocumentLine', 'Caption' => 'Faktury', 'Default' => ''), 46 ), 47 ), 48 'DocumentLineCode' => array( 49 'Title' => 'Kód dokladových řad', 50 'Table' => 'DocumentLineCode', 51 'DefaultSortColumn' => 'Name', 52 'Items' => array( 53 'DocumentLine' => array('Type' => 'TDocumentLine', 'Caption' => 'Dokladová řada', 'Default' => ''), 54 'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''), 45 55 ), 46 56 ), … … 164 174 'Filter' => '1', 165 175 ), 166 'TStockSerialNumberListStock' => array( 176 'TDocumentLineCode' => array( 177 'Type' => 'Reference', 178 'Table' => 'DocumentLineCode', 179 'Id' => 'Id', 180 'Name' => 'Name', 181 'Filter' => '1', 182 ), 183 'TStockSerialNumberListStock' => array( 167 184 'Type' => 'ManyToOne', 168 185 'Table' => 'StockSerialNumber', … … 210 227 'Table' => 'FinanceInvoice', 211 228 'Id' => 'Id', 212 'Name' => ' BillCode',229 'Name' => '(SELECT `DocumentLineCode`.`Name` FROM `DocumentLineCode` WHERE `Id`=`FinanceInvoice`.`BillCode`)', 213 230 'Filter' => '1', 214 231 ), … … 217 234 'Table' => 'FinanceOperation', 218 235 'Id' => 'Id', 219 'Name' => ' BillCode',236 'Name' => '(SELECT `DocumentLineCode`.`Name` FROM `DocumentLineCode` WHERE `Id`=`FinanceOperation`.`BillCode`)', 220 237 'Filter' => '1', 221 238 ), … … 241 258 'Filter' => '1', 242 259 ), 243 'TUserCustomerRelListUser' => array( 260 'TDocumentLineCodeList' => array( 261 'Type' => 'ManyToOne', 262 'Table' => 'DocumentLineCode', 263 'Id' => 'Id', 264 'Ref' => 'DocumentLine', 265 'Filter' => '1', 266 ), 267 'TUserCustomerRelListUser' => array( 244 268 'Type' => 'ManyToOne', 245 269 'Table' => 'UserCustomerRel',
Note:
See TracChangeset
for help on using the changeset viewer.