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.

527 lines
17KB

  1. <?php
  2. /**
  3. * Copyright distrib (2018)
  4. *
  5. * contact@opendistrib.net
  6. *
  7. * Ce logiciel est un programme informatique servant à aider les producteurs
  8. * à distribuer leur production en circuits courts.
  9. *
  10. * Ce logiciel est régi par la licence CeCILL soumise au droit français et
  11. * respectant les principes de diffusion des logiciels libres. Vous pouvez
  12. * utiliser, modifier et/ou redistribuer ce programme sous les conditions
  13. * de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  14. * sur le site "http://www.cecill.info".
  15. *
  16. * En contrepartie de l'accessibilité au code source et des droits de copie,
  17. * de modification et de redistribution accordés par cette licence, il n'est
  18. * offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  19. * seule une responsabilité restreinte pèse sur l'auteur du programme, le
  20. * titulaire des droits patrimoniaux et les concédants successifs.
  21. *
  22. * A cet égard l'attention de l'utilisateur est attirée sur les risques
  23. * associés au chargement, à l'utilisation, à la modification et/ou au
  24. * développement et à la reproduction du logiciel par l'utilisateur étant
  25. * donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  26. * manipuler et qui le réserve donc à des développeurs et des professionnels
  27. * avertis possédant des connaissances informatiques approfondies. Les
  28. * utilisateurs sont donc invités à charger et tester l'adéquation du
  29. * logiciel à leurs besoins dans des conditions permettant d'assurer la
  30. * sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  31. * à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  32. *
  33. * Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  34. * pris connaissance de la licence CeCILL, et que vous en avez accepté les
  35. * termes.
  36. */
  37. namespace common\models;
  38. use common\helpers\GlobalParam;
  39. use common\models\PointSale;
  40. use common\models\User;
  41. use Yii;
  42. use common\components\ActiveRecordCommon;
  43. use common\models\Producer;
  44. use common\models\UserPointSale;
  45. use common\models\Order;
  46. use common\models\ProductOrder;
  47. /**
  48. * This is the model class for table "commande_auto".
  49. *
  50. * @property integer $id
  51. * @property integer $id_user
  52. * @property integer $id_producer
  53. * @property integer $id_point_sale
  54. * @property string $date_begin
  55. * @property string $date_end
  56. * @property integer $monday
  57. * @property integer $tuesday
  58. * @property integer $wednesday
  59. * @property integer $thursday
  60. * @property integer $friday
  61. * @property integer $saturday
  62. * @property integer $sunday
  63. * @property integer $week_frequency
  64. * @property string $username
  65. * @property string $auto_payment
  66. * @property string $comment
  67. */
  68. class Subscription extends ActiveRecordCommon
  69. {
  70. const AUTO_PAYMENT_DEDUCTED = 1;
  71. const AUTO_PAYMENT_YES = 2;
  72. const AUTO_PAYMENT_NO = 0;
  73. /**
  74. * @inheritdoc
  75. */
  76. public static function tableName()
  77. {
  78. return 'subscription';
  79. }
  80. /**
  81. * @inheritdoc
  82. */
  83. public function rules()
  84. {
  85. return [
  86. [['id_producer', 'id_point_sale'], 'required'],
  87. [['id_user', 'id_producer', 'id_point_sale', 'monday', 'tuesday',
  88. 'wednesday', 'thursday', 'friday', 'saturday', 'sunday', 'week_frequency'], 'integer'],
  89. [['auto_payment'], 'boolean'],
  90. [['username', 'comment', 'date_begin', 'date_end'], 'safe'],
  91. ];
  92. }
  93. /**
  94. * @inheritdoc
  95. */
  96. public function attributeLabels()
  97. {
  98. return [
  99. 'id' => 'ID',
  100. 'id_user' => 'Utilisateur',
  101. 'id_producer' => 'Etablissement',
  102. 'id_point_sale' => 'Point de vente',
  103. 'date_begin' => 'Date de début',
  104. 'date_end' => 'Date de fin',
  105. 'monday' => 'Lundi',
  106. 'tuesday' => 'Mardi',
  107. 'wednesday' => 'Mercredi',
  108. 'thursday' => 'Jeudi',
  109. 'friday' => 'Vendredi',
  110. 'saturday' => 'Samedi',
  111. 'sunday' => 'Dimanche',
  112. 'week_frequency' => 'Périodicité',
  113. 'auto_payment' => 'Paiement automatique',
  114. 'comment' => 'Commentaire'
  115. ];
  116. }
  117. /*
  118. * Relations
  119. */
  120. public function getUser()
  121. {
  122. return $this->hasOne(User::className(), ['id' => 'id_user']);
  123. }
  124. public function getProducer()
  125. {
  126. return $this->hasOne(
  127. Producer::className(),
  128. ['id' => 'id_producer']
  129. );
  130. }
  131. public function getPointSale()
  132. {
  133. return $this->hasOne(
  134. PointSale::className(),
  135. ['id' => 'id_point_sale']
  136. );
  137. }
  138. public function getProductSubscription()
  139. {
  140. return $this->hasMany(
  141. ProductSubscription::className(),
  142. ['id_subscription' => 'id']
  143. )->with('product');
  144. }
  145. /**
  146. * Retourne les options de base nécessaires à la fonction de recherche.
  147. *
  148. * @return array
  149. */
  150. public static function defaultOptionsSearch()
  151. {
  152. return [
  153. 'with' => ['producer'],
  154. 'join_with' => ['user', 'productSubscription', 'productSubscription.product', 'pointSale'],
  155. 'orderby' => 'user.name ASC',
  156. 'attribute_id_producer' => 'subscription.id_producer'
  157. ];
  158. }
  159. /**
  160. * Ajoute la commande pour une date donnée.
  161. *
  162. * @param string $date
  163. */
  164. public function add($date, $force = false)
  165. {
  166. // distribution
  167. $now = date('Y-m-d');
  168. $distributionDate = date('Y-m-d', strtotime($date));
  169. $distribution = Distribution::searchOne([
  170. 'distribution.date' => $distributionDate
  171. ]);
  172. if ($distribution
  173. && $distribution->active
  174. && ($distributionDate > $now || $force)
  175. && count($this->productSubscription)
  176. && $this->id_point_sale) {
  177. // commande
  178. $order = new Order;
  179. if (strlen($this->username)) {
  180. $order->username = $this->username;
  181. $order->id_user = 0;
  182. } else {
  183. $order->id_user = $this->id_user;
  184. }
  185. $user = false;
  186. if ($this->id_user) {
  187. $user = User::findOne($this->id_user);
  188. }
  189. $order->date = date('Y-m-d H:i:s');
  190. $order->origin = Order::ORIGIN_AUTO;
  191. $order->id_point_sale = $this->id_point_sale;
  192. $order->id_distribution = $distribution->id;
  193. $order->id_subscription = $this->id;
  194. $order->status = 'tmp-order';
  195. if (strlen($this->comment)) {
  196. $order->comment = $this->comment;
  197. }
  198. $pointSale = PointSale::findOne($this->id_point_sale);
  199. if ($pointSale) {
  200. $creditFunctioning = $pointSale->getCreditFunctioning();
  201. $order->auto_payment = 0;
  202. if($this->auto_payment == self::AUTO_PAYMENT_DEDUCTED) {
  203. if ($order->id_user && Producer::getConfig('credit') && $pointSale->credit) {
  204. if ($creditFunctioning == Producer::CREDIT_FUNCTIONING_OPTIONAL) {
  205. $order->auto_payment = 0;
  206. } elseif ($creditFunctioning == Producer::CREDIT_FUNCTIONING_MANDATORY) {
  207. $order->auto_payment = 1;
  208. } elseif ($creditFunctioning == Producer::CREDIT_FUNCTIONING_USER) {
  209. $user = User::findOne($order->id_user);
  210. $userProducer = UserProducer::searchOne([
  211. 'id_user' => $order->id_user,
  212. 'id_producer' => $distribution->id_producer
  213. ]);
  214. if ($userProducer) {
  215. $order->auto_payment = $userProducer->credit_active;
  216. }
  217. }
  218. }
  219. }
  220. elseif($this->auto_payment == self::AUTO_PAYMENT_YES) {
  221. $order->auto_payment = 1;
  222. }
  223. elseif($this->auto_payment == self::AUTO_PAYMENT_NO) {
  224. $order->auto_payment = 0;
  225. }
  226. $order->tiller_synchronization = $order->auto_payment;
  227. $userPointSale = UserPointSale::searchOne([
  228. 'id_point_sale' => $this->id_point_sale,
  229. 'id_user' => $this->id_user
  230. ]);
  231. if ($userPointSale && strlen($userPointSale->comment)) {
  232. $order->comment_point_sale = $userPointSale->comment;
  233. }
  234. $order->save();
  235. // liaison utilisateur / point de vente
  236. if ($order->id_user) {
  237. $pointSale = PointSale::findOne($this->id_point_sale);
  238. $pointSale->linkUser($order->id_user);
  239. }
  240. // produits
  241. $productsAdd = false;
  242. foreach ($this->productSubscription as $productSubscription) {
  243. $productOrder = new ProductOrder;
  244. $productOrder->id_order = $order->id;
  245. $productOrder->id_product = $productSubscription->product->id;
  246. $productOrder->quantity = $productSubscription->quantity;
  247. $productOrder->price = $productSubscription->product->getPrice([
  248. 'user' => $user,
  249. 'point_sale' => $pointSale,
  250. 'quantity' => $productSubscription->quantity
  251. ]);
  252. $productOrder->unit = $productSubscription->product->unit;
  253. $productOrder->step = $productSubscription->product->step;
  254. $productOrder->id_tax_rate = $productSubscription->product->taxRate->id;
  255. $productOrder->save();
  256. $productsAdd = true;
  257. }
  258. if (!$productsAdd) {
  259. $order->delete();
  260. }
  261. $order->initReference();
  262. }
  263. }
  264. }
  265. /**
  266. * Ajoute les commandes pour une date donnée à partir des abonnements.
  267. *
  268. * @param string $date
  269. * @param boolean $force
  270. */
  271. public static function addAll($date, $force = false)
  272. {
  273. $distribution = Distribution::searchOne([
  274. 'date' => date('Y-m-d', strtotime($date)),
  275. 'id_producer' => GlobalParam::getCurrentProducerId(),
  276. ]);
  277. if ($distribution) {
  278. $arrayOrdersDistribution = Order::searchAll([
  279. Order::tableName() . '.id_distribution' => $distribution->id
  280. ]);
  281. $arraySubscriptions = self::searchByDate($date);
  282. foreach ($arraySubscriptions as $subscription) {
  283. if (!$subscription->hasOrderAlreadyExist($arrayOrdersDistribution)) {
  284. $subscription->add($date, $force);
  285. }
  286. }
  287. }
  288. }
  289. /**
  290. * Informe s'il existe une commande correspond à l'abonnement courant.
  291. *
  292. * @param array $arrayOrders
  293. * @return boolean
  294. */
  295. public function hasOrderAlreadyExist($arrayOrders)
  296. {
  297. if (is_array($arrayOrders) && count($arrayOrders) > 0) {
  298. foreach ($arrayOrders as $order) {
  299. if ((($order->id_user > 0 && $order->id_user == $this->id_user) ||
  300. (!$order->id_user && $order->username == $this->username)) &&
  301. $order->id_point_sale == $this->id_point_sale) {
  302. return true;
  303. }
  304. }
  305. }
  306. return false;
  307. }
  308. /**
  309. * Retourne les abonnements pour une date donnée.
  310. *
  311. * @param string $date
  312. * @return array
  313. */
  314. public static function searchByDate($date)
  315. {
  316. $date = date('Y-m-d', strtotime($date));
  317. $subscriptions = Subscription::searchAll();
  318. $arrSubscriptions = [];
  319. foreach ($subscriptions as $s) {
  320. if ($date >= $s->date_begin &&
  321. (!$s->date_end || $date <= $s->date_end) &&
  322. $s->matchWith($date)) {
  323. $arrSubscriptions[] = $s;
  324. }
  325. }
  326. return $arrSubscriptions;
  327. }
  328. /**
  329. * Valide le fait qu'un abonnement est bien compatible avec une date donnée.
  330. *
  331. * @param string $date
  332. * @return boolean
  333. */
  334. public function matchWith($date)
  335. {
  336. $arrayDays = [
  337. 1 => 'monday',
  338. 2 => 'tuesday',
  339. 3 => 'wednesday',
  340. 4 => 'thursday',
  341. 5 => 'friday',
  342. 6 => 'saturday',
  343. 7 => 'sunday'
  344. ];
  345. $nbDays = (strtotime($date) - strtotime($this->date_begin)) / (24 * 60 * 60);
  346. if (round($nbDays) % ($this->week_frequency * 7) < 7) {
  347. $numDay = date('N', strtotime($date));
  348. $day = $arrayDays[$numDay];
  349. if ($this->$day) {
  350. return true;
  351. }
  352. }
  353. return false;
  354. }
  355. /**
  356. * Recherche les distributions futures où l'abonnement peut s'appliquer.
  357. *
  358. * @return array
  359. */
  360. public function searchMatchedIncomingDistributions()
  361. {
  362. $params = [
  363. ':date_earliest_order' => date('Y-m-d'),
  364. ':date_begin' => date('Y-m-d', strtotime($this->date_begin)),
  365. ':id_producer' => GlobalParam::getCurrentProducerId()
  366. ];
  367. $incomingDistributions = Distribution::find()
  368. ->where('id_producer = :id_producer')
  369. ->andWhere('date >= :date_begin')
  370. ->andWhere('date > :date_earliest_order');
  371. if ($this->date_end) {
  372. $incomingDistributions->andWhere('date <= :date_end');
  373. $params[':date_end'] = date('Y-m-d', strtotime($this->date_end));
  374. }
  375. $incomingDistributions->orderBy('date ASC');
  376. $incomingDistributions->params($params);
  377. $incomingDistributionsArray = $incomingDistributions->all();
  378. Distribution::filterDistributionsByDateDelay($incomingDistributionsArray);
  379. $matchedIncomingDistributionsArray = [];
  380. foreach ($incomingDistributionsArray as $incomingDistribution) {
  381. if ($this->matchWith($incomingDistribution->date)) {
  382. $matchedIncomingDistributionsArray[] = $incomingDistribution;
  383. }
  384. }
  385. return $matchedIncomingDistributionsArray;
  386. }
  387. public function deleteOrdersIncomingDistributions($deleteAfterDateEnd = false)
  388. {
  389. $dateStart = $this->date_begin;
  390. $comparatorDateStart = '>=';
  391. if($deleteAfterDateEnd) {
  392. $dateStart = $this->date_end;
  393. $comparatorDateStart = '>';
  394. }
  395. $params = [
  396. ':id_producer' => GlobalParam::getCurrentProducerId(),
  397. ':date_today' => date('Y-m-d'),
  398. ':date_start' => $dateStart,
  399. ':id_subscription' => $this->id
  400. ];
  401. $orderDeadline = Producer::getConfig('order_deadline');
  402. $hour = date('G');
  403. if ($hour >= $orderDeadline) {
  404. $conditionDistributionDate = 'distribution.date > :date_today';
  405. } else {
  406. $conditionDistributionDate = 'distribution.date >= :date_today';
  407. }
  408. $orders = Order::find()
  409. ->joinWith('distribution')
  410. ->where('distribution.id_producer = :id_producer')
  411. ->andWhere($conditionDistributionDate)
  412. ->andWhere('distribution.date '.$comparatorDateStart.' :date_start')
  413. ->andWhere('order.id_subscription = :id_subscription');
  414. $orders->params($params);
  415. $ordersArray = $orders->all();
  416. $configCredit = Producer::getConfig('credit');
  417. $countOrdersDeleted = 0;
  418. if ($ordersArray && count($ordersArray)) {
  419. foreach ($ordersArray as $order) {
  420. $theOrder = Order::searchOne(['id' => $order->id]);
  421. // remboursement de la commande
  422. if ($theOrder->id_user && $theOrder->getAmount(Order::AMOUNT_PAID) && $configCredit) {
  423. $theOrder->saveCreditHistory(
  424. CreditHistory::TYPE_REFUND,
  425. $theOrder->getAmount(Order::AMOUNT_PAID),
  426. $theOrder->distribution->id_producer,
  427. $theOrder->id_user,
  428. User::getCurrentId()
  429. );
  430. }
  431. $order->delete(true);
  432. $countOrdersDeleted ++;
  433. }
  434. }
  435. return $countOrdersDeleted;
  436. }
  437. public function updateIncomingDistributions($update = false)
  438. {
  439. $matchedDistributionsArray = $this->searchMatchedIncomingDistributions();
  440. if ($update) {
  441. $this->deleteOrdersIncomingDistributions();
  442. }
  443. if (count($matchedDistributionsArray)) {
  444. foreach ($matchedDistributionsArray as $distribution) {
  445. $this->add($distribution->date);
  446. }
  447. }
  448. }
  449. public function getUsername()
  450. {
  451. if ($this->user) {
  452. return $this->user->getUsername();
  453. }
  454. return $this->username;
  455. }
  456. }