source: trunk/Modules/Finance/UserState.php@ 874

Last change on this file since 874 was 874, checked in by chronos, 5 years ago
  • Modified: Do not use parenthesis around returned value.
File size: 7.5 KB
Line 
1<?php
2
3class PageFinanceUserState extends Page
4{
5 var $FullTitle = 'Stav financí účastníka';
6 var $ShortTitle = 'Stav financí';
7 var $ParentClass = 'PageUser';
8
9 function ShowFinanceOperation($Subject)
10 {
11 $UserOperationTableQuery = '((SELECT `Text`, `Time`, `Value`, `File`, `BillCode`, NULL AS `PeriodFrom`, NULL AS `PeriodTo`, `DocumentLineCode`.`Name` AS `BillName` '.
12 'FROM `FinanceOperation` '.
13 'LEFT JOIN `DocumentLineCode` ON `DocumentLineCode`.`Id`=`FinanceOperation`.`BillCode` '.
14 'WHERE (`Subject`='.$Subject['Id'].') '.
15 ') UNION ALL '.
16 '(SELECT (SELECT GROUP_CONCAT(`Description` SEPARATOR ",") FROM `FinanceInvoiceItem` WHERE `FinanceInvoice`=`FinanceInvoice`.`Id`) AS `Text`, '.
17 '`Time`, -`Value`, `File`, `BillCode`, `PeriodFrom`, `PeriodTo`, `DocumentLineCode`.`Name` AS `BillName` FROM `FinanceInvoice` '.
18 'LEFT JOIN `DocumentLineCode` ON `DocumentLineCode`.`Id`=`FinanceInvoice`.`BillCode` '.
19 'WHERE (`Subject`='.$Subject['Id'].') AND (`VisibleToUser` = 1)))';
20
21 $Output = '<div style="text-align:center">Výpis finančních operací</div>';
22 $DbResult = $this->Database->query('SELECT COUNT(*) FROM '.$UserOperationTableQuery.' AS `T1`');
23 $DbRow = $DbResult->fetch_row();
24 $PageList = GetPageList('FinanceOperation', $DbRow[0]);
25
26 $Output .= $PageList['Output'];
27 $Output .= '<table class="WideTable" style="font-size: small;">';
28
29 $TableColumns = array(
30 array('Name' => 'Time', 'Title' => 'Datum'),
31 array('Name' => 'Text', 'Title' => 'Popis'),
32 array('Name' => 'Value', 'Title' => 'Změna [Kč]'),
33 array('Name' => 'State', 'Title' => 'Zůstatek [Kč]'),
34 array('Name' => 'PeriodFrom', 'Title' => 'Období'),
35 array('Name' => 'BillCode', 'Title' => 'Doklad'),
36 );
37 $Order = GetOrderTableHeader('FinanceOperation', $TableColumns, 'Time', 1);
38 $Output .= $Order['Output'];
39
40 $StateQuery = 'SELECT SUM(`T2`.`Value`) FROM '.$UserOperationTableQuery.
41 ' AS `T2` WHERE `T2`.`Time` <= `T1`.`Time` ';
42 $Query = 'SELECT *, ('.$StateQuery.') AS `State` FROM '.$UserOperationTableQuery.' AS `T1` '.$Order['SQL'].$PageList['SQLLimit'];
43
44 $DbResult = $this->Database->query($Query);
45 $SumValue = 0;
46 while ($Row = $DbResult->fetch_assoc())
47 {
48 $Row['State'] = round($Row['State'], 2);
49 if ($Row['State'] > 0) $Row['State'] = '<span style="color:green;">'.$Row['State'].'</span>';
50 if ($Row['State'] < 0) $Row['State'] = '<span style="color:red;">'.$Row['State'].'</span>';
51 if ($Row['Value'] == -0) $Row['Value'] = 0;
52 if ($Row['Value'] > 0) $Row['Value'] = '+'.$Row['Value'];
53 if ($Row['BillName'] == '') $Row['BillName'] = 'PDF';
54 if ($Row['File'] > 0) $Invoice = '<a href="'.$this->System->Link('/file?id='.$Row['File']).'">'.$Row['BillName'].'</a>';
55 else $Invoice = NotBlank($Row['BillName']);
56 if ($Row['PeriodFrom'] != '') $Period = HumanDate($Row['PeriodFrom']).' - '.HumanDate($Row['PeriodTo']);
57 else $Period = '&nbsp;';
58 $Output .= '<tr><td style="text-align: right;">'.HumanDate($Row['Time']).'</td>'.
59 '<td style="text-align: left;">'.$Row['Text'].'</td>'.
60 '<td style="text-align: right;">'.round($Row['Value'], 2).'</td>'.
61 '<td style="text-align: right;">'.$Row['State'].'</td>'.
62 '<td>'.$Period.'</td>'.
63 '<td>'.$Invoice.'</td></tr>';
64 $SumValue = $SumValue + $Row['Value'];
65 }
66 $Output .= '</table>';
67 $Output .= $PageList['Output'];
68 return $Output;
69 }
70
71 function Show()
72 {
73 $Finance = &$this->System->Modules['Finance'];
74 $Finance->LoadMonthParameters(0);
75
76 // Determine which customer should be displayed
77 if (array_key_exists('i', $_GET))
78 {
79 if (!$this->System->User->CheckPermission('Finance', 'Manage')) return 'Nemáte oprávnění';
80 $CustomerId = $_GET['i'];
81 } else
82 {
83 if (!$this->System->User->CheckPermission('Finance', 'DisplaySubjectState')) return 'Nemáte oprávnění';
84 $UserId = $this->System->User->User['Id'];
85 $DbResult = $this->Database->query('SELECT `Customer` FROM `UserCustomerRel` WHERE `User`='.$UserId.' LIMIT 1');
86 if ($DbResult->num_rows > 0)
87 {
88 $CustomerUserRel = $DbResult->fetch_assoc();
89 $CustomerId = $CustomerUserRel['Customer'];
90 } else return $this->SystemMessage('Chyba', 'Nejste zákazníkem');
91 }
92
93 // Load customer info
94 $DbResult = $this->Database->query('SELECT * FROM `Member` WHERE `Id`='.$CustomerId);
95 if ($DbResult->num_rows == 1)
96 {
97 $Customer = $DbResult->fetch_assoc();
98 } else return $this->SystemMessage('Položka nenalezena', 'Zákazník nenalezen');
99
100
101 // Load subject info
102 $DbResult = $this->Database->query('SELECT * FROM `Subject` WHERE `Id`='.$Customer['Subject']);
103 if ($DbResult->num_rows == 1)
104 {
105 $Subject = $DbResult->fetch_assoc();
106 } else return $this->SystemMessage('Položka nenalezena', 'Subjekt nenalezen');
107
108
109 $Output = '<table width="100%" border="0" cellspacing="0" cellpadding="3"><tr><td valign="top">';
110
111 // Account state
112 $UserOperationTableQuery = '((SELECT `Text`, `Time`, `Value`, `File`, `BillCode`, NULL AS `PeriodFrom`, NULL AS `PeriodTo` '.
113 'FROM `FinanceOperation` WHERE (`Subject`='.$Subject['Id'].')) UNION ALL '.
114 '(SELECT (SELECT GROUP_CONCAT(`Description` SEPARATOR ",") FROM `FinanceInvoiceItem` WHERE `FinanceInvoice`=`FinanceInvoice`.`Id`) AS `Text`, '.
115 '`Time`, -`Value`, `File`, `BillCode`, `PeriodFrom`, `PeriodTo` FROM `FinanceInvoice` WHERE (`Subject`='.$Subject['Id'].')) ORDER BY `Time` DESC) AS `T1`';
116 $DbResult = $this->Database->query('SELECT SUM(`T1`.`Value`) AS `Total` FROM '.$UserOperationTableQuery);
117 $DbRow = $DbResult->fetch_array();
118 $Total = $DbRow['Total'];
119 $Output .= 'Stav účtu: <strong>'.round($Total, 2).' Kč</strong><br /><br />';
120
121 // Tabulka operaci
122 $Output .= $this->ShowFinanceOperation($Subject);
123
124 $Output .= '</td><td valign="top">';
125
126 $DbResult = $this->Database->query('SELECT FinanceBankAccount.*, CONCAT(FinanceBankAccount.Number, "/", FinanceBank.Code) AS NumberFull FROM FinanceBankAccount '.
127 'JOIN FinanceBank ON FinanceBank.Id=FinanceBankAccount.Bank '.
128 'WHERE (FinanceBankAccount.`Subject`='.$this->System->Config['Finance']['MainSubjectId'].') AND (FinanceBankAccount.`Use`=1)');
129 $SubjectFromAccount = $DbResult->fetch_assoc();
130 $Account = $SubjectFromAccount['NumberFull'];
131
132 $Output .= 'Účet pro platby: <strong>'.$Account.'</strong><br/>';
133 $Output .= 'Variabilní symbol pro platby: <strong>'.$Subject['Id'].'</strong><br/>';
134 $Output .= 'Subjekt: <strong>'.$Subject['Name'].'</strong><br/>';
135 $Output .= '<br/>';
136
137 $Total = 0;
138 $Output .= 'Rozpis měsíčního poplatku:<br><table class="WideTable">'.
139 '<tr><th>Služba</th><th>Cena [Kč]</th></tr>';
140 $DbResult = $this->Database->query('SELECT `Service`.`Name`, `Service`.`Price` FROM `ServiceCustomerRel` '.
141 'LEFT JOIN `Service` ON `Service`.`Id`=`ServiceCustomerRel`.`Service` '.
142 'WHERE (`ServiceCustomerRel`.`Customer`='.$Customer['Id'].') AND (`ServiceCustomerRel`.`ChangeAction` IS NULL)');
143 while ($DbRow = $DbResult->fetch_assoc())
144 {
145 $Output .= '<tr><td>'.$DbRow['Name'].'</td><td>'.$DbRow['Price'].'</td></tr>';
146 $Total += $DbRow['Price'];
147 }
148
149 $Output .= '<tr><td><strong>Celkem</strong></td><td><strong>'.$Total.'</strong></td></tr></table>';
150 //echo('Tarif pro příští měsíc: '.$Tarify[$Row2['inet_tarif_next']]['name'].'<br><br>');
151 $Output .= '<br />';
152
153 $Output .= '</td></tr></table>';
154 return $Output;
155 }
156}
Note: See TracBrowser for help on using the repository browser.