Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

258 linhas
12KB

  1. <?php
  2. /**
  3. Copyright Guillaume Bourgeois (2018)
  4. contact@souke.fr
  5. Ce logiciel est un programme informatique servant à aider les producteurs
  6. à distribuer leur production en circuits courts.
  7. Ce logiciel est régi par la licence CeCILL soumise au droit français et
  8. respectant les principes de diffusion des logiciels libres. Vous pouvez
  9. utiliser, modifier et/ou redistribuer ce programme sous les conditions
  10. de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  11. sur le site "http://www.cecill.info".
  12. En contrepartie de l'accessibilité au code source et des droits de copie,
  13. de modification et de redistribution accordés par cette licence, il n'est
  14. offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  15. seule une responsabilité restreinte pèse sur l'auteur du programme, le
  16. titulaire des droits patrimoniaux et les concédants successifs.
  17. A cet égard l'attention de l'utilisateur est attirée sur les risques
  18. associés au chargement, à l'utilisation, à la modification et/ou au
  19. développement et à la reproduction du logiciel par l'utilisateur étant
  20. donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  21. manipuler et qui le réserve donc à des développeurs et des professionnels
  22. avertis possédant des connaissances informatiques approfondies. Les
  23. utilisateurs sont donc invités à charger et tester l'adéquation du
  24. logiciel à leurs besoins dans des conditions permettant d'assurer la
  25. sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  26. à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  27. Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  28. pris connaissance de la licence CeCILL, et que vous en avez accepté les
  29. termes.
  30. */
  31. use common\helpers\Price;
  32. use domain\Order\Order\Order;
  33. use yii\helpers\Html;
  34. $producerModule = $this->getProducerModule();
  35. $userModule = $this->getUserModule();
  36. $documentModule = $this->getDocumentModule();
  37. $orderModule = $this->getOrderModule();
  38. $deliveryNoteModule = $this->getDeliveryNoteModule();
  39. $isDocumentDeliveryNote = $documentModule->getSolver()->isDocumentDeliveryNote($document);
  40. $displayPrices = !$isDocumentDeliveryNote || ($isDocumentDeliveryNote && $producerModule->getConfig('document_display_prices_delivery_note'));
  41. $displayProductDescription = $producerModule->getConfig('document_display_product_description');
  42. $documentPriceDecimals = (int) $producerModule->getConfig('option_document_price_decimals');
  43. ?>
  44. <div class="document-download">
  45. <div id="block-addresses">
  46. <div class="producer">
  47. <?php if (strlen($producer->logo)) : ?>
  48. <?php $optionDocumentWidthLogo = $producerModule->getSolver()->getConfig('option_document_width_logo'); ?>
  49. <div class="logo" style="width: <?= $optionDocumentWidthLogo ?: 100; ?>px;">
  50. <img src="<?= $producerModule->getUrlLogo($producer) ?>"/>
  51. </div>
  52. <?php endif; ?>
  53. <div class="address">
  54. <?= $producerModule->getFullAddressAsHtml($producer); ?>
  55. </div>
  56. <?php if (strlen($producer->document_infos_top)): ?>
  57. <div class="infos-top">
  58. <?= nl2br(Html::encode($producer->document_infos_top)) ?>
  59. </div>
  60. <?php endif; ?>
  61. </div>
  62. <div class="user">
  63. <?php if ($document->address && strlen($document->address) > 0): ?>
  64. <?= nl2br($document->address) ?>
  65. <?php else: ?>
  66. <?= $userModule->getFullAddress($document->user, true); ?>
  67. <?php endif; ?>
  68. </div>
  69. </div>
  70. <?php if($documentModule->getSolver()->isStatusDraft($document)): ?>
  71. <div class="block-is-draft">
  72. <?= $documentModule->getType($document); ?> non
  73. validé<?= ($documentModule->getType($document) == 'Facture') ? 'e' : '' ?></div>
  74. <?php endif; ?>
  75. <div id="block-infos-document">
  76. <div class="type">
  77. <strong><?= $documentModule->getType($document); ?></strong>
  78. </div>
  79. <div class="date">
  80. <strong>Date : </strong>
  81. <?= strftime('%d %B %Y', strtotime($document->date)) ?>
  82. </div>
  83. <?php if (strlen($document->reference)) : ?>
  84. <div class="reference">
  85. <strong>Référence : </strong>
  86. <?= $document->reference; ?>
  87. </div>
  88. <?php endif; ?>
  89. <div class="name">
  90. <strong>Libellé : </strong>
  91. <?= $document->name; ?>
  92. </div>
  93. <?php if ($documentModule->getSolver()->isDocumentInvoice($document)): ?>
  94. <?php $deliveryNotesUpdateArray = $deliveryNoteModule->getRepository()->findDeliveryNotesByInvoice($document); ?>
  95. <?php if($deliveryNotesUpdateArray && count($deliveryNotesUpdateArray)): ?>
  96. <strong>Bons de livraison : </strong>
  97. <?php foreach($deliveryNotesUpdateArray as $key => $deliveryNote): ?>
  98. <?= $deliveryNote->reference ?><?php if ($key !== array_key_last($deliveryNotesUpdateArray)): ?>, <?php endif; ?>
  99. <?php endforeach; ?>
  100. <?php endif; ?>
  101. <?php endif; ?>
  102. <?php if (strlen($document->comment)): ?>
  103. <div class="comment">
  104. <br>
  105. <strong>Commentaire</strong><br>
  106. <?= Html::encode($document->comment) ?>
  107. </div>
  108. <?php endif; ?>
  109. </div>
  110. <div id="block-products">
  111. <?php if (count($document->orders) > 0) : ?>
  112. <table class="table table-bordered">
  113. <thead>
  114. <tr>
  115. <th class="align-left">Produit</th>
  116. <?php if ($displayPrices): ?>
  117. <?php if ($producer->taxRate->value == 0): ?>
  118. <th>Prix unitaire</th>
  119. <?php else: ?>
  120. <th>Prix unitaire HT</th>
  121. <?php endif; ?>
  122. <?php endif; ?>
  123. <th>Quantité</th>
  124. <?php if ($displayPrices): ?>
  125. <?php if ($producer->taxRate->value == 0): ?>
  126. <th>Prix</th>
  127. <?php else: ?>
  128. <th>TVA</th>
  129. <th>Prix HT</th>
  130. <?php endif; ?>
  131. <?php endif; ?>
  132. </tr>
  133. </thead>
  134. <tbody>
  135. <?php if ($producerModule->isDocumentDisplayOrders($document)): ?>
  136. <?php foreach ($document->orders as $order): ?>
  137. <tr>
  138. <td>
  139. <strong><?= $orderModule->getOrderUsername($order); ?></strong>
  140. <?php if ($order->distribution): ?>
  141. le <?= date('d/m/Y', strtotime($order->distribution->date)) ?>
  142. <?php endif; ?>
  143. </td>
  144. <?php if ($displayPrices): ?>
  145. <td class="align-center"></td>
  146. <?php endif; ?>
  147. <td></td>
  148. <?php if ($displayPrices): ?>
  149. <?php if ($producer->taxRate->value != 0): ?>
  150. <td class="align-center"></td>
  151. <?php endif; ?>
  152. <td class="align-center"></td>
  153. <?php endif; ?>
  154. </tr>
  155. <?php foreach ($order->productOrder as $productOrder): ?>
  156. <?= $this->render('_download_product_line', [
  157. 'producer' => $producer,
  158. 'document' => $document,
  159. 'productOrder' => $productOrder,
  160. 'displayOrders' => true,
  161. 'displayPrices' => $displayPrices,
  162. 'displayProductDescription' => $displayProductDescription,
  163. 'documentPriceDecimals' => $documentPriceDecimals
  164. ]) ?>
  165. <?php endforeach; ?>
  166. <?php endforeach; ?>
  167. <?php else: ?>
  168. <?php foreach ($documentModule->getProductsOrders($document, true) as $product): ?>
  169. <?php foreach ($product as $productOrder): ?>
  170. <?= $this->render('_download_product_line', [
  171. 'producer' => $producer,
  172. 'document' => $document,
  173. 'productOrder' => $productOrder,
  174. 'displayPrices' => $displayPrices,
  175. 'displayProductDescription' => $displayProductDescription,
  176. 'documentPriceDecimals' => $documentPriceDecimals
  177. ]) ?>
  178. <?php endforeach; ?>
  179. <?php endforeach; ?>
  180. <?php endif; ?>
  181. <?php if ($displayPrices): ?>
  182. <?php $typeAmount = $documentModule->isInvoicePrice($document) ? Order::INVOICE_AMOUNT_TOTAL : Order::AMOUNT_TOTAL; ?>
  183. <?php if ($producer->taxRate->value != 0): ?>
  184. <tr>
  185. <td class="align-right" colspan="4"><strong>Total HT</strong></td>
  186. <td class="align-center">
  187. <?= Price::format($documentModule->getAmount($document, $typeAmount)); ?>
  188. </td>
  189. </tr>
  190. <?php
  191. $taxRateArray = $this-> getTaxRateModule()->getRepository()->findTaxRatesAsArray();
  192. foreach ($documentModule->getTotalVatArray($document, $typeAmount) as $idTaxRate => $totalVat): ?>
  193. <tr>
  194. <td class="align-right" colspan="4">
  195. <strong>TVA <?= $taxRateArray[$idTaxRate]->value * 100 ?> %</strong></td>
  196. <td class="align-center">
  197. <?= Price::format($totalVat); ?>
  198. </td>
  199. </tr>
  200. <?php endforeach; ?>
  201. <tr>
  202. <td class="align-right" colspan="4">
  203. <strong>Total TTC</strong>
  204. </td>
  205. <td class="align-center">
  206. <?= Price::format($documentModule->getAmountWithTax($document, $typeAmount)) ?>
  207. </td>
  208. </tr>
  209. <?php else: ?>
  210. <tr>
  211. <td class="align-right" colspan="3">
  212. <strong>Total</strong><br/>
  213. TVA non applicable
  214. </td>
  215. <td class="align-center">
  216. <?= Price::format($documentModule->getAmount($document, $typeAmount)) ?>
  217. </td>
  218. </tr>
  219. <?php endif; ?>
  220. <?php endif; ?>
  221. </tbody>
  222. </table>
  223. <?php else : ?>
  224. <div id="block-no-product">
  225. <strong>Aucun produit</strong>
  226. </div>
  227. <?php endif; ?>
  228. </div>
  229. <?php
  230. $fieldProducerDocumentInfo = 'document_infos_' . str_replace('deliverynote', 'delivery_note', strtolower($documentModule->getClass($document))); ?>
  231. <?php if (strlen($producer->$fieldProducerDocumentInfo)): ?>
  232. <div class="block-infos">
  233. <strong>Informations générales</strong><br/>
  234. <?= nl2br(Html::encode($producer->$fieldProducerDocumentInfo)) ?>
  235. </div>
  236. <?php endif; ?>
  237. </div>