Changeset 738 for trunk/Modules/FinanceBankAPI/FioDemo.php
- Timestamp:
- Apr 14, 2015, 10:20:16 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/FinanceBankAPI/FioDemo.php
r548 r738 1 1 <?php 2 2 3 3 include('FioAPI.php'); 4 4 5 5 $Fio = new FioAPI(); 6 6 $Fio->Token = ''; … … 14 14 { 15 15 echo('<tr>'); 16 if($Record['Type'] == GPC_TYPE_REPORT) 16 if($Record['Type'] == GPC_TYPE_REPORT) 17 17 { 18 18 echo('<td>Jméno účtu: '.$Record['AccountName'].'</td>'); … … 22 22 echo('<td>Suma příjmů: '.$Record['CreditValue'].' Kč</td>'); 23 23 echo('<td>Suma výdajů: '.$Record['DebitValue'].' Kč</td>'); 24 24 25 25 echo('</tr></table><br><br>'); 26 26 echo('<table border="1"><tr>'); 27 27 28 28 echo('<th>Datum</th>'); 29 29 echo('<th>Částka</th>'); … … 35 35 echo('<th>Uživatelská identifikace</th>'); 36 36 } else 37 if($Record['Type'] == GPC_TYPE_ITEM) 37 if($Record['Type'] == GPC_TYPE_ITEM) 38 38 { 39 39 echo('<td>'.date('j.n.Y', $Record['DueDate']).'</td>'); … … 45 45 echo('<td>'.$Record['SpecificSymbol'].'</td>'); 46 46 echo('<td>'.$Record['ClientName'].'</td>'); 47 } 47 } 48 48 echo('</tr>'); 49 49 50 50 } 51 51 echo('</table>');
Note:
See TracChangeset
for help on using the changeset viewer.