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.

928 lines
32KB

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