Added call later, option to limit auto mail so for a client person email you can limit which decision activity will be send to that specific email and moved SMS packages from admin panel to default app view

This commit is contained in:
Simon Pocrnjič
2026-03-08 21:42:39 +01:00
parent c16dd51199
commit b0d2aa93ab
32 changed files with 1103 additions and 174 deletions
@@ -72,7 +72,7 @@
$contract3->segments()->attach($segment->id, ['active' => true]);
// Test without date filters - should return all contracts
$response = $this->getJson(route('admin.packages.contracts', [
$response = $this->getJson(route('packages.contracts', [
'segment_id' => $segment->id,
]));
@@ -81,7 +81,7 @@
expect($data)->toHaveCount(3);
// Test with start_date_from filter
$response = $this->getJson(route('admin.packages.contracts', [
$response = $this->getJson(route('packages.contracts', [
'segment_id' => $segment->id,
'start_date_from' => '2024-02-01',
]));
@@ -92,7 +92,7 @@
expect(collect($data)->pluck('reference'))->toContain('CONTRACT-2024-002', 'CONTRACT-2024-003');
// Test with start_date_to filter
$response = $this->getJson(route('admin.packages.contracts', [
$response = $this->getJson(route('packages.contracts', [
'segment_id' => $segment->id,
'start_date_to' => '2024-03-31',
]));
@@ -103,7 +103,7 @@
expect(collect($data)->pluck('reference'))->toContain('CONTRACT-2024-001', 'CONTRACT-2024-002');
// Test with both date filters
$response = $this->getJson(route('admin.packages.contracts', [
$response = $this->getJson(route('packages.contracts', [
'segment_id' => $segment->id,
'start_date_from' => '2024-02-01',
'start_date_to' => '2024-04-30',
@@ -133,7 +133,7 @@
$segment = Segment::factory()->create(['active' => true]);
// Test invalid start_date_from
$response = $this->getJson(route('admin.packages.contracts', [
$response = $this->getJson(route('packages.contracts', [
'segment_id' => $segment->id,
'start_date_from' => 'invalid-date',
]));
@@ -142,7 +142,7 @@
$response->assertJsonValidationErrors('start_date_from');
// Test invalid start_date_to
$response = $this->getJson(route('admin.packages.contracts', [
$response = $this->getJson(route('packages.contracts', [
'segment_id' => $segment->id,
'start_date_to' => 'invalid-date',
]));