Skip to content

Commit 46a83e1

Browse files
committed
Fixed serialization when working with RationalMoney
1 parent 58cfaac commit 46a83e1

File tree

2 files changed

+26
-4
lines changed

2 files changed

+26
-4
lines changed

src/Price.php

+12-3
Original file line numberDiff line numberDiff line change
@@ -238,17 +238,26 @@ public function jsonSerialize(): array
238238
$incl = $this->inclusive();
239239

240240
return [
241-
'base' => $this->base->toRational()->getAmount(),
241+
'base' => $this->getRational($this->base)->getAmount(),
242242
'currency' => $this->base->getCurrency()->getCurrencyCode(),
243243
'units' => $this->units,
244244
'vat' => $this->vat->percentage(),
245245
'total' => [
246-
'exclusive' => $excl->toRational()->getAmount(),
247-
'inclusive' => $incl->toRational()->getAmount(),
246+
'exclusive' => $this->getRational($excl)->getAmount(),
247+
'inclusive' => $this->getRational($incl)->getAmount(),
248248
],
249249
];
250250
}
251251

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+
252261
/**
253262
* Hydrate a price object from a json string/array
254263
* @throws \InvalidArgumentException

tests/Unit/SerializesToJsonTest.php

+14-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
expect($data['total']['inclusive'] ?? null)->toBe('1661/100');
2323
});
2424

25-
it('hydrates instance from JSON string', function() {
25+
it('hydrates Money instance from JSON string', function() {
2626
$price = Price::ofMinor(500, 'EUR')
2727
->setUnits(3)
2828
->setVat(10.75);
@@ -35,6 +35,19 @@
3535
expect($instance->vat()->percentage())->toBe(10.75);
3636
});
3737

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+
3851
it('hydrates instance from JSON array', function() {
3952
$data = [
4053
'base' => '500',

0 commit comments

Comments
 (0)