mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-27 00:06:14 +01:00
Fix minori su visualizzazione movimenti articolo
This commit is contained in:
parent
261398ca1f
commit
b8a7864fe2
@ -118,8 +118,8 @@ if (!empty($movimenti)) {
|
||||
|
||||
// Data
|
||||
echo '
|
||||
<td class="text-center">'.dateFormat($movimento->data).' <span class="tip" title="'.tr('Data di creazione del movimento: _DATE_', [
|
||||
'_DATE_' => timestampFormat($movimento->created_at),
|
||||
<td class="text-center">'.dateFormat($movimento->data).' <span class="tip" title="'.tr('Creazione movimento: _DATE_', [
|
||||
'_DATE_' => timestampFormat($movimento->data_movimento),
|
||||
]).'"><i class="fa fa-question-circle-o"></i></span> </td>';
|
||||
|
||||
// Operazioni
|
||||
|
@ -222,7 +222,7 @@ class Articolo extends Model
|
||||
public function movimentiComposti()
|
||||
{
|
||||
return $this->movimenti()
|
||||
->selectRaw('*, sum(mg_movimenti.qta) as qta_documento, IFNULL(mg_movimenti.reference_type, mg_movimenti.id) as tipo_gruppo')
|
||||
->selectRaw('*, mg_movimenti.created_at AS data_movimento, sum(mg_movimenti.qta) as qta_documento, IFNULL(mg_movimenti.reference_type, mg_movimenti.id) as tipo_gruppo')
|
||||
->groupBy('tipo_gruppo', 'mg_movimenti.reference_id');
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user