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.

362 satır
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 isValidClass($typeDocument)
  157. {
  158. return in_array($typeDocument, ['Invoice', 'DeliveryNote', 'Quotation']);
  159. }
  160. public function generateReference()
  161. {
  162. $class = $this->getClass();
  163. $classLower = strtolower($class);
  164. if ($classLower == 'deliverynote') {
  165. $classLower = 'delivery_note';
  166. }
  167. $prefix = Producer::getConfig('document_' . $classLower . '_prefix');
  168. $oneDocumentExist = $class::searchOne(['status' => Document::STATUS_VALID] , ['orderby' => 'reference DESC']);
  169. if ($oneDocumentExist) {
  170. $reference = $oneDocumentExist->reference;
  171. $pattern = '#([A-Z]+)?([0-9]+)#';
  172. preg_match($pattern, $reference, $matches, PREG_OFFSET_CAPTURE);
  173. $sizeNumReference = strlen($matches[2][0]);
  174. $numReference = ((int)$matches[2][0]) + 1;
  175. $numReference = str_pad($numReference, $sizeNumReference, '0', STR_PAD_LEFT);
  176. return $prefix . $numReference;
  177. } else {
  178. $firstReference = Producer::getConfig('document_' . $classLower . '_first_reference');
  179. if (strlen($firstReference) > 0) {
  180. return $firstReference;
  181. } else {
  182. return $prefix . '00001';
  183. }
  184. }
  185. }
  186. public function generatePdf($destination)
  187. {
  188. $producer = GlobalParam::getCurrentProducer();
  189. $content = Yii::$app->controller->renderPartial('/document/download', [
  190. 'producer' => $producer,
  191. 'document' => $this
  192. ]);
  193. $contentFooter = '<div id="footer">';
  194. $contentFooter .= '<div class="infos-bottom">' . Html::encode($producer->document_infos_bottom) . '</div>';
  195. if ($this->isStatusValid() || $this->isStatusDraft()) {
  196. $contentFooter .= '<div class="reference-document">';
  197. if ($this->isStatusValid()) {
  198. $contentFooter .= $this->getType() . ' N°' . $this->reference;
  199. }
  200. if ($this->isStatusDraft()) {
  201. $contentFooter .= $this->getType() . ' non validé';
  202. if($this->getType() == 'Facture') {
  203. $contentFooter .= 'e' ;
  204. }
  205. }
  206. $contentFooter .= '</div>';
  207. }
  208. $contentFooter .= '</div>';
  209. $pdf = new Pdf([
  210. 'mode' => Pdf::MODE_UTF8,
  211. 'format' => Pdf::FORMAT_A4,
  212. 'orientation' => Pdf::ORIENT_PORTRAIT,
  213. 'destination' => $destination,
  214. 'content' => $content,
  215. 'filename' => $this->getFilename(),
  216. 'cssFile' => Yii::getAlias('@webroot/css/document/download.css'),
  217. 'methods' => [
  218. 'SetHTMLFooter' => $contentFooter
  219. ]
  220. ]);
  221. return $pdf->render();
  222. }
  223. public function send()
  224. {
  225. if(isset($this->user) && strlen($this->user->email) > 0) {
  226. $producer = GlobalParam::getCurrentProducer();
  227. $subjectEmail = $this->getType() ;
  228. if($this->isStatusValid()) {
  229. $subjectEmail .= ' N°'.$this->reference ;
  230. }
  231. $email = Yii::$app->mailer->compose(
  232. [
  233. 'html' => 'sendDocument-html',
  234. 'text' => 'sendDocument-text'
  235. ], [
  236. 'document' => $this,
  237. ])
  238. ->setTo($this->user->email)
  239. ->setFrom([$producer->getEmailOpendistrib() => $producer->name])
  240. ->setSubject('['.$producer->name.'] '.$subjectEmail) ;
  241. $this->generatePdf(Pdf::DEST_FILE) ;
  242. $email->attach($this->getFilename());
  243. return $email->send() ;
  244. }
  245. return false ;
  246. }
  247. public function changeStatus($status)
  248. {
  249. if ($status == Document::STATUS_VALID) {
  250. $this->status = $status;
  251. $this->reference = $this->generateReference();
  252. }
  253. }
  254. public function getStatusWording()
  255. {
  256. return ($this->status == self::STATUS_DRAFT) ? 'Brouillon' : 'Validé';
  257. }
  258. public function getStatusCssClass()
  259. {
  260. return ($this->status == self::STATUS_DRAFT) ? 'default' : 'success';
  261. }
  262. public function getHtmlLabel()
  263. {
  264. $label = $this->getStatusWording();
  265. $classLabel = $this->getStatusCssClass();
  266. return '<span class="label label-' . $classLabel . '">' . $label . '</span>';
  267. }
  268. public function isStatus($status)
  269. {
  270. return $this->status == $status;
  271. }
  272. public function isStatusDraft()
  273. {
  274. return $this->isStatus(self::STATUS_DRAFT);
  275. }
  276. public function isStatusValid()
  277. {
  278. return $this->isStatus(self::STATUS_VALID);
  279. }
  280. public function getProductsOrders()
  281. {
  282. $productsOrdersArray = [];
  283. if ($this->orders && count($this->orders)) {
  284. foreach ($this->orders as $order) {
  285. foreach ($order->productOrder as $productOrder) {
  286. if (!isset($productsOrdersArray[$productOrder->id_product])) {
  287. $productsOrdersArray[$productOrder->id_product] = [$productOrder];
  288. } else {
  289. $productOrderMatch = false;
  290. foreach ($productsOrdersArray[$productOrder->id_product] as &$theProductOrder) {
  291. if ($theProductOrder->unit == $productOrder->unit && $theProductOrder->price == $productOrder->price) {
  292. $theProductOrder->quantity += $productOrder->quantity;
  293. $productOrderMatch = true;
  294. }
  295. }
  296. if (!$productOrderMatch) {
  297. $productsOrdersArray[$productOrder->id_product][] = $productOrder;
  298. }
  299. }
  300. }
  301. }
  302. }
  303. return $productsOrdersArray;
  304. }
  305. public function getFilename()
  306. {
  307. return Yii::getAlias('@app/web/pdf/'.$this->getType().'-' . $this->reference. '.pdf') ;
  308. }
  309. }