2024-05-28 09:21:53 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once __DIR__.'/core.php';
|
|
|
|
|
|
|
|
use Modules\PrimaNota\Mastrino;
|
|
|
|
|
2024-05-29 09:25:33 +02:00
|
|
|
$mastrini = Mastrino::where('primanota', 1)->where('id_scadenza', '!=', null)->where('iddocumento', '!=', null)->groupBy('idmastrino')->get();
|
2024-05-28 09:21:53 +02:00
|
|
|
foreach ($mastrini as $mastrino) {
|
|
|
|
$mastrino->aggiornaScadenzario();
|
|
|
|
}
|