1
|
|
|
<?php |
2
|
|
|
class Intraface_modules_accounting_Controller_Year_Primosaldo extends k_Component |
3
|
|
|
{ |
4
|
|
|
protected $template; |
5
|
|
|
|
6
|
|
|
function __construct(k_TemplateFactory $template) |
7
|
|
|
{ |
8
|
|
|
$this->template = $template; |
9
|
|
|
} |
10
|
|
|
|
11
|
|
|
function renderHtml() |
12
|
|
|
{ |
13
|
|
|
$year = $this->getYear(); |
14
|
|
|
$account = new Account($year); |
15
|
|
|
|
16
|
|
|
$accounts = $account->getList('balance'); |
17
|
|
|
|
18
|
|
|
$total_debet = 0; |
19
|
|
|
$total_credit = 0; |
20
|
|
|
|
21
|
|
|
$data = array('total_debet' => $total_debet, 'total_credit' => $total_credit, 'account' => $account, 'year' => $year, 'accounts' => $accounts); |
22
|
|
|
|
23
|
|
|
$smarty = $this->template->create(dirname(__FILE__) . '/../templates/year/primosaldo'); |
24
|
|
|
return $smarty->render($this, $data); |
25
|
|
|
} |
26
|
|
|
|
27
|
|
|
function postForm() |
28
|
|
|
{ |
29
|
|
|
$year = $this->getYear(); |
30
|
|
|
|
31
|
|
|
if ($year->get('last_year_id') == 0) { |
32
|
|
|
throw new Exception('No last year set'); |
33
|
|
|
} |
34
|
|
|
|
35
|
|
|
$last_year = new Year($this->getKernel(), $year->get('last_year_id')); |
36
|
|
|
|
37
|
|
|
// hente konti hvor de nye har created_from_id |
38
|
|
|
$account = new Account($year); |
39
|
|
|
$accounts = $account->getList('balance'); |
40
|
|
|
foreach ($accounts as $a) { |
41
|
|
|
// @todo Should test whether all posts in the past year has been stated |
42
|
|
|
$old_account = new Account($last_year, $a['created_from_id']); |
43
|
|
|
$saldo = $old_account->getSaldo('stated'); |
44
|
|
|
|
45
|
|
|
if ($old_account->get('credit') == $old_account->get('debet')) { |
46
|
|
|
$saldo = array( |
47
|
|
|
'credit' => 0, |
48
|
|
|
'debet' => 0 |
49
|
|
|
); |
50
|
|
|
} elseif ($old_account->get('credit') > $old_account->get('debet')) { |
51
|
|
|
$saldo = array( |
52
|
|
|
'credit' => $old_account->get('credit') - $old_account->get('debet'), |
53
|
|
|
'debet' => 0 |
54
|
|
|
); |
55
|
|
|
} elseif ($old_account->get('credit') < $old_account->get('debet')) { |
56
|
|
|
$saldo = array( |
57
|
|
|
'credit' => 0, |
58
|
|
|
'debet' => $old_account->get('debet') - $old_account->get('credit') |
59
|
|
|
); |
60
|
|
|
} |
61
|
|
|
|
62
|
|
|
$account = new Account($year, $a['id']); |
63
|
|
|
$account->savePrimosaldo(number_format($saldo['debet'], 2, ',', ''), number_format($saldo['credit'], 2, ',', '')); |
64
|
|
|
} |
65
|
|
|
return $this->render(); |
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
function renderHtmlEdit() |
69
|
|
|
{ |
70
|
|
|
$this->getKernel()->module('accounting'); |
71
|
|
|
|
72
|
|
|
$year = new Year($this->getKernel(), $this->context->name()); |
|
|
|
|
73
|
|
|
|
74
|
|
|
$account = new Account($year); |
75
|
|
|
$accounts = $account->getList('balance'); |
76
|
|
|
|
77
|
|
|
$total_debet = 0; |
|
|
|
|
78
|
|
|
$total_credit = 0; |
|
|
|
|
79
|
|
|
|
80
|
|
|
$data = array( |
81
|
|
|
'total_debet' => 0, |
82
|
|
|
'total_credit' => 0, |
83
|
|
|
'accounts' => $accounts, |
84
|
|
|
'year' => $year, |
85
|
|
|
'account' => $account |
86
|
|
|
); |
87
|
|
|
|
88
|
|
|
$smarty = $this->template->create(dirname(__FILE__) . '/../templates/year/primosaldo-edit'); |
89
|
|
|
return $smarty->render($this, $data); |
90
|
|
|
} |
91
|
|
|
|
92
|
|
|
function putForm() |
|
|
|
|
93
|
|
|
{ |
94
|
|
|
$year = $this->getYear(); |
95
|
|
|
foreach ($_POST['id'] as $key => $values) { |
96
|
|
|
$account = new Account($year, $_POST['id'][$key]); |
97
|
|
|
$account->savePrimosaldo($_POST['debet'][$key], $_POST['credit'][$key]); |
98
|
|
|
} |
99
|
|
|
if (!$account->error->isError()) { |
|
|
|
|
100
|
|
|
return new k_SeeOther($this->url()); |
101
|
|
|
} |
102
|
|
|
return $this->render(); |
103
|
|
|
} |
104
|
|
|
|
105
|
|
|
function getYear() |
106
|
|
|
{ |
107
|
|
|
return $this->context->getYear(); |
|
|
|
|
108
|
|
|
} |
109
|
|
|
|
110
|
|
|
function getKernel() |
111
|
|
|
{ |
112
|
|
|
return $this->context->getKernel(); |
|
|
|
|
113
|
|
|
} |
114
|
|
|
} |
115
|
|
|
|
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the interface: