feature/cierres #30

Merged
aldarien merged 460 commits from feature/cierres into develop 2025-09-11 15:16:17 -03:00
122 changed files with 421 additions and 4107 deletions
Showing only changes of commit 7f97862324 - Show all commits

View File

@ -123,7 +123,7 @@ class QueueTest extends TestCase
$cuotaData = [
'pie' => $pie->id,
'fecha' => '2022-01-01',
'fecha' => $faker->dateTimeBetween('2024-01-01')->format('Y-m-d'),
'valor' => 10000,
'banco' => $banco->id,
];
@ -135,6 +135,6 @@ class QueueTest extends TestCase
$queueService->run();
$cuota = $cuotaService->getById($cuota->id);
$this->assertNotEquals(0.0, $cuota->pago->uf);
$this->assertGreaterThan(0.0, $cuota->pago->uf);
}
}