forked from johanwilfer/siephp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTSVtoSIE.php
269 lines (231 loc) · 8.44 KB
/
TSVtoSIE.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
<?php
/**
* This file is part of the SIE-PHP package.
*
* (c) Johan Wilfer <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
// Autoload files using Composer autoload
require_once __DIR__ . '/../vendor/autoload.php';
use SIE\Data;
class TSVLoader
{
/**
* Parse TSV data and returns array of rows, that holds an array of fields.
*
* @param string $value
* @param string $delimiter
* @return array
*/
protected function getTabularData($value, $delimiter = "\t")
{
// fix line endings to be \n
$value = str_replace(array("\r\n", "\r"), "\n", $value);
// split it up ny lines and tabs
$lines = explode("\n", $value);
$rows = array();
foreach ($lines as $line)
{
// don't add blank lines
if ($line == '') continue;
$rows[] = explode($delimiter, $line);
}
return $rows;
}
/**
* Used for sorting the tsv-data
*/
protected function tabularDataCompareRows($a, $b)
{
// compare ver_no
$field = 0;
// same ver_no, compare ver_row instead
if ($a[$field] == $b[$field])
$field = 14;
return ($a[$field] < $b[$field]) ? -1 : 1;
}
/**
* Parse balance data from TSV-file
*
* @param $value
* @param Data\Company $company The company to parse balances for
* @param Data\FiscalYear $fiscalYear The fiscal year
* @param int $skipHeaderLines
*/
public function parseBalance($value, Data\Company $company, Data\FiscalYear $fiscalYear, $skipHeaderLines = 1)
{
// parse text
$rows = $this->getTabularData($value);
// kill header lines
for ($i=0; $i < $skipHeaderLines; $i++)
array_shift($rows);
foreach ($rows as $row)
{
$data = array(
'account_id' => $row[0],
'account_name' => $row[1],
'incoming' => (float)(str_replace(array(' ',' ','.', ','), array('', '', '', '.'), $row[2])),
'outgoing' => (float)(str_replace(array(' ',' ','.', ','), array('', '', '', '.'), $row[5])),
);
// account - try fetch it from the company
$account = $company->getAccount($data['account_id']);
// account not found? create it.
if ($account === null)
{
$account = (new Data\Account($data['account_id']))
->setName($data['account_name']);
$company->addAccount($account);
}
// add balances
$fiscalYear->addAccountBalance(
(new Data\AccountBalance($account))
->setIncomingBalance($data['incoming'])
->setOutgoingBalance($data['outgoing'])
);
}
}
/**
* Parse transaction-data form TSV-file
*
* @param $value
* @param int $skipHeaderLines
* @param Data\Company $company
* @return Data\Company
*/
public function parseTransactions($value, Data\Company $company, $skipHeaderLines = 1)
{
// parse text
$rows = $this->getTabularData($value);
// kill header lines
for ($i=0; $i < $skipHeaderLines; $i++)
array_shift($rows);
// fix ordering
usort($rows, array($this, 'tabularDataCompareRows'));
// add a verification series and two dimensions
$verificationSeries = new Data\VerificationSeries();
$company->addVerificationSeries($verificationSeries)
->addDimension(new Data\Dimension(Data\Dimension::DIMENSION_COST_CENTRE))
->addDimension(new Data\Dimension(Data\Dimension::DIMENSION_PROJECT));
$last_verification_id = null;
foreach ($rows as $row)
{
/* -- Our columns --
* 0: Verification number
* 1: Transaction / verification date
* 3: Account number
* 4: Account name
* 5: Result unit
* 6: Project
* 13: Verification name
* 14: Verification row number
* 15: Transaction name
* 18: Transaction amount
*/
$data = array(
'ver_no' => $row[0],
'date' => $row[1],
'account_no' => $row[3],
'account_name' => $row[4],
'result_unit' => $row[5],
'project' => $row[6],
'ver_name' => $row[13],
'ver_row' => $row[14],
'trans_text' => $row[15],
'trans_amount' => (float) (str_replace(array('.', ','), array('', '.'), $row[18])),
);
// verification
if ($last_verification_id !== $data['ver_no'])
{
$verification = (new Data\Verification($data['ver_no']))
->setDate($data['date'])
->setText($data['ver_name']);
$verificationSeries->addVerification($verification);
}
// account
$account = $company->getAccount($row[3]);
if ($account === null)
{
$account = (new Data\Account($data['account_no']))
->setName($data['account_name']);
$company->addAccount($account);
}
// transaction
$transaction = (new Data\Transaction())
->setAccount($account)
->setAmount($data['trans_amount'])
->setText($data['trans_text']);
$verification->addTransaction($transaction);
// dimension - result unit
if ($data['result_unit'])
{
// find dimension (pre-defined)
$dim = $company->getDimension(Data\Dimension::DIMENSION_COST_CENTRE);
// find / create object
$object = $dim->getObject($data['result_unit']);
if ($object === null)
{
$object = (new Data\Object($data['result_unit']))
->setDimension($dim)
->setName('Resultatenhet ' . $data['result_unit']); //We don't have this data, so just set it
$dim->addObject($object);
}
// add to transaction
$transaction->addObject($object);
}
// dimension - project
if ($data['project'])
{
// find dimension (pre-defined)
$dim = $company->getDimension(Data\Dimension::DIMENSION_PROJECT);
// find / create object
$object = $dim->getObject($data['project']);
if ($object === null)
{
$object = (new Data\Object($data['project']))
->setDimension($dim)
->setName('Projekt ' . $data['project']); //We don't have this data, so just set it
$dim->addObject($object);
}
// add to transaction
$transaction->addObject($object);
}
$last_verification_id = $verification->getId();
}
}
}
/*
* paths to example data
*/
$paths = array(
'transaction-data' => __DIR__ . '/data/import-transactions.tsv',
'balance-data-year-0' => __DIR__ . '/data/import-balance-year-0.tsv',
'balance-data-year-1' => __DIR__ . '/data/import-balance-year-1.tsv',
);
/*
* Transaction data for current year
*/
//create company
$company = (new SIE\Data\Company())->setCompanyName('Imported company name åäöÅÄÖ');
// load transaction data from TSV
$loader = new TSVLoader();
$loader->parseTransactions(file_get_contents($paths['transaction-data']), $company);
/*
* Balance data
*/
// add fiscal year (defaults to current calendar year)
$fiscalYear = new Data\FiscalYear();
$company->addFiscalYear($fiscalYear);
$loader->parseBalance(file_get_contents($paths['balance-data-year-0']), $company, $fiscalYear);
// the year before that
$fiscalYear = $fiscalYear->createPreviousFiscalYear();
$company->addFiscalYear($fiscalYear);
$loader->parseBalance(file_get_contents($paths['balance-data-year-1']), $company, $fiscalYear);
/*
* Dump as SIE
*/
$company->validate();
$dumper = new \SIE\Dumper\SIEDumper();
$output = $dumper->dump($company);
echo $output;