소스 검색

[backend] Documents : intégration joinWith dans les modèles de recherche

refactoring
부모
커밋
60bbca4488
3개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. +1
    -0
      common/models/DeliveryNoteSearch.php
  2. +1
    -0
      common/models/InvoiceSearch.php
  3. +1
    -0
      common/models/QuotationSearch.php

+ 1
- 0
common/models/DeliveryNoteSearch.php 파일 보기

@@ -62,6 +62,7 @@ class DeliveryNoteSearch extends DeliveryNote

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


+ 1
- 0
common/models/InvoiceSearch.php 파일 보기

@@ -60,6 +60,7 @@ class InvoiceSearch extends Invoice

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


+ 1
- 0
common/models/QuotationSearch.php 파일 보기

@@ -60,6 +60,7 @@ class QuotationSearch extends Quotation

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


Loading…
취소
저장