- Timestamp:
- Sep 8, 2020, 5:26:30 PM (4 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/Version.php
r883 r884 1 1 <?php 2 2 3 $Revision = 88 3; // Subversion revision3 $Revision = 884; // Subversion revision 4 4 $DatabaseRevision = 882; // SQL structure revision 5 5 $ReleaseTime = strtotime('2020-09-08'); -
trunk/Modules/FinanceBankAPI/FileImport.php
r874 r884 42 42 $BillCode = $this->System->Modules['Finance']->GetNextDocumentLineNumberId($FinanceGroup['DocumentLine'], $Year); 43 43 $DbResult3 = $this->Database->insert('FinanceOperation', array('Subject' => $DbRow2['Id'], 'Cash' => 0, 44 'ValueUser' => Abs($DbRow['Value']), ' Taxable' => 1, 'BankAccount' => $DbRow['BankAccount'], 'Network' => 1,44 'ValueUser' => Abs($DbRow['Value']), 'Value' => 0, 'Taxable' => 1, 'BankAccount' => $DbRow['BankAccount'], 'Network' => 1, 45 45 'Time' => $DbRow['Time'], 'Text' => $DbRow['Description'], 'BillCode' => $BillCode, 'Group' => $FinanceGroup['Id'])); 46 46 $Id = $this->Database->insert_id; -
trunk/Modules/FinanceBankAPI/ImportFio.php
r874 r884 27 27 if ($DbResult->num_rows == 0) 28 28 { 29 $Record['Value'] = str_replace(",", ".", $Record['Value']); 29 30 $Output .= '<tr>'; 30 31 $this->Database->insert('FinanceBankImport', array('Time' => TimeToMysqlDate($Record['Date']),
Note:
See TracChangeset
for help on using the changeset viewer.