Merge branches 'master' and 'master' of https://github.com/devcode-it/openstamanager
This commit is contained in:
commit
6e1dd196b5
|
@ -31,7 +31,11 @@ echo '
|
|||
<div class="row">
|
||||
<div class="col-md-6 col-md-offset-3">
|
||||
<div class="input-group">
|
||||
<input type="text" class="form-control" placeholder="'.tr('Ricerca rapida').'" id="ricerca_impostazioni" value="'.$ricerca.'"/>
|
||||
'.input([
|
||||
'type' => 'text',
|
||||
'name' => 'ricerca_impostazioni',
|
||||
'value' => $ricerca
|
||||
]).'
|
||||
<div class="input-group-btn">
|
||||
<button class="btn btn-primary" type="button">
|
||||
<span class="fa fa-search"></span>
|
||||
|
|
|
@ -106,7 +106,7 @@ foreach ($data['results'] as $r) {
|
|||
<td class="text-right">'.moneyFormat($valore_magazzino).'</td>
|
||||
</tr>';
|
||||
|
||||
$totale_qta += $r['qta_totale'];
|
||||
$totale_qta += $r['Q.tà'];
|
||||
$totali[] = $valore_magazzino;
|
||||
}
|
||||
|
||||
|
|
|
@ -60,3 +60,6 @@ ALTER TABLE `an_anagrafiche` CHANGE `codicerea` `codicerea` VARCHAR(23) DEFAULT
|
|||
-- Pulizia campi inutilizzati
|
||||
ALTER TABLE `an_anagrafiche` DROP `cciaa`;
|
||||
ALTER TABLE `an_anagrafiche` DROP `cciaa_citta`;
|
||||
|
||||
-- Aggiunta nazioni
|
||||
INSERT INTO `an_nazioni` (`id`, `nome`, `iso2`, `created_at`, `name`) VALUES (NULL, 'Palestina', 'PS', NULL, 'Palestine');
|
Loading…
Reference in New Issue