1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-16 19:40:44 +01:00
This commit is contained in:
Thomas Zilio 2020-07-06 17:58:48 +02:00
parent 3526ba9e57
commit 0bfb911944
4 changed files with 13 additions and 20 deletions

View File

@ -21,9 +21,7 @@ echo '
$righe = $contratto->getRighe();
foreach ($righe as $riga) {
echo '
<tr data-id="'.$riga->id.'" data-type="'.get_class($riga).'">';
echo '
<tr data-id="'.$riga->id.'" data-type="'.get_class($riga).'">
<td class="text-center">
'.(($riga->order) + 1).'
</td>';

View File

@ -39,9 +39,6 @@ foreach ($righe as $riga) {
echo '
<tr data-id="'.$riga->id.'" data-type="'.get_class($riga).'" '.$extra.'>
<td>';
echo '
<td class="text-center">
'.(($riga->order) + 1).'
</td>

View File

@ -21,9 +21,7 @@ echo '
$righe = $preventivo->getRighe();
foreach ($righe as $riga) {
echo '
<tr data-id="'.$riga->id.'" data-type="'.get_class($riga).'">';
echo '
<tr data-id="'.$riga->id.'" data-type="'.get_class($riga).'">
<td class="text-center">
'.(($riga->order) + 1).'
</td>';

View File

@ -62,7 +62,7 @@ foreach ($righe as $riga) {
if ($riga->isArticolo()) {
echo '
<td align="center">
<img src="'.$riga->articolo->image.'" style="max-height: 80px">
<img src="'.$riga->articolo->image.'" style="max-height: 80px; max-width:120px">
</td>';
$autofill->set(5);