1
0
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:
loviuz 2021-06-18 11:53:14 +02:00
parent 261398ca1f
commit b8a7864fe2
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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');
}