mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-14 08:26:43 +01:00
Fix calcolo scadenze 30gg con febbraio
This commit is contained in:
parent
995be4cbdb
commit
b3cf83d303
@ -20,7 +20,7 @@
|
|||||||
namespace Modules\Pagamenti;
|
namespace Modules\Pagamenti;
|
||||||
|
|
||||||
use Common\SimpleModelTrait;
|
use Common\SimpleModelTrait;
|
||||||
use DateTime;
|
use Carbon\Carbon;
|
||||||
use Illuminate\Database\Eloquent\Model;
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
class Pagamento extends Model
|
class Pagamento extends Model
|
||||||
@ -49,18 +49,27 @@ class Pagamento extends Model
|
|||||||
$results = [];
|
$results = [];
|
||||||
$count = 0;
|
$count = 0;
|
||||||
foreach ($rate as $key => $rata) {
|
foreach ($rate as $key => $rata) {
|
||||||
$date = new DateTime($data);
|
$date = new Carbon($data);
|
||||||
|
|
||||||
// X giorni esatti
|
// X giorni esatti
|
||||||
if ($rata['giorno'] == 0) {
|
if ($rata['giorno'] == 0) {
|
||||||
// Offset della rata
|
// Offset della rata
|
||||||
$date->modify('+'.($rata['num_giorni']).' day');
|
if ($rata['num_giorni']%30 == 0){
|
||||||
|
$date->addMonthsNoOverflow( round($rata['num_giorni']/30) );
|
||||||
|
} else {
|
||||||
|
$date->addDay( $rata['num_giorni'] );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ultimo del mese
|
// Ultimo del mese
|
||||||
elseif ($rata['giorno'] < 0) {
|
elseif ($rata['giorno'] < 0) {
|
||||||
// Offset della rata in mesi
|
// Offset della rata
|
||||||
$date->modify('+'.($rata['num_giorni'].' day'));
|
if ($rata['num_giorni']%30 == 0){
|
||||||
|
$date->addMonthsNoOverflow( round($rata['num_giorni']/30) );
|
||||||
|
} else {
|
||||||
|
$date->addDay( $rata['num_giorni'] );
|
||||||
|
}
|
||||||
|
|
||||||
$date->modify('last day of this month');
|
$date->modify('last day of this month');
|
||||||
|
|
||||||
// Opzione ultimo del mese più X giorni
|
// Opzione ultimo del mese più X giorni
|
||||||
@ -75,8 +84,12 @@ class Pagamento extends Model
|
|||||||
// Giorno preciso del mese
|
// Giorno preciso del mese
|
||||||
else {
|
else {
|
||||||
// Offset della rata
|
// Offset della rata
|
||||||
$date->modify('+'.($rata['num_giorni']).' day');
|
if ($rata['num_giorni']%30 == 0){
|
||||||
|
$date->addMonthsNoOverflow( round($rata['num_giorni']/30) );
|
||||||
|
} else {
|
||||||
|
$date->addDay( $rata['num_giorni'] );
|
||||||
|
}
|
||||||
|
|
||||||
// Individuazione giorno effettivo (se il giorno indicato è eccessivamente grande, viene preso il massimo possibile)
|
// Individuazione giorno effettivo (se il giorno indicato è eccessivamente grande, viene preso il massimo possibile)
|
||||||
$date->modify('last day of this month');
|
$date->modify('last day of this month');
|
||||||
$last_day = $date->format('d');
|
$last_day = $date->format('d');
|
||||||
@ -119,4 +132,4 @@ class Pagamento extends Model
|
|||||||
{
|
{
|
||||||
return $this->codice_modalita_pagamento_fe == 'MP12';
|
return $this->codice_modalita_pagamento_fe == 'MP12';
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user