feat(migrations): update franchise to percentage in tenant_insurances and tenant_service_coverage
- Changed franchise_rials to franchise_percent in tenant_insurances and tenant_service_coverage tables. - Reset old rial values to 0/NULL as they are not convertible to percentage. feat(command): add SeedInsuranceScenarioCommand for seeding insurance data - Implemented a command to seed supplementary insurance contracts, patients, and claims for a specified doctor. - Includes functionality for purging existing scenario data and generating new entries with predefined contracts and patient scenarios.
This commit is contained in:
@@ -107,7 +107,11 @@ class CoveragePercentResolutionTest extends ApiTestCase
|
||||
public function testServiceOverrideWinsOverEveryOtherLevel(): void
|
||||
{
|
||||
[$contract, $insurance, $item] = $this->makeContract(55.0);
|
||||
$this->defaults->save($insurance->getId(), [['key' => 'inpatient', 'coverage_percent' => 30]]);
|
||||
// سرپایی هم پیشفرض دارد، وگرنه ذخیرهٔ درصدها با «درصد پوشش الزامی است» رد میشود.
|
||||
$this->defaults->save($insurance->getId(), [
|
||||
['key' => 'inpatient', 'coverage_percent' => 30],
|
||||
['key' => 'outpatient', 'coverage_percent' => 70],
|
||||
]);
|
||||
$this->service->setCategoryCoverages($contract, [['key' => 'inpatient', 'coverage_percent' => 90]]);
|
||||
|
||||
$this->service->setServiceCoverage($contract, $item->getId(), true, 25.0, null, null);
|
||||
@@ -139,7 +143,7 @@ class CoveragePercentResolutionTest extends ApiTestCase
|
||||
);
|
||||
|
||||
$this->assertSame(30.0, $rule->coveragePercent);
|
||||
$this->assertSame(0, $rule->franchiseRials, 'فرانشیز در بیمهٔ پایه صفر میماند');
|
||||
$this->assertSame(0.0, $rule->franchisePercent, 'فرانشیز در بیمهٔ پایه صفر میماند');
|
||||
}
|
||||
|
||||
/** ویزیت خدمتِ سرپایی است. */
|
||||
@@ -163,7 +167,10 @@ class CoveragePercentResolutionTest extends ApiTestCase
|
||||
public function testRemovingTheOverrideReturnsToTheAdminDefault(): void
|
||||
{
|
||||
[$contract, $insurance] = $this->makeContract(55.0);
|
||||
$this->defaults->save($insurance->getId(), [['key' => 'inpatient', 'coverage_percent' => 30]]);
|
||||
$this->defaults->save($insurance->getId(), [
|
||||
['key' => 'inpatient', 'coverage_percent' => 30],
|
||||
['key' => 'outpatient', 'coverage_percent' => 70],
|
||||
]);
|
||||
$this->service->setCategoryCoverages($contract, [['key' => 'inpatient', 'coverage_percent' => 90]]);
|
||||
|
||||
$this->service->setCategoryCoverages($contract, [['key' => 'inpatient', 'coverage_percent' => null]]);
|
||||
|
||||
Reference in New Issue
Block a user