source: trunk/Modules/Finance/Import.php@ 888

Last change on this file since 888 was 888, checked in by chronos, 4 years ago
  • Modified: More static types added.
File size: 6.0 KB
Line 
1<?php
2
3class PageFinanceImportPayment extends Page
4{
5 function __construct(System $System)
6 {
7 parent::__construct($System);
8 $this->FullTitle = 'Import plateb';
9 $this->ShortTitle = 'Import plateb';
10 $this->ParentClass = 'PageFinance';
11 }
12
13 function Show(): string
14 {
15 if (!ModuleUser::Cast($this->System->GetModule('User'))->User->CheckPermission('Finance', 'SubjectList')) return 'Nemáte oprávnění';
16 if (array_key_exists('Operation', $_GET))
17 {
18 if ($_GET['Operation'] == 'prepare') return $this->Prepare();
19 else if ($_GET['Operation'] == 'insert') return $this->Insert();
20 else echo('Neplatná akce');
21 } else
22 {
23 $Output = 'Vložte CSV data z SYLK exportu Poštovní spořitelny';
24 $Output .= '<form action="?Operation=prepare" method="post">';
25 $Output .= '<textarea name="Source" cols="80" rows="20"></textarea><br/>';
26 $Output .= '<input type="submit" value="Analyzovat"/>';
27 $Output .= '</form>';
28 return $Output;
29 }
30 }
31
32 function Prepare(): string
33 {
34 $Finance = &ModuleFinance::Cast($this->System->GetModule('Finance'))->Finance;
35 $Finance->LoadMonthParameters(0);
36 $Data = explode("\n", $_POST['Source']);
37 foreach ($Data as $Key => $Value)
38 {
39 $Value = str_replace('\"', '"', $Value);
40 $Data[$Key] = str_getcsv($Value, ',', '"', "\\");
41 //print_r($Data[$Key]);
42 foreach ($Data[$Key] as $Key2 => $Value2)
43 {
44 if (substr($Data[$Key][$Key2], 0, 2) == '\"')
45 $Data[$Key][$Key2] = substr($Data[$Key][$Key2], 2, -2);
46 }
47 }
48 $Header = array(
49 0 => 'datum zaúčtování',
50 1 => 'částka',
51 2 => 'měna',
52 3 => 'zůstatek',
53 4 => 'konstantní symbol',
54 5 => 'variabilní symbol',
55 6 => 'specifický symbol',
56 7 => 'označení operace',
57 8 => 'název protiúčtu',
58 9 => 'protiúčet',
59 10 => 'poznámka',
60 11 => '',
61 );
62 //print_r($Header);
63 //print_r($Data[0]);
64 //print_r($_POST['Source']);
65 //print_r($Data);
66
67 if ($Header != $Data[0]) {
68 $Output = 'Nekompatibilní struktura CSV';
69 print_r($Header);
70 print_r($Data[0]);
71 }
72 else
73 {
74 array_shift($Data);
75 $Automatic = '';
76 $Manual = '';
77 $Output = '<form action="?Operation=insert" method="post">';
78 $I = 0;
79 foreach ($Data as $Key => $Value)
80 {
81 if (count($Value) <= 1) continue;
82 if ($Value[9] == '') $Value[5] = 128; // Žádný účet => Poštovní spořitelna
83 $Time = explode('.', $Value[0]);
84 $Time = $Time[2].'-'.$Time[1].'-'.$Time[0];
85 $Money = $Value[1];
86 if (is_numeric($Value[5]))
87 {
88 $Subject = $Value[5] * 1;
89 $DbResult = $this->Database->query('SELECT Id FROM Subject WHERE Id='.$this->Database->real_escape_string($Subject));
90 if ($DbResult->num_rows == 0) $Subject = '? ('.($Value[5] * 1).')';
91 } else
92 {
93 $Subject = '? ('.$Value[5].')';
94 }
95 if (!is_numeric($Subject))
96 {
97 $Mode = 'Ručně';
98 $Style = 'style="background-color: LightPink;" ';
99 } else
100 {
101 $Mode = 'Automaticky';
102 $Style = '';
103 }
104
105 if ($Money < 0) $Text = 'Platba převodem';
106 else $Text = 'Přijatá platba';
107 $Automatic .= '<tr>'.
108 //'<td>'.$Mode.'</td>'.
109 '<td><input type="text" name="Date'.$I.'" value="'.$Time.'"/></td>'.
110 '<td><input type="text" '.$Style.'name="Subject'.$I.'" value="'.$Subject.'"/></td>'.
111 '<td>'.$Value[8].'</td>'.
112 '<td><input type="text" name="Money'.$I.'" value="'.$Money.'"/></td>'.
113 '<td><input type="text" name="Text'.$I.'" value="'.$Text.'"/></td>'.
114 '<td><input type="text" name="Taxable'.$I.'" value="1"/></td>'.
115 '<td><input type="text" name="Network'.$I.'" value="1"/></td>'.
116 '</tr><tr><td colspan="7">'.implode(', ', $Value).'</td></tr>';
117 $I++;
118 }
119 $Output .= '<table class="WideTable">'.
120 '<tr>'.
121 //'<th>Zpracování</th>'.
122 '<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>';
123 $Output .= $Automatic.'</table>';
124 $Output .= '<input type="hidden" name="ItemCount" value="'.$I.'"/>';
125 $Output .= '<input type="submit" value="Zpracovat"/></form>';
126 }
127 return $Output;
128 }
129
130 function InsertMoney(string $Subject, string $Value, string $Cash, string $Taxable, string $Time, string $Text, array $Group): void
131 {
132 $Year = date('Y', $Time);
133 $BillCode = ModuleFinance::Cast($this->System->GetModule('Finance'))->Finance->GetNextDocumentLineNumberId($Group['DocumentLine'], $Year);
134 // TODO: Fixed BankAccount=1, allow to select bank account for import
135 $this->Database->insert('FinanceOperation', array('Text' => $Text,
136 'Subject' => $Subject, 'Cash' => $Cash, 'ValueUser' => $Value, 'Value' => $Value * $Group['ValueSign'],
137 'Time' => TimeToMysqlDateTime($Time), 'Taxable' => $Taxable, 'BillCode' => $BillCode,
138 'BankAccount' => 1, 'Group' => $Group['Id']));
139 // TODO: Update Value
140 }
141
142 function Insert(): string
143 {
144 $Finance = &ModuleFinance::Cast($this->System->GetModule('Finance'))->Finance;
145 $Finance->LoadMonthParameters(0);
146 $Output = '';
147
148 for ($I = $_POST['ItemCount'] - 1; $I >= 0 ; $I--)
149 {
150 if ($_POST['Money'.$I] < 0)
151 {
152 $FinanceGroup = $Finance->GetFinanceGroupById(OPERATION_GROUP_ACCOUNT_OUT, 'FinanceOperationGroup');
153 } else
154 {
155 $FinanceGroup = $Finance->GetFinanceGroupById(OPERATION_GROUP_ACCOUNT_OUT, 'FinanceOperationGroup');
156 }
157 $Date = explode('-', $_POST['Date'.$I]);
158 $Date = mktime(0, 0, 0, $Date[1], $Date[2], $Date[0]);
159 $this->InsertMoney($_POST['Subject'.$I], Abs($_POST['Money'.$I]),
160 0, $_POST['Taxable'.$I], $Date, $_POST['Text'.$I], $FinanceGroup);
161 $Output .= $I.', ';
162 ModuleLog::Cast($this->System->GetModule('Log'))->NewRecord('Finance', 'NewPaymentInserted');
163 }
164 return $Output;
165 }
166}
Note: See TracBrowser for help on using the repository browser.