mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-23 13:58:25 +01:00
Fix #1109
This commit is contained in:
parent
5f73f309ff
commit
d539d383bc
@ -68,6 +68,8 @@ foreach ($ddt as $elemento) {
|
||||
$tipo_ordini = $direzione_richiesta == 'entrata' ? 'cliente' : 'fornitore';
|
||||
$ordini = Ordine::whereHas('stato', function ($query) {
|
||||
$query->where('descrizione', '!=', 'Bozza');
|
||||
})->whereHas('tipo', function ($query) use ($direzione_richiesta) {
|
||||
$query->where('dir', '=', $direzione_richiesta);
|
||||
})->get();
|
||||
foreach ($ordini as $elemento) {
|
||||
$documenti_disponibili->push([
|
||||
|
Loading…
Reference in New Issue
Block a user