Changeset 551 for trunk/Modules/IS/IS.php
- Timestamp:
- Jul 7, 2013, 9:26:44 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/IS/IS.php
r548 r551 65 65 $DbRow = $DbResult->fetch_row(); 66 66 $Output .= 'Stav placení: '.$DbRow['0'].'<br/>'; 67 $DbResult = $this->Database->select('FinanceBankImport', 'COUNT(*)', 'FinanceOperation IS NULL'); 68 $DbRow = $DbResult->fetch_row(); 69 $Output .= 'Nezpárovaných plateb: '.$DbRow['0'].'<br/>'; 67 70 return($Output); 68 71 } … … 136 139 $Form->LoadValuesFromForm(); 137 140 try { 141 if(array_key_exists('BeforeInsert', $Form->Definition)) 142 { 143 $Class = $Form->Definition['BeforeInsert'][0]; 144 $Method = $Form->Definition['BeforeInsert'][1]; 145 $this->Values = $Class->$Method($Form); 146 } 138 147 $Form->SaveValuesToDatabase(0); 139 148 $Output .= $this->SystemMessage('Přidání položky', 'Nová položka vytvořena');
Note:
See TracChangeset
for help on using the changeset viewer.