Changeset 738 for trunk/Modules/Finance
- Timestamp:
- Apr 14, 2015, 10:20:16 PM (10 years ago)
- Location:
- trunk/Modules/Finance
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Finance/Bill.php
r727 r738 4 4 { 5 5 var $SpecificSymbol = 1; // počítačová sít 6 var $Checked; 7 6 var $Checked; 7 8 8 function GenerateHTML() 9 9 { … … 21 21 function HtmlToPdf($HtmlCode) 22 22 { 23 24 25 26 27 28 23 $Encoding = new Encoding(); 24 if($this->Checked == false) { 25 if(CommandExist('htmldoc')) { 26 $this->Checked = true; 27 } else throw new Exception('htmldoc is not installed.'); 28 } 29 29 $Output = shell_exec('echo "'.addslashes($Encoding->FromUTF8($HtmlCode)). 30 30 '"|htmldoc --no-numbered --webpage --no-embedfonts --charset 8859-2 -t pdf -'); … … 39 39 function ShowSubjectInfo($Subject) 40 40 { 41 42 41 $BooleanText = array('Ne', 'Ano'); 42 $Output = $Subject['Name'].'<br>'. 43 43 $Subject['AddressStreet'].'<br>'. 44 44 $Subject['AddressPSC'].' '.$Subject['AddressTown'].'<br>'; … … 47 47 if($Subject['Account'] != '') $Output .= 'Účet: '.$Subject['Account'].'<br>'; 48 48 if($Subject['PayVAT'] != '') $Output .= 'Plátce DPH: '.$BooleanText[$Subject['PayVAT']].'<br>'; 49 49 return($Output); 50 50 } 51 51 … … 81 81 if($Invoice['Direction'] == -1) 82 82 { 83 84 85 83 $Subject = $SubjectTo; 84 $SubjectTo = $SubjectFrom; 85 $SubjectFrom = $Subject; 86 86 } 87 87 -
trunk/Modules/Finance/Finance.php
r737 r738 159 159 function GetVATByType($TypeId) 160 160 { 161 162 161 $Time = time(); 162 $DbResult = $this->Database->select('FinanceVAT', 'Value', '(Type='.$TypeId. 163 163 ') AND (ValidFrom <= "'.TimeToMysqlDate($Time).'") AND ((ValidTo >= "'. 164 164 TimeToMysqlDate($Time).'") OR (ValidTo IS NULL)) LIMIT 1'); … … 204 204 'DefaultSortOrder' => 1, 205 205 'Items' => array( 206 207 206 'Direction' => array('Type' => 'TFinanceOperationDirection', 'Caption' => 'Směr', 'Default' => '1'), 207 'DocumentLine' => array('Type' => 'TDocumentLine', 'Caption' => 'Dokladová řada', 'Default' => ''), 208 208 'BillCode' => array('Type' => 'String', 'Caption' => 'Označení', 'Default' => ''), 209 209 'Subject' => array('Type' => 'TSubject', 'Caption' => 'Subjekt', 'Default' => ''), … … 274 274 'DefaultSortOrder' => 1, 275 275 'Items' => array( 276 277 276 'Direction' => array('Type' => 'TFinanceInvoiceDirection', 'Caption' => 'Směr', 'Default' => '1'), 277 'DocumentLine' => array('Type' => 'TDocumentLine', 'Caption' => 'Dokladová řada', 'Default' => ''), 278 278 'BillCode' => array('Type' => 'String', 'Caption' => 'Označení', 'Default' => ''), 279 279 'Subject' => array('Type' => 'TSubject', 'Caption' => 'Subjekt', 'Default' => ''), … … 286 286 'PeriodFrom' => array('Type' => 'Date', 'Caption' => 'Období od', 'Default' => '', 'Null' => true), 287 287 'PeriodTo' => array('Type' => 'Date', 'Caption' => 'Období do', 'Default' => '', 'Null' => true), 288 288 'Cash' => array('Type' => 'Boolean', 'Caption' => 'Platit hotově', 'Default' => ''), 289 289 'Items' => array('Type' => 'TFinanceInvoiceItemListInvoice', 'Caption' => 'Položky', 'Default' => ''), 290 290 'OperationRel' => array('Type' => 'TFinanceInvoiceOperationRelListInvoice', 'Caption' => 'Platba', 'Default' => ''), … … 314 314 315 315 $this->System->FormManager->RegisterFormType('TFinanceInvoiceDirection', array( 316 317 316 'Type' => 'Enumeration', 317 'States' => array(-1 => 'Příjem', 1 => 'Výdej'), 318 318 )); 319 319 … … 323 323 'Items' => array( 324 324 'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => '0'), 325 325 'Subject' => array('Type' => 'TSubject', 'Caption' => 'Subjekt', 'Default' => '0'), 326 326 ), 327 327 )); … … 353 353 )); 354 354 $this->System->FormManager->RegisterFormType('TFinanceTreasury', array( 355 356 357 358 359 355 'Type' => 'Reference', 356 'Table' => 'FinanceTreasury', 357 'Id' => 'Id', 358 'Name' => 'Name', 359 'Filter' => '1', 360 360 )); 361 361 $this->System->FormManager->RegisterClass('FinanceBankAccount', array( … … 374 374 'LoginPassword' => array('Type' => 'String', 'Caption' => 'Přihlašovací heslo', 'Default' => ''), 375 375 'Operations' => array('Type' => 'TFinanceOperationListAccount', 'Caption' => 'Operace', 'Default' => ''), 376 376 'Use' => array('Type' => 'Boolean', 'Caption' => 'Používat', 'Default' => '0'), 377 377 'LastImportDate' => array('Type' => 'Date', 'Caption' => 'Datum posledního importu', 'Default' => ''), 378 378 'LastImportId' => array('Type' => 'String', 'Caption' => 'Id posledního importu', 'Default' => ''), … … 380 380 'ReadOnly' => true, 'Suffix' => 'Kč', 'SQL' => '(SELECT SUM(`FinanceOperation`.`Value` * `FinanceOperation`.`Direction`) FROM `FinanceOperation` '. 381 381 'WHERE `FinanceOperation`.`BankAccount`=#Id)'), 382 382 'AutoImport' => array('Type' => 'Boolean', 'Caption' => 'Automaticky stahovat z banky', 'Default' => ''), 383 383 ), 384 384 'ItemActions' => array( … … 388 388 )); 389 389 $this->System->FormManager->RegisterFormType('TFinanceBankAccount', array( 390 391 392 393 394 390 'Type' => 'Reference', 391 'Table' => 'FinanceBankAccount', 392 'Id' => 'Id', 393 'Name' => 'Comment', 394 'Filter' => '1', 395 395 )); 396 396 $this->System->FormManager->RegisterClass('FinanceBank', array( … … 433 433 'TopTariffPrice' => array('Type' => 'Integer', 'Caption' => 'Nejvyšší cena tarifu', 'Default' => '0', 'Suffix' => 'Kč'), 434 434 'ChangeAction' => array('Type' => 'TActionEnum', 'Caption' => 'Změna - akce', 'Default' => '', 'Null' => true), 435 436 435 'ChangeTime' => array('Type' => 'DateTime', 'Caption' => 'Změna - čas', 'Default' => '', 'Null' => true), 436 'ChangeReplaceId' => array('Type' => 'TFinanceCharge', 'Caption' => 'Změna - položka', 'Default' => '0', 'Null' => true), 437 437 ), 438 438 )); … … 475 475 )); 476 476 $this->System->FormManager->RegisterFormType('TFinanceVAT', array( 477 478 479 480 481 477 'Type' => 'Reference', 478 'Table' => 'FinanceVAT', 479 'Id' => 'Id', 480 'Name' => 'Name', 481 'Filter' => '1', 482 482 )); 483 483 $this->System->FormManager->RegisterFormType('TFinanceVATType', array( 484 485 486 487 488 484 'Type' => 'Reference', 485 'Table' => 'FinanceVATType', 486 'Id' => 'Id', 487 'Name' => 'Name', 488 'Filter' => '1', 489 489 )); 490 490 $this->System->FormManager->RegisterFormType('TBankAccount', array( 491 492 493 494 495 496 491 'Type' => 'Reference', 492 'Table' => 'FinanceBankAccount', 493 'Id' => 'Id', 494 'Name' => 'CONCAT(`Comment`, " (", `Number`, "/", '. 495 '(SELECT `FinanceBank`.`Code` FROM `FinanceBank` WHERE `FinanceBank`.`Id`=`FinanceBankAccount`.`Bank`), ")")', 496 'Filter' => '1', 497 497 )); 498 498 … … 509 509 function BeforeInsertFinanceOperation($Form) 510 510 { 511 512 511 if(array_key_exists('Time', $Form->Values)) $Year = date("Y", $Form->Values['Time']); 512 else $Year = date("Y", $Form->Values['ValidFrom']); 513 513 $DocumentLine = $Form->Values['DocumentLine']; 514 514 $Form->Values['BillCode'] = $this->System->Modules['Finance']->GetNextDocumentLineNumber($DocumentLine, $Year); -
trunk/Modules/Finance/Import.php
r719 r738 25 25 } 26 26 } 27 27 28 28 function Prepare() 29 { 29 { 30 30 $Finance = $this->System->Modules['Finance']; 31 31 $Finance->LoadMonthParameters(0); … … 39 39 { 40 40 if(substr($Data[$Key][$Key2], 0, 2) == '\"') 41 $Data[$Key][$Key2] = substr($Data[$Key][$Key2], 2, -2); 41 $Data[$Key][$Key2] = substr($Data[$Key][$Key2], 2, -2); 42 42 } 43 43 } 44 44 $Header = array( 45 0 => 'datum zaúčtování', 45 0 => 'datum zaúčtování', 46 46 1 => 'částka', 47 47 2 => 'měna', … … 60 60 //print_r($_POST['Source']); 61 61 //print_r($Data); 62 62 63 63 if($Header != $Data[0]) $Output = 'Nekompatibilní struktura CSV'; 64 else 64 else 65 65 { 66 66 array_shift($Data); … … 85 85 $Subject = '? ('.$Value[5].')'; 86 86 } 87 if(!is_numeric($Subject)) 87 if(!is_numeric($Subject)) 88 88 { 89 89 $Mode = 'Ručně'; 90 90 $Style = 'style="background-color: LightPink;" '; 91 } else 91 } else 92 92 { 93 93 $Mode = 'Automaticky'; 94 94 $Style = ''; 95 95 } 96 96 97 97 if($Money < 0) $Text = 'Platba převodem'; 98 98 else $Text = 'Přijatá platba'; … … 106 106 '<td><input type="text" name="Taxable'.$I.'" value="1"/></td>'. 107 107 '<td><input type="text" name="Network'.$I.'" value="1"/></td>'. 108 '</tr><tr><td colspan="7">'.implode(', ', $Value).'</td></tr>'; 108 '</tr><tr><td colspan="7">'.implode(', ', $Value).'</td></tr>'; 109 109 $I++; 110 110 } … … 114 114 '<th>Datum</th><th>Var. symbol</th><th>Protiúčet</th><th>Částka [Kč]</th><th>Text</th><th>Zdanitelné</th><th>Síť</th></tr>'; 115 115 $Output .= $Automatic.'</table>'; 116 $Output .= '<input type="hidden" name="ItemCount" value="'.$I.'"/>'; 117 $Output .= '<input type="submit" value="Zpracovat"/></form>'; 116 $Output .= '<input type="hidden" name="ItemCount" value="'.$I.'"/>'; 117 $Output .= '<input type="submit" value="Zpracovat"/></form>'; 118 118 } 119 119 return($Output); 120 120 } 121 121 122 122 function InsertMoney($Subject, $Value, $Direction, $Cash, $Taxable, $Time, $Text, $DocumentLine) 123 123 { … … 125 125 $BillCode = $this->System->Modules['Finance']->GetNextDocumentLineNumber($DocumentLine, $Year); 126 126 // TODO: Fixed BankAccount=1, allow to select bank account for import 127 $this->Database->insert('FinanceOperation', array('Text' => $Text, 128 'Subject' => $Subject, 'Cash' => $Cash, 'Value' => $Value, 'Direction' => $Direction, 127 $this->Database->insert('FinanceOperation', array('Text' => $Text, 128 'Subject' => $Subject, 'Cash' => $Cash, 'Value' => $Value, 'Direction' => $Direction, 129 129 'Time' => TimeToMysqlDateTime($Time), 'Taxable' => $Taxable, 'BillCode' => $BillCode, 130 130 'BankAccount' => 1)); … … 136 136 $Finance->LoadMonthParameters(0); 137 137 $Output = ''; 138 138 139 139 for($I = $_POST['ItemCount'] - 1; $I >= 0 ; $I--) 140 140 { 141 141 // TODO: Use links to database records instead of contants 142 142 if($_POST['Money'.$I] < 0) { 143 144 143 $DocumentLine = 4; 144 $Direction = -1; 145 145 } else { 146 147 146 $DocumentLine = 3; 147 $Direction = 1; 148 148 } 149 149 $Date = explode('-', $_POST['Date'.$I]); -
trunk/Modules/Finance/Manage.php
r727 r738 109 109 $SumValue = 0; 110 110 foreach($Items as $Item) 111 $SumValue = $SumValue + ceil($Item['Price'] * $Item['Quantity']); 111 $SumValue = $SumValue + ceil($Item['Price'] * $Item['Quantity']); 112 112 $this->Database->insert('FinanceInvoice', array( 113 113 'Subject' => $Subject, 'Time' => TimeToMysqlDateTime($TimeCreation), 114 'TimeDue' => TimeToMysqlDateTime($TimeDue), 'Value' => $SumValue, 115 114 'TimeDue' => TimeToMysqlDateTime($TimeDue), 'Value' => $SumValue, 115 'Direction' => $Direction, 'BillCode' => $BillCode, 116 116 'PeriodFrom' => TimeToMysqlDate($PeriodFrom), 'PeriodTo' => TimeToMysqlDate($PeriodTo), 117 117 'Generate' => 1, 'DocumentLine' => $DocumentLine)); … … 163 163 $MonthlyTotal += $Service['Price']; 164 164 } 165 $PayPerPeriod = $MonthlyTotal * $Period['MonthCount']; 165 $PayPerPeriod = $MonthlyTotal * $Period['MonthCount']; 166 166 // We can't produce negative invoice except storno invoice. 167 // TODO: In case of negative invoice it is not sufficient to reverse invoicing direction 168 // Other subject should invoice only possitive items. Negative items should be somehow removed. 167 // TODO: In case of negative invoice it is not sufficient to reverse invoicing direction 168 // Other subject should invoice only possitive items. Negative items should be somehow removed. 169 169 if($MonthlyTotal >= 0) { 170 $DocumentLine = DOC_LINE_INVOICE_OUT;171 170 $DocumentLine = DOC_LINE_INVOICE_OUT; 171 $Direction = 1; // Standard out invoice 172 172 } else { 173 173 $DocumentLine = DOC_LINE_INVOICE_IN; 174 174 $Direction = -1; // In case of negative total value generate reverse invoice for other subject 175 175 foreach($InvoiceItems as $Index => $Item) 176 177 } 178 176 $InvoiceItems[$Index]['Price'] = -$Item['Price']; 177 } 178 179 179 if($PayPerPeriod != 0) 180 180 { … … 195 195 function TableUpdateChanges($Table) 196 196 { 197 197 $Time = time(); 198 198 $DbResult = $this->Database->select($Table, '*', '(`ChangeAction` IS NOT NULL) AND '. 199 199 '(`ChangeTime` <= "'.TimeToMysqlDateTime($Time).'") ORDER BY `ChangeTime` ASC'); 200 200 while($Service = $DbResult->fetch_array()) 201 201 { … … 225 225 function ProcessTableUpdates() 226 226 { 227 228 229 230 231 232 233 234 235 236 237 238 239 240 } 241 227 // Update finance charge 228 $Output = 'Měním aktuální parametry sítě...<br>'; 229 $this->TableUpdateChanges('FinanceCharge'); 230 231 // Update services 232 $Output .= 'Aktualizuji služby....<br>'; 233 $this->TableUpdateChanges('Service'); 234 235 // Update customer service selections 236 $Output .= 'Aktualizuji výběr služeb zákazníků....<br>'; 237 $this->TableUpdateChanges('ServiceCustomerRel'); 238 239 return($Output); 240 } 241 242 242 function ProcessMonthlyPayment() 243 243 { … … 246 246 247 247 $Output .= $this->ProcessTableUpdates(); 248 248 249 249 $Finance = &$this->System->Modules['Finance']; 250 250 $Finance->LoadMonthParameters(0); … … 282 282 $Output .= 'Odečítám měsíční poplatek...<br />'; 283 283 $Output .= $this->ProduceInvoices(); 284 284 285 285 $Output .= 'Přidávám měsíční přehled...<br />'; 286 286 $DbResult = $this->Database->query('SELECT * FROM `FinanceCharge` WHERE (`ChangeAction` IS NULL) LIMIT 1'); … … 327 327 328 328 $DbResult = $this->Database->query('SELECT `FinanceBankAccount`.*, '. 329 329 'CONCAT(`FinanceBankAccount`.`Number`, "/", `FinanceBank`.`Code`) AS `NumberFull` FROM `FinanceBankAccount` '. 330 330 'JOIN `FinanceBank` ON `FinanceBank`.`Id`=`FinanceBankAccount`.`Bank` '. 331 331 'WHERE (`FinanceBankAccount`.`Subject`='.$Config['Finance']['MainSubjectId'].') '. 332 332 'AND (`FinanceBankAccount`.`Use`=1)'); 333 333 $MainSubjectAccount = $DbResult->fetch_assoc(); 334 334 … … 356 356 $DbResult = $this->Database->query('SELECT T1.* FROM ((SELECT `Text`, `Time`, (`Value`*`Direction`) AS `Value`, `File` FROM `FinanceOperation` WHERE (`Subject`='.$Member['Subject'].')) UNION ALL '. 357 357 '(SELECT (SELECT GROUP_CONCAT(`Description` SEPARATOR ", ") FROM `FinanceInvoiceItem` '. 358 359 358 'WHERE `FinanceInvoiceItem`.`FinanceInvoice` = `FinanceInvoice`.`Id`) AS `Text`, '. 359 '`Time`, -(`Value`*`Direction`) AS `Value`, `File` FROM `FinanceInvoice` WHERE (`Subject`='. 360 360 $Member['Subject'].')) ORDER BY `Time` DESC) AS `T1` WHERE (`T1`.`Time` > "'.$Member['BillingPeriodLastDate'].'")'); 361 361 while($DbRow = $DbResult->fetch_assoc()) -
trunk/Modules/Finance/UserState.php
r728 r738 9 9 function ShowFinanceOperation($Subject) 10 10 { 11 12 13 14 11 $UserOperationTableQuery = '((SELECT `Text`, `Time`, (`Value`*`Direction`) AS `Value`, `File`, `BillCode`, NULL AS `PeriodFrom`, NULL AS `PeriodTo` '. 12 'FROM `FinanceOperation` WHERE (`Subject`='.$Subject['Id'].')) UNION ALL '. 13 '(SELECT (SELECT GROUP_CONCAT(`Description` SEPARATOR ",") FROM `FinanceInvoiceItem` WHERE `FinanceInvoice`=`FinanceInvoice`.`Id`) AS `Text`, '. 14 '`Time`, -(`Value`*`Direction`) AS `Value`, `File`, `BillCode`, `PeriodFrom`, `PeriodTo` FROM `FinanceInvoice` WHERE (`Subject`='.$Subject['Id'].')))'; 15 15 16 16 $Output = '<div style="text-align:center">Výpis finančních operací</div>'; 17 18 19 17 $DbResult = $this->Database->query('SELECT COUNT(*) FROM '.$UserOperationTableQuery.' AS `T1`'); 18 $DbRow = $DbResult->fetch_row(); 19 $PageList = GetPageList($DbRow[0]); 20 20 21 22 21 $Output .= $PageList['Output']; 22 $Output .= '<table class="WideTable" style="font-size: small;">'; 23 23 24 25 26 27 28 29 30 31 32 33 24 $TableColumns = array( 25 array('Name' => 'Time', 'Title' => 'Datum'), 26 array('Name' => 'Text', 'Title' => 'Popis'), 27 array('Name' => 'Value', 'Title' => 'Změna [Kč]'), 28 array('Name' => 'State', 'Title' => 'Zůstatek [Kč]'), 29 array('Name' => 'PeriodFrom', 'Title' => 'Období'), 30 array('Name' => 'BillCode', 'Title' => 'Doklad'), 31 ); 32 $Order = GetOrderTableHeader($TableColumns, 'Time', 1); 33 $Output .= $Order['Output']; 34 34 35 36 37 35 $StateQuery = 'SELECT SUM(`T2`.`Value`) FROM '.$UserOperationTableQuery. 36 ' AS `T2` WHERE `T2`.`Time` <= `T1`.`Time` '; 37 $Query = 'SELECT *, ('.$StateQuery.') AS `State` FROM '.$UserOperationTableQuery.' AS `T1` '.$Order['SQL'].$PageList['SQLLimit']; 38 38 39 39 $DbResult = $this->Database->query($Query); 40 40 $SumValue = 0; 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 41 while($Row = $DbResult->fetch_assoc()) 42 { 43 $Row['State'] = round($Row['State'], 2); 44 if($Row['State'] > 0) $Row['State'] = '<span style="color:green;">'.$Row['State'].'</span>'; 45 if($Row['State'] < 0) $Row['State'] = '<span style="color:red;">'.$Row['State'].'</span>'; 46 if($Row['Value'] == -0) $Row['Value'] = 0; 47 if($Row['Value'] > 0) $Row['Value'] = '+'.$Row['Value']; 48 if($Row['BillCode'] == '') $Row['BillCode'] = 'PDF'; 49 if($Row['File'] > 0) $Invoice = '<a href="'.$this->System->Link('/file?id='.$Row['File']).'">'.$Row['BillCode'].'</a>'; 50 else $Invoice = NotBlank($Row['BillCode']); 51 if($Row['PeriodFrom'] != '') $Period = HumanDate($Row['PeriodFrom']).' - '.HumanDate($Row['PeriodTo']); 52 else $Period = ' '; 53 $Output .= '<tr><td style="text-align: right;">'.HumanDate($Row['Time']).'</td>'. 54 '<td style="text-align: left;">'.$Row['Text'].'</td>'. 55 '<td style="text-align: right;">'.round($Row['Value'], 2).'</td>'. 56 '<td style="text-align: right;">'.$Row['State'].'</td>'. 57 '<td>'.$Period.'</td>'. 58 '<td>'.$Invoice.'</td></tr>'; 59 $SumValue = $SumValue + $Row['Value']; 60 } 61 $Output .= '</table>'; 62 $Output .= $PageList['Output']; 63 return($Output); 64 64 } 65 65 … … 85 85 } else return($this->SystemMessage('Chyba', 'Nejste zákazníkem')); 86 86 } 87 87 88 88 // Load customer info 89 89 $DbResult = $this->Database->query('SELECT * FROM `Member` WHERE `Id`='.$CustomerId); 90 90 if($DbResult->num_rows == 1) 91 91 { 92 $Customer = $DbResult->fetch_assoc();92 $Customer = $DbResult->fetch_assoc(); 93 93 } else return($this->SystemMessage('Položka nenalezena', 'Zákazník nenalezen')); 94 95 94 95 96 96 // Load subject info 97 97 $DbResult = $this->Database->query('SELECT * FROM `Subject` WHERE `Id`='.$Customer['Subject']); 98 98 if($DbResult->num_rows == 1) 99 { 100 $Subject = $DbResult->fetch_assoc(); 99 { 100 $Subject = $DbResult->fetch_assoc(); 101 101 } else return($this->SystemMessage('Položka nenalezena', 'Subjekt nenalezen')); 102 103 104 $Output = '<table width="100%" border="0" cellspacing="0" cellpadding="3"><tr><td valign="top">'; 102 103 104 $Output = '<table width="100%" border="0" cellspacing="0" cellpadding="3"><tr><td valign="top">'; 105 105 106 106 // Account state … … 120 120 121 121 $DbResult = $this->Database->query('SELECT FinanceBankAccount.*, CONCAT(FinanceBankAccount.Number, "/", FinanceBank.Code) AS NumberFull FROM FinanceBankAccount '. 122 123 122 'JOIN FinanceBank ON FinanceBank.Id=FinanceBankAccount.Bank '. 123 'WHERE (FinanceBankAccount.`Subject`='.$this->System->Config['Finance']['MainSubjectId'].') AND (FinanceBankAccount.`Use`=1)'); 124 124 $SubjectFromAccount = $DbResult->fetch_assoc(); 125 125 $Account = $SubjectFromAccount['NumberFull']; … … 138 138 while($DbRow = $DbResult->fetch_assoc()) 139 139 { 140 140 $Output .= '<tr><td>'.$DbRow['Name'].'</td><td>'.$DbRow['Price'].'</td></tr>'; 141 141 $Total += $DbRow['Price']; 142 142 } -
trunk/Modules/Finance/Zivnost.php
r724 r738 50 50 $Balance['SmallAssets']['End'] = $Row[0] + 0; 51 51 return($Balance); 52 } 52 } 53 53 54 54 function Show() … … 142 142 $Output .= '<strong>Příjmy za rok '.$Year['Year'].'</strong>'; 143 143 $Output .= '<table style="font-size: smaller;" class="WideTable">'; 144 $Output .= '<tr><th>Čas</th><th>Kód</th><th>Subjekt</th><th>Text</th><th>Hodnota [Kč]</th><th>Daňový</th><th>Hotovost</th></tr>'; 144 $Output .= '<tr><th>Čas</th><th>Kód</th><th>Subjekt</th><th>Text</th><th>Hodnota [Kč]</th><th>Daňový</th><th>Hotovost</th></tr>'; 145 145 $DbResult = $this->Database->query('SELECT * FROM FinanceOperation LEFT JOIN Subject ON Subject.Id = FinanceOperation.Subject '. 146 146 'WHERE (Direction = 1) AND (FinanceOperation.Time >= "'.$Year['DateStart'].'") AND (FinanceOperation.Time <= "'.$Year['DateEnd'].'") ORDER BY Time'); … … 172 172 $Output .= '<strong>Výdaje za rok '.$Year['Year'].'</strong>'; 173 173 $Output .= '<table style="font-size: smaller;" class="WideTable">'; 174 $Output .= '<tr><th>Čas</th><th>Kód</th><th>Subjekt</th><th>Text</th><th>Hodnota [Kč]</th><th>Daňový</th><th>Hotovost</th></tr>'; 174 $Output .= '<tr><th>Čas</th><th>Kód</th><th>Subjekt</th><th>Text</th><th>Hodnota [Kč]</th><th>Daňový</th><th>Hotovost</th></tr>'; 175 175 $DbResult = $this->Database->query('SELECT * FROM FinanceOperation LEFT JOIN Subject ON Subject.Id = FinanceOperation.Subject '. 176 176 'WHERE (Direction = -1) AND (FinanceOperation.Time >= "'.$Year['DateStart'].'") AND (FinanceOperation.Time <= "'.$Year['DateEnd'].'") ORDER BY Time'); … … 197 197 $DbResult = $this->Database->select('FinanceYear', '*', 'Id='.$_GET['year']); 198 198 $Year = $DbResult->fetch_assoc(); 199 199 200 200 $Total = 0; 201 201 $Output .= '<strong>Pohledávky za rok '.$Year['Year'].'</strong>'; … … 234 234 $Row['Value'] = $Row['Value'] * -1; 235 235 $Output .= '<tr><td>'.HumanDate($Row['Time']).'</td><td>'.$Row['BillCode']. 236 '</td><td>'.$Row['Name'].'</td><td>'.$Row['Text'].'</td><td>'.($Row['Value'] * $Row['Direction']).'</td></tr>'; 236 '</td><td>'.$Row['Name'].'</td><td>'.$Row['Text'].'</td><td>'.($Row['Value'] * $Row['Direction']).'</td></tr>'; 237 237 $Total += $Row['Value']; 238 238 } … … 288 288 $Output .= '<tr><th>Datum vytvoření</th><th>Datum zaplacení</th><th>Název</th><th>Hodnota [Kč]</th><th>Doklad</th></tr>'; 289 289 $DbResult = $this->Database->select('FinanceInvoice', '*, (SELECT GROUP_CONCAT(Description SEPARATOR ",") '. 290 'FROM FinanceInvoiceItem WHERE FinanceInvoiceItem.FinanceInvoice = FinanceInvoice.Id) AS Text',291 290 'FROM FinanceInvoiceItem WHERE FinanceInvoiceItem.FinanceInvoice = FinanceInvoice.Id) AS Text', 291 'Subject='.$_GET['Id'].' ORDER BY Time'); 292 292 while($Row = $DbResult->fetch_array()) 293 293 { … … 317 317 'WHERE (FinanceInvoice.Subject = Subject.Id) AND (FinanceInvoice.Direction = -1) '. 318 318 'AND (TimePayment IS NULL)) AS OpenedLiabilities, '. 319 319 '(SELECT SUM(FinanceOperation.Value*FinanceOperation.Direction) '. 320 320 'FROM FinanceOperation WHERE FinanceOperation.Subject = Subject.Id AND FinanceOperation.Direction = 1) '. 321 321 'AS Gains, (SELECT SUM(FinanceOperation.Value*FinanceOperation.Direction) FROM FinanceOperation WHERE '. … … 341 341 $Output .= '<strong>Roční přehledy</strong><br/>'; 342 342 $Output .= $this->ShowFinanceYears(); 343 if(array_key_exists('year', $_GET)) 343 if(array_key_exists('year', $_GET)) 344 344 { 345 345 $Year = $_GET['year'] * 1; … … 353 353 return($Output); 354 354 } 355 355 356 356 function ShowFinanceYears() 357 357 {
Note:
See TracChangeset
for help on using the changeset viewer.