Breadcrumb->render([ [ 'title' => 'Home', 'icon' => 'fa fa-home', 'url' => '/', ], [ 'title' => __('Documenti'), 'icon' => 'fa fa-book', ], [ 'title' => __('Lista Pratiche di attingimento'), 'icon' => 'fa fa-list', 'url' => ['controller' => 'WaterDrawingPaperworks', 'action' => 'index'], ], [ 'title' => __('Dettagli Pratica di attingimento'), 'icon' => 'fa fa-info', 'url' => ['controller' => 'WaterDrawingPaperworks', 'action' => 'view', $water_drawing_paperwork_id], ], [ 'title' => __('Lista pagamenti'), 'icon' => 'fa fa-list', ], ]); ?> = $this->Cell('Filters', [__('Filtri')]) ?>
| = __('Anno') ?> | = __('Data pagamento') ?> | = __('Numero del pagamento') ?> | = __('Importo') ?> | = __('Tipologia di pagamento') ?> | = __('Codice fiscale concessionario') ?> | = __('Azioni') ?> |
|---|---|---|---|---|---|---|
| = h($waterDrawingPayment->water_drawing_fee->year) ?> | = h($waterDrawingPayment->payment_date) ?> | = h($waterDrawingPayment->payment_number) ?> | = h($waterDrawingPayment->amount) ?> | = h($waterDrawingPayment->water_drawing_payment_type->description) ?> | = h($waterDrawingPayment->applicant_tax_code) ?> | = $waterDrawingPayment->can_edit ? $this->Html->link(__('Modifica'), ['controller' => 'WaterDrawingPayments', 'action' => 'edit', $waterDrawingPayment->id], ['class' => 'btn btn-warning btn-xs']) : null ?> = $this->Html->link(__('Dettagli'), ['controller' => 'WaterDrawingPayments', 'action' => 'view', $waterDrawingPayment->id], ['class' => 'btn btn-info btn-xs']) ?> = $waterDrawingPayment->can_delete ? $this->Form->postLink(__('Cancella'), ['controller' => 'WaterDrawingPayments', 'action' => 'delete', $waterDrawingPayment->id], ['confirm' => __('Sei sicuro che vuoi cancellare il pagamento n° "{0}" ?', $waterDrawingPayment->payment_number), 'class' => 'btn btn-danger btn-xs']) : null ?> |