Ottimizzazione oscuramento prezzi al tecnico
This commit is contained in:
parent
769b3193a5
commit
ec4f7b1fe9
|
@ -40,7 +40,7 @@ if ($module['name'] != 'Contratti' && $module['name'] != 'Preventivi') {
|
|||
$disabled = empty($result['idarticolo']);
|
||||
|
||||
echo '
|
||||
<div class="row" id="prezzi_articolo">
|
||||
<div class="row '.(!empty($options['nascondi_prezzi']) ? 'hidden' : '').'" id="prezzi_articolo">
|
||||
<div class="col-md-4 text-center">
|
||||
<button type="button" class="btn btn-sm btn-info btn-block '.($disabled ? 'disabled' : '').'" '.($disabled ? 'disabled' : '').' onclick="$(\'#prezziacquisto\').toggleClass(\'hide\'); $(\'#prezziacquisto\').load(\''.ROOTDIR."/ajax_complete.php?module=Articoli&op=getprezziacquisto&idarticolo=' + ( $('#idarticolo option:selected').val() || $('#idarticolo').val()) + '&idanagrafica=".$options['idanagrafica'].'\');">
|
||||
<i class="fa fa-search"></i> '.tr('Ultimi prezzi di acquisto').'
|
||||
|
|
|
@ -9,7 +9,7 @@ echo App::internalLoad('conti.php', $result, $options);
|
|||
// Iva
|
||||
echo '
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<div class="col-md-4 '.(!empty($options['nascondi_prezzi']) ? 'hidden' : '').'">
|
||||
{[ "type": "select", "label": "'.tr('Iva').'", "name": "idiva", "required": 1, "value": "'.$result['idiva'].'", "ajax-source": "iva" ]}
|
||||
</div>';
|
||||
|
||||
|
|
|
@ -15,11 +15,11 @@ if (!$righe->isEmpty()) {
|
|||
<thead>
|
||||
<tr>
|
||||
<th>'.tr('Descrizione').'</th>
|
||||
<th class="text-center" width="8%">'.tr('Q.tà').'</th>
|
||||
<th class="text-center" width="15%">'.tr('Prezzo di acquisto').'</th>';
|
||||
<th class="text-center" width="8%">'.tr('Q.tà').'</th>';
|
||||
|
||||
if ($show_prezzi) {
|
||||
echo '
|
||||
<th class="text-center" width="15%">'.tr('Prezzo di acquisto').'</th>
|
||||
<th class="text-center" width="15%">'.tr('Prezzo di vendita').'</th>
|
||||
<th class="text-center" width="10%">'.tr('Iva').'</th>
|
||||
<th class="text-center" width="15%">'.tr('Imponibile').'</th>';
|
||||
|
@ -74,13 +74,13 @@ if (!$righe->isEmpty()) {
|
|||
'.Translator::numberToLocale($r['qta'], 'qta').' '.$r['um'].'
|
||||
</td>';
|
||||
|
||||
//Costo unitario
|
||||
echo '
|
||||
if ($show_prezzi) {
|
||||
//Costo unitario
|
||||
echo '
|
||||
<td class="text-right">
|
||||
'.moneyFormat($riga->costo_unitario).'
|
||||
</td>';
|
||||
|
||||
if ($show_prezzi) {
|
||||
// Prezzo unitario
|
||||
echo '
|
||||
<td class="text-right">
|
||||
|
|
Loading…
Reference in New Issue