17
17
use hiqdev \php \billing \charge \Charge ;
18
18
use hiqdev \php \billing \charge \ChargeInterface ;
19
19
use hiqdev \php \billing \charge \modifiers \addons \Period ;
20
- use hiqdev \php \billing \charge \modifiers \event \LeasingWasFinished ;
21
- use hiqdev \php \billing \charge \modifiers \event \LeasingWasStarted ;
20
+ use hiqdev \php \billing \charge \modifiers \event \InstallmentWasFinished ;
21
+ use hiqdev \php \billing \charge \modifiers \event \InstallmentWasStarted ;
22
22
use hiqdev \php \billing \formula \FormulaSemanticsError ;
23
23
use hiqdev \php \billing \price \SinglePrice ;
24
24
use hiqdev \php \billing \target \Target ;
27
27
use Money \Money ;
28
28
29
29
/**
30
- * Leasing .
30
+ * Installment .
31
31
*
32
32
* @author Andrii Vasyliev <sol@hiqdev.com>
33
33
*/
34
- class Leasing extends Modifier
34
+ class Installment extends Modifier
35
35
{
36
36
public function buildPrice (Money $ sum )
37
37
{
@@ -44,7 +44,11 @@ public function buildPrice(Money $sum)
44
44
45
45
public function getType ()
46
46
{
47
- return new Type (Type::ANY , 'monthly,leasing ' );
47
+ $ since = $ this ->getSince ();
48
+ if ($ since ->getValue () < new DateTimeImmutable ('2024-01-01 ' )) {
49
+ return new Type (Type::ANY , 'monthly,leasing ' );
50
+ }
51
+ return new Type (Type::ANY , 'monthly,installment ' );
48
52
}
49
53
50
54
public function getTarget ()
@@ -54,13 +58,13 @@ public function getTarget()
54
58
55
59
public function till ($ dummy )
56
60
{
57
- throw new FormulaSemanticsError ('till can not be defined for leasing ' );
61
+ throw new FormulaSemanticsError ('till can not be defined for installment ' );
58
62
}
59
63
60
64
public function modifyCharge (?ChargeInterface $ charge , ActionInterface $ action ): array
61
65
{
62
66
if ($ charge === null ) {
63
- throw new \Exception ('unexpected null charge in Leasing , to be implemented ' );
67
+ throw new \Exception ('unexpected null charge in Installment , to be implemented ' );
64
68
}
65
69
66
70
$ this ->ensureIsValid ();
@@ -72,30 +76,30 @@ public function modifyCharge(?ChargeInterface $charge, ActionInterface $action):
72
76
73
77
$ month = $ action ->getTime ()->modify ('first day of this month midnight ' );
74
78
if (!$ this ->checkPeriod ($ month )) {
75
- if ($ this ->isFirstMonthAfterLeasingPassed ($ month )) {
76
- return [$ this ->createLeasingFinishingCharge ($ charge , $ month )];
79
+ if ($ this ->isFirstMonthAfterInstallmentPassed ($ month )) {
80
+ return [$ this ->createInstallmentFinishingCharge ($ charge , $ month )];
77
81
}
78
82
79
83
return [];
80
84
}
81
85
82
- return [$ this ->createLeasingCharge ($ charge , $ month )];
86
+ return [$ this ->createInstallmentCharge ($ charge , $ month )];
83
87
}
84
88
85
89
protected function ensureIsValid (): void
86
90
{
87
91
$ since = $ this ->getSince ();
88
92
if ($ since === null ) {
89
- throw new FormulaSemanticsError ('no since given for leasing ' );
93
+ throw new FormulaSemanticsError ('no since given for installment ' );
90
94
}
91
95
92
96
$ term = $ this ->getTerm ();
93
97
if ($ term === null ) {
94
- throw new FormulaSemanticsError ('no term given for leasing ' );
98
+ throw new FormulaSemanticsError ('no term given for installment ' );
95
99
}
96
100
}
97
101
98
- private function isFirstMonthInLeasingPassed (DateTimeImmutable $ time ): bool
102
+ private function isFirstMonthInInstallmentPassed (DateTimeImmutable $ time ): bool
99
103
{
100
104
$ since = $ this ->getSince ();
101
105
if ($ since && $ since ->getValue () > $ time ) {
@@ -109,7 +113,7 @@ private function isFirstMonthInLeasingPassed(DateTimeImmutable $time): bool
109
113
return false ;
110
114
}
111
115
112
- private function isFirstMonthAfterLeasingPassed (DateTimeImmutable $ time ): bool
116
+ private function isFirstMonthAfterInstallmentPassed (DateTimeImmutable $ time ): bool
113
117
{
114
118
$ since = $ this ->getSince ();
115
119
if ($ since && $ since ->getValue () > $ time ) {
@@ -131,7 +135,7 @@ private function isFirstMonthAfterLeasingPassed(DateTimeImmutable $time): bool
131
135
return false ;
132
136
}
133
137
134
- private function createLeasingFinishingCharge (ChargeInterface $ charge , DateTimeImmutable $ month ): ChargeInterface
138
+ private function createInstallmentFinishingCharge (ChargeInterface $ charge , DateTimeImmutable $ month ): ChargeInterface
135
139
{
136
140
$ result = new Charge (
137
141
null ,
@@ -142,22 +146,22 @@ private function createLeasingFinishingCharge(ChargeInterface $charge, DateTimeI
142
146
$ charge ->getUsage (),
143
147
new Money (0 , $ charge ->getSum ()->getCurrency ())
144
148
);
145
- $ result ->recordThat (LeasingWasFinished ::onCharge ($ result , $ month ));
149
+ $ result ->recordThat (InstallmentWasFinished ::onCharge ($ result , $ month ));
146
150
if ($ charge ->getComment ()) {
147
151
$ result ->setComment ($ charge ->getComment ());
148
152
}
149
153
150
154
return $ result ;
151
155
}
152
156
153
- private function createLeasingStartingCharge (ChargeInterface $ charge , DateTimeImmutable $ month ): ChargeInterface
157
+ private function createInstallmentStartingCharge (ChargeInterface $ charge , DateTimeImmutable $ month ): ChargeInterface
154
158
{
155
- $ charge ->recordThat (LeasingWasStarted ::onCharge ($ charge , $ month ));
159
+ $ charge ->recordThat (InstallmentWasStarted ::onCharge ($ charge , $ month ));
156
160
157
161
return $ charge ;
158
162
}
159
163
160
- private function createLeasingCharge (ChargeInterface $ charge , DateTimeImmutable $ month ): ChargeInterface
164
+ private function createInstallmentCharge (ChargeInterface $ charge , DateTimeImmutable $ month ): ChargeInterface
161
165
{
162
166
$ result = new Charge (
163
167
null ,
@@ -173,8 +177,8 @@ private function createLeasingCharge(ChargeInterface $charge, DateTimeImmutable
173
177
$ result ->setComment ($ charge ->getComment ());
174
178
}
175
179
176
- if ($ this ->isFirstMonthInLeasingPassed ($ month )) {
177
- return $ this ->createLeasingStartingCharge ($ result , $ month );
180
+ if ($ this ->isFirstMonthInInstallmentPassed ($ month )) {
181
+ return $ this ->createInstallmentStartingCharge ($ result , $ month );
178
182
}
179
183
180
184
return $ result ;
0 commit comments