This commit is contained in:
Juan Pablo Vial
2023-06-22 23:15:17 -04:00
parent 05e37f19ae
commit b212381bb7
25 changed files with 433 additions and 89 deletions

View File

@ -40,6 +40,7 @@ class Money
protected function checkNextMonthValueCalculationByDate(DateTimeInterface $date): bool
{
$next_m_9 = Carbon::today(config('app.timezone'))->copy()->endOfMonth()->addDays(9);
$date = Carbon::parse($date);
return $date->lessThan($next_m_9);
}
protected function isOk(ResponseInterface $response): bool