61 lines
2.6 KiB
PHP
61 lines
2.6 KiB
PHP
|
<!-- RIGHE -->
|
||
|
<?php
|
||
|
|
||
|
if( $records[0]['id_contratto'] != "0" && $records[0]['id_contratto'] != "" ){
|
||
|
$rs_contratto = $dbo->fetchArray("SELECT * FROM co_contratti WHERE id=\"".$records[0]['id_contratto']."\"");
|
||
|
$rs_tipo= $dbo->fetchArray("SELECT id , descrizione FROM co_contratti_tipi where id ='".$rs_contratto[0]['id_tipocanone']."'");
|
||
|
$rs_righe= $dbo->fetchArray("SELECT idarticolo , descrizione , qta FROM co_contratti_tipi_righe_qta where idtipocontratto ='".$rs_contratto[0]['id_tipocanone']."'");
|
||
|
$tot_righe=sizeof($rs_righe);
|
||
|
}
|
||
|
$richiesto=0;
|
||
|
if( $records[0]['id_contratto'] != "0" && $records[0]['id_contratto'] != "" ){
|
||
|
$richiesto=1;
|
||
|
}
|
||
|
?>
|
||
|
|
||
|
|
||
|
<div class="panel panel-<?php echo $_SESSION['profilo_pannello'] ?>">
|
||
|
|
||
|
<div class="panel-body">
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="col-md-12">
|
||
|
<div class="col-md-4">
|
||
|
{[ "type": "select", "label": "Canone", "name": "id_contratto", "required": <?php echo $richiesto ?>, "class": "", "values": "query=SELECT id , nome as descrizione FROM co_contratti where idstato NOT IN (SELECT `id` FROM co_staticontratti WHERE descrizione='Bozza' OR descrizione='Rifiutato' OR descrizione='Pagato') and idanagrafica = <?php echo $records[0]['idanagrafica'] ?> ORDER BY id", "value": "$id_contratto$", "extra": "" ]}
|
||
|
</div>
|
||
|
<div class="col-md-2">
|
||
|
{[ "type": "date", "label": "Data accettazione", "maxlength": 10, "name": "", "required": 0, "class": "text-center date-mask", "value": "<? echo $rs_contratto[0]['data_accettazione'] ?>", "extra": "readonly" ]}
|
||
|
</div>
|
||
|
<div class="col-md-2">
|
||
|
{[ "type": "date", "label": "Data conclusione", "maxlength": 10, "name": "", "required": 0, "class": "text-center date-mask", "value": "<? echo $rs_contratto[0]['data_conclusione'] ?>", "extra": "readonly" ]}
|
||
|
</div>
|
||
|
<div class="col-md-4">
|
||
|
{[ "type": "text", "label": "Tipologia", "name": "", "required": <?php echo $richiesto ?>, "class": "text-center", "value": "<?php echo $rs_tipo[0]['descrizione'] ?>", "extra": "readonly" ]}
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="clearfix"></div>
|
||
|
<br>
|
||
|
<?php
|
||
|
if( $tot_righe != "0" ){
|
||
|
?>
|
||
|
<div class="row">
|
||
|
<div class="col-md-12">
|
||
|
<table class="table table-striped table-hover table-condensed table-bordered">
|
||
|
<tr>
|
||
|
<th>Posizioni a scalare</th>
|
||
|
<th width="120">Qta Canone</th>
|
||
|
<th width="120">Qta Consumata</th>
|
||
|
<th width="120">Qta Residua</th>
|
||
|
</tr>
|
||
|
<?php include($docroot."/modules/documenti/row-list-contratti.php"); ?>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
<?php
|
||
|
}
|
||
|
?>
|
||
|
|
||
|
</div>
|
||
|
</div>
|