Bladeren bron

Merge branch 'dev'

master
Guillaume 4 jaren geleden
bovenliggende
commit
d9a594984a
7 gewijzigde bestanden met toevoegingen van 11 en 8 verwijderingen
  1. +1
    -1
      backend/views/delivery-note/index.php
  2. +1
    -1
      backend/views/invoice/index.php
  3. +1
    -1
      backend/views/quotation/index.php
  4. +2
    -2
      backend/views/report/index.php
  5. +2
    -1
      common/models/DeliveryNoteSearch.php
  6. +2
    -1
      common/models/InvoiceSearch.php
  7. +2
    -1
      common/models/QuotationSearch.php

+ 1
- 1
backend/views/delivery-note/index.php Bestand weergeven

@@ -115,7 +115,7 @@ $this->addButton(['label' => 'Nouveau bon de livraison <span class="glyphicon gl
'contentOptions' => ['class' => 'column-actions'],
'buttons' => [
'send' => function($url, $model) {
return ((!$model->isStatusDraft() && isset($model->user) && strlen($model->user->email) > 0) ? Html::a('<span class="glyphicon glyphicon-send"></span>', $url, [
return ((isset($model->user) && strlen($model->user->email) > 0) ? Html::a('<span class="glyphicon glyphicon-send"></span>', $url, [
'title' => 'Envoyer', 'class' => 'btn btn-default'
]) : '');
},

+ 1
- 1
backend/views/invoice/index.php Bestand weergeven

@@ -111,7 +111,7 @@ $this->addButton(['label' => 'Nouvelle facture <span class="glyphicon glyphicon-
]) : '');
},
'send' => function($url, $model) {
return ((!$model->isStatusDraft() && isset($model->user) && strlen($model->user->email) > 0) ? Html::a('<span class="glyphicon glyphicon-send"></span>', $url, [
return ((isset($model->user) && strlen($model->user->email) > 0) ? Html::a('<span class="glyphicon glyphicon-send"></span>', $url, [
'title' => 'Envoyer', 'class' => 'btn btn-default'
]) : '');
},

+ 1
- 1
backend/views/quotation/index.php Bestand weergeven

@@ -108,7 +108,7 @@ $this->addButton(['label' => 'Nouveau devis <span class="glyphicon glyphicon-plu
]) : '');
},
'send' => function($url, $model) {
return ((!$model->isStatusDraft() && isset($model->user) && strlen($model->user->email) > 0) ? Html::a('<span class="glyphicon glyphicon-send"></span>', $url, [
return ((isset($model->user) && strlen($model->user->email) > 0) ? Html::a('<span class="glyphicon glyphicon-send"></span>', $url, [
'title' => 'Envoyer', 'class' => 'btn btn-default'
]) : '');
},

+ 2
- 2
backend/views/report/index.php Bestand weergeven

@@ -60,8 +60,8 @@ $this->addBreadcrumb('Rapports') ;
<div class="content-max-height">
<ul id="list-users">
<li v-for="user in usersArray" v-if="!termSearchUser.length || (termSearchUser.length && (user.lastname.toLowerCase().indexOf(termSearchUser.toLowerCase()) != -1 || user.name.toLowerCase().indexOf(termSearchUser.toLowerCase()) != -1 ))">
<input type="checkbox" :id="'user_'+user.user_id" v-model="user.checked" @change="reportChange()" />
<label :for="'user_'+user.user_id" v-html="user.lastname+' '+user.name"></label>
<input type="checkbox" :id="'user_'+user.user_id" v-model="user.checked" @change="reportChange()" />
<label :for="'user_'+user.user_id" v-html="(user.name_legal_person && user.name_legal_person.length) ? user.name_legal_person : user.lastname+' '+user.name"></label>
</li>
</ul>
</div>

+ 2
- 1
common/models/DeliveryNoteSearch.php Bestand weergeven

@@ -64,7 +64,8 @@ class DeliveryNoteSearch extends DeliveryNote
->with($optionsSearch['with'])
->joinWith($optionsSearch['join_with'])
->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')
->groupBy('delivery_note.id');

$dataProvider = new ActiveDataProvider([
'query' => $query,

+ 2
- 1
common/models/InvoiceSearch.php Bestand weergeven

@@ -62,7 +62,8 @@ class InvoiceSearch extends Invoice
->with($optionsSearch['with'])
->joinWith($optionsSearch['join_with'])
->where(['invoice.id_producer' => GlobalParam::getCurrentProducerId()])
->orderBy('invoice.status ASC, invoice.reference DESC');
->orderBy('invoice.status ASC, invoice.reference DESC')
->groupBy('invoice.id');

$dataProvider = new ActiveDataProvider([
'query' => $query,

+ 2
- 1
common/models/QuotationSearch.php Bestand weergeven

@@ -62,7 +62,8 @@ class QuotationSearch extends Quotation
->with($optionsSearch['with'])
->joinWith($optionsSearch['join_with'])
->where(['quotation.id_producer' => GlobalParam::getCurrentProducerId()])
->orderBy('quotation.status ASC, quotation.reference DESC');
->orderBy('quotation.status ASC, quotation.reference DESC')
->groupBy('quotation.id');

$dataProvider = new ActiveDataProvider([
'query' => $query,

Laden…
Annuleren
Opslaan