Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

976 lines
35KB

  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 Yii;
  39. use common\components\ActiveRecordCommon;
  40. use common\helpers\Departments;
  41. use yii\helpers\Html;
  42. /**
  43. * This is the model class for table "etablissement".
  44. *
  45. * @property integer $id
  46. * @property string $name
  47. * @property string $siret
  48. * @property string $logo
  49. * @property string $photo
  50. * @property string $description
  51. * @property string $postcode
  52. * @property string $city
  53. * @property float credit_limit_reminder
  54. * @property boolean online_payment
  55. * @property string mentions
  56. * @property string gcs
  57. * @property boolean option_allow_user_gift
  58. * @property string credit_functioning
  59. * @property boolean use_credit_checked_default
  60. * @property float credit_limit
  61. * @property string background_color_logo
  62. *
  63. */
  64. class Producer extends ActiveRecordCommon
  65. {
  66. const CREDIT_FUNCTIONING_MANDATORY = 'mandatory';
  67. const CREDIT_FUNCTIONING_OPTIONAL = 'optional';
  68. const CREDIT_FUNCTIONING_USER = 'user';
  69. const HINT_CREDIT_FUNCTIONING = '<ul>'
  70. . '<li>Optionnelle : l\'utilisateur choisit s\'il utilise son Crédit ou non. Les commandes peuvent être payées ou impayées.</li>'
  71. . '<li>Obligatoire : toutes les commandes de l\'utilisateur son comptabilisées au niveau du Crédit. Toutes les commandes sont payées.</li>'
  72. . '<li>Basée sur l\'utilisateur : Crédit obligatoire si l\'utilisateur a le crédit activé au niveau de son compte, système de Crédit non affiché sinon.</li>'
  73. . '</ul>';
  74. public static $creditFunctioningArray = [
  75. self::CREDIT_FUNCTIONING_MANDATORY => 'Obligatoire',
  76. self::CREDIT_FUNCTIONING_OPTIONAL => 'Optionnelle',
  77. self::CREDIT_FUNCTIONING_USER => 'Basée sur l\'utilisateur',
  78. ];
  79. const BEHAVIOR_DELETE_ORDER_DELETE = 'delete';
  80. const BEHAVIOR_DELETE_ORDER_STATUS = 'status';
  81. const BEHAVIOR_HOME_POINT_SALE_DAY_LIST_WEEK = 'days-of-week';
  82. const BEHAVIOR_HOME_POINT_SALE_DAY_LIST_INCOMING_DISTRIBUTIONS = 'incoming-distributions';
  83. const BEHAVIOR_ORDER_SELECT_DISTRIBUTION_CALENDAR = 'calendar';
  84. const BEHAVIOR_ORDER_SELECT_DISTRIBUTION_LIST = 'list';
  85. const ORDER_REFERENCE_TYPE_NONE = '';
  86. const ORDER_REFERENCE_TYPE_YEARLY = 'yearly';
  87. const ORDER_ENTRY_POINT_DATE = 'date';
  88. const ORDER_ENTRY_POINT_POINT_SALE = 'point-sale';
  89. const BILLING_FREQUENCY_MONTHLY = 'monthly';
  90. const BILLING_FREQUENCY_QUARTERLY = 'quarterly';
  91. const BILLING_FREQUENCY_BIANNUAL = 'biannual';
  92. public static $billingFrequencyArray = [
  93. self::BILLING_FREQUENCY_MONTHLY => 'Mensuelle',
  94. self::BILLING_FREQUENCY_QUARTERLY => 'Trimestrielle',
  95. self::BILLING_FREQUENCY_BIANNUAL => 'Biannuelle',
  96. ];
  97. const BILLING_TYPE_CLASSIC = 'classic';
  98. const BILLING_TYPE_FREE_PRICE = 'free-price';
  99. public static $billingTypeArray = [
  100. self::BILLING_TYPE_CLASSIC => 'Classique',
  101. self::BILLING_TYPE_FREE_PRICE => 'Prix libre',
  102. ];
  103. var $secret_key_payplug;
  104. /**
  105. * @inheritdoc
  106. */
  107. public static function tableName()
  108. {
  109. return 'producer';
  110. }
  111. /**
  112. * @inheritdoc
  113. */
  114. public function rules()
  115. {
  116. return [
  117. [['name', 'type', 'id_tax_rate_default'], 'required'],
  118. [
  119. ['tiller_provider_token', 'tiller_restaurant_token'],
  120. 'required',
  121. 'when' => function ($model) {
  122. return $model->tiller == true;
  123. }
  124. ],
  125. [
  126. [
  127. 'order_delay',
  128. 'order_deadline',
  129. 'order_delay_monday',
  130. 'order_deadline_monday',
  131. 'order_delay_tuesday',
  132. 'order_deadline_tuesday',
  133. 'order_delay_wednesday',
  134. 'order_deadline_wednesday',
  135. 'order_delay_thursday',
  136. 'order_deadline_thursday',
  137. 'order_delay_friday',
  138. 'order_deadline_friday',
  139. 'order_delay_saturday',
  140. 'order_deadline_saturday',
  141. 'order_delay_sunday',
  142. 'order_deadline_sunday',
  143. 'id_tax_rate_default',
  144. 'document_quotation_duration',
  145. 'option_dashboard_number_distributions'
  146. ],
  147. 'integer'
  148. ],
  149. [
  150. [
  151. 'order_deadline',
  152. 'order_deadline_monday',
  153. 'order_deadline_tuesday',
  154. 'order_deadline_wednesday',
  155. 'order_deadline_thursday',
  156. 'order_deadline_friday',
  157. 'order_deadline_saturday',
  158. 'order_deadline_sunday',
  159. ],
  160. 'in',
  161. 'range' => [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24]
  162. ],
  163. ['order_delay', 'in', 'range' => [1, 2, 3, 4, 5, 6, 7]],
  164. [
  165. 'code',
  166. function ($attribute, $params) {
  167. $code = $this->$attribute;
  168. $producer = Producer::findOne(['code' => $code]);
  169. if ($producer && $producer->id != $this->id) {
  170. $this->addError($attribute, 'Ce code est déjà utilisé par un autre producteur.');
  171. }
  172. }
  173. ],
  174. [
  175. ['document_quotation_prefix', 'document_invoice_prefix', 'document_delivery_note_prefix'],
  176. function ($attribute, $params) {
  177. if (!ctype_upper($this->$attribute)) {
  178. $this->addError($attribute, 'Ne doit contenir que des majuscules');
  179. }
  180. }
  181. ],
  182. [
  183. [
  184. 'description',
  185. 'mentions',
  186. 'gcs',
  187. 'order_infos',
  188. 'slug',
  189. 'secret_key_payplug',
  190. 'background_color_logo',
  191. 'option_behavior_cancel_order',
  192. 'tiller_provider_token',
  193. 'tiller_restaurant_token',
  194. 'status',
  195. 'document_infos_bottom',
  196. 'document_infos_quotation',
  197. 'document_infos_invoice',
  198. 'document_infos_delivery_note',
  199. 'address',
  200. 'behavior_home_point_sale_day_list',
  201. 'behavior_order_select_distribution',
  202. 'option_payment_info',
  203. 'option_order_reference_type',
  204. 'option_order_entry_point',
  205. 'option_stripe_public_key',
  206. 'option_stripe_private_key',
  207. 'option_stripe_endpoint_secret',
  208. 'option_online_payment_type',
  209. 'option_tax_calculation_method',
  210. 'latest_version_opendistrib'
  211. ],
  212. 'string'
  213. ],
  214. [
  215. [
  216. 'negative_balance',
  217. 'credit',
  218. 'active',
  219. 'online_payment',
  220. 'user_manage_subscription',
  221. 'option_allow_user_gift',
  222. 'use_credit_checked_default',
  223. 'tiller',
  224. 'document_display_orders_invoice',
  225. 'document_display_orders_delivery_note',
  226. 'document_display_prices_delivery_note',
  227. 'document_display_product_description',
  228. 'option_email_confirm',
  229. 'option_email_confirm_producer',
  230. 'option_csv_export_all_products',
  231. 'option_csv_export_by_piece',
  232. 'option_export_display_product_reference',
  233. 'option_allow_order_guest',
  234. 'option_delivery',
  235. 'option_display_export_grid',
  236. 'option_stripe_mode_test',
  237. 'option_notify_producer_order_summary',
  238. 'option_billing_reduction',
  239. 'option_export_evoliz'
  240. ],
  241. 'boolean'
  242. ],
  243. [
  244. [
  245. 'name',
  246. 'siret',
  247. 'logo',
  248. 'photo',
  249. 'postcode',
  250. 'city',
  251. 'code',
  252. 'type',
  253. 'credit_functioning',
  254. 'option_behavior_cancel_order',
  255. 'document_quotation_prefix',
  256. 'document_quotation_first_reference',
  257. 'document_invoice_prefix',
  258. 'document_invoice_first_reference',
  259. 'document_delivery_note_prefix',
  260. 'document_delivery_note_first_reference',
  261. 'option_billing_type',
  262. 'option_billing_frequency',
  263. ],
  264. 'string',
  265. 'max' => 255
  266. ],
  267. [['free_price', 'credit_limit_reminder', 'credit_limit'], 'double'],
  268. [
  269. 'free_price',
  270. 'compare',
  271. 'compareValue' => 0,
  272. 'operator' => '>=',
  273. 'type' => 'number',
  274. 'message' => 'Prix libre doit être supérieur ou égal à 0'
  275. ],
  276. [['option_dashboard_date_start', 'option_dashboard_date_end'], 'safe'],
  277. ];
  278. }
  279. /**
  280. * @inheritdoc
  281. */
  282. public function attributeLabels()
  283. {
  284. return [
  285. 'id' => 'ID',
  286. 'name' => 'Nom',
  287. 'siret' => 'Siret',
  288. 'logo' => 'Logo',
  289. 'photo' => 'Photo',
  290. 'description' => 'Description',
  291. 'postcode' => 'Code postal',
  292. 'city' => 'Ville',
  293. 'code' => "Code d'accès",
  294. 'order_delay' => 'Délai de commande',
  295. 'order_deadline' => 'Heure limite de commande',
  296. 'order_delay_monday' => 'Délai de commande (lundi)',
  297. 'order_deadline_monday' => 'Heure limite de commande (lundi)',
  298. 'order_delay_tuesday' => 'Délai de commande (mardi)',
  299. 'order_deadline_tuesday' => 'Heure limite de commande (mardi)',
  300. 'order_delay_wednesday' => 'Délai de commande (mercredi)',
  301. 'order_deadline_wednesday' => 'Heure limite de commande (mercredi)',
  302. 'order_delay_thursday' => 'Délai de commande (jeudi)',
  303. 'order_deadline_thursday' => 'Heure limite de commande (jeudi)',
  304. 'order_delay_friday' => 'Délai de commande (vendredi)',
  305. 'order_deadline_friday' => 'Heure limite de commande (vendredi)',
  306. 'order_delay_saturday' => 'Délai de commande (samedi)',
  307. 'order_deadline_saturday' => 'Heure limite de commande (samedi)',
  308. 'order_delay_sunday' => 'Délai de commande (dimanche)',
  309. 'order_deadline_sunday' => 'Heure limite de commande (dimanche)',
  310. 'negative_balance' => 'Solde négatif',
  311. 'credit' => 'Crédit pain',
  312. 'active' => 'Actif',
  313. 'date_creation' => 'Date de création',
  314. 'order_infos' => 'Informations',
  315. 'slug' => 'Slug',
  316. 'type' => 'Type de producteur',
  317. 'credit_limit_reminder' => 'Seuil de crédit limite avant relance',
  318. 'online_payment' => 'Activer le paiement en ligne (Stripe)',
  319. 'option_online_payment_type' => 'Type de paiement',
  320. 'option_stripe_mode_test' => 'Mode test',
  321. 'option_stripe_public_key' => 'Clé publique',
  322. 'option_stripe_private_key' => 'Clé secrète',
  323. 'option_stripe_endpoint_secret' => 'Clé secrète (endpoint)',
  324. 'user_manage_subscription' => 'Autoriser les utilisateurs à gérer leurs abonnements',
  325. 'mentions' => 'Mentions légales',
  326. 'gcs' => 'Conditions générales de vente',
  327. 'option_allow_user_gift' => 'Autoriser les utilisateurs à effectuer un don à la plateforme lors de leur commande',
  328. 'credit_functioning' => 'Utilisation du Crédit par l\'utilisateur',
  329. 'credit_limit' => 'Crédit limite',
  330. 'use_credit_checked_default' => 'Cocher par défaut l\'option "Utiliser mon crédit" lors de la commande de l\'utilisateur',
  331. 'background_color_logo' => 'Couleur de fond du logo',
  332. 'option_behavior_cancel_order' => 'Comportement lors de la suppression d\'une commande',
  333. 'tiller' => 'Tiller',
  334. 'tiller_provider_token' => 'Token provider',
  335. 'tiller_restaurant_token' => 'Token restaurant',
  336. 'status' => 'Statut',
  337. 'id_tax_rate_default' => 'Taxe',
  338. 'document_quotation_prefix' => 'Préfixe des devis',
  339. 'document_quotation_first_reference' => 'Première référence des devis',
  340. 'document_quotation_duration' => 'Durée du devis',
  341. 'document_invoice_prefix' => 'Préfixe des factures',
  342. 'document_invoice_first_reference' => 'Première référence des factures',
  343. 'document_delivery_note_prefix' => 'Préfixe des bons de livraison',
  344. 'document_delivery_note_first_reference' => 'Première référence des bons de livraison',
  345. 'document_infos_bottom' => 'Informations affichées en bas des documents',
  346. 'document_infos_quotation' => 'Informations affichées en bas des devis',
  347. 'document_infos_invoice' => 'Informations affichées en bas des factures',
  348. 'document_infos_delivery_note' => 'Informations affichées en bas des bons de livraison',
  349. 'address' => 'Adresse',
  350. 'document_display_orders_invoice' => 'Afficher le détail des commandes dans les factures',
  351. 'document_display_orders_delivery_note' => 'Afficher le détail des commandes dans les bons de livraison',
  352. 'document_display_prices_delivery_note' => 'Afficher le chiffrage dans les bons de livraison',
  353. 'behavior_home_point_sale_day_list' => 'Accueil : affichage des jours de distribution',
  354. 'behavior_order_select_distribution' => 'Sélection de la date de distribution',
  355. 'option_payment_info' => 'Informations liées au paiement',
  356. 'option_email_confirm' => 'Envoyer un email de confirmation au client',
  357. 'option_email_confirm_producer' => 'Envoyer un email de confirmation au producteur',
  358. 'option_dashboard_number_distributions' => 'Nombre de distributions affichées sur le tableau de board',
  359. 'option_dashboard_date_start' => 'Date de début',
  360. 'option_dashboard_date_end' => 'Date de fin',
  361. 'option_csv_export_all_products' => 'Exporter tous les produits dans le fichier récapitulatif (CSV)',
  362. 'option_csv_export_by_piece' => 'Exporter les produits par pièce dans le fichier récapitulatif (CSV)',
  363. 'option_order_reference_type' => 'Type de référence',
  364. 'option_export_display_product_reference' => 'Afficher la référence des produits au moment de l\'export',
  365. 'option_allow_order_guest' => 'Autoriser les visiteurs à passer commande (création de compte à la fin du tunnel)',
  366. 'option_order_entry_point' => 'Point d\'entrée par point de vente ou par date',
  367. 'option_delivery' => 'Proposer la livraison à domicile',
  368. 'option_display_export_grid' => 'Afficher l\'export grille dans les distributions',
  369. 'document_display_product_description' => 'Documents : afficher la description des produits',
  370. 'option_notify_producer_order_summary' => 'Recevoir les récapitulatifs de commande par email',
  371. 'option_billing_type' => 'Type de facturation',
  372. 'option_billing_frequency' => 'Fréquence de facturation',
  373. 'option_billing_reduction' => 'Réduction appliquée au moment de la facturation',
  374. 'option_tax_calculation_method' => 'Méthode de calcul de la TVA',
  375. 'option_export_evoliz' => 'Activer l\'export vers Evoliz',
  376. 'latest_version_opendistrib' => 'Dernière version d\'Opendistrib',
  377. ];
  378. }
  379. /*
  380. * Relations
  381. */
  382. public function getUserProducer()
  383. {
  384. return $this->hasMany(
  385. UserProducer::className(),
  386. ['id_producer' => 'id']
  387. );
  388. }
  389. public function getUser()
  390. {
  391. return $this->hasMany(User::className(), ['id_producer' => 'id']);
  392. }
  393. public function getContact()
  394. {
  395. return $this->hasMany(User::className(), ['id_producer' => 'id'])
  396. ->where(['status' => User::STATUS_PRODUCER]);
  397. }
  398. public function getTaxRate()
  399. {
  400. return $this->hasOne(TaxRate::className(), ['id' => 'id_tax_rate_default']);
  401. }
  402. /**
  403. * Retourne les options de base nécessaires à la fonction de recherche.
  404. *
  405. * @return array
  406. */
  407. public static function defaultOptionsSearch()
  408. {
  409. return [
  410. 'with' => ['taxRate'],
  411. 'join_with' => [],
  412. 'orderby' => 'name ASC',
  413. 'attribute_id_producer' => 'id'
  414. ];
  415. }
  416. /**
  417. * Retourne la liste des établissements pour l'initialisation d'une liste
  418. * sélective.
  419. *
  420. * @return array
  421. */
  422. public static function getProducerPopulateDropdown()
  423. {
  424. $producers = Producer::find()
  425. ->where([
  426. 'active' => true,
  427. ])
  428. ->orderBy('postcode, city ASC')
  429. ->all();
  430. $departments = Departments::get();
  431. $dataProducers = [];
  432. $optionsProducers = [];
  433. foreach ($producers as $p) {
  434. $departmentCode = substr($p->postcode, 0, 2);
  435. if (!key_exists('d' . $departmentCode, $dataProducers) && isset($departments[$departmentCode])) {
  436. $dataProducers['d' . $departmentCode] = '<strong>' . $departments[$departmentCode] . '</strong>';
  437. $optionsProducers['d' . $departmentCode] = ['disabled' => true];
  438. }
  439. $dataProducers[$p->id] = '<span class="glyphicon glyphicon-lock"></span> ' . Html::encode(
  440. $p->name
  441. ) . ' - ' . Html::encode($p->postcode) . ' ' . Html::encode(
  442. $p->city
  443. ) . ' <span class="glyphicon glyphicon-lock"></span>';
  444. if (strlen($p->code)) {
  445. $optionsProducers[$p->id] = ['class' => 'lock'];
  446. }
  447. }
  448. return ['data' => $dataProducers, 'options' => $optionsProducers];
  449. }
  450. /**
  451. * Retourne le CA de l'établissement pour un mois donné.
  452. *
  453. * @param string $period
  454. * @param boolean $format
  455. * @return string
  456. */
  457. public function getTurnover($period = '', $format = false)
  458. {
  459. if (!$period) {
  460. $period = date('Y-m');
  461. }
  462. $connection = Yii::$app->getDb();
  463. $command = $connection->createCommand(
  464. '
  465. SELECT SUM(product_order.price * product_order.quantity) AS turnover
  466. FROM `order`, product_order, distribution, product
  467. WHERE `order`.id = product_order.id_order
  468. AND distribution.id_producer = :id_producer
  469. AND `order`.id_distribution = distribution.id
  470. AND product_order.id_product = product.id
  471. AND distribution.date > :date_begin
  472. AND distribution.date < :date_end',
  473. [
  474. ':date_begin' => date('Y-m-31', strtotime("-1 month", strtotime($period))),
  475. ':date_end' => date('Y-m-01', strtotime("+1 month", strtotime($period))),
  476. ':id_producer' => $this->id
  477. ]
  478. );
  479. $result = $command->queryOne();
  480. $turnover = $result['turnover'];
  481. if ($format) {
  482. return number_format($turnover, 2) . ' €';
  483. } else {
  484. return $turnover;
  485. }
  486. }
  487. public function getAmountToBeBilledByTurnover($turnover, $format = false)
  488. {
  489. $amountToBeBilled = 0;
  490. $producerPriceRangeArray = ProducerPriceRange::find()->all();
  491. foreach($producerPriceRangeArray as $priceRange) {
  492. if($turnover >= $priceRange->range_begin && $turnover < $priceRange->range_end) {
  493. $amountToBeBilled = $priceRange->price;
  494. }
  495. }
  496. if($format) {
  497. return Price::format($amountToBeBilled);
  498. }
  499. else {
  500. return $amountToBeBilled;
  501. }
  502. }
  503. public function getAmountToBeBilledByMonth($month, $format = false)
  504. {
  505. $turnover = $this->getTurnover($month);
  506. return $this->getAmountToBeBilledByTurnover($turnover, $format);
  507. }
  508. public function getSummaryAmountsToBeBilled($label, $numberOfMonths = 1)
  509. {
  510. $text = '';
  511. $numMonthCurrent = date('m');
  512. if($numberOfMonths == 1
  513. || ($numberOfMonths == 3 && (in_array($numMonthCurrent, [1, 4, 7, 10])))
  514. || ($numberOfMonths == 6 && (in_array($numMonthCurrent, [1, 7])))) {
  515. for ($i = 1; $i <= $numberOfMonths; $i++) {
  516. $month = date('Y-m', strtotime('-' . $i . ' month'));
  517. $turnover = $this->getTurnover($month);
  518. if ($turnover) {
  519. if ($this->isBillingTypeClassic()) {
  520. $text .= '<strong>';
  521. }
  522. $text .= $this->getAmountToBeBilledByTurnover($turnover, true);
  523. if ($this->isBillingTypeClassic()) {
  524. $text .= '</strong>';
  525. }
  526. $text .= ' / '.Price::format($turnover);
  527. $text .= '<br />';
  528. }
  529. }
  530. if (strlen($text)) {
  531. $text = $label . ' : <br />' . $text;
  532. }
  533. }
  534. return $text;
  535. }
  536. public function getAmountBilledLastMonth()
  537. {
  538. if($this->isBillingTypeClassic()) {
  539. $month = date('Y-m', strtotime('-1 month'));
  540. return $this->getAmountToBeBilledByMonth($month);
  541. }
  542. elseif($this->isBillingTypeFreePrice()) {
  543. return $this->free_price;
  544. }
  545. return 0;
  546. }
  547. /**
  548. * Retourne le montant à facturer pour une période donnée.
  549. *
  550. * @param string $periode
  551. * @param float $ca
  552. * @param boolean $format
  553. * @return string
  554. */
  555. public function getMAmountBilled($format = false)
  556. {
  557. if ($format) {
  558. return number_format($this->free_price, 2) . ' €';
  559. } else {
  560. return $this->free_price;
  561. }
  562. }
  563. /**
  564. * Retourne la facture d'une période donnée.
  565. *
  566. * @param string $periode
  567. * @return Facture
  568. */
  569. public function getInvoice($period = '')
  570. {
  571. if (!$period) {
  572. $period = date('Y-m', strtotime('-1 month'));
  573. }
  574. $invoice = Invoice::searchOne(
  575. ['id_producer' => $this->id, 'period' => ':period'],
  576. ['params' => [':period' => $period]]
  577. );
  578. return $invoice;
  579. }
  580. /**
  581. * Retourne la facture du mois dernier.
  582. *
  583. * @return Facture
  584. */
  585. public function getInvoiceLastMonth()
  586. {
  587. return $this->getInvoice(date('Y-m', strtotime('-1 month')));
  588. }
  589. /**
  590. * Retourne une configuration d'un établissement donné.
  591. *
  592. * @param string $config
  593. * @param integer $id_etablissement
  594. * @return mixed
  595. */
  596. public static function getConfig($config = '', $idProducer = 0)
  597. {
  598. if (strlen($config)) {
  599. if (!$idProducer) {
  600. $idProducer = GlobalParam::getCurrentProducerId();
  601. }
  602. $producer = self::findOne($idProducer);
  603. if ($producer) {
  604. return $producer->$config;
  605. }
  606. }
  607. return false;
  608. }
  609. /**
  610. * Retourne le montant de l'abonnement à prix libre définit par
  611. * le producteur.
  612. *
  613. * @param boolean $format
  614. * @return mixed
  615. */
  616. public function getFreePrice($format = true)
  617. {
  618. if (!is_null($this->free_price)) {
  619. if ($format) {
  620. return number_format($this->free_price, 2, ',', false) . ' €';
  621. } else {
  622. return $this->free_price;
  623. }
  624. }
  625. }
  626. /**
  627. * Lie un utilisateur à un producteur.
  628. *
  629. * @param integer $id_user
  630. * @param integer $id_producer
  631. * @return UserProducer
  632. */
  633. public static function addUser($idUser, $idProducer, $bookmark = 1)
  634. {
  635. $userProducer = UserProducer::searchOne([
  636. 'user_producer.id_user' => $idUser,
  637. 'user_producer.id_producer' => $idProducer
  638. ]);
  639. if (!$userProducer) {
  640. $newUserProducer = new UserProducer;
  641. $newUserProducer->id_producer = $idProducer;
  642. $newUserProducer->id_user = $idUser;
  643. $newUserProducer->credit = 0;
  644. $newUserProducer->active = 1;
  645. $newUserProducer->bookmark = (int)$bookmark;
  646. $newUserProducer->save();
  647. } else {
  648. if (!$userProducer->active) {
  649. $userProducer->active = 1;
  650. $userProducer->save();
  651. }
  652. }
  653. return $userProducer;
  654. }
  655. public function getSpecificDelays()
  656. {
  657. $array = [];
  658. $daysArray = [
  659. 'monday',
  660. 'tuesday',
  661. 'wednesday',
  662. 'thursday',
  663. 'friday',
  664. 'saturday',
  665. 'sunday'
  666. ];
  667. foreach ($daysArray as $day) {
  668. $fieldDelay = 'order_delay_' . $day;
  669. $fieldDeadline = 'order_deadline_' . $day;
  670. $delay = $this->order_delay;
  671. $deadline = $this->order_deadline;
  672. if ($this->$fieldDelay) {
  673. $delay = $this->$fieldDelay;
  674. }
  675. if ($this->$fieldDeadline) {
  676. $deadline = $this->$fieldDeadline;
  677. }
  678. $array[$day] = [
  679. 'order_delay' => $delay,
  680. 'order_deadline' => $deadline,
  681. ];
  682. }
  683. return $array;
  684. }
  685. public function hasSpecificDelays()
  686. {
  687. $daysArray = [
  688. 'monday',
  689. 'tuesday',
  690. 'wednesday',
  691. 'thursday',
  692. 'friday',
  693. 'saturday',
  694. 'sunday'
  695. ];
  696. foreach ($daysArray as $day) {
  697. $fieldDelay = 'order_delay_' . $day;
  698. $fieldDeadline = 'order_deadline_' . $day;
  699. if ($this->$fieldDelay || $this->$fieldDeadline) {
  700. return true;
  701. }
  702. }
  703. return false;
  704. }
  705. /**
  706. * Retourne le chemin vers le fichier contenant la clé secrète d'API de Stripe
  707. *
  708. * @return string
  709. */
  710. public function getFilenamePrivateKeyApiStripe()
  711. {
  712. return '../../common/config/stripe/api-' . $this->id . '.key';
  713. }
  714. public function getFilenamePrivateKeyEndpointStripe()
  715. {
  716. return '../../common/config/stripe/endpoint-' . $this->id . '.key';
  717. }
  718. public function savePrivateKeyStripe($filename, $value)
  719. {
  720. if (strlen($value) > 0) {
  721. $handle = fopen($filename, "w");
  722. fwrite($handle, $value);
  723. fclose($handle);
  724. }
  725. }
  726. public function savePrivateKeyApiStripe()
  727. {
  728. $this->savePrivateKeyStripe(
  729. $this->getFilenamePrivateKeyApiStripe(),
  730. $this->option_stripe_private_key
  731. );
  732. }
  733. public function savePrivateKeyEndpointStripe()
  734. {
  735. $this->savePrivateKeyStripe(
  736. $this->getFilenamePrivateKeyEndpointStripe(),
  737. $this->option_stripe_endpoint_secret
  738. );
  739. }
  740. /**
  741. * Retourne la clé secrète d'API de Stripe.
  742. *
  743. * @return string
  744. */
  745. public function getPrivateKeyStripe($filename)
  746. {
  747. if (file_exists($filename)) {
  748. $handle = fopen($filename, "r");
  749. $filesize = filesize($filename);
  750. if ($handle && $filesize) {
  751. $secretKey = fread($handle, $filesize);
  752. fclose($handle);
  753. return $secretKey;
  754. }
  755. }
  756. return '';
  757. }
  758. public function getPrivateKeyApiStripe()
  759. {
  760. return $this->getPrivateKeyStripe($this->getFilenamePrivateKeyApiStripe());
  761. }
  762. public function getPrivateKeyEndpointStripe()
  763. {
  764. return $this->getPrivateKeyStripe($this->getFilenamePrivateKeyEndpointStripe());
  765. }
  766. /**
  767. * Retourne le compte producteur de démonstration.
  768. *
  769. * @return Producer
  770. */
  771. public static function getDemoAccount()
  772. {
  773. $producer = Producer::find()->where('name LIKE \'Démo\'')->one();
  774. return $producer;
  775. }
  776. /**
  777. * Retourne true si le compte est un compte de démo.
  778. *
  779. * @return boolean
  780. */
  781. public function isDemo()
  782. {
  783. if (strpos($this->name, 'Démo') !== false) {
  784. return true;
  785. }
  786. return false;
  787. }
  788. public function getFullAddress($nl2br = false)
  789. {
  790. $address = '';
  791. $address .= $this->name . "\n";
  792. if (strlen($this->address)) {
  793. $address .= $this->address . "\n";
  794. }
  795. if (strlen($this->postcode) || strlen($this->city)) {
  796. $address .= $this->postcode . ' ' . $this->city;
  797. }
  798. if ($nl2br) {
  799. $address = nl2br($address);
  800. }
  801. return $address;
  802. }
  803. public function getHtmlLogo()
  804. {
  805. $html = '';
  806. if (strlen($this->logo)) {
  807. $html = '<img src="' . $this->getUrlLogo() . '" class="producer-logo" />';
  808. }
  809. return $html;
  810. }
  811. public function getUrlLogo()
  812. {
  813. return Yii::$app->urlManagerProducer->getHostInfo(
  814. ) . '/' . Yii::$app->urlManagerProducer->baseUrl . '/uploads/' . $this->logo;
  815. }
  816. public function getEmailOpendistrib()
  817. {
  818. return $this->slug . '@opendistrib.net';
  819. }
  820. public function getMainContact()
  821. {
  822. if ($this->contact) {
  823. foreach ($this->contact as $contact) {
  824. if ($contact->is_main_contact) {
  825. return $contact;
  826. }
  827. }
  828. }
  829. return false;
  830. }
  831. public function isOnlinePaymentActive()
  832. {
  833. return $this->online_payment || ($this->option_stripe_mode_test && !Yii::$app->user->isGuest && Yii::$app->user->identity->status > 10);
  834. }
  835. public function isOnlinePaymentActiveAndTypeOrder()
  836. {
  837. return $this->isOnlinePaymentActive() && $this->option_online_payment_type == 'order' ;
  838. }
  839. public static function getBillingFrequencyPopulateDropdown()
  840. {
  841. return self::$billingFrequencyArray;
  842. }
  843. public function isBillingFrequencyMonthly()
  844. {
  845. return $this->option_billing_frequency == self::BILLING_FREQUENCY_MONTHLY;
  846. }
  847. public function isBillingFrequencyQuarterly()
  848. {
  849. return $this->option_billing_frequency == self::BILLING_FREQUENCY_QUARTERLY;
  850. }
  851. public function isBillingFrequencyBiannual()
  852. {
  853. return $this->option_billing_frequency == self::BILLING_FREQUENCY_BIANNUAL;
  854. }
  855. public static function getBillingTypePopulateDropdown()
  856. {
  857. return self::$billingTypeArray;
  858. }
  859. public function isBillingTypeClassic()
  860. {
  861. return $this->option_billing_type == self::BILLING_TYPE_CLASSIC;
  862. }
  863. public function isBillingTypeFreePrice()
  864. {
  865. return $this->option_billing_type == self::BILLING_TYPE_FREE_PRICE;
  866. }
  867. }