Files
crm-ms1/application/views/projets/inc_form_includeblock.php
2026-05-27 11:44:10 -04:00

228 lines
6.1 KiB
PHP

<div id="block_reservation">
<fieldset style="background-color: #078c2a ;color: #000000 ">Réservation
<div class="row">
<section class="col col-5">
<label class="input">
<?php
$mem_champ='det_res_contact_id';
echo form_label($label[$mem_champ]);
?>
</label>
<label class="select">
<?php
echo $icon[$mem_champ];
echo form_dropdown($mem_champ,$select[$mem_champ]['choix'],$select[$mem_champ]['value'],'id="'.$mem_champ.'"');
?>
<i>
</i>
</label>
</section>
<section class="col col-2">
<label class="input">
<?php
$mem_champ='det_res_active';
echo form_label($label[$mem_champ]);
?>
</label>
<input id="val_<?php echo $mem_champ;?>" name="val_<?php echo $mem_champ;?>" type="hidden" value="<?php echo $value[$mem_champ];?>">
<label class="checkbox">
<?php
echo $icon[$mem_champ];
echo form_checkbox($input[$mem_champ]);
?>
<i>
</i>
</label>
</section>
<section class="col col-2">
<label class="input">
Date
</label>
<label >
<?php echo($det_res_creation);?>
</label>
</section>
<section class="col col-2">
<label class="input">
Date d'envoi
</label>
<label >
<?php echo($det_res_envoi);?>
</label>
</section>
</div>
</fieldset>
</div>
<div id="block_confirmation">
<fieldset style="background-color: #33CAFF;color: #000000 ">Confirmation
<div class="row">
<section class="col col-5">
<?php //if ($det_con_lot_fait==0){?>
<label class="input">
<?php
$mem_champ='det_con_contact_id';
//if ($det_con_lot_fait==0)
echo form_label($label[$mem_champ]);
?>
</label>
<label class="select">
<?php
echo $icon[$mem_champ];
echo form_dropdown($mem_champ,$select[$mem_champ]['choix'],$select[$mem_champ]['value'],'id="'.$mem_champ.'"');
?>
<i>
</i>
</label>
<?php //}?>
</section>
<section class="col col-2">
<?php //if ($det_con_lot_fait==0){?>
<label class="input">
<?php
$mem_champ='det_con_active';
echo form_label($label[$mem_champ]);
?>
</label>
<input id="val_<?php echo $mem_champ;?>" name="val_<?php echo $mem_champ;?>" type="hidden" value="<?php echo $value[$mem_champ];?>">
<label class="checkbox">
<?php
echo $icon[$mem_champ];
echo form_checkbox($input[$mem_champ]);
?>
<i>
</i>
</label>
<?php //}?>
</section>
<section class="col col-2">
<label class="input">
Date
</label>
<label >
<?php echo($det_con_creation);?>
</label>
</section>
<section class="col col-2">
<label class="input">
Date d'envoi
</label>
<label >
<?php echo($det_con_envoi);?>
</label>
</section>
</div>
</fieldset>
</div>
<div id="block_facturation">
<fieldset style="background-color: #bab9b8;color: #000000 ">Facturation
<div class="row">
<section class="col col-5">
<?php if ($det_fac_lot_fait==0){?>
<label class="input">
<?php
$mem_champ='det_fac_contact_id';
if ($det_fac_lot_fait==0)
echo form_label($label[$mem_champ]);
?>
</label>
<label class="select">
<?php
echo $icon[$mem_champ];
echo form_dropdown($mem_champ,$select[$mem_champ]['choix'],$select[$mem_champ]['value'],'id="'.$mem_champ.'"');
?>
<i>
</i>
</label>
<?php }?>
</section>
<section class="col col-2">
<?php if ($det_fac_lot_fait==0){?>
<label class="input">
<?php
$mem_champ='det_fac_active';
echo form_label($label[$mem_champ]);
?>
</label>
<label class="checkbox">
<?php
echo $icon[$mem_champ];
echo form_checkbox($input[$mem_champ]);
?>
<i>
</i>
</label> <input id="val_<?php echo $mem_champ;?>" name="val_<?php echo $mem_champ;?>" type="hidden" value="<?php echo $value[$mem_champ];?>">
<?php }?>
</section>
<section class="col col-2">
<label class="input">
Date
</label>
<label >
<?php echo($det_fac_creation);?>
</label>
</section>
<section class="col col-2">
<label class="input">
Date d'envoi
</label>
<label >
<?php echo($det_fac_envoi);?>
</label>
</section>
</div>
</fieldset>
</div>