Fix csv import
This commit is contained in:
parent
ee199fa378
commit
9f390c3702
|
@ -622,7 +622,6 @@ input.small-width {
|
|||
color: red;
|
||||
}
|
||||
|
||||
.img-circle{
|
||||
.img-circle.square{
|
||||
box-shadow: 0px 0px 1px 1px lightgray;
|
||||
opacity:0.3;
|
||||
}
|
||||
|
|
|
@ -15,7 +15,8 @@ switch (post('op')) {
|
|||
directory('../../files/'.$module);
|
||||
|
||||
$fp = fopen('../../files/'.$module.'/'.$module.'.csv', 'w');
|
||||
|
||||
fprintf($fp, chr(0xEF).chr(0xBB).chr(0xBF));
|
||||
|
||||
foreach ($list as $fields) {
|
||||
fputcsv($fp, $fields, ';');
|
||||
}
|
||||
|
|
|
@ -16,10 +16,10 @@ echo '
|
|||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="text-center" style="width:40%">'.tr('Intervento numero').': <b>'.$records[0]['codice'].'</b></td>
|
||||
<td class="text-center" style="width:30%">'.tr('Intervento num.').': <b>'.$records[0]['codice'].'</b></td>
|
||||
<td class="text-center" style="width:20%">'.tr('Data').': <b>'.Translator::dateToLocale($records[0]['data_richiesta']).'</b></td>
|
||||
<td class="text-center" style="width:20%">'.tr('Preventivo num.').': <b>'.$records[0]['numero_preventivo'].'</b></td>
|
||||
<td class="text-center" style="width:20%">'.tr('Contratto num.').': <b>'.$records[0]['numero_contratto'].'</b></td>
|
||||
<td class="text-center" style="width:25%">'.tr('Preventivo num.').': <b>'.$records[0]['numero_preventivo'].'</b></td>
|
||||
<td class="text-center" style="width:25%">'.tr('Contratto num.').': <b>'.$records[0]['numero_contratto'].'</b></td>
|
||||
</tr>';
|
||||
|
||||
// Dati cliente
|
||||
|
@ -49,9 +49,10 @@ echo '
|
|||
echo '
|
||||
<tr>
|
||||
<td colspan="4">
|
||||
'.tr('Via').': <b>'.$c_indirizzo.'</b> -
|
||||
'.tr('CAP').': <b>'.$c_cap.'</b> -
|
||||
'.tr('Comune').': <b>'.$c_citta.' ('.strtoupper($c_provincia).')</b>
|
||||
'.((!empty($c_indirizzo)) ? tr('Via').': <b>'.$c_indirizzo.'</b>' : '').'
|
||||
'.((!empty($c_cap)) ? tr('CAP').': <b>'.$c_cap.'</b>' : '').'
|
||||
'.((!empty($c_citta)) ? tr('Città').': <b>'.$c_citta.'</b>' : '').'
|
||||
'.((!empty($c_provincia)) ? tr('Provincia').': <b>'.strtoupper($c_provincia).'</b>' : '').'
|
||||
</td>
|
||||
</tr>';
|
||||
|
||||
|
|
Loading…
Reference in New Issue