Browse Source

Correction problème nombre d'éléments dans liste BL / devis et factures.

dev
Guillaume Bourgeois 4 years ago
parent
commit
2d98cfa183
3 changed files with 3 additions and 6 deletions
  1. +1
    -2
      common/models/DeliveryNoteSearch.php
  2. +1
    -2
      common/models/InvoiceSearch.php
  3. +1
    -2
      common/models/QuotationSearch.php

+ 1
- 2
common/models/DeliveryNoteSearch.php View File



$query = DeliveryNote::find() $query = DeliveryNote::find()
->with($optionsSearch['with']) ->with($optionsSearch['with'])
->joinWith($optionsSearch['join_with'], true)
->where(['delivery_note.id_producer' => GlobalParam::getCurrentProducerId()]) ->where(['delivery_note.id_producer' => GlobalParam::getCurrentProducerId()])
->orderBy('delivery_note.status ASC, delivery_note.reference DESC'); ->orderBy('delivery_note.status ASC, delivery_note.reference DESC');


'query' => $query, 'query' => $query,
'sort' => ['attributes' => ['name', 'reference', 'date']], 'sort' => ['attributes' => ['name', 'reference', 'date']],
'pagination' => [ 'pagination' => [
'pageSize' => 30,
'pageSize' => 20,
], ],
]); ]);



+ 1
- 2
common/models/InvoiceSearch.php View File



$query = Invoice::find() $query = Invoice::find()
->with($optionsSearch['with']) ->with($optionsSearch['with'])
->joinWith($optionsSearch['join_with'], true)
->where(['invoice.id_producer' => GlobalParam::getCurrentProducerId()]) ->where(['invoice.id_producer' => GlobalParam::getCurrentProducerId()])
->orderBy('invoice.status ASC, invoice.reference DESC'); ->orderBy('invoice.status ASC, invoice.reference DESC');


'query' => $query, 'query' => $query,
'sort' => ['attributes' => ['name', 'reference', 'date']], 'sort' => ['attributes' => ['name', 'reference', 'date']],
'pagination' => [ 'pagination' => [
'pageSize' => 30,
'pageSize' => 20,
], ],
]); ]);



+ 1
- 2
common/models/QuotationSearch.php View File



$query = Quotation::find() $query = Quotation::find()
->with($optionsSearch['with']) ->with($optionsSearch['with'])
->joinWith($optionsSearch['join_with'], true)
->where(['quotation.id_producer' => GlobalParam::getCurrentProducerId()]) ->where(['quotation.id_producer' => GlobalParam::getCurrentProducerId()])
->orderBy('quotation.status ASC, quotation.reference DESC'); ->orderBy('quotation.status ASC, quotation.reference DESC');


'query' => $query, 'query' => $query,
'sort' => ['attributes' => ['name', 'reference', 'date']], 'sort' => ['attributes' => ['name', 'reference', 'date']],
'pagination' => [ 'pagination' => [
'pageSize' => 30,
'pageSize' => 20,
], ],
]); ]);



Loading…
Cancel
Save