Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

162 lines
7.4KB

  1. <?php
  2. /**
  3. * Copyright distrib (2018)
  4. *
  5. * contact@opendistrib.net
  6. *
  7. * Ce logiciel est un programme informatique servant à aider les producteurs
  8. * à distribuer leur production en circuits courts.
  9. *
  10. * Ce logiciel est régi par la licence CeCILL soumise au droit français et
  11. * respectant les principes de diffusion des logiciels libres. Vous pouvez
  12. * utiliser, modifier et/ou redistribuer ce programme sous les conditions
  13. * de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  14. * sur le site "http://www.cecill.info".
  15. *
  16. * En contrepartie de l'accessibilité au code source et des droits de copie,
  17. * de modification et de redistribution accordés par cette licence, il n'est
  18. * offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  19. * seule une responsabilité restreinte pèse sur l'auteur du programme, le
  20. * titulaire des droits patrimoniaux et les concédants successifs.
  21. *
  22. * A cet égard l'attention de l'utilisateur est attirée sur les risques
  23. * associés au chargement, à l'utilisation, à la modification et/ou au
  24. * développement et à la reproduction du logiciel par l'utilisateur étant
  25. * donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  26. * manipuler et qui le réserve donc à des développeurs et des professionnels
  27. * avertis possédant des connaissances informatiques approfondies. Les
  28. * utilisateurs sont donc invités à charger et tester l'adéquation du
  29. * logiciel à leurs besoins dans des conditions permettant d'assurer la
  30. * sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  31. * à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  32. *
  33. * Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  34. * pris connaissance de la licence CeCILL, et que vous en avez accepté les
  35. * termes.
  36. */
  37. use yii\helpers\Html;
  38. use yii\grid\GridView;
  39. use common\helpers\Url;
  40. use common\logic\Document\Invoice\Model\Invoice;
  41. use common\logic\Order\Order\Model\Order;
  42. $producerManager = $this->getProducerManager();
  43. $invoiceManager = $this->getInvoiceManager();
  44. $userManager = $this->getUserManager();
  45. $this->setTitle('Factures');
  46. $this->addBreadcrumb($this->getTitle());
  47. $this->addButton(['label' => 'Nouvelle facture <span class="glyphicon glyphicon-plus"></span>', 'url' => 'invoice/create', 'class' => 'btn btn-primary']);
  48. ?>
  49. <div class="invoice-index">
  50. <?php if (Invoice::searchCount()): ?>
  51. <?= GridView::widget([
  52. 'filterModel' => $searchModel,
  53. 'dataProvider' => $dataProvider,
  54. 'columns' => [
  55. [
  56. 'attribute' => 'status',
  57. 'label' => 'Statut',
  58. 'filter' => [
  59. 'draft' => 'Brouillon',
  60. 'valid' => 'Valide',
  61. ],
  62. 'format' => 'raw',
  63. 'value' => function ($invoice) use ($invoiceManager) {
  64. return $invoiceManager->getHtmlLabel($invoice);
  65. }
  66. ],
  67. [
  68. 'attribute' => 'reference',
  69. 'value' => function ($invoice) {
  70. return (strlen($invoice->reference) > 0) ? $invoice->reference : '';
  71. }
  72. ],
  73. 'name',
  74. [
  75. 'attribute' => 'username',
  76. 'header' => 'Utilisateur',
  77. 'value' => function ($invoice) use ($userManager) {
  78. return $userManager->getUsername($invoice->user);
  79. }
  80. ],
  81. [
  82. 'attribute' => 'date',
  83. 'header' => 'Date',
  84. 'value' => function ($invoice) {
  85. return date('d/m/Y', strtotime($invoice->date));
  86. }
  87. ],
  88. [
  89. 'attribute' => 'amount',
  90. 'header' => 'Montant',
  91. 'value' => function ($invoice) use ($invoiceManager) {
  92. return $invoiceManager->getAmountWithTax($invoice, Order::INVOICE_AMOUNT_TOTAL, true);
  93. }
  94. ],
  95. [
  96. 'attribute' => 'is_sent',
  97. 'header' => 'Envoyé',
  98. 'format' => 'raw',
  99. 'value' => function ($model) {
  100. if ($model->is_sent) {
  101. return '<span class="label label-success">Oui</span>';
  102. } else {
  103. return '<span class="label label-danger">Non</span>';
  104. }
  105. }
  106. ],
  107. [
  108. 'class' => 'yii\grid\ActionColumn',
  109. 'template' => '{validate} {update} {delete} {send} {download} {export-csv-evoliz}',
  110. 'headerOptions' => ['class' => 'column-actions'],
  111. 'contentOptions' => ['class' => 'column-actions'],
  112. 'buttons' => [
  113. 'validate' => function ($url, $invoice) use ($invoiceManager) {
  114. return ($invoiceManager->isStatusDraft($invoice) ? Html::a('<span class="glyphicon glyphicon-ok"></span>', $url, [
  115. 'title' => 'Valider', 'class' => 'btn btn-default'
  116. ]) : '');
  117. },
  118. 'send' => function ($url, $invoice) {
  119. return ((isset($invoice->user) && strlen($invoice->user->email) > 0) ? Html::a('<span class="glyphicon glyphicon-send"></span>', $url, [
  120. 'title' => 'Envoyer', 'class' => 'btn btn-default'
  121. ]) : '');
  122. },
  123. 'download' => function ($url, $invoice) {
  124. return Html::a('<span class="glyphicon glyphicon-download-alt"></span>', $url, [
  125. 'title' => 'Télécharger', 'class' => 'btn btn-default'
  126. ]);
  127. },
  128. 'export-csv-evoliz' => function ($url, $invoice) use ($producerManager) {
  129. if ($producerManager->getConfig('option_export_evoliz')) {
  130. return Html::a('<span class="glyphicon glyphicon-save-file"></span> Evoliz', $url, [
  131. 'title' => 'Export CSV Evoliz', 'class' => 'btn btn-default'
  132. ]);
  133. }
  134. return '';
  135. },
  136. 'update' => function ($url, $invoice) {
  137. return Html::a('<span class="glyphicon glyphicon-pencil"></span>', $url, [
  138. 'title' => 'Modifier', 'class' => 'btn btn-default'
  139. ]);
  140. },
  141. 'delete' => function ($url, $invoice) use ($invoiceManager) {
  142. return ($invoiceManager->isStatusDraft($invoice) ? Html::a('<span class="glyphicon glyphicon-trash"></span>', $url, [
  143. 'title' => 'Supprimer', 'class' => 'btn btn-default'
  144. ]) : '');
  145. }
  146. ],
  147. ],
  148. ],
  149. ]); ?>
  150. <?php else: ?>
  151. <div class="alert alert-info">Aucune facture enregistrée</div>
  152. <?php endif; ?>
  153. </div>