fix: use correct amount of rooms to calculate rooms pricing

This commit is contained in:
Björn Fromme
2026-03-18 15:24:29 +01:00
parent cb56a4fe46
commit 02ff28acdd
2 changed files with 47 additions and 17 deletions
+4 -5
View File
@@ -83,11 +83,10 @@ class RoomPricingCalculator
continue; continue;
} }
// Calculate participant count for this room selection // Pricing in create flow is based on selected room quantity from step 1.
$participantCount = $room->minPax * $roomSelection->quantity; // Do not derive billable units from minPax, which represents capacity constraints.
$participantCount = $roomSelection->quantity;
// Each participant pays the full room price $totalPrice = $roomSelection->quantity * $room->price;
$totalPrice = $participantCount * $room->price;
$roomPricing[] = [ $roomPricing[] = [
'roomId' => $room->id, 'roomId' => $room->id,
@@ -5,6 +5,7 @@ declare(strict_types=1);
namespace App\Tests\Service; namespace App\Tests\Service;
use App\BusProNet\Model\Room; use App\BusProNet\Model\Room;
use App\BusProNet\Model\Booking;
use App\BusProNet\Model\Service; use App\BusProNet\Model\Service;
use App\BusProNet\Model\Travel; use App\BusProNet\Model\Travel;
use App\Form\Model\BookingDto; use App\Form\Model\BookingDto;
@@ -71,14 +72,14 @@ class BookingPriceCalculatorServiceTest extends TestCase
// Test the calculation // Test the calculation
$result = $this->service->calculateRoomPricing($bookingDto); $result = $this->service->calculateRoomPricing($bookingDto);
// Expected: 2 rooms × 2 participants/room × €100 = €400 total // Expected: 2 rooms × €100 = €200 total
$this->assertCount(1, $result); $this->assertCount(1, $result);
$this->assertEquals(1, $result[0]['roomId']); $this->assertEquals(1, $result[0]['roomId']);
$this->assertEquals('Double Room', $result[0]['label']); $this->assertEquals('Double Room', $result[0]['label']);
$this->assertEquals(2, $result[0]['quantity']); // 2 rooms $this->assertEquals(2, $result[0]['quantity']); // 2 rooms
$this->assertEquals(4, $result[0]['participantCount']); // 4 participants total $this->assertEquals(2, $result[0]['participantCount']); // billed units follow selected room count
$this->assertEquals(100.0, $result[0]['unitPrice']); // €100 per participant $this->assertEquals(100.0, $result[0]['unitPrice']); // €100 per room
$this->assertEquals(400.0, $result[0]['totalPrice']); // €400 total $this->assertEquals(200.0, $result[0]['totalPrice']); // €200 total
} }
public function testCalculateRoomPricingWithSingleRoomSelection(): void public function testCalculateRoomPricingWithSingleRoomSelection(): void
@@ -103,14 +104,14 @@ class BookingPriceCalculatorServiceTest extends TestCase
// Test the calculation // Test the calculation
$result = $this->service->calculateRoomPricing($bookingDto); $result = $this->service->calculateRoomPricing($bookingDto);
// Expected: 1 room × 3 participants/room × €150 = €450 total // Expected: 1 room × €150 = €150 total
$this->assertCount(1, $result); $this->assertCount(1, $result);
$this->assertEquals(2, $result[0]['roomId']); $this->assertEquals(2, $result[0]['roomId']);
$this->assertEquals('Triple Room', $result[0]['label']); $this->assertEquals('Triple Room', $result[0]['label']);
$this->assertEquals(1, $result[0]['quantity']); // 1 room $this->assertEquals(1, $result[0]['quantity']); // 1 room
$this->assertEquals(3, $result[0]['participantCount']); // 3 participants total $this->assertEquals(1, $result[0]['participantCount']); // billed units follow selected room count
$this->assertEquals(150.0, $result[0]['unitPrice']); // €150 per participant $this->assertEquals(150.0, $result[0]['unitPrice']); // €150 per room
$this->assertEquals(450.0, $result[0]['totalPrice']); // €450 total $this->assertEquals(150.0, $result[0]['totalPrice']); // €150 total
} }
public function testCalculateRoomPricingWithMultipleRoomTypes(): void public function testCalculateRoomPricingWithMultipleRoomTypes(): void
@@ -146,8 +147,8 @@ class BookingPriceCalculatorServiceTest extends TestCase
$result = $this->service->calculateRoomPricing($bookingDto); $result = $this->service->calculateRoomPricing($bookingDto);
// Expected: // Expected:
// - Single: 1 room × 1 participant × €80 = €80 // - Single: 1 room × €80 = €80
// - Double: 2 rooms × 2 participants × €120 = €480 // - Double: 2 rooms × €120 = €240
$this->assertCount(2, $result); $this->assertCount(2, $result);
// Single room result // Single room result
@@ -162,9 +163,9 @@ class BookingPriceCalculatorServiceTest extends TestCase
$doubleResult = $result[1]; $doubleResult = $result[1];
$this->assertEquals(2, $doubleResult['roomId']); $this->assertEquals(2, $doubleResult['roomId']);
$this->assertEquals(2, $doubleResult['quantity']); $this->assertEquals(2, $doubleResult['quantity']);
$this->assertEquals(4, $doubleResult['participantCount']); $this->assertEquals(2, $doubleResult['participantCount']);
$this->assertEquals(120.0, $doubleResult['unitPrice']); $this->assertEquals(120.0, $doubleResult['unitPrice']);
$this->assertEquals(480.0, $doubleResult['totalPrice']); $this->assertEquals(240.0, $doubleResult['totalPrice']);
} }
public function testCalculateRoomPricingSkipsRoomsWithNullPrice(): void public function testCalculateRoomPricingSkipsRoomsWithNullPrice(): void
@@ -215,6 +216,36 @@ class BookingPriceCalculatorServiceTest extends TestCase
$this->assertEmpty($result); $this->assertEmpty($result);
} }
public function testCalculateRoomPricingInEditModeUsesStoredIndividualPrices(): void
{
$travel = new Travel();
$bookingDto = new BookingDto($travel, 2);
$participantA = new ParticipantDto();
$participantA->assignedRoomId = 10;
$participantB = new ParticipantDto();
$participantB->assignedRoomId = 10;
$bookingDto->participants = [$participantA, $participantB];
$booking = new Booking();
$room = new Room();
$room->id = 10;
$room->label = 'Stored Room';
$room->mapping = [0, 1];
$room->individualPrice = [0 => 200.0, 1 => 220.0];
$room->totalCount = 1;
$booking->rooms = [$room];
$bookingDto->booking = $booking;
$result = $this->service->calculateRoomPricing($bookingDto);
$this->assertCount(1, $result);
$this->assertEquals(10, $result[0]['roomId']);
$this->assertEquals(2, $result[0]['participantCount']);
$this->assertEquals(210.0, $result[0]['unitPrice']);
$this->assertEquals(420.0, $result[0]['totalPrice']);
}
public function testCalculateIndividualParticipantPriceWithRoomAndServices(): void public function testCalculateIndividualParticipantPriceWithRoomAndServices(): void
{ {
// Create test room // Create test room