Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

1007 lines
37KB

  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. /**
  433. * Retourne la liste des établissements pour l'initialisation d'une liste
  434. * sélective.
  435. *
  436. * @return array
  437. */
  438. public static function getProducerPopulateDropdown()
  439. {
  440. $producers = Producer::find()
  441. ->where([
  442. 'active' => true,
  443. ])
  444. ->orderBy('postcode, city ASC')
  445. ->all();
  446. $departments = Departments::get();
  447. $dataProducers = [];
  448. $optionsProducers = [];
  449. foreach ($producers as $p) {
  450. $departmentCode = substr($p->postcode, 0, 2);
  451. if (!key_exists('d' . $departmentCode, $dataProducers) && isset($departments[$departmentCode])) {
  452. $dataProducers['d' . $departmentCode] = '<strong>' . $departments[$departmentCode] . '</strong>';
  453. $optionsProducers['d' . $departmentCode] = ['disabled' => true];
  454. }
  455. $dataProducers[$p->id] = '<span class="glyphicon glyphicon-lock"></span> ' . Html::encode(
  456. $p->name
  457. ) . ' - ' . Html::encode($p->postcode) . ' ' . Html::encode(
  458. $p->city
  459. ) . ' <span class="glyphicon glyphicon-lock"></span>';
  460. if (strlen($p->code)) {
  461. $optionsProducers[$p->id] = ['class' => 'lock'];
  462. }
  463. }
  464. return ['data' => $dataProducers, 'options' => $optionsProducers];
  465. }
  466. /**
  467. * Retourne le CA de l'établissement pour un mois donné.
  468. *
  469. * @param string $period
  470. * @param boolean $format
  471. * @return string
  472. */
  473. public function getTurnover($period = '', $format = false)
  474. {
  475. if (!$period) {
  476. $period = date('Y-m');
  477. }
  478. $connection = Yii::$app->getDb();
  479. $command = $connection->createCommand(
  480. '
  481. SELECT SUM(product_order.price * product_order.quantity) AS turnover
  482. FROM `order`, product_order, distribution, product
  483. WHERE `order`.id = product_order.id_order
  484. AND distribution.id_producer = :id_producer
  485. AND `order`.id_distribution = distribution.id
  486. AND product_order.id_product = product.id
  487. AND distribution.date > :date_begin
  488. AND distribution.date < :date_end',
  489. [
  490. ':date_begin' => date('Y-m-31', strtotime("-1 month", strtotime($period))),
  491. ':date_end' => date('Y-m-01', strtotime("+1 month", strtotime($period))),
  492. ':id_producer' => $this->id
  493. ]
  494. );
  495. $result = $command->queryOne();
  496. $turnover = $result['turnover'];
  497. if ($format) {
  498. return number_format($turnover, 2) . ' €';
  499. } else {
  500. return $turnover;
  501. }
  502. }
  503. public function getAmountToBeBilledByTurnover($turnover, $format = false)
  504. {
  505. $amountToBeBilled = 0;
  506. $producerPriceRangeArray = ProducerPriceRange::find()->all();
  507. foreach($producerPriceRangeArray as $priceRange) {
  508. if($turnover >= $priceRange->range_begin && $turnover < $priceRange->range_end) {
  509. $amountToBeBilled = $priceRange->price;
  510. }
  511. }
  512. if($format) {
  513. return Price::format($amountToBeBilled, 0);
  514. }
  515. else {
  516. return $amountToBeBilled;
  517. }
  518. }
  519. public function getAmountToBeBilledByMonth($month, $format = false)
  520. {
  521. $turnover = $this->getTurnover($month);
  522. return $this->getAmountToBeBilledByTurnover($turnover, $format);
  523. }
  524. public function getSummaryAmountsToBeBilled($label, $numberOfMonths = 1)
  525. {
  526. $text = '';
  527. $numMonthCurrent = date('m');
  528. if($numberOfMonths == 1
  529. || ($numberOfMonths == 3 && (in_array($numMonthCurrent, [1, 4, 7, 10])))
  530. || ($numberOfMonths == 6 && (in_array($numMonthCurrent, [1, 7])))) {
  531. for ($i = 1; $i <= $numberOfMonths; $i++) {
  532. $month = date('Y-m', strtotime('-' . $i . ' month'));
  533. $turnover = $this->getTurnover($month);
  534. if ($turnover) {
  535. $isBold = $this->isBillingTypeClassic() && !$this->option_billing_permanent_transfer;
  536. if ($isBold) $text .= '<strong>';
  537. $text .= $this->getAmountToBeBilledByTurnover($turnover, true);
  538. if ($isBold) $text .= '</strong>';
  539. $text .= ' / '.Price::format($turnover, 0);
  540. $text .= '<br />';
  541. }
  542. }
  543. if (strlen($text)) {
  544. $text = $label . ' : <br />' . $text;
  545. }
  546. }
  547. return $text;
  548. }
  549. public function getAmountBilledLastMonth()
  550. {
  551. if($this->isBillingTypeClassic()) {
  552. $month = date('Y-m', strtotime('-1 month'));
  553. return $this->getAmountToBeBilledByMonth($month);
  554. }
  555. elseif($this->isBillingTypeFreePrice()) {
  556. return $this->free_price;
  557. }
  558. return 0;
  559. }
  560. /**
  561. * Retourne le montant à facturer pour une période donnée.
  562. *
  563. * @param string $periode
  564. * @param float $ca
  565. * @param boolean $format
  566. * @return string
  567. */
  568. public function getMAmountBilled($format = false)
  569. {
  570. if ($format) {
  571. return number_format($this->free_price, 2) . ' €';
  572. } else {
  573. return $this->free_price;
  574. }
  575. }
  576. /**
  577. * Retourne la facture d'une période donnée.
  578. *
  579. * @param string $periode
  580. * @return Facture
  581. */
  582. public function getInvoice($period = '')
  583. {
  584. if (!$period) {
  585. $period = date('Y-m', strtotime('-1 month'));
  586. }
  587. $invoice = Invoice::searchOne(
  588. ['id_producer' => $this->id, 'period' => ':period'],
  589. ['params' => [':period' => $period]]
  590. );
  591. return $invoice;
  592. }
  593. /**
  594. * Retourne la facture du mois dernier.
  595. *
  596. * @return Facture
  597. */
  598. public function getInvoiceLastMonth()
  599. {
  600. return $this->getInvoice(date('Y-m', strtotime('-1 month')));
  601. }
  602. /**
  603. * Retourne une configuration d'un établissement donné.
  604. *
  605. * @param string $config
  606. * @param integer $id_etablissement
  607. * @return mixed
  608. */
  609. public static function getConfig($config = '', $idProducer = 0)
  610. {
  611. if (strlen($config)) {
  612. if (!$idProducer) {
  613. $idProducer = GlobalParam::getCurrentProducerId();
  614. }
  615. $producer = self::findOne($idProducer);
  616. if ($producer) {
  617. return $producer->$config;
  618. }
  619. }
  620. return false;
  621. }
  622. /**
  623. * Retourne le montant de l'abonnement à prix libre définit par
  624. * le producteur.
  625. *
  626. * @param boolean $format
  627. * @return mixed
  628. */
  629. public function getFreePrice($format = true)
  630. {
  631. if (!is_null($this->free_price)) {
  632. if ($format) {
  633. return number_format($this->free_price, 2, ',', false) . ' €';
  634. } else {
  635. return $this->free_price;
  636. }
  637. }
  638. }
  639. /**
  640. * Lie un utilisateur à un producteur.
  641. *
  642. * @param integer $id_user
  643. * @param integer $id_producer
  644. * @return UserProducer
  645. */
  646. public static function addUser($idUser, $idProducer, $bookmark = 1)
  647. {
  648. $userProducer = UserProducer::searchOne([
  649. 'user_producer.id_user' => $idUser,
  650. 'user_producer.id_producer' => $idProducer
  651. ]);
  652. if (!$userProducer) {
  653. $newUserProducer = new UserProducer;
  654. $newUserProducer->id_producer = $idProducer;
  655. $newUserProducer->id_user = $idUser;
  656. $newUserProducer->credit = 0;
  657. $newUserProducer->active = 1;
  658. $newUserProducer->bookmark = (int)$bookmark;
  659. $newUserProducer->save();
  660. } else {
  661. if (!$userProducer->active) {
  662. $userProducer->active = 1;
  663. $userProducer->save();
  664. }
  665. }
  666. return $userProducer;
  667. }
  668. public function getSpecificDelays()
  669. {
  670. $array = [];
  671. $daysArray = [
  672. 'monday',
  673. 'tuesday',
  674. 'wednesday',
  675. 'thursday',
  676. 'friday',
  677. 'saturday',
  678. 'sunday'
  679. ];
  680. foreach ($daysArray as $day) {
  681. $fieldDelay = 'order_delay_' . $day;
  682. $fieldDeadline = 'order_deadline_' . $day;
  683. $delay = $this->order_delay;
  684. $deadline = $this->order_deadline;
  685. if ($this->$fieldDelay) {
  686. $delay = $this->$fieldDelay;
  687. }
  688. if ($this->$fieldDeadline) {
  689. $deadline = $this->$fieldDeadline;
  690. }
  691. $array[$day] = [
  692. 'order_delay' => $delay,
  693. 'order_deadline' => $deadline,
  694. ];
  695. }
  696. return $array;
  697. }
  698. public function hasSpecificDelays()
  699. {
  700. $daysArray = [
  701. 'monday',
  702. 'tuesday',
  703. 'wednesday',
  704. 'thursday',
  705. 'friday',
  706. 'saturday',
  707. 'sunday'
  708. ];
  709. foreach ($daysArray as $day) {
  710. $fieldDelay = 'order_delay_' . $day;
  711. $fieldDeadline = 'order_deadline_' . $day;
  712. if ($this->$fieldDelay || $this->$fieldDeadline) {
  713. return true;
  714. }
  715. }
  716. return false;
  717. }
  718. /**
  719. * Retourne le chemin vers le fichier contenant la clé secrète d'API de Stripe
  720. *
  721. * @return string
  722. */
  723. public function getFilenamePrivateKeyApiStripe()
  724. {
  725. return '../../common/config/stripe/api-' . $this->id . '.key';
  726. }
  727. public function getFilenamePrivateKeyEndpointStripe()
  728. {
  729. return '../../common/config/stripe/endpoint-' . $this->id . '.key';
  730. }
  731. public function savePrivateKeyStripe($filename, $value)
  732. {
  733. if (strlen($value) > 0) {
  734. $handle = fopen($filename, "w");
  735. fwrite($handle, $value);
  736. fclose($handle);
  737. }
  738. }
  739. public function savePrivateKeyApiStripe()
  740. {
  741. $this->savePrivateKeyStripe(
  742. $this->getFilenamePrivateKeyApiStripe(),
  743. $this->option_stripe_private_key
  744. );
  745. }
  746. public function savePrivateKeyEndpointStripe()
  747. {
  748. $this->savePrivateKeyStripe(
  749. $this->getFilenamePrivateKeyEndpointStripe(),
  750. $this->option_stripe_endpoint_secret
  751. );
  752. }
  753. /**
  754. * Retourne la clé secrète d'API de Stripe.
  755. *
  756. * @return string
  757. */
  758. public function getPrivateKeyStripe($filename)
  759. {
  760. if (file_exists($filename)) {
  761. $handle = fopen($filename, "r");
  762. $filesize = filesize($filename);
  763. if ($handle && $filesize) {
  764. $secretKey = fread($handle, $filesize);
  765. fclose($handle);
  766. return $secretKey;
  767. }
  768. }
  769. return '';
  770. }
  771. public function getPrivateKeyApiStripe()
  772. {
  773. return $this->getPrivateKeyStripe($this->getFilenamePrivateKeyApiStripe());
  774. }
  775. public function getPrivateKeyEndpointStripe()
  776. {
  777. return $this->getPrivateKeyStripe($this->getFilenamePrivateKeyEndpointStripe());
  778. }
  779. /**
  780. * Retourne le compte producteur de démonstration.
  781. *
  782. * @return Producer
  783. */
  784. public static function getDemoAccount()
  785. {
  786. $producer = Producer::find()->where('name LIKE \'Démo\'')->one();
  787. return $producer;
  788. }
  789. /**
  790. * Retourne true si le compte est un compte de démo.
  791. *
  792. * @return boolean
  793. */
  794. public function isDemo()
  795. {
  796. if (strpos($this->name, 'Démo') !== false) {
  797. return true;
  798. }
  799. return false;
  800. }
  801. public function getFullAddress($nl2br = false)
  802. {
  803. $address = '';
  804. $address .= $this->name . "\n";
  805. if (strlen($this->address)) {
  806. $address .= $this->address . "\n";
  807. }
  808. if (strlen($this->postcode) || strlen($this->city)) {
  809. $address .= $this->postcode . ' ' . $this->city;
  810. }
  811. if ($nl2br) {
  812. $address = nl2br($address);
  813. }
  814. return $address;
  815. }
  816. public function getHtmlLogo()
  817. {
  818. $html = '';
  819. if (strlen($this->logo)) {
  820. $html = '<img src="' . $this->getUrlLogo() . '" class="producer-logo" />';
  821. }
  822. return $html;
  823. }
  824. public function getUrlLogo()
  825. {
  826. return Yii::$app->urlManagerProducer->getHostInfo(
  827. ) . '/' . Yii::$app->urlManagerProducer->baseUrl . '/uploads/' . $this->logo;
  828. }
  829. public function getEmailOpendistrib()
  830. {
  831. return $this->slug . '@opendistrib.net';
  832. }
  833. public function getMainContact()
  834. {
  835. if ($this->contact) {
  836. foreach ($this->contact as $contact) {
  837. if ($contact->is_main_contact) {
  838. return $contact;
  839. }
  840. }
  841. }
  842. return false;
  843. }
  844. public function isOnlinePaymentActive()
  845. {
  846. return $this->online_payment || ($this->option_stripe_mode_test && !Yii::$app->user->isGuest && Yii::$app->user->identity->status > 10);
  847. }
  848. public function isOnlinePaymentActiveAndTypeOrder()
  849. {
  850. return $this->isOnlinePaymentActive() && $this->option_online_payment_type == 'order' ;
  851. }
  852. public static function getBillingFrequencyPopulateDropdown()
  853. {
  854. return self::$billingFrequencyArray;
  855. }
  856. public function isBillingFrequencyMonthly()
  857. {
  858. return $this->option_billing_frequency == self::BILLING_FREQUENCY_MONTHLY;
  859. }
  860. public function isBillingFrequencyQuarterly()
  861. {
  862. return $this->option_billing_frequency == self::BILLING_FREQUENCY_QUARTERLY;
  863. }
  864. public function isBillingFrequencyBiannual()
  865. {
  866. return $this->option_billing_frequency == self::BILLING_FREQUENCY_BIANNUAL;
  867. }
  868. public static function getBillingTypePopulateDropdown()
  869. {
  870. return self::$billingTypeArray;
  871. }
  872. public function isBillingTypeClassic()
  873. {
  874. return $this->option_billing_type == self::BILLING_TYPE_CLASSIC;
  875. }
  876. public function isBillingTypeFreePrice()
  877. {
  878. return $this->option_billing_type == self::BILLING_TYPE_FREE_PRICE;
  879. }
  880. public function isUpToDateWithOpendistribVersion()
  881. {
  882. return $this->latest_version_opendistrib == GlobalParam::getOpendistribVersion();
  883. }
  884. public function updateOpendistribVersion() {
  885. $versionsArray = Opendistrib::getVersions();
  886. $this->latest_version_opendistrib = array_values($versionsArray)[0];
  887. $this->save();
  888. }
  889. public function getOnlinePaymentMinimumAmount()
  890. {
  891. $onlinePaymentMinimumAmount = self::getConfig('option_online_payment_minimum_amount');
  892. if(!$onlinePaymentMinimumAmount) {
  893. $onlinePaymentMinimumAmount = self::ONLINE_PAYMENT_MINIMUM_AMOUNT_DEFAULT;
  894. }
  895. return $onlinePaymentMinimumAmount;
  896. }
  897. }