Changeset 536 for trunk/Modules/FinanceBankAPI/FileImport.php
- Timestamp:
- May 18, 2013, 6:51:10 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/FinanceBankAPI/FileImport.php
r524 r536 26 26 var $FullTitle = 'Import plateb přes API'; 27 27 var $ShortTitle = 'Import plateb přes API'; 28 var $ParentClass = 'PageFinance'; 28 29 29 30 function Show() 30 31 { 32 $Output = ''; 31 33 if(!$this->System->User->CheckPermission('Finance', 'SubjectList')) return('Nemáte oprávnění'); 32 34 33 $DbResult = $this->Database->select('FinanceBankAccount', '*', 'Id='.$_GET['i d']);35 $DbResult = $this->Database->select('FinanceBankAccount', '*', 'Id='.$_GET['i']); 34 36 $BankAccount = $DbResult->fetch_assoc(); 35 37 … … 41 43 else if($Bank['Code'] == '0300') $Import = new ImportPS($this->Database); 42 44 else $Output = $this->SystemMessage('Nepodporované API', 'Pro zvolenou banku není import podporován'); 43 $Import->BankAccountId = $BankAccount['Id']; 44 $Output .= $Import->Import(); 45 45 if(isset($Import)) 46 { 47 $Import->BankAccountId = $BankAccount['Id']; 48 $Output .= $Import->Import(); 49 } 46 50 return($Output); 47 51 } … … 52 56 var $FullTitle = 'Import plateb ze souboru'; 53 57 var $ShortTitle = 'Import plateb ze souboru'; 54 58 var $ParentClass = 'PageFinance'; 59 55 60 function Show() 56 61 {
Note:
See TracChangeset
for help on using the changeset viewer.