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.

CommandeController.php 54KB

8 yıl önce
8 yıl önce
8 yıl önce
8 yıl önce
8 yıl önce
8 yıl önce
8 yıl önce
8 yıl önce
8 yıl önce
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427
  1. <?php
  2. /**
  3. Copyright La boîte à pain (2018)
  4. contact@laboiteapain.net
  5. Ce logiciel est un programme informatique servant à aider les producteurs
  6. à distribuer leur production en circuits courts.
  7. Ce logiciel est régi par la licence CeCILL soumise au droit français et
  8. respectant les principes de diffusion des logiciels libres. Vous pouvez
  9. utiliser, modifier et/ou redistribuer ce programme sous les conditions
  10. de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  11. sur le site "http://www.cecill.info".
  12. En contrepartie de l'accessibilité au code source et des droits de copie,
  13. de modification et de redistribution accordés par cette licence, il n'est
  14. offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  15. seule une responsabilité restreinte pèse sur l'auteur du programme, le
  16. titulaire des droits patrimoniaux et les concédants successifs.
  17. A cet égard l'attention de l'utilisateur est attirée sur les risques
  18. associés au chargement, à l'utilisation, à la modification et/ou au
  19. développement et à la reproduction du logiciel par l'utilisateur étant
  20. donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  21. manipuler et qui le réserve donc à des développeurs et des professionnels
  22. avertis possédant des connaissances informatiques approfondies. Les
  23. utilisateurs sont donc invités à charger et tester l'adéquation du
  24. logiciel à leurs besoins dans des conditions permettant d'assurer la
  25. sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  26. à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  27. Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  28. pris connaissance de la licence CeCILL, et que vous en avez accepté les
  29. termes.
  30. */
  31. namespace backend\controllers;
  32. class CommandeController extends BackendController
  33. {
  34. var $enableCsrfValidation = false;
  35. public function behaviors()
  36. {
  37. return [
  38. 'access' => [
  39. 'class' => AccessControl::className(),
  40. 'rules' => [
  41. [
  42. 'actions' => ['report-cron'],
  43. 'allow' => true,
  44. 'roles' => ['?']
  45. ],
  46. [
  47. 'allow' => true,
  48. 'roles' => ['@'],
  49. 'matchCallback' => function ($rule, $action) {
  50. return Yii::$app->user->identity->status == USER::STATUS_ADMIN || Yii::$app->user->identity->status == USER::STATUS_BOULANGER;
  51. }
  52. ]
  53. ],
  54. ],
  55. ];
  56. }
  57. /**
  58. * Génére un PDF récapitulatif des commandes d'un producteur pour une
  59. * date donnée.
  60. *
  61. * @param string $date
  62. * @param boolean $save
  63. * @param integer $id_etablissement
  64. * @return PDF|null
  65. */
  66. public function actionReport($date = '', $save = false, $id_etablissement = 0)
  67. {
  68. if (!Yii::$app->user->isGuest)
  69. $id_etablissement = Yii::$app->user->identity->id_etablissement;
  70. $commandes = Commande::findBy([
  71. 'date' => $date,
  72. 'date_delete' => 'NULL',
  73. 'id_etablissement' => $id_etablissement,
  74. 'orderby' => 'commentaire_point_vente ASC, user.nom ASC'
  75. ]);
  76. foreach ($commandes as $c)
  77. $c->init();
  78. $production = Production::find()
  79. ->where('date LIKE \'' . $date . '\'')
  80. ->andWhere(['id_etablissement' => $id_etablissement])
  81. ->one();
  82. if ($production) {
  83. $produits_selec = ProductionProduit::findProduits($production->id);
  84. $points_vente = PointVente::find()
  85. ->where(['id_etablissement' => $id_etablissement])
  86. ->all();
  87. foreach ($points_vente as $pv)
  88. $pv->initCommandes($commandes);
  89. // produits
  90. $produits = Produit::find()
  91. ->where(['id_etablissement' => $id_etablissement])
  92. ->orderBy('order ASC')
  93. ->all();
  94. // get your HTML raw content without any layouts or scripts
  95. $content = $this->renderPartial('report', [
  96. 'production' => $production,
  97. 'produits_selec' => $produits_selec,
  98. 'points_vente' => $points_vente,
  99. 'date' => $date,
  100. 'produits' => $produits,
  101. 'commandes' => $commandes
  102. ]);
  103. $date_str = date('d/m/Y', strtotime($date));
  104. if ($save) {
  105. $destination = Pdf::DEST_FILE;
  106. } else {
  107. $destination = Pdf::DEST_BROWSER;
  108. }
  109. $pdf = new Pdf([
  110. // set to use core fonts only
  111. 'mode' => Pdf::MODE_UTF8,
  112. // A4 paper format
  113. 'format' => Pdf::FORMAT_A4,
  114. // portrait orientation
  115. 'orientation' => Pdf::ORIENT_PORTRAIT,
  116. // stream to browser inline
  117. 'destination' => $destination,
  118. 'filename' => Yii::getAlias('@app/web/pdf/Commandes-' . $date . '-' . $id_etablissement . '.pdf'),
  119. // your html content input
  120. 'content' => $content,
  121. // format content from your own css file if needed or use the
  122. // enhanced bootstrap css built by Krajee for mPDF formatting
  123. //'cssFile' => '@vendor/kartik-v/yii2-mpdf/assets/kv-mpdf-bootstrap.min.css',
  124. // any css to be embedded if required
  125. //'cssInline' => '.kv-heading-1{font-size:18px}',
  126. // set mPDF properties on the fly
  127. //'options' => ['title' => 'Krajee Report Title'],
  128. // call mPDF methods on the fly
  129. 'methods' => [
  130. 'SetHeader' => ['Commandes du ' . $date_str],
  131. 'SetFooter' => ['{PAGENO}'],
  132. ]
  133. ]);
  134. // return the pdf output as per the destination setting
  135. return $pdf->render();
  136. }
  137. return null ;
  138. }
  139. /**
  140. * Supprime une commande.
  141. *
  142. * @param string $date
  143. * @param integer $id_commande
  144. */
  145. public function actionDeleteCommande($date, $id_commande)
  146. {
  147. $commande = Commande::find()
  148. ->with(['production', 'commandeProduits'])
  149. ->where(['id' => $id_commande])
  150. ->one();
  151. if ($commande) {
  152. $commande->init();
  153. // remboursement de la commande
  154. if ($commande->id_user && $commande->getMontantPaye() && Etablissement::getConfig('credit_pain')) {
  155. $commande->creditHistorique(
  156. CreditHistorique::TYPE_REMBOURSEMENT,
  157. $commande->getMontantPaye(),
  158. $commande->production->id_etablissement,
  159. $commande->id_user,
  160. Yii::$app->user->identity->id
  161. );
  162. }
  163. $commande->delete();
  164. CommandeProduit::deleteAll(['id_commande' => $id_commande]);
  165. }
  166. $this->redirect(['index', 'date' => $date]);
  167. }
  168. /**
  169. * Traite le formulaire d'ajout/modification de commande.
  170. *
  171. * @param Production $production
  172. * @param string $date
  173. * @param array $points_vente
  174. * @param array $produits
  175. * @param array $users
  176. */
  177. public function gestionFormCommandes(
  178. $production, $date, $points_vente, $produits, $users)
  179. {
  180. if ($date != '') {
  181. // commandes
  182. $commandes = Commande::find()
  183. ->with('commandeProduits', 'user')
  184. ->joinWith('production')
  185. ->where(['production.date' => $date])
  186. ->andWhere(['production.id_etablissement' => Yii::$app->user->identity->id_etablissement])
  187. ->all();
  188. foreach ($commandes as $c)
  189. $c->init();
  190. foreach ($points_vente as $pv) {
  191. $pv->initCommandes($commandes);
  192. if (isset($_POST['submit_pv']) && $_POST['submit_pv']) {
  193. // modifs
  194. foreach ($pv->commandes as $c) {
  195. // suppression des commande_produit
  196. $commande_produits = CommandeProduit::find()->where(['id_commande' => $c->id])->all();
  197. foreach ($commande_produits as $cp)
  198. $cp->delete();
  199. // création des commande_produit modifiés
  200. foreach ($produits as $p) {
  201. $quantite = Yii::$app->getRequest()->post('produit_' . $c->id . '_' . $p->id, 0);
  202. if ($quantite) {
  203. $commande_produit = new CommandeProduit;
  204. $commande_produit->id_commande = $c->id;
  205. $commande_produit->id_produit = $p->id;
  206. $commande_produit->quantite = $quantite;
  207. $commande_produit->prix = $p->prix;
  208. $commande_produit->save();
  209. }
  210. }
  211. }
  212. // ajout
  213. //$id_client = Yii::$app->getRequest()->post('user_pv_'.$pv->id, 0) ;
  214. $username = Yii::$app->getRequest()->post('username_pv_' . $pv->id, 0);
  215. $date = Yii::$app->getRequest()->post('date_commande_pv_' . $pv->id, 0);
  216. $one_product = false;
  217. foreach ($produits as $p) {
  218. $quantite = Yii::$app->getRequest()->post('produit_pv_' . $pv->id . '_' . $p->id, 0);
  219. if ($quantite) {
  220. $one_product = true;
  221. }
  222. }
  223. if (strlen($username) && $date && $one_product) {
  224. $commande = new Commande;
  225. $commande->id_point_vente = $pv->id;
  226. $commande->id_production = $production->id;
  227. $commande->id_user = 0;
  228. $commande->username = $username;
  229. $tab_date = explode('/', $date);
  230. $commande->date = $tab_date[2] . '-' . $tab_date[1] . '-' . $tab_date[0] . ' 00:00:00';
  231. $commande->save();
  232. foreach ($produits as $p) {
  233. $quantite = Yii::$app->getRequest()->post('produit_pv_' . $pv->id . '_' . $p->id, 0);
  234. if ($quantite) {
  235. $commande_produit = new CommandeProduit;
  236. $commande_produit->id_commande = $commande->id;
  237. $commande_produit->id_produit = $p->id;
  238. $commande_produit->quantite = $quantite;
  239. $commande_produit->prix = $p->prix;
  240. $commande_produit->save();
  241. }
  242. }
  243. }
  244. }
  245. }
  246. }
  247. }
  248. /**
  249. * Page principale de la gestion des commandes.
  250. *
  251. * @param string $date
  252. * @param boolean $return_data
  253. * @return string
  254. */
  255. public function actionIndex($date = '', $return_data = false)
  256. {
  257. if (!Produit::count() && !PointVente::count()) {
  258. $this->redirect(['site/index', 'erreur_produits_points_vente' => 1]);
  259. }
  260. $commandes = [];
  261. // users
  262. $arr_users = [0 => '--'];
  263. $users = User::find()->orderBy('prenom, nom ASC')->all();
  264. foreach ($users as $u) {
  265. $arr_users[$u->id] = $u->prenom . ' ' . $u->nom;
  266. }
  267. // création du jour de production
  268. $production = Production::initProduction($date) ;
  269. // points de vente
  270. if ($production) {
  271. $points_vente = PointVente::find()
  272. ->joinWith(['productionPointVente' => function($q) use ($production) {
  273. $q->where(['id_production' => $production->id]);
  274. }])
  275. ->where([
  276. 'id_etablissement' => Yii::$app->user->identity->id_etablissement,
  277. ])
  278. ->all();
  279. } else {
  280. $points_vente = PointVente::find()
  281. ->where(['id_etablissement' => Yii::$app->user->identity->id_etablissement,])
  282. ->all();
  283. }
  284. // produits
  285. $produits = Produit::getAll();
  286. // gestion des commandes
  287. $this->gestionFormCommandes($production, $date, $points_vente, $produits, $users);
  288. // commandes
  289. $commandes = Commande::findBy([
  290. 'date' => $date,
  291. 'date_delete' => 'NULL'
  292. ]);
  293. $recettes = 0;
  294. $poids = 0 ;
  295. $recettes_livre = 0;
  296. foreach ($commandes as $c) {
  297. $c->init();
  298. if(is_null($c->date_delete)) {
  299. $recettes += $c->montant;
  300. if ($c->id_point_vente != 1) {
  301. $recettes_livre += $c->montant;
  302. }
  303. $poids += $c->poids;
  304. }
  305. }
  306. $recettes = number_format($recettes, 2);
  307. // init commandes point de vente
  308. foreach ($points_vente as $pv) {
  309. $pv->initCommandes($commandes);
  310. $data_select_commandes = [];
  311. $data_options_commandes = [];
  312. foreach ($pv->commandes as $c) {
  313. if ($c->user) {
  314. $data_select_commandes[$c->id] = $c->user->nom . ' ' . $c->user->prenom;
  315. } else {
  316. $data_select_commandes[$c->id] = $c->username;
  317. }
  318. $data_options_commandes[$c->id] = [];
  319. $array_options = [];
  320. $array_options[$c->id]['montant'] = $c->montant;
  321. $array_options[$c->id]['str_montant'] = number_format($c->montant, 2, ',', '') . ' €';
  322. $array_options[$c->id]['montant_paye'] = $c->montant_paye;
  323. $array_options[$c->id]['produits'] = [];
  324. $array_options[$c->id]['commentaire'] = Html::encode($c->commentaire);
  325. foreach ($c->commandeProduits as $cp) {
  326. $array_options[$c->id]['produits'][$cp->id_produit] = $cp->quantite;
  327. }
  328. $data_options_commandes[$c->id]['data-commande'] = json_encode($array_options[$c->id]);
  329. $data_options_commandes[$c->id]['value'] = $c->id;
  330. }
  331. $pv->data_select_commandes = $data_select_commandes;
  332. $pv->data_options_commandes = $data_options_commandes;
  333. }
  334. // gestion produits selec
  335. if (isset($_POST['valider_produit_selec'])) {
  336. if (isset($_POST['Produit'])) {
  337. foreach ($produits as $p) {
  338. $produit_production = ProductionProduit::find()->where(['id_production' => $production->id, 'id_produit' => $p->id])->one();
  339. if (!$produit_production) {
  340. $produit_production = new ProductionProduit();
  341. $produit_production->id_production = $production->id;
  342. $produit_production->id_produit = $p->id;
  343. $produit_production->actif = 0;
  344. if (isset($p->quantite_max))
  345. $produit_production->quantite_max = $p->quantite_max;
  346. else
  347. $produit_production->quantite_max = null;
  348. $produit_production->save();
  349. }
  350. if (isset($_POST['Produit'][$p->id]['actif'])) {
  351. $produit_production->actif = 1;
  352. } else {
  353. $produit_production->actif = 0;
  354. }
  355. if ((isset($_POST['Produit'][$p->id]['quantite_max']) && $_POST['Produit'][$p->id]['quantite_max'] != '')) {
  356. $produit_production->quantite_max = (int) $_POST['Produit'][$p->id]['quantite_max'];
  357. } else {
  358. $produit_production->quantite_max = null;
  359. }
  360. $produit_production->save();
  361. }
  362. }
  363. }
  364. $produits_selec = [] ;
  365. if($production) {
  366. // produits selec pour production
  367. $produits_selec = ProductionProduit::findProduits($production->id);
  368. }
  369. // produit en vrac forcément activé
  370. if ($date != '') {
  371. foreach ($produits as $p) {
  372. $produit_production = ProductionProduit::find()->where(['id_production' => $production->id, 'id_produit' => $p->id])->one();
  373. if ($p->vrac) {
  374. if (!$produit_production) {
  375. $produit_production = new ProductionProduit();
  376. $produit_production->id_production = $production->id;
  377. $produit_production->id_produit = $p->id;
  378. $produit_production->quantite_max = 0;
  379. $produit_production->actif = 1;
  380. $produit_production->save();
  381. } else {
  382. $produit_production->actif = 1;
  383. $produit_production->save();
  384. }
  385. }
  386. }
  387. }
  388. // produits
  389. if ($production) {
  390. $produits = Produit::getByProduction($production->id);
  391. }
  392. // poids total de la production et CA potentiel
  393. $ca_potentiel = 0;
  394. $poids_total = 0;
  395. foreach ($produits_selec as $id_produit_selec => $produit_selec) {
  396. if ($produit_selec['actif']) {
  397. foreach ($produits as $produit) {
  398. if ($produit->id == $id_produit_selec) {
  399. //echo $produit->nom.' : '.$produit_selec['quantite_max'].'<br />' ;
  400. $ca_potentiel += $produit_selec['quantite_max'] * $produit->prix;
  401. $poids_total += $produit_selec['quantite_max'] * $produit->poids / 1000;
  402. }
  403. }
  404. }
  405. }
  406. // jours de production
  407. $jours_production = Production::find()
  408. ->where([
  409. 'actif' => 1,
  410. 'id_etablissement' => Yii::$app->user->identity->id_etablissement
  411. ])
  412. ->all();
  413. // commandes auto
  414. $model_commande_auto = new CommandeAutoForm;
  415. // productions point vente
  416. $production_point_vente = new ProductionPointVente;
  417. $productions_point_vente = [];
  418. if ($production) {
  419. $productions_point_vente = ProductionPointVente::find()
  420. ->with('pointVente')
  421. ->where(['id_production' => $production->id])
  422. ->all();
  423. }
  424. $arr_productions_point_vente = [];
  425. foreach ($productions_point_vente as $ppv) {
  426. $key = $ppv->id_production . '-' . $ppv->id_point_vente;
  427. if ($ppv->livraison == 1)
  428. $production_point_vente->productions_point_vente[] = $key;
  429. if(isset($ppv->pointVente) && strlen($ppv->pointVente->nom)) {
  430. $arr_productions_point_vente[$key] = Html::encode($ppv->pointVente->nom);
  431. }
  432. }
  433. // une production de la semaine activée ou non
  434. $production_semaine_active = false ;
  435. $week = sprintf('%02d',date('W',strtotime($date)));
  436. $start = strtotime(date('Y',strtotime($date)).'W'.$week);
  437. $date_lundi = date('Y-m-d',strtotime('Monday',$start)) ;
  438. $date_mardi = date('Y-m-d',strtotime('Tuesday',$start)) ;
  439. $date_mercredi = date('Y-m-d',strtotime('Wednesday',$start)) ;
  440. $date_jeudi = date('Y-m-d',strtotime('Thursday',$start)) ;
  441. $date_vendredi = date('Y-m-d',strtotime('Friday',$start)) ;
  442. $date_samedi = date('Y-m-d',strtotime('Saturday',$start)) ;
  443. $date_dimanche = date('Y-m-d',strtotime('Sunday',$start)) ;
  444. $production_semaine = Production::find()
  445. ->andWhere([
  446. 'id_etablissement' => Yii::$app->user->identity->id_etablissement,
  447. 'actif' => 1,
  448. ])
  449. ->andWhere(['or',
  450. ['date' => $date_lundi],
  451. ['date' => $date_mardi],
  452. ['date' => $date_mercredi],
  453. ['date' => $date_jeudi],
  454. ['date' => $date_vendredi],
  455. ['date' => $date_samedi],
  456. ['date' => $date_dimanche],
  457. ])
  458. ->one();
  459. if($production_semaine) {
  460. $production_semaine_active = true ;
  461. }
  462. $datas = [
  463. 'produits' => $produits,
  464. 'points_vente' => $points_vente,
  465. 'commandes' => $commandes,
  466. 'date' => $date,
  467. 'production' => $production,
  468. 'jours_production' => $jours_production,
  469. 'produits_selec' => $produits_selec,
  470. 'users' => $arr_users,
  471. 'recettes' => $recettes,
  472. 'recettes_livre' => $recettes_livre,
  473. 'poids' => $poids,
  474. 'ca_potentiel' => $ca_potentiel,
  475. 'poids_total' => $poids_total,
  476. 'model_commande_auto' => $model_commande_auto,
  477. 'production_point_vente' => $production_point_vente,
  478. 'productions_point_vente' => $productions_point_vente,
  479. 'arr_productions_point_vente' => $arr_productions_point_vente,
  480. 'production_semaine_active' =>$production_semaine_active
  481. ];
  482. if ($return_data) {
  483. return $datas;
  484. } else {
  485. return $this->render('index', $datas);
  486. }
  487. }
  488. /**
  489. * Génère un fichier d'export des commandes au format CSV.
  490. *
  491. * @param string $date
  492. * @param integer $id_point_vente
  493. * @param boolean $global
  494. */
  495. public function actionDownload($date = '', $id_point_vente = 0, $global = 0)
  496. {
  497. // commandes
  498. $commandes = Commande::find()
  499. ->with('commandeProduits', 'user')
  500. ->joinWith('production')
  501. ->where(['production.date' => $date])
  502. ->orderBy('date ASC')
  503. ->all();
  504. foreach ($commandes as $c)
  505. $c->init();
  506. // points de vente
  507. $points_vente = PointVente::find()->all();
  508. foreach ($points_vente as $pv)
  509. $pv->initCommandes($commandes);
  510. // produits
  511. $produits = Produit::find()->orderBy('order ASC')->all();
  512. $production = Production::find()->where('date LIKE \'' . $date . '\'')->one();
  513. $produits_selec = ProductionProduit::findProduits($production->id);
  514. /*
  515. * export global
  516. */
  517. if ($global) {
  518. $data = [];
  519. $filename = 'export_' . $date . '_global';
  520. $num_jour_semaine = date('w', strtotime($date));
  521. $arr_jour_semaine = [0 => 'dimanche', 1 => 'lundi', 2 => 'mardi', 3 => 'mercredi', 4 => 'jeudi', 5 => 'vendredi', 6 => 'samedi'];
  522. $champs_horaires_point_vente = 'horaires_' . $arr_jour_semaine[$num_jour_semaine];
  523. // par point de vente
  524. foreach ($points_vente as $pv) {
  525. if (count($pv->commandes) && strlen($pv->$champs_horaires_point_vente)) {
  526. $line = [$pv->nom, 'Produits', 'Montant', 'Commentaire'];
  527. $data[] = $line;
  528. $res = $this->contentPointVenteCSV($date, $produits, $points_vente, $pv->id);
  529. foreach ($res['data'] as $line) {
  530. $data[] = $line;
  531. }
  532. }
  533. if (count($pv->commandes) && strlen($pv->$champs_horaires_point_vente)) {
  534. $line = ['Total pain'];
  535. $str_produits = '';
  536. foreach ($produits as $p) {
  537. if (!$p->vrac && isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  538. $quantite = Commande::getQuantiteProduit($p->id, $pv->commandes);
  539. $str_quantite = '';
  540. if ($quantite) {
  541. $str_quantite = $quantite;
  542. $str_produits .= $str_quantite . $p->diminutif . ', ';
  543. }
  544. }
  545. }
  546. $line[] = substr($str_produits, 0, strlen($str_produits) - 2);
  547. $line[] = number_format($pv->recettes, 2) . ' €';
  548. $data[] = $line;
  549. $line = ['Total vrac'];
  550. $str_produits = '';
  551. foreach ($produits as $p) {
  552. if ($p->vrac && isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  553. $quantite = Commande::getQuantiteProduit($p->id, $pv->commandes);
  554. $str_quantite = '';
  555. if ($quantite) {
  556. $str_quantite = $quantite;
  557. $str_produits .= $str_quantite . $p->diminutif . ', ';
  558. }
  559. }
  560. }
  561. $line[] = substr($str_produits, 0, strlen($str_produits) - 2);
  562. $line[] = number_format($pv->recettes, 2) . ' €';
  563. $data[] = $line;
  564. $data[] = [];
  565. }
  566. }
  567. // récap
  568. //$line = ['Totaux'] ;
  569. // pain
  570. $line = ['Total pain'];
  571. $str_produits = '';
  572. foreach ($produits as $p) {
  573. if (!$p->vrac && isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  574. $quantite = Commande::getQuantiteProduit($p->id, $commandes);
  575. $str_quantite = '';
  576. if ($quantite) {
  577. $str_quantite = $quantite;
  578. $str_produits .= $str_quantite . '' . $p->diminutif . ', ';
  579. }
  580. }
  581. }
  582. $line[] = substr($str_produits, 0, strlen($str_produits) - 2);
  583. $data[] = $line;
  584. // vrac
  585. $line = ['Total vrac'];
  586. $str_produits = '';
  587. foreach ($produits as $p) {
  588. if ($p->vrac && isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  589. $quantite = Commande::getQuantiteProduit($p->id, $commandes);
  590. $str_quantite = '';
  591. if ($quantite) {
  592. $str_quantite = $quantite;
  593. $str_produits .= $str_quantite . '' . $p->diminutif . ', ';
  594. }
  595. }
  596. }
  597. $line[] = substr($str_produits, 0, strlen($str_produits) - 2);
  598. $data[] = $line;
  599. $infos = $this->actionIndex($date, true);
  600. CSV::downloadSendHeaders($filename . '.csv');
  601. echo CSV::array2csv($data);
  602. die();
  603. }
  604. /*
  605. * export individuel
  606. */ else {
  607. if ($commandes && count($commandes)) {
  608. $data = [];
  609. // par point de vente
  610. if ($id_point_vente) {
  611. $res = $this->contentPointVenteCSV($date, $produits, $points_vente, $id_point_vente);
  612. $data = $res['data'];
  613. $filename = $res['filename'];
  614. }
  615. // récapitulatif
  616. else {
  617. $res = $this->contentRecapCSV($date, $produits, $points_vente, $commandes);
  618. $filename = 'recapitulatif_' . $date;
  619. $data = $res['data'];
  620. }
  621. CSV::downloadSendHeaders($filename . '.csv');
  622. echo CSV::array2csv($data);
  623. die();
  624. }
  625. }
  626. }
  627. /**
  628. * Génère le contenu nécessaire aux exports au format CSV.
  629. *
  630. * @see CommandeController::actionDownload()
  631. * @param string $date
  632. * @param array $produits
  633. * @param array $points_vente
  634. * @param array $commandes
  635. * @return array
  636. */
  637. public function contentRecapCSV($date, $produits, $points_vente, $commandes)
  638. {
  639. $data = [];
  640. $filename = 'recapitulatif_' . $date;
  641. $production = Production::find()->where('date LIKE \'' . $date . '\'')->one();
  642. $produits_selec = ProductionProduit::findProduits($production->id);
  643. // head
  644. $data[0] = ['Lieu'];
  645. foreach ($produits as $p) {
  646. if (isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  647. $data[0][] = $p->description;
  648. }
  649. }
  650. $num_jour_semaine = date('w', strtotime($date));
  651. $arr_jour_semaine = [0 => 'dimanche', 1 => 'lundi', 2 => 'mardi', 3 => 'mercredi', 4 => 'jeudi', 5 => 'vendredi', 6 => 'samedi'];
  652. $champs_horaires_point_vente = 'horaires_' . $arr_jour_semaine[$num_jour_semaine];
  653. // datas
  654. foreach ($points_vente as $pv) {
  655. if (count($pv->commandes) && strlen($pv->$champs_horaires_point_vente)) {
  656. $data_add = [$pv->nom];
  657. foreach ($produits as $p) {
  658. if (isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  659. $data_add[] = Commande::getQuantiteProduit($p->id, $pv->commandes);
  660. }
  661. }
  662. $data[] = $data_add;
  663. }
  664. }
  665. $data_add = ['Total'];
  666. foreach ($produits as $p) {
  667. if (isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  668. $data_add[] = Commande::getQuantiteProduit($p->id, $commandes);
  669. }
  670. }
  671. $data[] = $data_add;
  672. return [
  673. 'data' => $data,
  674. 'filename' => $filename
  675. ];
  676. }
  677. /**
  678. * Génère le contenu relatif aux points de vente nécessaires aux exports au
  679. * format CSV.
  680. *
  681. * @param string $date
  682. * @param array $produits
  683. * @param array $points_vente
  684. * @param integer $id_point_vente
  685. * @return array
  686. */
  687. public function contentPointVenteCSV($date, $produits, $points_vente, $id_point_vente)
  688. {
  689. $data = [];
  690. $production = Production::find()->where('date LIKE \'' . $date . '\'')->one();
  691. $produits_selec = ProductionProduit::findProduits($production->id);
  692. // head
  693. /* $data[0] = ['Client', 'Date commande'] ;
  694. foreach($produits as $p) {
  695. if(isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  696. $data[0][] = $p->description ;
  697. }
  698. } */
  699. // datas
  700. foreach ($points_vente as $pv) {
  701. if ($pv->id == $id_point_vente) {
  702. $filename = 'export_' . $date . '_' . strtolower(str_replace(' ', '-', $pv->nom));
  703. foreach ($pv->commandes as $c) {
  704. $str_user = '';
  705. // username
  706. if ($c->user) {
  707. $str_user = $c->user->prenom . " " . $c->user->nom; //.' - '.date('d/m', strtotime($c->date)) ;
  708. } else {
  709. $str_user = $c->username; //.' - '.date('d/m', strtotime($c->date)) ;
  710. }
  711. // téléphone
  712. if (isset($c->user) && strlen($c->user->telephone)) {
  713. $str_user .= ' (' . $c->user->telephone . ')';
  714. }
  715. $data_add = [$str_user];
  716. // produits
  717. $str_produits = '';
  718. foreach ($produits as $p) {
  719. if (isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  720. $add = false;
  721. foreach ($c->commandeProduits as $cp) {
  722. if ($p->id == $cp->id_produit) {
  723. $str_produits .= $cp->quantite . '' . $p->diminutif . ', ';
  724. $add = true;
  725. }
  726. }
  727. }
  728. }
  729. $data_add[] = substr($str_produits, 0, strlen($str_produits) - 2);
  730. $data_add[] = number_format($c->montant, 2) . ' €';
  731. $data_add[] = $c->commentaire;
  732. $data[] = $data_add;
  733. }
  734. }
  735. }
  736. return [
  737. 'data' => $data,
  738. 'filename' => $filename
  739. ];
  740. }
  741. /**
  742. * Ajoute les commandes récurrentes pour une date donnée.
  743. *
  744. * @param string $date
  745. */
  746. public function actionAddCommandesAuto($date)
  747. {
  748. CommandeAuto::addAll($date, true);
  749. $this->redirect(['index', 'date' => $date]);
  750. }
  751. /**
  752. * Change l'état d'un jour de production (activé, désactivé).
  753. *
  754. * @param string $date
  755. * @param integer $actif
  756. * @param boolean $redirect
  757. */
  758. public function actionChangeState($date, $actif, $redirect = true)
  759. {
  760. // changement état
  761. $production = Production::initProduction($date) ;
  762. $production->actif = $actif;
  763. $production->save();
  764. if ($actif) {
  765. // add commandes automatiques
  766. CommandeAuto::addAll($date);
  767. }
  768. if($redirect) {
  769. $this->redirect(['index', 'date' => $date]);
  770. }
  771. }
  772. /**
  773. * Change l'état d'une semaine de production (activé, désactivé).
  774. *
  775. * @param string $date
  776. * @param integer $actif
  777. */
  778. public function actionChangeStateSemaine($date, $actif)
  779. {
  780. $week = sprintf('%02d',date('W',strtotime($date)));
  781. $start = strtotime(date('Y',strtotime($date)).'W'.$week);
  782. $date_lundi = date('Y-m-d',strtotime('Monday',$start)) ;
  783. $date_mardi = date('Y-m-d',strtotime('Tuesday',$start)) ;
  784. $date_mercredi = date('Y-m-d',strtotime('Wednesday',$start)) ;
  785. $date_jeudi = date('Y-m-d',strtotime('Thursday',$start)) ;
  786. $date_vendredi = date('Y-m-d',strtotime('Friday',$start)) ;
  787. $date_samedi = date('Y-m-d',strtotime('Saturday',$start)) ;
  788. $date_dimanche = date('Y-m-d',strtotime('Sunday',$start)) ;
  789. $points_vente = PointVente::find()
  790. ->where(['id_etablissement' => Yii::$app->user->identity->id_etablissement,])
  791. ->all();
  792. $lundi_active = false ;
  793. $mardi_active = false ;
  794. $mercredi_active = false ;
  795. $jeudi_active = false ;
  796. $vendredi_active = false ;
  797. $samedi_active = false ;
  798. $dimanche_active = false ;
  799. foreach($points_vente as $pv) {
  800. if($pv->livraison_lundi) $lundi_active = true ;
  801. if($pv->livraison_mardi) $mardi_active = true ;
  802. if($pv->livraison_mercredi) $mercredi_active = true ;
  803. if($pv->livraison_jeudi) $jeudi_active = true ;
  804. if($pv->livraison_vendredi) $vendredi_active = true ;
  805. if($pv->livraison_samedi) $samedi_active = true ;
  806. if($pv->livraison_dimanche) $dimanche_active = true ;
  807. }
  808. if($lundi_active || !$actif) $this->actionChangeState($date_lundi, $actif, false) ;
  809. if($mardi_active || !$actif) $this->actionChangeState($date_mardi, $actif, false) ;
  810. if($mercredi_active || !$actif) $this->actionChangeState($date_mercredi, $actif, false) ;
  811. if($jeudi_active || !$actif) $this->actionChangeState($date_jeudi, $actif, false) ;
  812. if($vendredi_active || !$actif) $this->actionChangeState($date_vendredi, $actif, false) ;
  813. if($samedi_active || !$actif) $this->actionChangeState($date_samedi, $actif, false) ;
  814. if($dimanche_active || !$actif) $this->actionChangeState($date_dimanche, $actif, false) ;
  815. $this->redirect(['index', 'date' => $date]);
  816. }
  817. /**
  818. * Met à jour une commande via une requête AJAX.
  819. *
  820. * @param integer $id_commande
  821. * @param array $produits
  822. * @param string $date
  823. * @param string $commentaire
  824. */
  825. public function actionAjaxUpdate(
  826. $id_commande, $produits, $date, $commentaire)
  827. {
  828. $commande = Commande::find()->with('production', 'creditHistorique', 'user')->where(['id' => $id_commande])->one();
  829. if ($commande &&
  830. $commande->production->id_etablissement == Yii::$app->user->identity->id_etablissement) {
  831. $commande->init();
  832. $produits = json_decode($produits);
  833. foreach ($produits as $key => $quantite) {
  834. $commande_produit = CommandeProduit::findOne([
  835. 'id_commande' => $id_commande,
  836. 'id_produit' => $key
  837. ]);
  838. if ($quantite) {
  839. if ($commande_produit) {
  840. $commande_produit->quantite = $quantite;
  841. } else {
  842. $produit = Produit::findOne($key);
  843. if ($produit) {
  844. $commande_produit = new CommandeProduit;
  845. $commande_produit->id_commande = $id_commande;
  846. $commande_produit->id_produit = $key;
  847. $commande_produit->quantite = $quantite;
  848. $commande_produit->prix = $produit->prix;
  849. }
  850. }
  851. $commande_produit->save();
  852. } else {
  853. if ($commande_produit)
  854. $commande_produit->delete();
  855. }
  856. }
  857. $commande->date_update = date('Y-m-d H:i:s');
  858. $commande->commentaire = $commentaire;
  859. $commande->save();
  860. // data commande
  861. $json_commande = $commande->getDataJson();
  862. // total point de vente
  863. $point_vente = PointVente::findOne($commande->id_point_vente);
  864. $commandes = Commande::find()
  865. ->with('commandeProduits', 'user')
  866. ->joinWith('production')
  867. ->where(['production.date' => $date])
  868. ->andWhere(['production.id_etablissement' => Yii::$app->user->identity->id_etablissement])
  869. ->orderBy('date ASC')
  870. ->all();
  871. foreach ($commandes as $c)
  872. $c->init();
  873. $point_vente->initCommandes($commandes);
  874. echo json_encode([
  875. 'total_pv' => number_format($point_vente->recettes, 2) . ' €',
  876. 'json_commande' => $json_commande
  877. ]);
  878. die();
  879. }
  880. }
  881. /**
  882. * Supprime une commande via une requête AJAX.
  883. *
  884. * @param string $date
  885. * @param integer $id_commande
  886. */
  887. public function actionAjaxDelete($date, $id_commande)
  888. {
  889. $commande = Commande::find()
  890. ->with(['production', 'commandeProduits'])
  891. ->where(['id' => $id_commande])
  892. ->one();
  893. $commande->init() ;
  894. // delete
  895. if ($commande) {
  896. // remboursement si l'utilisateur a payé pour cette commande
  897. $montant_paye = $commande->getMontantPaye();
  898. if ($montant_paye > 0.01) {
  899. $commande->creditHistorique(
  900. CreditHistorique::TYPE_REMBOURSEMENT,
  901. $montant_paye,
  902. Yii::$app->user->identity->id_etablissement,
  903. $commande->id_user,
  904. Yii::$app->user->identity->id
  905. );
  906. }
  907. $commande->delete();
  908. CommandeProduit::deleteAll(['id_commande' => $id_commande]);
  909. }
  910. // total point de vente
  911. $point_vente = PointVente::findOne($commande->id_point_vente);
  912. $commandes = Commande::find()
  913. ->with('commandeProduits', 'user')
  914. ->joinWith('production')
  915. ->where(['production.date' => $date])
  916. ->andWhere(['production.id_etablissement' => Yii::$app->user->identity->id_etablissement])
  917. ->orderBy('date ASC')
  918. ->all();
  919. foreach ($commandes as $c)
  920. $c->init();
  921. $point_vente->initCommandes($commandes);
  922. echo json_encode([
  923. 'total_pv' => number_format($point_vente->recettes, 2) . ' €',
  924. ]);
  925. die();
  926. }
  927. /**
  928. * Crée une commande via une requête AJAX.
  929. *
  930. * @param string $date
  931. * @param integer $id_pv
  932. * @param integer $id_user
  933. * @param string $username
  934. * @param array $produits
  935. * @param string $commentaire
  936. */
  937. public function actionAjaxCreate(
  938. $date, $id_pv, $id_user, $username, $produits, $commentaire)
  939. {
  940. $produits = json_decode($produits);
  941. $point_vente = PointVente::findOne($id_pv);
  942. $production = Production::findOne([
  943. 'date' => $date,
  944. 'id_etablissement' => Yii::$app->user->identity->id_etablissement
  945. ]);
  946. if (preg_match("/^[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])$/", $date) &&
  947. ($id_user || strlen($username)) &&
  948. $point_vente &&
  949. count($produits) &&
  950. $production) {
  951. $commande = new Commande;
  952. $commande->date = date('Y-m-d H:i:s', strtotime($date . ' ' . date('H:i:s')));
  953. $commande->id_point_vente = $id_pv;
  954. $commande->id_production = $production->id;
  955. $commande->type = Commande::TYPE_ADMIN;
  956. $commande->commentaire = $commentaire;
  957. if ($id_user) {
  958. $commande->id_user = $id_user;
  959. // commentaire du point de vente
  960. $point_vente_user = PointVenteUser::find()
  961. ->where(['id_point_vente' => $id_pv, 'id_user' => $id_user])
  962. ->one();
  963. if ($point_vente_user && strlen($point_vente_user->commentaire)) {
  964. $commande->commentaire_point_vente = $point_vente_user->commentaire;
  965. }
  966. } else {
  967. $commande->username = $username;
  968. $commande->id_user = 0;
  969. }
  970. $commande->save();
  971. foreach ($produits as $key => $quantite) {
  972. $produit = Produit::findOne($key);
  973. if ($produit) {
  974. $commande_produit = new CommandeProduit;
  975. $commande_produit->id_commande = $commande->id;
  976. $commande_produit->id_produit = $key;
  977. $commande_produit->quantite = $quantite;
  978. $commande_produit->prix = $produit->prix;
  979. $commande_produit->save();
  980. }
  981. }
  982. // total point de vente
  983. $point_vente = PointVente::findOne($commande->id_point_vente);
  984. $commandes = Commande::find()
  985. ->with('commandeProduits', 'user')
  986. ->joinWith('production')
  987. ->where(['production.date' => $date])
  988. ->andWhere(['production.id_etablissement' => Yii::$app->user->identity->id_etablissement])
  989. ->orderBy('date ASC')
  990. ->all();
  991. foreach ($commandes as $c)
  992. $c->init();
  993. $point_vente->initCommandes($commandes);
  994. // json commande
  995. $commande = Commande::find()
  996. ->with('commandeProduits', 'user')
  997. ->where(['commande.id' => $commande->id])
  998. ->one();
  999. $commande->init();
  1000. $produits = [];
  1001. foreach ($commande->commandeProduits as $cp) {
  1002. $produits[$cp->id_produit] = $cp->quantite;
  1003. }
  1004. $json_commande = json_encode(['montant' => number_format($commande->montant, 2), 'produits' => $produits]);
  1005. $json_commande = $commande->getDataJson();
  1006. $str_user = '';
  1007. if ($commande->user)
  1008. $str_user = $commande->user->nom . ' ' . $commande->user->prenom;
  1009. else
  1010. $str_user = $commande->username;
  1011. $str_commentaire = '';
  1012. if (strlen($commande->commentaire)) {
  1013. $str_commentaire = ' <span class="glyphicon glyphicon-comment"></span>';
  1014. }
  1015. $str_label_type_commande = '';
  1016. if ($commande->type) {
  1017. $str_label_type_commande = ' <span class="label label-warning">vous</span>';
  1018. }
  1019. echo json_encode([
  1020. 'id_commande' => $commande->id,
  1021. 'total_pv' => number_format($point_vente->recettes, 2) . ' €',
  1022. 'commande' => '<li>'
  1023. . '<a class="btn btn-default" href="javascript:void(0);" '
  1024. . 'data-pv-id="' . $id_pv . '" '
  1025. . 'data-id-commande="' . $commande->id . '" '
  1026. . 'data-commande=\'' . $json_commande . '\' '
  1027. . 'data-date="' . date('d/m H:i', strtotime($commande->date)) . '">'
  1028. . '<span class="montant">' . number_format($commande->montant, 2) . ' €</span>'
  1029. . '<span class="user">' . $str_label_type_commande . ' ' . $str_user . '</span>'
  1030. . $str_commentaire
  1031. . '</a></li>',
  1032. ]);
  1033. die();
  1034. }
  1035. }
  1036. /**
  1037. * Retourne un récapitulatif du total des commandes (potentiel, commandé et
  1038. * par produits) au format HTML;
  1039. *
  1040. * @param string $date
  1041. */
  1042. public function actionAjaxTotalCommandes($date) {
  1043. $production = Production::find()
  1044. ->where(['date' => $date])
  1045. ->andWhere(['id_etablissement' => Yii::$app->user->identity->id_etablissement])
  1046. ->one();
  1047. if ($production) {
  1048. // produits
  1049. $produits = Produit::find()
  1050. ->where(['id_etablissement' => Yii::$app->user->identity->id_etablissement])
  1051. ->orderBy('order ASC')
  1052. ->all();
  1053. // commandes
  1054. $commandes = Commande::find()
  1055. ->with('commandeProduits','commandeProduits.produit', 'user')
  1056. ->joinWith('production')
  1057. ->where(['production.date' => $date])
  1058. ->andWhere(['production.id_etablissement' => Yii::$app->user->identity->id_etablissement])
  1059. ->orderBy('date ASC')
  1060. ->all();
  1061. $recettes = 0;
  1062. $poids_pain = 0;
  1063. foreach ($commandes as $c) {
  1064. $c->init();
  1065. if(is_null($c->date_delete)) {
  1066. $recettes += $c->montant;
  1067. $poids_pain += $c->poids_pain;
  1068. }
  1069. }
  1070. // produits selec pour production
  1071. $produits_selec = ProductionProduit::findProduits($production->id);
  1072. $ca_potentiel = 0;
  1073. $poids_total = 0;
  1074. foreach ($produits_selec as $id_produit_selec => $produit_selec) {
  1075. if ($produit_selec['actif']) {
  1076. foreach ($produits as $produit) {
  1077. if ($produit->id == $id_produit_selec) {
  1078. $ca_potentiel += $produit_selec['quantite_max'] * $produit->prix;
  1079. $poids_total += $produit_selec['quantite_max'] * $produit->poids / 1000;
  1080. }
  1081. }
  1082. }
  1083. }
  1084. $html_totaux = $this->renderPartial('_total_commandes.php', [
  1085. 'produits' => $produits,
  1086. 'commandes' => $commandes,
  1087. 'produits_selec' => $produits_selec,
  1088. 'recettes' => $recettes,
  1089. 'poids_total' => $poids_total,
  1090. 'ca_potentiel' => $ca_potentiel,
  1091. 'poids_pain' => $poids_pain,
  1092. ]);
  1093. echo json_encode([
  1094. 'html_totaux' => $html_totaux,
  1095. ]);
  1096. }
  1097. die();
  1098. }
  1099. /**
  1100. * Active ou désactive la livraison dans un point de vente.
  1101. *
  1102. * @param integer $id_production
  1103. * @param integer $id_point_vente
  1104. * @param boolean $bool_livraison
  1105. */
  1106. public function actionAjaxPointVenteLivraison(
  1107. $id_production, $id_point_vente, $bool_livraison)
  1108. {
  1109. $production_point_vente = ProductionPointVente::find()
  1110. ->where([
  1111. 'id_production' => $id_production,
  1112. 'id_point_vente' => $id_point_vente,
  1113. ])
  1114. ->one();
  1115. if ($production_point_vente) {
  1116. $production_point_vente->livraison = $bool_livraison;
  1117. $production_point_vente->save();
  1118. }
  1119. die();
  1120. }
  1121. /**
  1122. * Retourne l'état du paiement (historique, crédit) d'une commande donnée.
  1123. *
  1124. * @param integer $id_commande
  1125. */
  1126. public function actionStatutPaiement($id_commande)
  1127. {
  1128. $commande = Commande::find()
  1129. ->with('commandeProduits', 'production')
  1130. ->where(['id' => $id_commande])
  1131. ->one();
  1132. if ($commande) {
  1133. $commande->init();
  1134. $html = '';
  1135. if ($commande->id_user) {
  1136. $user_etablissement = UserEtablissement::find()
  1137. ->where([
  1138. 'id_user' => $commande->id_user,
  1139. 'id_etablissement' => $commande->production->id_etablissement
  1140. ])
  1141. ->one();
  1142. $montant_paye = $commande->getMontantPaye();
  1143. //$html .= $commande->montant.' | '.$montant_paye ;
  1144. if (abs($commande->montant - $montant_paye) < 0.0001) {
  1145. $html .= '<span class="label label-success">Payé</span>';
  1146. $buttons_credit = Html::a('Rembourser ' . $commande->getMontant(true), 'javascript:void(0);', ['class' => 'btn btn-default btn-xs rembourser', 'data-montant' => $commande->montant, 'data-type' => 'remboursement']);
  1147. } elseif ($commande->montant > $montant_paye) {
  1148. $montant_payer = $commande->montant - $montant_paye;
  1149. $html .= '<span class="label label-danger">Non payé</span> reste <strong>' . number_format($montant_payer, 2) . ' €</strong> à payer';
  1150. $buttons_credit = Html::a('Payer ' . number_format($montant_payer, 2) . ' €', 'javascript:void(0);', ['class' => 'btn btn-default btn-xs payer', 'data-montant' => $montant_payer, 'data-type' => 'paiement']);
  1151. } elseif ($commande->montant < $montant_paye) {
  1152. $montant_rembourser = $montant_paye - $commande->montant;
  1153. $html .= ' <span class="label label-success">Payé</span> <strong>' . number_format($montant_rembourser, 2) . ' €</strong> à rembourser';
  1154. $buttons_credit = Html::a('Rembourser ' . number_format($montant_rembourser, 2) . ' €', 'javascript:void(0);', ['class' => 'btn btn-default btn-xs rembourser', 'data-montant' => $montant_rembourser, 'data-type' => 'remboursement']);
  1155. }
  1156. $html .= '<span class="buttons-credit">'
  1157. . 'Crédit pain : <strong>' . number_format($user_etablissement->credit, 2) . ' €</strong><br />'
  1158. . $buttons_credit
  1159. . '</span>';
  1160. // historique
  1161. $historique = CreditHistorique::find()
  1162. ->with('userAction')
  1163. ->where(['id_commande' => $id_commande])
  1164. ->all();
  1165. $html .= '<br /><br /><strong>Historique</strong><br /><table class="table table-condensed table-bordered">'
  1166. . '<thead><tr><th>Date</th><th>Utilisateur</th><th>Action</th><th>- Débit</th><th>+ Crédit</th></tr></thead>'
  1167. . '<tbody>';
  1168. if ($historique && is_array($historique) && count($historique)) {
  1169. foreach ($historique as $h) {
  1170. $html .= '<tr>'
  1171. . '<td>' . date('d/m/Y H:i:s', strtotime($h->date)) . '</td>'
  1172. . '<td>' . Html::encode($h->strUserAction()) . '</td>'
  1173. . '<td>' . $h->getStrLibelle() . '</td>'
  1174. . '<td>' . ($h->isTypeDebit() ? '- '.$h->getMontant(true) : '') . '</td>'
  1175. . '<td>' . ($h->isTypeCredit() ? '+ '.$h->getMontant(true) : '') . '</td>'
  1176. . '</tr>';
  1177. }
  1178. } else {
  1179. $html .= '<tr><td colspan="4">Aucun résultat</td></tr>';
  1180. }
  1181. $html .= '</tbody></table>';
  1182. } else {
  1183. $html .= '<div class="alert alert-warning">Pas de gestion de crédit pain pour cette commande car elle n\'est pas liée à un compte utilisateur.</div>';
  1184. }
  1185. echo json_encode([
  1186. 'html_statut_paiement' => $html,
  1187. 'json_commande' => $commande->getDataJson()
  1188. ]);
  1189. }
  1190. die();
  1191. }
  1192. /**
  1193. * Effectue le paiement/remboursement d'une commande.
  1194. *
  1195. * @param integer $id_commande
  1196. * @param string $type
  1197. * @param float $montant
  1198. * @return string
  1199. */
  1200. public function actionPaiement($id_commande, $type, $montant)
  1201. {
  1202. $commande = Commande::find()
  1203. ->with('commandeProduits', 'production')
  1204. ->where(['id' => $id_commande])
  1205. ->one();
  1206. $commande->init() ;
  1207. if ($commande) {
  1208. $commande->creditHistorique(
  1209. $type,
  1210. $montant,
  1211. Yii::$app->user->identity->id_etablissement,
  1212. $commande->id_user,
  1213. Yii::$app->user->identity->id
  1214. );
  1215. }
  1216. return $this->actionStatutPaiement($id_commande);
  1217. }
  1218. }