You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

365 lines
14KB

  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. namespace common\models;
  38. use common\helpers\GlobalParam;
  39. class Document extends ActiveRecordCommon
  40. {
  41. const STATUS_DRAFT = 'draft';
  42. const STATUS_VALID = 'valid';
  43. /**
  44. * @inheritdoc
  45. */
  46. public function rules()
  47. {
  48. return [
  49. [['name', 'id_user'], 'required'],
  50. [['date'], 'safe'],
  51. [['comment', 'address'], 'string'],
  52. [['id_user', 'id_producer'], 'integer'],
  53. [['name', 'reference', 'status'], 'string', 'max' => 255],
  54. [['deliveryNotes'], 'safe']
  55. ];
  56. }
  57. /**
  58. * @inheritdoc
  59. */
  60. public function attributeLabels()
  61. {
  62. return [
  63. 'id' => 'ID',
  64. 'name' => 'Nom',
  65. 'reference' => 'Référence',
  66. 'date' => 'Date',
  67. 'comment' => 'Commentaire',
  68. 'id_user' => 'Utilisateur',
  69. 'address' => 'Adresse',
  70. 'id_producer' => 'Producteur',
  71. 'status' => 'Statut',
  72. ];
  73. }
  74. /*
  75. * Relations
  76. */
  77. public function getUser()
  78. {
  79. return $this->hasOne(User::className(), ['id' => 'id_user']);
  80. }
  81. public function getProducer()
  82. {
  83. return $this->hasOne(Producer::className(), ['id' => 'id_producer']);
  84. }
  85. public function relationOrders($fieldIdDocument)
  86. {
  87. $defaultOptionsSearch = Order::defaultOptionsSearch();
  88. return $this->hasMany(Order::className(), [$fieldIdDocument => 'id'])
  89. ->with($defaultOptionsSearch['with'])
  90. ->joinWith($defaultOptionsSearch['join_with']);
  91. }
  92. /*
  93. * Méthodes
  94. */
  95. public function getAmount($type = Order::AMOUNT_TOTAL, $format = false)
  96. {
  97. return $this->_getAmountGeneric($type, false, $format);
  98. }
  99. public function getAmountWithTax($type = Order::AMOUNT_TOTAL, $format = false)
  100. {
  101. return $this->_getAmountGeneric($type, true, $format);
  102. }
  103. protected function _getAmountGeneric($type = Order::AMOUNT_TOTAL, $withTax = true, $format = false)
  104. {
  105. $amount = 0;
  106. $ordersArray = $this->orders;
  107. foreach ($ordersArray as $order) {
  108. $order->init();
  109. if ($withTax) {
  110. $amount += $order->getAmountWithTax($type);
  111. } else {
  112. $amount += $order->getAmount($type);
  113. }
  114. }
  115. if ($format) {
  116. return Price::format($amount);
  117. } else {
  118. return $amount;
  119. }
  120. }
  121. public function getPointSale()
  122. {
  123. if (isset($this->orders) && isset($this->orders[0])) {
  124. return $this->orders[0]->pointSale;
  125. } else {
  126. return '';
  127. }
  128. }
  129. public function getDistribution()
  130. {
  131. if (isset($this->orders) && isset($this->orders[0])) {
  132. return $this->orders[0]->distribution;
  133. } else {
  134. return '';
  135. }
  136. }
  137. public function getClass()
  138. {
  139. return str_replace('common\models\\', '', get_class($this));
  140. }
  141. public function getType()
  142. {
  143. $class = $this->getClass();
  144. if ($class == 'Invoice') {
  145. $documentType = 'Facture';
  146. } elseif ($class == 'DeliveryNote') {
  147. $documentType = 'Bon de livraison';
  148. } elseif ($class == 'Quotation') {
  149. $documentType = 'Devis';
  150. }
  151. if (isset($documentType)) {
  152. return $documentType;
  153. }
  154. return '';
  155. }
  156. public function getControllerUrlPath()
  157. {
  158. $path = strtolower($this->getClass());
  159. $path = str_replace('deliverynote', 'delivery-note', $path);
  160. return $path;
  161. }
  162. public function isValidClass($typeDocument)
  163. {
  164. return in_array($typeDocument, ['Invoice', 'DeliveryNote', 'Quotation']);
  165. }
  166. public function generateReference()
  167. {
  168. $class = $this->getClass();
  169. $classLower = strtolower($class);
  170. if ($classLower == 'deliverynote') {
  171. $classLower = 'delivery_note';
  172. }
  173. $prefix = Producer::getConfig('document_' . $classLower . '_prefix');
  174. $oneDocumentExist = $class::searchOne([], ['orderby' => 'reference DESC']);
  175. if ($oneDocumentExist) {
  176. $reference = $oneDocumentExist->reference;
  177. $pattern = '#([A-Z]+)?([0-9]+)#';
  178. preg_match($pattern, $reference, $matches, PREG_OFFSET_CAPTURE);
  179. $sizeNumReference = strlen($matches[2][0]);
  180. $numReference = ((int)$matches[2][0]) + 1;
  181. $numReference = str_pad($numReference, $sizeNumReference, '0', STR_PAD_LEFT);
  182. return $prefix . $numReference;
  183. } else {
  184. $firstReference = Producer::getConfig('document_' . $classLower . '_first_reference');
  185. if (strlen($firstReference) > 0) {
  186. return $firstReference;
  187. } else {
  188. return $prefix . '00001';
  189. }
  190. }
  191. }
  192. public function generatePdf($destination)
  193. {
  194. $producer = GlobalParam::getCurrentProducer();
  195. $content = Yii::$app->controller->renderPartial('/document/download', [
  196. 'producer' => $producer,
  197. 'document' => $this
  198. ]);
  199. $contentFooter = '<div id="footer">';
  200. $contentFooter .= '<div class="infos-bottom">' . Html::encode($producer->document_infos_bottom) . '</div>';
  201. if ($this->isStatusValid() || $this->isStatusDraft()) {
  202. $contentFooter .= '<div class="reference-document">';
  203. if ($this->isStatusValid()) {
  204. $contentFooter .= $this->getType() . ' N°' . $this->reference;
  205. }
  206. if ($this->isStatusDraft()) {
  207. $contentFooter .= $this->getType() . ' non validé';
  208. if($this->getType() == 'Facture') {
  209. $contentFooter .= 'e' ;
  210. }
  211. }
  212. $contentFooter .= '</div>';
  213. }
  214. $contentFooter .= '</div>';
  215. $pdf = new Pdf([
  216. 'mode' => Pdf::MODE_UTF8,
  217. 'format' => Pdf::FORMAT_A4,
  218. 'orientation' => Pdf::ORIENT_PORTRAIT,
  219. 'destination' => $destination,
  220. 'content' => $content,
  221. 'filename' => $this->getFilename(),
  222. 'cssFile' => Yii::getAlias('@webroot/css/document/download.css'),
  223. 'methods' => [
  224. 'SetHTMLFooter' => $contentFooter
  225. ]
  226. ]);
  227. return $pdf->render();
  228. }
  229. public function send()
  230. {
  231. $producer = GlobalParam::getCurrentProducer();
  232. $subjectEmail = $this->getType() ;
  233. if($this->isStatusValid()) {
  234. $subjectEmail .= ' N°'.$this->reference ;
  235. }
  236. $email = Yii::$app->mailer->compose(
  237. [
  238. 'html' => 'sendDocument-html',
  239. 'text' => 'sendDocument-text'
  240. ], [
  241. 'document' => $this,
  242. ])
  243. ->setTo($this->user->email)
  244. ->setFrom([$producer->getEmailOpendistrib() => $producer->name])
  245. ->setSubject('[Opendistrib] '.$subjectEmail) ;
  246. $this->generatePdf(Pdf::DEST_FILE) ;
  247. $email->attach($this->getFilename());
  248. return $email->send() ;
  249. }
  250. public function changeStatus($status)
  251. {
  252. if ($status == Document::STATUS_VALID) {
  253. $this->status = $status;
  254. $this->reference = $this->generateReference();
  255. }
  256. }
  257. public function getStatusWording()
  258. {
  259. return ($this->status == self::STATUS_DRAFT) ? 'Brouillon' : 'Validé';
  260. }
  261. public function getStatusCssClass()
  262. {
  263. return ($this->status == self::STATUS_DRAFT) ? 'default' : 'success';
  264. }
  265. public function getHtmlLabel()
  266. {
  267. $label = $this->getStatusWording();
  268. $classLabel = $this->getStatusCssClass();
  269. return '<span class="label label-' . $classLabel . '">' . $label . '</span>';
  270. }
  271. public function isStatus($status)
  272. {
  273. return $this->status == $status;
  274. }
  275. public function isStatusDraft()
  276. {
  277. return $this->isStatus(self::STATUS_DRAFT);
  278. }
  279. public function isStatusValid()
  280. {
  281. return $this->isStatus(self::STATUS_VALID);
  282. }
  283. public function getProductsOrders()
  284. {
  285. $productsOrdersArray = [];
  286. if ($this->orders && count($this->orders)) {
  287. foreach ($this->orders as $order) {
  288. foreach ($order->productOrder as $productOrder) {
  289. if (!isset($productsOrdersArray[$productOrder->id_product])) {
  290. $productsOrdersArray[$productOrder->id_product] = [$productOrder];
  291. } else {
  292. $productOrderMatch = false;
  293. foreach ($productsOrdersArray[$productOrder->id_product] as &$theProductOrder) {
  294. if ($theProductOrder->unit == $productOrder->unit && $theProductOrder->price == $productOrder->price) {
  295. $theProductOrder->quantity += $productOrder->quantity;
  296. $productOrderMatch = true;
  297. }
  298. }
  299. if (!$productOrderMatch) {
  300. $productsOrdersArray[$productOrder->id_product][] = $productOrder;
  301. }
  302. }
  303. }
  304. }
  305. }
  306. return $productsOrdersArray;
  307. }
  308. public function getFilename()
  309. {
  310. return Yii::getAlias('@app/web/pdf/'.$this->getType().'-' . $this->reference. '.pdf') ;
  311. }
  312. }