Changeset 810 for trunk/Modules/Finance/Finance.php
- Timestamp:
- Mar 6, 2016, 11:23:58 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Finance/Finance.php
r809 r810 422 422 'TimeCreate' => array('Type' => 'Date', 'Caption' => 'Čas vytvoření', 'Default' => ''), 423 423 'State' => array('Type' => 'Float', 'Caption' => 'Stav', 'Default' => '', 424 'ReadOnly' => true, 'Suffix' => 'Kč', 'SQL' => ' (SELECT SUM(`FinanceOperation`.`Value`) FROM `FinanceOperation` '.425 'WHERE `FinanceOperation`.`Treasury`=#Id) '),424 'ReadOnly' => true, 'Suffix' => 'Kč', 'SQL' => 'IFNULL(ROUND((SELECT SUM(`FinanceOperation`.`Value`) FROM `FinanceOperation` '. 425 'WHERE `FinanceOperation`.`Treasury`=#Id), '.$Config['Finance']['Rounding'].'), 0)'), 426 426 'Operations' => array('Type' => 'TFinanceOperationListTreasury', 'Caption' => 'Operace', 'Default' => ''), 427 427 'Check' => array('Type' => 'TFinanceTreasuryCheckListTreasury', 'Caption' => 'Kontrola', 'Default' => ''),
Note:
See TracChangeset
for help on using the changeset viewer.