File tree 2 files changed +26
-4
lines changed
2 files changed +26
-4
lines changed Original file line number Diff line number Diff line change @@ -238,17 +238,26 @@ public function jsonSerialize(): array
238
238
$ incl = $ this ->inclusive ();
239
239
240
240
return [
241
- 'base ' => $ this ->base -> toRational ( )->getAmount (),
241
+ 'base ' => $ this ->getRational ( $ this -> base )->getAmount (),
242
242
'currency ' => $ this ->base ->getCurrency ()->getCurrencyCode (),
243
243
'units ' => $ this ->units ,
244
244
'vat ' => $ this ->vat ->percentage (),
245
245
'total ' => [
246
- 'exclusive ' => $ excl -> toRational ( )->getAmount (),
247
- 'inclusive ' => $ incl -> toRational ( )->getAmount (),
246
+ 'exclusive ' => $ this -> getRational ( $ excl )->getAmount (),
247
+ 'inclusive ' => $ this -> getRational ( $ incl )->getAmount (),
248
248
],
249
249
];
250
250
}
251
251
252
+ protected function getRational (AbstractMoney $ money ): RationalMoney
253
+ {
254
+ if (is_a ($ money , RationalMoney::class)) {
255
+ return $ money ;
256
+ }
257
+
258
+ return $ money ->toRational ();
259
+ }
260
+
252
261
/**
253
262
* Hydrate a price object from a json string/array
254
263
* @throws \InvalidArgumentException
Original file line number Diff line number Diff line change 22
22
expect ($ data ['total ' ]['inclusive ' ] ?? null )->toBe ('1661/100 ' );
23
23
});
24
24
25
- it ('hydrates instance from JSON string ' , function () {
25
+ it ('hydrates Money instance from JSON string ' , function () {
26
26
$ price = Price::ofMinor (500 , 'EUR ' )
27
27
->setUnits (3 )
28
28
->setVat (10.75 );
35
35
expect ($ instance ->vat ()->percentage ())->toBe (10.75 );
36
36
});
37
37
38
+ it ('hydrates RationalMoney instance from JSON string ' , function () {
39
+ $ price = (new Price (Money::ofMinor (500 , 'EUR ' )->toRational ()))
40
+ ->setUnits (3 )
41
+ ->setVat (10.75 );
42
+
43
+ $ instance = Price::json (json_encode ($ price ));
44
+
45
+ expect ($ instance )->toBeInstanceOf (Price::class);
46
+ expect ($ instance ->getAmount ()->compareTo ($ price ->base ()->getAmount ()))->toBe (0 );
47
+ expect ($ instance ->units ())->toBe (floatval (3 ));
48
+ expect ($ instance ->vat ()->percentage ())->toBe (10.75 );
49
+ });
50
+
38
51
it ('hydrates instance from JSON array ' , function () {
39
52
$ data = [
40
53
'base ' => '500 ' ,
You can’t perform that action at this time.
0 commit comments