Changeset 738 for trunk/Modules/FinanceBankAPI/ImportPS.php
- Timestamp:
- Apr 14, 2015, 10:20:16 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/FinanceBankAPI/ImportPS.php
r550 r738 14 14 $Data = explode("\n", $Content); 15 15 } 16 16 17 17 function ImportCVS($Content) 18 18 { 19 19 $Finance = &$this->System->Modules['Finance']; 20 20 21 21 $Data = explode("\n", $Content); 22 22 foreach($Data as $Key => $Value) … … 45 45 11 => '', 46 46 ); 47 47 48 48 if($Header != $Data[0]) $Output = 'Nekompatibilní struktura CSV'; 49 49 else … … 79 79 $Style = ''; 80 80 } 81 81 82 82 if($Money < 0) $Text = 'Platba převodem'; 83 83 else $Text = 'Přijatá platba'; … … 102 102 $Output .= '<input type="submit" value="Zpracovat"/></form>'; 103 103 } 104 } 104 } 105 105 }
Note:
See TracChangeset
for help on using the changeset viewer.