This commit is contained in:
MatteoPistorello 2021-02-02 13:01:31 +01:00
commit bc6ccfe940
2 changed files with 34 additions and 20 deletions

View File

@ -22,10 +22,10 @@ include_once __DIR__.'/../../core.php';
// Stato Patrimoniale // Stato Patrimoniale
echo ' echo '
<h4>Stato Patrimoniale</h3> <h4>Stato Patrimoniale</h3>
<table>
<tr> <div class="row">
<td width="50%"> <div class="col-md-6 pull-left" style="width:49%;" >
<table class="table table-striped table-bordered" style="font-size:10px; overflow:hidden;" id="contents"> <table class="table table-striped table-bordered" style="overflow:hidden;" id="contents">
<thead> <thead>
<tr> <tr>
<th colspan="3"><h5>Attività</h5></th> <th colspan="3"><h5>Attività</h5></th>
@ -97,9 +97,10 @@ echo '
echo ' echo '
</tbody> </tbody>
</table> </table>
</td> </div>
<td width="50%">
<table class="table table-striped table-bordered" style="font-size:10px; overflow:hidden;" id="contents"> <div class="col-md-6 pull-right" style="width:49%;" >
<table class="table table-striped table-bordered" style="overflow:hidden;" id="contents">
<thead> <thead>
<tr> <tr>
@ -171,18 +172,20 @@ echo '
echo ' echo '
</tbody> </tbody>
</table> </table>
</td>
</tr> </div>
</table>'; </div>';
// Conto economico // Conto economico
echo ' echo '
<pagebreak> <pagebreak>
<h4>Conto Economico</h4> <h4>Conto Economico</h4>
<table>
<tr> <div class="row">
<td width="50%">
<table class="table table-striped table-bordered" style="font-size:10px; overflow:hidden;" id="contents"> <div class="col-md-6 pull-left" style="width:49%;" >
<table class="table table-striped table-bordered" style=" overflow:hidden;" id="contents">
<thead> <thead>
<tr> <tr>
<th colspan="3"><h5>Costi</h5></th> <th colspan="3"><h5>Costi</h5></th>
@ -237,9 +240,11 @@ echo '
echo ' echo '
</tbody> </tbody>
</table> </table>
</td> </div>
<td width="50%">
<table class="table table-striped table-bordered" style="font-size:10px; overflow:hidden;" id="contents"> <div class="col-md-6 pull-right" style="width:49%;" >
<table class="table table-striped table-bordered" style=" overflow:hidden;" id="contents">
<thead> <thead>
<tr> <tr>
@ -295,6 +300,6 @@ echo '
echo ' echo '
</tbody> </tbody>
</table> </table>
</td>
</tr> </div>
</table>'; </div>';

View File

@ -0,0 +1,9 @@
<?php
return [
'format' => 'A4',
'orientation' => 'P',
'font-size' => '9px',
];