|
|
@@ -368,13 +368,14 @@ class IssueController extends Controller
|
|
368
|
368
|
$ore = round($ore*2)/2;
|
|
369
|
369
|
}
|
|
370
|
370
|
|
|
|
371
|
+ $data = Carbon::parse($tempo->spent_on)->format('d/m/Y');
|
|
371
|
372
|
$collectionIssue->push([
|
|
372
|
|
- 'nome' => "Intervento Tecnico #".$issue->id." ".$issue->subject." - ".Carbon::parse($tempo->spent_on)->format('d/m/Y'),
|
|
|
373
|
+ 'nome' => "Intervento Tecnico #".$issue->id." ".$issue->subject." - ".$data,
|
|
373
|
374
|
'codice' => 'INT-ORE',
|
|
374
|
375
|
'quantita' => $ore]
|
|
375
|
376
|
);
|
|
376
|
377
|
$collectionIssue->push([
|
|
377
|
|
- 'nome' => "Diritto fisso di uscita - #".$issue->id." - ".$sedeCliente,
|
|
|
378
|
+ 'nome' => "Diritto fisso di uscita - #".$issue->id." - ".$sedeCliente." - ".$data,
|
|
378
|
379
|
'codice' => 'INT-USC',
|
|
379
|
380
|
'quantita' => 1]
|
|
380
|
381
|
);
|