refactor: allineamento table-sm con bootstrap 4
This commit is contained in:
parent
c05697ddf8
commit
3a2f39fe5e
|
@ -286,7 +286,7 @@ echo '
|
|||
<h3 class="card-title">'.tr('Righe da importare').'</h3>
|
||||
</div>
|
||||
|
||||
<table class="card-body table table-striped table-hover table-condensed">
|
||||
<table class="card-body table table-striped table-hover table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="2%"><input id="import_all" type="checkbox" checked/></th>
|
||||
|
@ -436,7 +436,7 @@ if (!$righe_evase->isEmpty()) {
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<table class="card-body table table-striped table-hover table-condensed">
|
||||
<table class="card-body table table-striped table-hover table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Descrizione').'</th>
|
||||
|
@ -462,7 +462,7 @@ if (!$righe_evase->isEmpty()) {
|
|||
// Gestione articolo sottoscorta
|
||||
echo '
|
||||
<div class="card alert hidden" id="articoli_sottoscorta">
|
||||
<table class="table table-condensed">
|
||||
<table class="table table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Articolo').'</th>
|
||||
|
|
|
@ -33,7 +33,7 @@ $source_id = filter('source_id');
|
|||
$riferimenti = (array) filter('riferimenti');
|
||||
|
||||
echo '
|
||||
<table class="table table-striped table-hover table-condensed table-bordered">
|
||||
<table class="table table-striped table-hover table-sm table-bordered">
|
||||
<tr>
|
||||
<th>'.tr('Descrizione').'</th>
|
||||
<th>'.tr('Q.tà').' <i title="'.tr('da evadere').' / '.tr('totale').'" class="tip fa fa-question-circle-o"></i></th>
|
||||
|
|
|
@ -212,7 +212,7 @@ function initcard(controllo, success) {
|
|||
card += `
|
||||
<div class="card-body">
|
||||
<div class="table-responsive">
|
||||
<table class="table table-striped table-hover table-condensed table-bordered">
|
||||
<table class="table table-striped table-hover table-sm table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="15%">'.tr('Record').'</th>
|
||||
|
|
|
@ -82,7 +82,7 @@ $ordini = $dbo->fetchArray(str_replace('|dir|', 'entrata', $query));
|
|||
$impegnato = sum(array_column($ordini, 'qta_impegnata'));
|
||||
if (!empty($ordini)) {
|
||||
echo '
|
||||
<table class="table table-bordered table-condensed table-striped">
|
||||
<table class="table table-bordered table-sm table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Descrizione').'</th>
|
||||
|
@ -149,7 +149,7 @@ $ordini = $dbo->fetchArray(str_replace('|dir|', 'uscita', $query));
|
|||
if (!empty($ordini)) {
|
||||
$ordinato = sum(array_column($ordini, 'qta_ordinata'));
|
||||
echo '
|
||||
<table class="table table-bordered table-condensed table-striped">
|
||||
<table class="table table-bordered table-sm table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Descrizione').'</th>
|
||||
|
@ -260,7 +260,7 @@ echo '
|
|||
</div>
|
||||
|
||||
<div class="card-body">
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Sede').'</th>
|
||||
|
|
|
@ -116,7 +116,7 @@ if (empty(get('modal'))) {
|
|||
$rs2 = $dbo->fetchArray($query);
|
||||
|
||||
echo '
|
||||
<table id="table-serials" class="table table-striped table-hover table-condensed table-bordered text-center datatables">
|
||||
<table id="table-serials" class="table table-striped table-hover table-sm table-bordered text-center datatables">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Serial').'</th>
|
||||
|
|
|
@ -103,7 +103,7 @@ $giacenze = $articolo->getGiacenze();
|
|||
$movimenti = $movimenti->leftJoin('an_sedi', 'mg_movimenti.idsede', 'an_sedi.id')->get();
|
||||
if (!empty($movimenti)) {
|
||||
echo '
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<tr>
|
||||
<th class="text-center" width="40">#</th>
|
||||
<th class="text-center" width="120">'.tr('Q.tà').'</th>
|
||||
|
|
|
@ -37,7 +37,7 @@ if (!empty($movimenti)) {
|
|||
$totale = 0;
|
||||
echo '
|
||||
<div style="max-height:400px; overflow:auto;">
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<tr>
|
||||
<th class="text-center">'.tr('Q.tà').'</th>
|
||||
<th class="text-center">'.tr('Q.tà progressiva').'</th>
|
||||
|
|
|
@ -28,7 +28,7 @@ $rs2 = $dbo->fetchArray('SELECT
|
|||
if (!empty($rs2)) {
|
||||
echo '
|
||||
<div style="max-height: 300px; overflow: auto;">
|
||||
<table class="table table-striped table-hover table-condensed">
|
||||
<table class="table table-striped table-hover table-sm">
|
||||
<tr>
|
||||
<th>'.tr('Articolo').'</th>
|
||||
<th width="25%">'.tr('Q.tà').'</th>
|
||||
|
|
|
@ -11,7 +11,7 @@ $rs_art = $dbo->fetchArray($q_art);
|
|||
if (!empty($rs_art)) {
|
||||
echo '
|
||||
<div style="max-height: 300px; overflow: auto;">
|
||||
<table class="table table-striped table-hover table-condensed">
|
||||
<table class="table table-striped table-hover table-sm">
|
||||
<tr>
|
||||
<th>'.tr('Tecnico').'</th>
|
||||
<th width="25%">'.tr('Dal').'</th>
|
||||
|
|
|
@ -65,7 +65,7 @@ use Models\Module;
|
|||
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<table class="table table-striped table-hover table-condensed">
|
||||
<table class="table table-striped table-hover table-sm">
|
||||
<tr>
|
||||
<th><?php echo tr('Nome'); ?></th>
|
||||
<th><?php echo tr('Colore'); ?></th>
|
||||
|
|
|
@ -67,7 +67,7 @@ use Models\Module;
|
|||
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<table class="table table-striped table-hover table-condensed">
|
||||
<table class="table table-striped table-hover table-sm">
|
||||
<tr>
|
||||
<th><?php echo tr('Nome'); ?></th>
|
||||
<th><?php echo tr('Colore'); ?></th>
|
||||
|
|
|
@ -231,7 +231,7 @@ $rs = $dbo->fetchArray('SELECT `co_contratti_tipiintervento`.*, `in_tipiinterven
|
|||
|
||||
if (!empty($rs)) {
|
||||
echo '
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<tr>
|
||||
<th width="300">'.tr('Tipo attività').'</th>
|
||||
|
||||
|
@ -283,7 +283,7 @@ $rs = $dbo->fetchArray('SELECT * FROM `co_contratti_tipiintervento` INNER JOIN `
|
|||
if (!empty($rs)) {
|
||||
echo '
|
||||
<div class="clearfix"> </div>
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<tr>
|
||||
<th width="300">'.tr('Tipo attività').'</th>
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ $righe = $dbo->fetchArray(
|
|||
);
|
||||
?>
|
||||
<form action="" method="post" id="add-form">
|
||||
<table class="table table-striped table-hover table-condensed table-bordered m-3">
|
||||
<table class="table table-striped table-hover table-sm table-bordered m-3">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="35" class="text-center" ><?php echo tr('Codice'); ?></th>
|
||||
|
|
|
@ -32,7 +32,7 @@ $interventi = Intervento::where('id_contratto', $id_record)->get();
|
|||
$totale_ore_completate = 0;
|
||||
if (!empty($interventi)) {
|
||||
echo '
|
||||
<table class="table table-bordered table-condensed">
|
||||
<table class="table table-bordered table-sm">
|
||||
<tr>
|
||||
<th>'.tr('Attività').'</th>
|
||||
<th width="125">'.tr('Ore').'</th>
|
||||
|
@ -82,7 +82,7 @@ if (!empty($interventi)) {
|
|||
$sessioni = $intervento->sessioni;
|
||||
if (!empty($sessioni)) {
|
||||
echo '
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<tr>
|
||||
<th>'.tr('Tecnico').'</th>
|
||||
<th width="210">'.tr('Tipo attività').'</th>
|
||||
|
@ -141,7 +141,7 @@ if (!empty($interventi)) {
|
|||
$articoli = $intervento->articoli;
|
||||
if (!$articoli->isEmpty()) {
|
||||
echo '
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<tr>
|
||||
<th>'.tr('Materiale').'</th>
|
||||
<th width="120">'.tr('Q.tà').'</th>
|
||||
|
@ -181,7 +181,7 @@ if (!empty($interventi)) {
|
|||
$righe = $intervento->righe;
|
||||
if (!$righe->isEmpty()) {
|
||||
echo '
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<tr>
|
||||
<th>'.tr('Altre spese').'</th>
|
||||
<th width="120">'.tr('Q.tà').'</th>
|
||||
|
|
|
@ -28,7 +28,7 @@ $colspan = '7';
|
|||
|
||||
echo '
|
||||
<div class="table-responsive row-list">
|
||||
<table class="table table-striped table-hover table-condensed table-bordered">
|
||||
<table class="table table-striped table-hover table-sm table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="5" class="text-center">';
|
||||
|
|
|
@ -42,7 +42,7 @@ $righe = $dbo->fetchArray(
|
|||
);
|
||||
?>
|
||||
<form action="" method="post" id="add-form">
|
||||
<table class="table table-striped table-hover table-condensed table-bordered m-3">
|
||||
<table class="table table-striped table-hover table-sm table-bordered m-3">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="35" class="text-center" ><?php echo tr('Codice'); ?></th>
|
||||
|
|
|
@ -28,7 +28,7 @@ $colspan = $dir == 'entrata' ? '7' : '6';
|
|||
|
||||
echo '
|
||||
<div class="table-responsive row-list">
|
||||
<table class="table table-striped table-hover table-condensed table-bordered">
|
||||
<table class="table table-striped table-hover table-sm table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="5" class="text-center">';
|
||||
|
|
|
@ -42,7 +42,7 @@ $righe = $dbo->fetchArray(
|
|||
);
|
||||
?>
|
||||
<form action="" method="post" id="add-form">
|
||||
<table class="table table-striped table-hover table-condensed table-bordered m-3">
|
||||
<table class="table table-striped table-hover table-sm table-bordered m-3">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="35" class="text-center" ><?php echo tr('Codice'); ?></th>
|
||||
|
|
|
@ -30,7 +30,7 @@ $colspan = $dir == 'entrata' ? '8' : '7';
|
|||
|
||||
echo '
|
||||
<div class="table-responsive row-list">
|
||||
<table class="table table-striped table-hover table-condensed table-bordered">
|
||||
<table class="table table-striped table-hover table-sm table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="5" class="text-center">';
|
||||
|
|
|
@ -57,7 +57,7 @@ use Models\Module;
|
|||
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<table class="table table-striped table-hover table-condensed">
|
||||
<table class="table table-striped table-hover table-sm">
|
||||
<tr>
|
||||
<th><?php echo tr('Nome'); ?></th>
|
||||
<th width="20%"><?php echo tr('Opzioni'); ?></th>
|
||||
|
|
|
@ -67,7 +67,7 @@ if (!empty($sessioni)) {
|
|||
|
||||
echo '
|
||||
<div class="table-responsive">
|
||||
<table class="table table-striped table-hover table-condensed">
|
||||
<table class="table table-striped table-hover table-sm">
|
||||
<tr><th>';
|
||||
|
||||
if ($sessione['id_user']) {
|
||||
|
@ -155,7 +155,7 @@ if (!empty($sessioni)) {
|
|||
{[ "type": "number", "name": "ore_'.$sessione['id'].'", "required": 1, "value": "'.numberFormat($ore, 'qta').'", "disabled": "1" ]}
|
||||
|
||||
<div class="extra hide">
|
||||
<table class="table table-condensed table-bordered">
|
||||
<table class="table table-sm table-bordered">
|
||||
<tr>
|
||||
<th class="text-danger">'.tr('Costo').':</th>
|
||||
<td class="text-right">
|
||||
|
@ -184,7 +184,7 @@ if (!empty($sessioni)) {
|
|||
{[ "type": "number", "name": "sessione_km_'.$sessione['id'].'", "required": 1, "value": "'.numberFormat($sessione['km'], 'qta').'", "onchange": "aggiornaSessioneInline($(this).closest(\'tr\').data(\'id\'))", "disabled": "'.$block_edit.'" ]}
|
||||
|
||||
<div class="extra hide">
|
||||
<table class="table table-condensed table-bordered">
|
||||
<table class="table table-sm table-bordered">
|
||||
<tr>
|
||||
<th class="text-danger">'.tr('Costo').':</th>
|
||||
<td class="text-right">
|
||||
|
|
|
@ -403,16 +403,4 @@ echo '
|
|||
|
||||
map.setView([lat, lng], 10);
|
||||
}
|
||||
|
||||
function alignMaxHeight(element){
|
||||
max_height = 0;
|
||||
$(element).each( function(){
|
||||
if($(this).height() > max_height){
|
||||
max_height = $(this).height();
|
||||
}
|
||||
});
|
||||
$(element).height(max_height);
|
||||
}
|
||||
|
||||
alignMaxHeight(".module-header .card");
|
||||
</script>';
|
||||
|
|
|
@ -42,7 +42,7 @@ $righe = $dbo->fetchArray(
|
|||
);
|
||||
?>
|
||||
<form action="" method="post" id="add-form">
|
||||
<table class="table table-striped table-hover table-condensed table-bordered m-3">
|
||||
<table class="table table-striped table-hover table-sm table-bordered m-3">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="35" class="text-center" ><?php echo tr('Codice'); ?></th>
|
||||
|
|
|
@ -54,7 +54,7 @@ echo '
|
|||
<div class="card-body">';
|
||||
if ($interventi_da_firmare) {
|
||||
echo '
|
||||
<table class="table table-hover table-bordered table-condensed">
|
||||
<table class="table table-hover table-bordered table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Interventi').'</th>
|
||||
|
@ -96,7 +96,7 @@ echo '
|
|||
<div class="card-body">';
|
||||
if ($interventi_firmati) {
|
||||
echo '
|
||||
<table class="table table-hover table-bordered table-condensed">
|
||||
<table class="table table-hover table-bordered table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Interventi').'</th>
|
||||
|
@ -138,7 +138,7 @@ echo '
|
|||
<div class="card-body">';
|
||||
if ($interventi_completati) {
|
||||
echo '
|
||||
<table class="table table-hover table-bordered table-condensed">
|
||||
<table class="table table-hover table-bordered table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Interventi').'</th>
|
||||
|
|
|
@ -101,7 +101,7 @@ echo '
|
|||
<h3 class="card-title">'.tr('⚠️ Sono presenti dei conflitti con le sessioni di lavoro di alcuni tecnici').'</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<table class="table table-condensed table-striped">
|
||||
<table class="table table-sm table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Tecnico').'</th>
|
||||
|
|
|
@ -29,7 +29,7 @@ $show_prezzi = Auth::user()['gruppo'] != 'Tecnici' || (Auth::user()['gruppo'] ==
|
|||
|
||||
echo '
|
||||
<div class="table-responsive row-list">
|
||||
<table class="table table-striped table-hover table-condensed table-bordered">
|
||||
<table class="table table-striped table-hover table-sm table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="5" class="text-center">';
|
||||
|
|
|
@ -116,7 +116,7 @@ if ($lista) {
|
|||
</div>
|
||||
|
||||
<div class="card-body">
|
||||
<table class="table table-hover table-condensed table-bordered" id="destinatari">
|
||||
<table class="table table-hover table-sm table-bordered" id="destinatari">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Ragione sociale').'</th>
|
||||
|
|
|
@ -76,7 +76,7 @@ echo '
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<table class="table table-hover table-condensed table-bordered" id="tablelistini" width="100%">
|
||||
<table class="table table-hover table-sm table-bordered" id="tablelistini" width="100%">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="text-center">
|
||||
|
|
|
@ -20,20 +20,22 @@
|
|||
include_once __DIR__.'/../../core.php';
|
||||
|
||||
switch (post('op')) {
|
||||
// Aggiorno informazioni di base impianto
|
||||
// Aggiorno informazioni di base marchio
|
||||
case 'update':
|
||||
$dbo->update('mg_marchi', [
|
||||
'name' => post('name'),
|
||||
'link' => post('link'),
|
||||
], ['id' => $id_record]);
|
||||
|
||||
flash()->info(tr('Informazioni salvate correttamente!'));
|
||||
|
||||
break;
|
||||
|
||||
// Aggiungo impianto
|
||||
// Aggiungo marchio
|
||||
case 'add':
|
||||
$dbo->insert('mg_marchi', [
|
||||
'name' => post('name'),
|
||||
'link' => post('link'),
|
||||
]);
|
||||
$id_record = $dbo->lastInsertedID();
|
||||
|
||||
|
@ -41,7 +43,7 @@ switch (post('op')) {
|
|||
|
||||
break;
|
||||
|
||||
// Rimuovo impianto e scollego tutti i suoi componenti
|
||||
// Rimuovo marchio
|
||||
case 'delete':
|
||||
$dbo->query('DELETE FROM mg_marchi WHERE id='.prepare($id_record));
|
||||
|
||||
|
|
|
@ -29,6 +29,9 @@ $id_anagrafica = filter('id_anagrafica');
|
|||
<div class="col-md-4">
|
||||
{[ "type": "text", "label": "<?php echo tr('name'); ?>", "name": "name", "required": 1, "validation": "name" ]}
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
{[ "type": "text", "label": "<?php echo tr('Link produttore'); ?>", "name": "link", "value":"$link$"]}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- PULSANTI -->
|
||||
|
|
|
@ -27,13 +27,16 @@ include_once __DIR__.'/../../core.php';
|
|||
<!-- DATI ANAGRAFICI -->
|
||||
<div class="card card-primary">
|
||||
<div class="card-header">
|
||||
<h3 class="panel-title"><?php echo tr('Dati marchio'); ?></h3>
|
||||
<h3 class="card-title"><?php echo tr('Dati marchio'); ?></h3>
|
||||
</div>
|
||||
|
||||
<div class="card-body">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
{[ "type": "text", "label": "<?php echo tr('name'); ?>", "name": "name", "value":"$name$", "required": 1, "validation": "name" ]}
|
||||
{[ "type": "text", "label": "<?php echo tr('Nome'); ?>", "name": "name", "value":"$name$", "required": 1, "validation": "name" ]}
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
{[ "type": "text", "label": "<?php echo tr('Link produttore'); ?>", "name": "link", "value":"$link$"]}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -80,7 +80,7 @@ echo '
|
|||
<i class="fa fa-plus"></i> '.tr('Aggiungi riga').'
|
||||
</button>
|
||||
<br><br>
|
||||
<table class="table table-striped table-condensed table-hover table-bordered"
|
||||
<table class="table table-striped table-sm table-hover table-bordered"
|
||||
<tr>
|
||||
<th width="60%">'.tr('Conto').'</th>
|
||||
<th width="20%">'.tr('Dare').'</th>
|
||||
|
|
|
@ -97,7 +97,7 @@ echo '
|
|||
<i class="fa fa-plus"></i> '.tr('Aggiungi riga').'
|
||||
</button>
|
||||
<br><br>
|
||||
<table class="table table-striped table-condensed table-hover table-bordered"
|
||||
<table class="table table-striped table-sm table-hover table-bordered"
|
||||
<tr>
|
||||
<th width="60%">'.tr('Conto').'</th>
|
||||
<th width="20%">'.tr('Dare').'</th>
|
||||
|
|
|
@ -169,7 +169,7 @@ echo '
|
|||
</div>
|
||||
|
||||
<div class="card-body">
|
||||
<table class="table table-hover table-condensed table-bordered" id="destinatari">
|
||||
<table class="table table-hover table-sm table-bordered" id="destinatari">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Ragione sociale').'</th>
|
||||
|
|
|
@ -42,7 +42,7 @@ $righe = $dbo->fetchArray(
|
|||
);
|
||||
?>
|
||||
<form action="" method="post" id="add-form">
|
||||
<table class="table table-striped table-hover table-condensed table-bordered m-3">
|
||||
<table class="table table-striped table-hover table-sm table-bordered m-3">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="35" class="text-center" ><?php echo tr('Codice'); ?></th>
|
||||
|
|
|
@ -30,7 +30,7 @@ $materiali_righe = [];
|
|||
$interventi = Intervento::where('id_ordine', $id_record)->get();
|
||||
if (!empty($interventi)) {
|
||||
echo '
|
||||
<table class="table table-bordered table-condensed">
|
||||
<table class="table table-bordered table-sm">
|
||||
<tr>
|
||||
<th>'.tr('Attività').'</th>
|
||||
<th width="125">'.tr('Ore').'</th>
|
||||
|
@ -79,7 +79,7 @@ if (!empty($interventi)) {
|
|||
$sessioni = $intervento->sessioni;
|
||||
if (!empty($sessioni)) {
|
||||
echo '
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<tr>
|
||||
<th>'.tr('Tecnico').'</th>
|
||||
<th width="210">'.tr('Tipo attività').'</th>
|
||||
|
@ -138,7 +138,7 @@ if (!empty($interventi)) {
|
|||
$articoli = $intervento->articoli;
|
||||
if (!$articoli->isEmpty()) {
|
||||
echo '
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<tr>
|
||||
<th>'.tr('Materiale').'</th>
|
||||
<th width="120">'.tr('Q.tà').'</th>
|
||||
|
@ -178,7 +178,7 @@ if (!empty($interventi)) {
|
|||
$righe = $intervento->righe;
|
||||
if (!$righe->isEmpty()) {
|
||||
echo '
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<tr>
|
||||
<th>'.tr('Altre spese').'</th>
|
||||
<th width="120">'.tr('Q.tà').'</th>
|
||||
|
|
|
@ -32,7 +32,7 @@ if ($articoli->isEmpty()) {
|
|||
}
|
||||
|
||||
echo '
|
||||
<table class="table table-striped table-hover table-condensed table-bordered">
|
||||
<table class="table table-striped table-hover table-sm table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Articolo').'</th>
|
||||
|
|
|
@ -31,7 +31,7 @@ $colspan = $dir == 'entrata' ? '8' : '7';
|
|||
|
||||
echo '
|
||||
<div class="table-responsive row-list">
|
||||
<table class="table table-striped table-hover table-condensed table-bordered">
|
||||
<table class="table table-striped table-hover table-sm table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="5" class="text-center">';
|
||||
|
|
|
@ -48,7 +48,7 @@ $terzo_livello = $dbo->fetchArray($query3);
|
|||
if (!empty($terzo_livello)) {
|
||||
echo '
|
||||
<div class="table-responsive">
|
||||
<table class="table table-striped table-hover table-condensed">
|
||||
<table class="table table-striped table-hover table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Descrizione').'</th>
|
||||
|
|
|
@ -44,7 +44,7 @@ $movimenti = $dbo->fetchArray($query);
|
|||
|
||||
if (!empty($movimenti)) {
|
||||
echo '
|
||||
<table class="table table-bordered table-hover table-condensed table-striped">
|
||||
<table class="table table-bordered table-hover table-sm table-striped">
|
||||
<tr>
|
||||
<th>'.tr('Causale').'</th>
|
||||
<th width="100">'.tr('Data').'</th>
|
||||
|
|
|
@ -135,7 +135,7 @@ foreach ($primo_livello as $conto_primo) {
|
|||
echo '
|
||||
</div>
|
||||
|
||||
<table class="table table-condensed table-hover totali">';
|
||||
<table class="table table-sm table-hover totali">';
|
||||
|
||||
// Riepiloghi
|
||||
if ($conto_primo['descrizione'] == 'Patrimoniale') {
|
||||
|
|
|
@ -41,7 +41,7 @@ $righe = $dbo->fetchArray(
|
|||
);
|
||||
?>
|
||||
<form action="" method="post" id="add-form">
|
||||
<table class="table table-striped table-hover table-condensed table-bordered m-3">
|
||||
<table class="table table-striped table-hover table-sm table-bordered m-3">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="35" class="text-center" ><?php echo tr('Codice'); ?></th>
|
||||
|
|
|
@ -31,7 +31,7 @@ $materiali_righe = [];
|
|||
$interventi = Intervento::where('id_preventivo', $id_record)->get();
|
||||
if (!empty($interventi)) {
|
||||
echo '
|
||||
<table class="table table-bordered table-condensed">
|
||||
<table class="table table-bordered table-sm">
|
||||
<tr>
|
||||
<th>'.tr('Attività').'</th>
|
||||
<th width="125">'.tr('Ore').'</th>
|
||||
|
@ -79,7 +79,7 @@ if (!empty($interventi)) {
|
|||
$sessioni = $intervento->sessioni;
|
||||
if (!empty($sessioni)) {
|
||||
echo '
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<tr>
|
||||
<th>'.tr('Tecnico').'</th>
|
||||
<th width="210">'.tr('Tipo attività').'</th>
|
||||
|
@ -138,7 +138,7 @@ if (!empty($interventi)) {
|
|||
$articoli = $intervento->articoli;
|
||||
if (!$articoli->isEmpty()) {
|
||||
echo '
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<tr>
|
||||
<th>'.tr('Materiale').'</th>
|
||||
<th width="120">'.tr('Q.tà').'</th>
|
||||
|
@ -178,7 +178,7 @@ if (!empty($interventi)) {
|
|||
$righe = $intervento->righe;
|
||||
if (!$righe->isEmpty()) {
|
||||
echo '
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<tr>
|
||||
<th>'.tr('Altre spese').'</th>
|
||||
<th width="120">'.tr('Q.tà').'</th>
|
||||
|
|
|
@ -28,7 +28,7 @@ $colspan = '8';
|
|||
|
||||
echo '
|
||||
<div class="table-responsive row-list">
|
||||
<table class="table table-striped table-hover table-condensed table-bordered">
|
||||
<table class="table table-striped table-hover table-sm table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="5" class="text-center">';
|
||||
|
|
|
@ -47,7 +47,7 @@ echo '
|
|||
|
||||
if (!empty($movimenti)) {
|
||||
echo '
|
||||
<table class="table table-bordered table-hover table-condensed table-striped">
|
||||
<table class="table table-bordered table-hover table-sm table-striped">
|
||||
<tr>
|
||||
<th>'.tr('Causale').'</th>
|
||||
<th width="100">'.tr('Data').'</th>
|
||||
|
|
|
@ -66,7 +66,7 @@ function renderTabella($nome, $righe, $totale_dare = null, $totale_avere = null)
|
|||
|
||||
<h4>'.$nome.'</h4>
|
||||
|
||||
<table class="table table-striped table-condensed table-hover table-bordered scadenze">
|
||||
<table class="table table-striped table-sm table-hover table-bordered scadenze">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Conto').'</th>
|
||||
|
|
|
@ -70,7 +70,7 @@ echo '
|
|||
|
||||
<!-- Info scadenza -->
|
||||
<div class="col-md-6">
|
||||
<table class="table table-striped table-hover table-condensed table-bordered">
|
||||
<table class="table table-striped table-hover table-sm table-bordered">
|
||||
<tr>
|
||||
<th width="125">'.($dir == 'entrata' ? tr('Cliente') : ($dir == 'uscita' ? tr('Fornitore') : tr('Anagrafica'))).':</th>
|
||||
<td>
|
||||
|
@ -90,7 +90,7 @@ if (!empty($documento)) {
|
|||
</tr>
|
||||
</table>
|
||||
|
||||
<table class="table table-striped table-hover table-condensed table-bordered">
|
||||
<table class="table table-striped table-hover table-sm table-bordered">
|
||||
<tr>
|
||||
<th>'.tr('Data').':</th>
|
||||
<td>'.Translator::dateToLocale($documento->data).'</td>
|
||||
|
@ -113,7 +113,7 @@ if (!empty($documento)) {
|
|||
} else {
|
||||
$scadenza = $dbo->fetchOne('SELECT * FROM co_scadenziario WHERE id = '.prepare($id_record));
|
||||
echo '
|
||||
<table class="table table-striped table-hover table-condensed table-bordered">
|
||||
<table class="table table-striped table-hover table-sm table-bordered">
|
||||
<tr>
|
||||
<td>';
|
||||
echo input([
|
||||
|
@ -133,7 +133,7 @@ if (!empty($documento)) {
|
|||
|
||||
echo '
|
||||
<div class="col-md-6">
|
||||
<table class="table table-striped table-hover table-condensed table-bordered">
|
||||
<table class="table table-striped table-hover table-sm table-bordered">
|
||||
<tr>
|
||||
<td>';
|
||||
echo input([
|
||||
|
@ -175,7 +175,7 @@ echo '
|
|||
<div class="card-body">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<table class="table table-hover table-condensed table-bordered">
|
||||
<table class="table table-hover table-sm table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="width:17%;">'.tr('Banca accredito').'</th>
|
||||
|
|
|
@ -73,7 +73,7 @@ echo '
|
|||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h4>'.tr('Destinatari').'</h4>
|
||||
<table class="table table-condensed table-striped">
|
||||
<table class="table table-sm table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Tipo').'</th>
|
||||
|
@ -101,7 +101,7 @@ $prints = $mail->prints;
|
|||
echo '
|
||||
<div class="col-md-4">
|
||||
<h4>'.tr('Stampe').'</h4>
|
||||
<table class="table table-condensed table-striped">
|
||||
<table class="table table-sm table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Stampa').'</th>
|
||||
|
@ -131,7 +131,7 @@ $uploads = $mail->uploads;
|
|||
echo '
|
||||
<div class="col-md-4">
|
||||
<h4>'.tr('Allegati').'</h4>
|
||||
<table class="table table-condensed table-striped">
|
||||
<table class="table table-sm table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Allegato').'</th>
|
||||
|
|
|
@ -43,7 +43,7 @@ if (Services::isEnabled()) {
|
|||
$servizi = Services::getServiziAttivi()->flatten(1);
|
||||
if (!$servizi->isEmpty()) {
|
||||
echo '
|
||||
<table class="card-body table table-striped table-hover table-condensed">
|
||||
<table class="card-body table table-striped table-hover table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="50%">'.tr('Nome').'</th>
|
||||
|
@ -134,7 +134,7 @@ if (Services::isEnabled()) {
|
|||
}
|
||||
|
||||
echo '
|
||||
<table class="card-body table table-striped table-hover table-condensed">
|
||||
<table class="card-body table table-striped table-hover table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="50%">'.tr('Nome').'</th>
|
||||
|
@ -187,7 +187,7 @@ if (Services::isEnabled()) {
|
|||
</div>
|
||||
|
||||
|
||||
<table class="card-body table table-striped table-hover table-condensed">
|
||||
<table class="card-body table table-striped table-hover table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Anno').'</th>
|
||||
|
|
|
@ -21,7 +21,7 @@ include_once __DIR__.'/../../core.php';
|
|||
use Models\Hook;
|
||||
|
||||
echo '
|
||||
<table class="table table-hover table-condensed">
|
||||
<table class="table table-hover table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Nome').'</th>
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
include_once __DIR__.'/../../core.php';
|
||||
|
||||
echo '
|
||||
<table class="table table-hover table-bordered table-condensed">
|
||||
<table class="table table-hover table-bordered table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Nome').'</th>
|
||||
|
|
|
@ -21,7 +21,7 @@ include_once __DIR__.'/../../core.php';
|
|||
|
||||
if (setting('Attiva notifica di presenza utenti sul record')) {
|
||||
echo '
|
||||
<table class="table table-hover table-condensed">
|
||||
<table class="table table-hover table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Modulo').'</th>
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
include_once __DIR__.'/../../core.php';
|
||||
|
||||
echo '
|
||||
<table class="table table-hover table-condensed">
|
||||
<table class="table table-hover table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Nome').'</th>
|
||||
|
|
|
@ -35,7 +35,7 @@ echo '
|
|||
|
||||
<div class="card-body">
|
||||
|
||||
<table class="table table-striped table-condensed">
|
||||
<table class="table table-striped table-sm">
|
||||
|
||||
<tr>
|
||||
<th>'.tr('Attività').'</th>
|
||||
|
|
|
@ -10,7 +10,7 @@ if (file_exists(__DIR__.'/../../../core.php')) {
|
|||
$fasce_orarie = $dbo->fetchArray("SELECT *, CONCAT (`in_fasceorarie_lang`.`title`, ' (', DATE_FORMAT(`ora_inizio`, '%H:%i'), '-', DATE_FORMAT(`ora_fine`, '%H:%i'), ')') AS descrizione FROM `in_fasceorarie_tipiintervento` INNER JOIN `in_fasceorarie` ON `in_fasceorarie_tipiintervento`.`idfasciaoraria` = `in_fasceorarie`.`id` LEFT JOIN `in_fasceorarie_lang` ON (`in_fasceorarie_lang`.`id_record` = `in_fasceorarie`.`id` AND `in_fasceorarie_lang`.`id_lang` = ".prepare(Models\Locale::getDefault()->id).') WHERE `idtipointervento`='.prepare($id_record));
|
||||
|
||||
echo '
|
||||
<table class="table table-striped table-condensed table-hover table-bordered">
|
||||
<table class="table table-striped table-sm table-hover table-bordered">
|
||||
<tr>
|
||||
<th>'.tr('Fascia oraria').'</th>
|
||||
<th width="12%">'.tr('Addebito orario').'</th>
|
||||
|
|
|
@ -9,7 +9,7 @@ if (file_exists(__DIR__.'/../../../core.php')) {
|
|||
$righe = $dbo->fetchArray('SELECT * FROM in_righe_tipiinterventi WHERE id_tipointervento='.prepare($id_record));
|
||||
|
||||
echo '
|
||||
<table class="table table-striped table-condensed table-hover table-bordered">
|
||||
<table class="table table-striped table-sm table-hover table-bordered">
|
||||
<tr>
|
||||
<th>'.tr('Descrizione').'</th>
|
||||
<th width="8%">'.tr('Q.tà').'</th>
|
||||
|
|
|
@ -57,7 +57,7 @@ echo '
|
|||
if (!empty($utenti)) {
|
||||
echo '
|
||||
<div class="table-responsive">
|
||||
<table class="table table-hover table-condensed table-striped">
|
||||
<table class="table table-hover table-sm table-striped">
|
||||
<tr>
|
||||
<th>'.tr('Nome utente').'</th>
|
||||
<th>'.tr('Email').'</th>
|
||||
|
@ -196,7 +196,7 @@ echo '
|
|||
if ($record['nome'] != 'Amministratori') {
|
||||
echo '
|
||||
<div class="table-responsive">
|
||||
<table class="table table-hover table-condensed table-striped">
|
||||
<table class="table table-hover table-sm table-striped">
|
||||
<tr>
|
||||
<th>'.tr('Modulo').'</th>
|
||||
<th>'.tr('Permessi').'</th>
|
||||
|
|
|
@ -84,7 +84,7 @@ echo '
|
|||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="card ">
|
||||
<table class="table table-hover table-condensed table-striped">
|
||||
<table class="table table-hover table-sm table-striped">
|
||||
<tr>
|
||||
<th class="text-center" width="1%"></th>
|
||||
<th class="text-center" width="10%">'.tr('Matricola').'</th>
|
||||
|
|
|
@ -361,7 +361,7 @@ if (!empty($righe)) {
|
|||
</h4>
|
||||
|
||||
<div class="table-responsive">
|
||||
<table class="table table-striped table-hover table-condensed table-bordered">
|
||||
<table class="table table-striped table-hover table-sm table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Descrizione').'</th>
|
||||
|
|
|
@ -28,7 +28,7 @@ $directory = Plugins\ImportFE\FatturaElettronica::getImportDirectory();
|
|||
|
||||
if (!empty($list)) {
|
||||
echo '
|
||||
<table class="table table-striped table-hover table-condensed table-bordered datatables">
|
||||
<table class="table table-striped table-hover table-sm table-bordered datatables">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Descrizione').'</th>
|
||||
|
|
|
@ -50,7 +50,7 @@ echo '
|
|||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<table class="table table-striped table-hover table-condensed table-bordered">
|
||||
<table class="table table-striped table-hover table-sm table-bordered">
|
||||
<tr>
|
||||
<th>'.tr('Descrizione').'</th>
|
||||
<th class="text-center" width="120">
|
||||
|
|
|
@ -54,7 +54,7 @@ if ($articolo->id_fornitore == $anagrafica->idanagrafica) {
|
|||
$text = tr('No');
|
||||
}
|
||||
echo '
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<tr>
|
||||
<th class="text-center col-md-4">'.($direzione == 'entrata' ? tr('Cliente') : tr('Fornitore')).'</th>
|
||||
<th class="text-center col-md-4">'.tr('Prezzo predefinito').'</th>';
|
||||
|
@ -126,7 +126,7 @@ echo '
|
|||
<p>'.tr("Inserire i prezzi da associare all'articolo e all'anagrafica in relazione alla quantità di acquisto").'.</p>
|
||||
<p>'.tr('Per impostare un prezzo generale per quantità non incluse in questi limiti, utilizzare il campo sopra indicato').'.</p>
|
||||
|
||||
<table class="table table-condensed">
|
||||
<table class="table table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="text-center">'.tr('Quantità minima').'</th>
|
||||
|
|
|
@ -54,7 +54,7 @@ $clienti = DettaglioPrezzo::where('id_articolo', $id_articolo)
|
|||
->groupBy('id_anagrafica');
|
||||
if (!$clienti->isEmpty()) {
|
||||
echo '
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>'.tr('Cliente').'</th>
|
||||
|
|
|
@ -85,7 +85,7 @@ if ($fornitore['codice_fornitore'] == '') {
|
|||
}
|
||||
|
||||
echo '
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<tr>
|
||||
<th class="text-center col-md-4">'.($direzione == 'entrata' ? tr('Cliente') : tr('Fornitore')).'</th>
|
||||
<th class="text-center col-md-4">'.tr('Prezzo predefinito').'</th>';
|
||||
|
@ -188,7 +188,7 @@ echo '
|
|||
<p>'.tr("Inserire i prezzi da associare all'articolo e all'anagrafica in relazione alla quantità di acquisto").'.</p>
|
||||
<p>'.tr('Per impostare un prezzo generale per quantità non incluse in questi limiti, utilizzare il campo sopra indicato').'.</p>
|
||||
|
||||
<table class="table table-condensed">
|
||||
<table class="table table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="text-center">'.tr('Quantità minima').'</th>
|
||||
|
|
|
@ -45,7 +45,7 @@ if (empty($_GET['visualizza_movimenti'])) {
|
|||
|
||||
if (!empty($movimenti)) {
|
||||
echo '
|
||||
<table class="table table-hover table-condensed table-bordered table-striped" style="font-size:11pt;">
|
||||
<table class="table table-hover table-sm table-bordered table-striped" style="font-size:11pt;">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="160">'.tr('Data').'</th>
|
||||
|
|
|
@ -31,7 +31,7 @@ $listini = $dbo->fetchArray('SELECT * FROM mg_piani_sconto ORDER BY id ASC');
|
|||
|
||||
if (!empty($listini)) {
|
||||
echo '
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<tr>
|
||||
<th>'.tr('Piano di sconto/magg.').'</th>
|
||||
<th>'.tr('Prezzo di vendita finale').'</th>
|
||||
|
|
|
@ -110,7 +110,7 @@ echo '
|
|||
</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<table class="table table-bordered table-striped table-hover table-condensed">
|
||||
<table class="table table-bordered table-striped table-hover table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="40%">'.tr('Descrizione').'</th>
|
||||
|
|
|
@ -46,7 +46,7 @@ $pianificazioni = $contratto->pianificazioni;
|
|||
if (!$pianificazioni->isEmpty()) {
|
||||
echo '
|
||||
<hr>
|
||||
<table class="table table-bordered table-striped table-hover table-condensed">
|
||||
<table class="table table-bordered table-striped table-hover table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="10%">'.tr('Scadenza').'</th>
|
||||
|
|
|
@ -61,7 +61,7 @@ echo '
|
|||
// Nessun intervento pianificato
|
||||
if (!$elenco_promemoria->isEmpty()) {
|
||||
echo '
|
||||
<table class="table table-condensed table-striped table-hover">
|
||||
<table class="table table-sm table-striped table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Data').'</th>
|
||||
|
|
|
@ -29,7 +29,7 @@ $righe = $promemoria->getRighe();
|
|||
|
||||
if (!$righe->isEmpty()) {
|
||||
echo '
|
||||
<table class="table table-striped table-hover table-condensed table-bordered">
|
||||
<table class="table table-striped table-hover table-sm table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Descrizione').'</th>
|
||||
|
|
|
@ -86,7 +86,7 @@ foreach ($raggruppamento as $id_anagrafica => $scadenze_anagrafica) {
|
|||
|
||||
echo '
|
||||
</h3>
|
||||
<table class="table table-condensed table-striped">
|
||||
<table class="table table-sm table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Causale').'</th>
|
||||
|
|
|
@ -29,7 +29,7 @@ $directory = Ricevuta::getImportDirectory();
|
|||
|
||||
if (!empty($list)) {
|
||||
echo '
|
||||
<table class="table table-striped table-hover table-condensed table-bordered datatables">
|
||||
<table class="table table-striped table-hover table-sm table-bordered datatables">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="60%">'.tr('Nome').'</th>
|
||||
|
|
|
@ -40,7 +40,7 @@ echo '
|
|||
</div>
|
||||
<br>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-striped table-hover table-condensed table-bordered">
|
||||
<table class="table table-striped table-hover table-sm table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="35" class="text-center" >'.tr('#').'</th>
|
||||
|
|
|
@ -35,7 +35,7 @@ echo "
|
|||
<i class='fa fa-info-circle'></i> ".tr('Seleziona la spunta e clicca salva per cambiare la revisione del preventivo')."
|
||||
</div>
|
||||
|
||||
<table class='table table-condensed table-bordered'>
|
||||
<table class='table table-sm table-bordered'>
|
||||
<tr>
|
||||
<th style='width:50px;' class='text-center'>#</th>
|
||||
<th>Descrizione</th>
|
||||
|
|
|
@ -63,7 +63,7 @@ echo '
|
|||
|
||||
if (!empty($id_contratto_precedente)) {
|
||||
echo '
|
||||
<table class="table table-hover table-condensed table-bordered table-striped">
|
||||
<table class="table table-hover table-sm table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Descrizione').'</th>
|
||||
|
|
|
@ -51,7 +51,7 @@ echo '
|
|||
</div>
|
||||
|
||||
<div class="card-body">
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="text-center">#</th>
|
||||
|
@ -80,7 +80,7 @@ echo '
|
|||
</div>
|
||||
|
||||
<div class="card-body">
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<table class="table table-striped table-sm table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>#</th>
|
||||
|
|
|
@ -96,7 +96,7 @@ class FileManager implements ManagerInterface
|
|||
</div>
|
||||
</div>
|
||||
<div class="card-body no-padding table-responsive">
|
||||
<table class="table table-striped table-condensed ">
|
||||
<table class="table table-striped table-sm ">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col" width="5%" class="text-center"></th>
|
||||
|
|
|
@ -927,12 +927,12 @@ th {
|
|||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
.table-condensed>thead>tr>th,
|
||||
.table-condensed>tbody>tr>th,
|
||||
.table-condensed>tfoot>tr>th,
|
||||
.table-condensed>thead>tr>td,
|
||||
.table-condensed>tbody>tr>td,
|
||||
.table-condensed>tfoot>tr>td {
|
||||
.table-sm>thead>tr>th,
|
||||
.table-sm>tbody>tr>th,
|
||||
.table-sm>tfoot>tr>th,
|
||||
.table-sm>thead>tr>td,
|
||||
.table-sm>tbody>tr>td,
|
||||
.table-sm>tfoot>tr>td {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ if ($periodo == 'Trimestrale') {
|
|||
|
||||
echo '
|
||||
<h5 class="text-center">VENDITE</h5>
|
||||
<table class="table table-condensed table-striped table-bordered">
|
||||
<table class="table table-sm table-striped table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="15%">Aliquota</th>
|
||||
|
@ -168,7 +168,7 @@ echo '
|
|||
|
||||
|
||||
<h5 class="text-center">ACQUISTI</h5>
|
||||
<table class="table table-condensed table-striped table-bordered">
|
||||
<table class="table table-sm table-striped table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="15%">Aliquota</th>
|
||||
|
@ -285,7 +285,7 @@ echo '
|
|||
|
||||
<br>
|
||||
<br>
|
||||
<table class="table table-condensed table-striped table-bordered">
|
||||
<table class="table table-sm table-striped table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="text-center" colspan="2">PROSPETTO RIEPILOGATIVO DI LIQUIDAZIONE IVA</th>
|
||||
|
|
|
@ -45,7 +45,7 @@ $i = 0;
|
|||
|
||||
echo '<h4><b>'.$titolo.'</b></h4>
|
||||
|
||||
<table class="table table-condensed table-striped" border="0">
|
||||
<table class="table table-sm table-striped" border="0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('N° Prot.').'</th>
|
||||
|
|
Loading…
Reference in New Issue