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.

1262 satır
49KB

  1. <?php
  2. namespace backend\controllers;
  3. use common\models\ProductionProduit;
  4. use Yii;
  5. use common\models\Production;
  6. use yii\filters\AccessControl;
  7. use yii\web\Controller;
  8. use common\models\LoginForm;
  9. use yii\filters\VerbFilter;
  10. use common\models\Commande;
  11. use common\models\CommandeProduit;
  12. use common\models\PointVente;
  13. use common\models\PointVenteUser;
  14. use common\models\Produit;
  15. use common\helpers\CSV;
  16. use common\models\User;
  17. use kartik\mpdf\Pdf;
  18. use common\models\CommandeAutoForm;
  19. use common\models\CommandeAuto;
  20. use common\models\CreditHistorique;
  21. use common\models\UserEtablissement;
  22. use yii\helpers\Html;
  23. use common\models\ProductionPointVente;
  24. class CommandeController extends BackendController {
  25. var $enableCsrfValidation = false;
  26. public function behaviors() {
  27. return [
  28. 'access' => [
  29. 'class' => AccessControl::className(),
  30. 'rules' => [
  31. [
  32. 'actions' => ['report-cron'],
  33. 'allow' => true,
  34. 'roles' => ['?']
  35. ],
  36. [
  37. 'allow' => true,
  38. 'roles' => ['@'],
  39. 'matchCallback' => function ($rule, $action) {
  40. return Yii::$app->user->identity->status == USER::STATUS_ADMIN || Yii::$app->user->identity->status == USER::STATUS_BOULANGER;
  41. }
  42. ]
  43. ],
  44. ],
  45. ];
  46. }
  47. public function actionReportCron($date = '', $save = false, $id_etablissement = 0, $key = '') {
  48. if ($key == '64ac0bdab7e9f5e48c4d991ec5201d57') {
  49. $this->actionReport($date, $save, $id_etablissement);
  50. }
  51. }
  52. public function actionReport($date = '', $save = false, $id_etablissement = 0) {
  53. if (!Yii::$app->user->isGuest)
  54. $id_etablissement = Yii::$app->user->identity->id_etablissement;
  55. $commandes = Commande::findBy([
  56. 'date' => $date,
  57. 'id_etablissement' => $id_etablissement,
  58. 'orderby' => 'commentaire_point_vente ASC, user.nom ASC'
  59. ]);
  60. foreach ($commandes as $c)
  61. $c->init();
  62. $production = Production::find()
  63. ->where('date LIKE \'' . $date . '\'')
  64. ->andWhere(['id_etablissement' => $id_etablissement])
  65. ->one();
  66. if ($production) {
  67. $produits_selec = ProductionProduit::findProduits($production->id);
  68. $points_vente = PointVente::find()
  69. ->where(['id_etablissement' => $id_etablissement])
  70. ->all();
  71. foreach ($points_vente as $pv)
  72. $pv->initCommandes($commandes);
  73. // produits
  74. $produits = Produit::find()
  75. ->where(['id_etablissement' => $id_etablissement])
  76. ->orderBy('order ASC')
  77. ->all();
  78. // get your HTML raw content without any layouts or scripts
  79. $content = $this->renderPartial('report', [
  80. 'production' => $production,
  81. 'produits_selec' => $produits_selec,
  82. 'points_vente' => $points_vente,
  83. 'date' => $date,
  84. 'produits' => $produits,
  85. 'commandes' => $commandes
  86. ]);
  87. $date_str = date('d/m/Y', strtotime($date));
  88. if ($save) {
  89. $destination = Pdf::DEST_FILE;
  90. } else {
  91. $destination = Pdf::DEST_BROWSER;
  92. }
  93. $pdf = new Pdf([
  94. // set to use core fonts only
  95. 'mode' => Pdf::MODE_UTF8,
  96. // A4 paper format
  97. 'format' => Pdf::FORMAT_A4,
  98. // portrait orientation
  99. 'orientation' => Pdf::ORIENT_PORTRAIT,
  100. // stream to browser inline
  101. 'destination' => $destination,
  102. 'filename' => Yii::getAlias('@app/web/pdf/Commandes-' . $date . '-' . $id_etablissement . '.pdf'),
  103. // your html content input
  104. 'content' => $content,
  105. // format content from your own css file if needed or use the
  106. // enhanced bootstrap css built by Krajee for mPDF formatting
  107. //'cssFile' => '@vendor/kartik-v/yii2-mpdf/assets/kv-mpdf-bootstrap.min.css',
  108. // any css to be embedded if required
  109. //'cssInline' => '.kv-heading-1{font-size:18px}',
  110. // set mPDF properties on the fly
  111. //'options' => ['title' => 'Krajee Report Title'],
  112. // call mPDF methods on the fly
  113. 'methods' => [
  114. 'SetHeader' => ['Commandes du ' . $date_str],
  115. 'SetFooter' => ['{PAGENO}'],
  116. ]
  117. ]);
  118. // return the pdf output as per the destination setting
  119. return $pdf->render();
  120. }
  121. }
  122. public function actionDeleteCommande($date, $id_commande) {
  123. $commande = Commande::find()
  124. ->with(['production', 'commandeProduits'])
  125. ->where(['id' => $id_commande])
  126. ->one();
  127. if ($commande) {
  128. $commande->init();
  129. // remboursement de la commande
  130. if ($commande->id_user && $commande->getMontantPaye() && Etablissement::getConfig('credit_pain')) {
  131. $commande->creditHistorique(
  132. CreditHistorique::TYPE_REMBOURSEMENT,
  133. $commande->getMontantPaye(),
  134. $commande->production->id_etablissement,
  135. $commande->id_user,
  136. Yii::$app->user->identity->id
  137. );
  138. }
  139. $commande->delete();
  140. CommandeProduit::deleteAll(['id_commande' => $id_commande]);
  141. }
  142. $this->redirect(['index', 'date' => $date]);
  143. }
  144. public function gestionFormCommandes($production, $date, $points_vente, $produits, $users) {
  145. if ($date != '') {
  146. // commandes
  147. $commandes = Commande::find()
  148. ->with('commandeProduits', 'user')
  149. ->joinWith('production')
  150. ->where(['production.date' => $date])
  151. ->andWhere(['production.id_etablissement' => Yii::$app->user->identity->id_etablissement])
  152. ->all();
  153. foreach ($commandes as $c)
  154. $c->init();
  155. foreach ($points_vente as $pv) {
  156. $pv->initCommandes($commandes);
  157. if (isset($_POST['submit_pv']) && $_POST['submit_pv']) {
  158. // modifs
  159. foreach ($pv->commandes as $c) {
  160. // suppression des commande_produit
  161. $commande_produits = CommandeProduit::find()->where(['id_commande' => $c->id])->all();
  162. foreach ($commande_produits as $cp)
  163. $cp->delete();
  164. // création des commande_produit modifiés
  165. foreach ($produits as $p) {
  166. $quantite = Yii::$app->getRequest()->post('produit_' . $c->id . '_' . $p->id, 0);
  167. if ($quantite) {
  168. $commande_produit = new CommandeProduit;
  169. $commande_produit->id_commande = $c->id;
  170. $commande_produit->id_produit = $p->id;
  171. $commande_produit->quantite = $quantite;
  172. $commande_produit->prix = $p->prix;
  173. $commande_produit->save();
  174. }
  175. }
  176. }
  177. // ajout
  178. //$id_client = Yii::$app->getRequest()->post('user_pv_'.$pv->id, 0) ;
  179. $username = Yii::$app->getRequest()->post('username_pv_' . $pv->id, 0);
  180. $date = Yii::$app->getRequest()->post('date_commande_pv_' . $pv->id, 0);
  181. $one_product = false;
  182. foreach ($produits as $p) {
  183. $quantite = Yii::$app->getRequest()->post('produit_pv_' . $pv->id . '_' . $p->id, 0);
  184. if ($quantite) {
  185. $one_product = true;
  186. }
  187. }
  188. if (strlen($username) && $date && $one_product) {
  189. $commande = new Commande;
  190. $commande->id_point_vente = $pv->id;
  191. $commande->id_production = $production->id;
  192. $commande->id_user = 0;
  193. $commande->username = $username;
  194. $tab_date = explode('/', $date);
  195. $commande->date = $tab_date[2] . '-' . $tab_date[1] . '-' . $tab_date[0] . ' 00:00:00';
  196. $commande->save();
  197. foreach ($produits as $p) {
  198. $quantite = Yii::$app->getRequest()->post('produit_pv_' . $pv->id . '_' . $p->id, 0);
  199. if ($quantite) {
  200. $commande_produit = new CommandeProduit;
  201. $commande_produit->id_commande = $commande->id;
  202. $commande_produit->id_produit = $p->id;
  203. $commande_produit->quantite = $quantite;
  204. $commande_produit->prix = $p->prix;
  205. $commande_produit->save();
  206. }
  207. }
  208. }
  209. }
  210. }
  211. }
  212. }
  213. public function actionIndex($date = '', $return_data = false) {
  214. if (!Produit::count() && !PointVente::count()) {
  215. $this->redirect(['site/index', 'erreur_produits_points_vente' => 1]);
  216. }
  217. $commandes = [];
  218. // users
  219. $arr_users = [0 => '--'];
  220. $users = User::find()->orderBy('prenom, nom ASC')->all();
  221. foreach ($users as $u) {
  222. $arr_users[$u->id] = $u->prenom . ' ' . $u->nom;
  223. }
  224. // création du jour de production
  225. $production = null;
  226. if ($date != '') {
  227. $production = Production::find()
  228. ->where(['date' => $date])
  229. ->andWhere(['id_etablissement' => Yii::$app->user->identity->id_etablissement])
  230. ->one();
  231. if (!$production) {
  232. $production = new Production;
  233. $production->date = $date;
  234. $production->livraison = 1;
  235. $production->id_etablissement = Yii::$app->user->identity->id_etablissement;
  236. $production->save();
  237. }
  238. }
  239. // production_point_vente à définir s'ils ne sont pas initialisés
  240. if ($production && $production->actif) {
  241. $count_productions_point_vente = ProductionPointVente::find()->
  242. where([
  243. 'id_production' => $production->id
  244. ])
  245. ->count();
  246. if (!$count_productions_point_vente) {
  247. ProductionPointVente::setAll($production->id, true);
  248. }
  249. }
  250. // points de vente
  251. if ($production) {
  252. $points_vente = PointVente::find()
  253. ->joinWith(['productionPointVente' => function($q) use ($production) {
  254. $q->where(['id_production' => $production->id]);
  255. }])
  256. ->where([
  257. 'id_etablissement' => Yii::$app->user->identity->id_etablissement,
  258. ])
  259. ->all();
  260. } else {
  261. $points_vente = PointVente::find()
  262. ->where(['id_etablissement' => Yii::$app->user->identity->id_etablissement,])
  263. ->all();
  264. }
  265. // produits
  266. $produits = Produit::getAll();
  267. // gestion des commandes
  268. $this->gestionFormCommandes($production, $date, $points_vente, $produits, $users);
  269. // commandes
  270. $commandes = Commande::findBy([
  271. 'date' => $date
  272. ]);
  273. $recettes = 0;
  274. $recettes_pain = 0;
  275. $recettes_vrac = 0;
  276. $recettes_pain_livre = 0;
  277. $poids_pain = 0;
  278. $poids_vrac = 0;
  279. foreach ($commandes as $c) {
  280. $c->init();
  281. $recettes += $c->montant;
  282. $recettes_pain += $c->montant_pain;
  283. $recettes_vrac += $c->montant_vrac;
  284. if ($c->id_point_vente != 1)
  285. $recettes_pain_livre += $c->montant_pain;
  286. $poids_pain += $c->poids_pain;
  287. $poids_vrac += $c->poids_vrac;
  288. }
  289. $recettes = number_format($recettes, 2);
  290. $recettes_pain = number_format($recettes_pain, 2);
  291. $recettes_vrac = number_format($recettes_vrac, 2);
  292. // init commandes point de vente
  293. foreach ($points_vente as $pv) {
  294. $pv->initCommandes($commandes);
  295. $data_select_commandes = [];
  296. $data_options_commandes = [];
  297. foreach ($pv->commandes as $c) {
  298. if ($c->user) {
  299. $data_select_commandes[$c->id] = $c->user->nom . ' ' . $c->user->prenom;
  300. } else {
  301. $data_select_commandes[$c->id] = $c->username;
  302. }
  303. $data_options_commandes[$c->id] = [];
  304. $array_options = [];
  305. $array_options[$c->id]['montant'] = $c->montant;
  306. $array_options[$c->id]['str_montant'] = number_format($c->montant, 2, ',', '') . ' €';
  307. $array_options[$c->id]['montant_paye'] = $c->montant_paye;
  308. $array_options[$c->id]['produits'] = [];
  309. $array_options[$c->id]['commentaire'] = Html::encode($c->commentaire);
  310. foreach ($c->commandeProduits as $cp) {
  311. $array_options[$c->id]['produits'][$cp->id_produit] = $cp->quantite;
  312. }
  313. $data_options_commandes[$c->id]['data-commande'] = json_encode($array_options[$c->id]);
  314. $data_options_commandes[$c->id]['value'] = $c->id;
  315. }
  316. $pv->data_select_commandes = $data_select_commandes;
  317. $pv->data_options_commandes = $data_options_commandes;
  318. }
  319. // gestion produits selec
  320. if (isset($_POST['valider_produit_selec'])) {
  321. if (isset($_POST['Produit'])) {
  322. foreach ($produits as $p) {
  323. $produit_production = ProductionProduit::find()->where(['id_production' => $production->id, 'id_produit' => $p->id])->one();
  324. if (!$produit_production) {
  325. $produit_production = new ProductionProduit();
  326. $produit_production->id_production = $production->id;
  327. $produit_production->id_produit = $p->id;
  328. $produit_production->actif = 0;
  329. if (isset($p->quantite_max))
  330. $produit_production->quantite_max = $p->quantite_max;
  331. else
  332. $produit_production->quantite_max = null;
  333. $produit_production->save();
  334. }
  335. if (isset($_POST['Produit'][$p->id]['actif'])) {
  336. $produit_production->actif = 1;
  337. } else {
  338. $produit_production->actif = 0;
  339. }
  340. if ((isset($_POST['Produit'][$p->id]['quantite_max']) && $_POST['Produit'][$p->id]['quantite_max'] != '')) {
  341. $produit_production->quantite_max = (int) $_POST['Produit'][$p->id]['quantite_max'];
  342. } else {
  343. $produit_production->quantite_max = null;
  344. }
  345. $produit_production->save();
  346. }
  347. }
  348. }
  349. // init produits sélectionnés pour cette production
  350. $produits_selec = [];
  351. if ($production) {
  352. $day_production = date('N', strtotime($production->date));
  353. $produits_production = ProductionProduit::find()->where(['id_production' => $production->id])->all();
  354. if (!count($produits_production)) {
  355. foreach ($produits as $p) {
  356. $pp = new ProductionProduit();
  357. $pp->id_production = $production->id;
  358. $pp->id_produit = $p->id;
  359. $pp->actif = 0;
  360. if ($p->actif && $day_production == 1 && $p->lundi)
  361. $pp->actif = 1;
  362. if ($p->actif && $day_production == 2 && $p->mardi)
  363. $pp->actif = 1;
  364. if ($p->actif && $day_production == 3 && $p->mercredi)
  365. $pp->actif = 1;
  366. if ($p->actif && $day_production == 4 && $p->jeudi)
  367. $pp->actif = 1;
  368. if ($p->actif && $day_production == 5 && $p->vendredi)
  369. $pp->actif = 1;
  370. if ($p->actif && $day_production == 6 && $p->samedi)
  371. $pp->actif = 1;
  372. if ($p->actif && $day_production == 7 && $p->dimanche)
  373. $pp->actif = 1;
  374. $pp->quantite_max = $p->quantite_max;
  375. $pp->save();
  376. }
  377. }
  378. // produits selec pour production
  379. $produits_selec = ProductionProduit::findProduits($production->id);
  380. }
  381. // produit en vrac forcément activé
  382. if ($date != '') {
  383. foreach ($produits as $p) {
  384. $produit_production = ProductionProduit::find()->where(['id_production' => $production->id, 'id_produit' => $p->id])->one();
  385. if ($p->vrac) {
  386. if (!$produit_production) {
  387. $produit_production = new ProductionProduit();
  388. $produit_production->id_production = $production->id;
  389. $produit_production->id_produit = $p->id;
  390. $produit_production->quantite_max = 0;
  391. $produit_production->actif = 1;
  392. $produit_production->save();
  393. } else {
  394. $produit_production->actif = 1;
  395. $produit_production->save();
  396. }
  397. }
  398. }
  399. }
  400. // produits
  401. if ($production)
  402. $produits = Produit::getByProduction($production->id);
  403. // poids total de la production et CA potentiel
  404. $ca_potentiel = 0;
  405. $poids_total = 0;
  406. foreach ($produits_selec as $id_produit_selec => $produit_selec) {
  407. if ($produit_selec['actif']) {
  408. foreach ($produits as $produit) {
  409. if ($produit->id == $id_produit_selec) {
  410. //echo $produit->nom.' : '.$produit_selec['quantite_max'].'<br />' ;
  411. $ca_potentiel += $produit_selec['quantite_max'] * $produit->prix;
  412. $poids_total += $produit_selec['quantite_max'] * $produit->poids / 1000;
  413. }
  414. }
  415. }
  416. }
  417. // jours de production
  418. $jours_production = Production::find()
  419. ->where([
  420. 'actif' => 1,
  421. 'id_etablissement' => Yii::$app->user->identity->id_etablissement
  422. ])
  423. ->all();
  424. // commandes auto
  425. $model_commande_auto = new CommandeAutoForm;
  426. // productions point vente
  427. $production_point_vente = new ProductionPointVente;
  428. $productions_point_vente = [];
  429. if ($production) {
  430. $productions_point_vente = ProductionPointVente::find()
  431. ->with('pointVente')
  432. ->where(['id_production' => $production->id])
  433. ->all();
  434. }
  435. $arr_productions_point_vente = [];
  436. foreach ($productions_point_vente as $ppv) {
  437. $key = $ppv->id_production . '-' . $ppv->id_point_vente;
  438. if ($ppv->livraison == 1)
  439. $production_point_vente->productions_point_vente[] = $key;
  440. $arr_productions_point_vente[$key] = Html::encode($ppv->pointVente->nom);
  441. }
  442. $datas = [
  443. 'produits' => $produits,
  444. 'points_vente' => $points_vente,
  445. 'commandes' => $commandes,
  446. 'date' => $date,
  447. 'production' => $production,
  448. 'jours_production' => $jours_production,
  449. 'produits_selec' => $produits_selec,
  450. 'users' => $arr_users,
  451. 'recettes' => $recettes,
  452. 'recettes_pain' => $recettes_pain,
  453. 'recettes_vrac' => $recettes_vrac,
  454. 'recettes_pain_livre' => $recettes_pain_livre,
  455. 'poids_pain' => $poids_pain,
  456. 'poids_vrac' => $poids_vrac,
  457. 'ca_potentiel' => $ca_potentiel,
  458. 'poids_total' => $poids_total,
  459. 'model_commande_auto' => $model_commande_auto,
  460. 'production_point_vente' => $production_point_vente,
  461. 'productions_point_vente' => $productions_point_vente,
  462. 'arr_productions_point_vente' => $arr_productions_point_vente
  463. ];
  464. if ($return_data) {
  465. return $datas;
  466. } else {
  467. return $this->render('index', $datas);
  468. }
  469. }
  470. public function actionDownload($date = '', $id_point_vente = 0, $global = 0) {
  471. // commandes
  472. $commandes = Commande::find()
  473. ->with('commandeProduits', 'user')
  474. ->joinWith('production')
  475. ->where(['production.date' => $date])
  476. ->orderBy('date ASC')
  477. ->all();
  478. foreach ($commandes as $c)
  479. $c->init();
  480. // points de vente
  481. $points_vente = PointVente::find()->all();
  482. foreach ($points_vente as $pv)
  483. $pv->initCommandes($commandes);
  484. // produits
  485. $produits = Produit::find()->orderBy('order ASC')->all();
  486. $production = Production::find()->where('date LIKE \'' . $date . '\'')->one();
  487. $produits_selec = ProductionProduit::findProduits($production->id);
  488. /*
  489. * export global
  490. */
  491. if ($global) {
  492. $data = [];
  493. $filename = 'export_' . $date . '_global';
  494. $num_jour_semaine = date('w', strtotime($date));
  495. $arr_jour_semaine = [0 => 'dimanche', 1 => 'lundi', 2 => 'mardi', 3 => 'mercredi', 4 => 'jeudi', 5 => 'vendredi', 6 => 'samedi'];
  496. $champs_horaires_point_vente = 'horaires_' . $arr_jour_semaine[$num_jour_semaine];
  497. // par point de vente
  498. foreach ($points_vente as $pv) {
  499. if (count($pv->commandes) && strlen($pv->$champs_horaires_point_vente)) {
  500. $line = [$pv->nom, 'Produits', 'Montant', 'Commentaire'];
  501. $data[] = $line;
  502. $res = $this->contentPointVenteCSV($date, $produits, $points_vente, $pv->id);
  503. foreach ($res['data'] as $line) {
  504. $data[] = $line;
  505. }
  506. }
  507. if (count($pv->commandes) && strlen($pv->$champs_horaires_point_vente)) {
  508. $line = ['Total pain'];
  509. $str_produits = '';
  510. foreach ($produits as $p) {
  511. if (!$p->vrac && isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  512. $quantite = Commande::getQuantiteProduit($p->id, $pv->commandes);
  513. $str_quantite = '';
  514. if ($quantite) {
  515. $str_quantite = $quantite;
  516. $str_produits .= $str_quantite . $p->diminutif . ', ';
  517. }
  518. }
  519. }
  520. $line[] = substr($str_produits, 0, strlen($str_produits) - 2);
  521. $line[] = number_format($pv->recettes_pain, 2) . ' €';
  522. $data[] = $line;
  523. $line = ['Total vrac'];
  524. $str_produits = '';
  525. foreach ($produits as $p) {
  526. if ($p->vrac && isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  527. $quantite = Commande::getQuantiteProduit($p->id, $pv->commandes);
  528. $str_quantite = '';
  529. if ($quantite) {
  530. $str_quantite = $quantite;
  531. $str_produits .= $str_quantite . $p->diminutif . ', ';
  532. }
  533. }
  534. }
  535. $line[] = substr($str_produits, 0, strlen($str_produits) - 2);
  536. $line[] = number_format($pv->recettes_vrac, 2) . ' €';
  537. $data[] = $line;
  538. $data[] = [];
  539. }
  540. }
  541. // récap
  542. //$line = ['Totaux'] ;
  543. // pain
  544. $line = ['Total pain'];
  545. $str_produits = '';
  546. foreach ($produits as $p) {
  547. if (!$p->vrac && isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  548. $quantite = Commande::getQuantiteProduit($p->id, $commandes);
  549. $str_quantite = '';
  550. if ($quantite) {
  551. $str_quantite = $quantite;
  552. $str_produits .= $str_quantite . '' . $p->diminutif . ', ';
  553. }
  554. }
  555. }
  556. $line[] = substr($str_produits, 0, strlen($str_produits) - 2);
  557. $data[] = $line;
  558. // vrac
  559. $line = ['Total vrac'];
  560. $str_produits = '';
  561. foreach ($produits as $p) {
  562. if ($p->vrac && isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  563. $quantite = Commande::getQuantiteProduit($p->id, $commandes);
  564. $str_quantite = '';
  565. if ($quantite) {
  566. $str_quantite = $quantite;
  567. $str_produits .= $str_quantite . '' . $p->diminutif . ', ';
  568. }
  569. }
  570. }
  571. $line[] = substr($str_produits, 0, strlen($str_produits) - 2);
  572. $data[] = $line;
  573. $infos = $this->actionIndex($date, true);
  574. CSV::downloadSendHeaders($filename . '.csv');
  575. echo CSV::array2csv($data);
  576. die();
  577. }
  578. /*
  579. * export individuel
  580. */ else {
  581. if ($commandes && count($commandes)) {
  582. $data = [];
  583. // par point de vente
  584. if ($id_point_vente) {
  585. $res = $this->contentPointVenteCSV($date, $produits, $points_vente, $id_point_vente);
  586. $data = $res['data'];
  587. $filename = $res['filename'];
  588. }
  589. // récapitulatif
  590. else {
  591. $res = $this->contentRecapCSV($date, $produits, $points_vente, $commandes);
  592. $filename = 'recapitulatif_' . $date;
  593. $data = $res['data'];
  594. }
  595. CSV::downloadSendHeaders($filename . '.csv');
  596. echo CSV::array2csv($data);
  597. die();
  598. }
  599. }
  600. }
  601. public function contentRecapCSV($date, $produits, $points_vente, $commandes) {
  602. $data = [];
  603. $filename = 'recapitulatif_' . $date;
  604. $production = Production::find()->where('date LIKE \'' . $date . '\'')->one();
  605. $produits_selec = ProductionProduit::findProduits($production->id);
  606. // head
  607. $data[0] = ['Lieu'];
  608. foreach ($produits as $p) {
  609. if (isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  610. $data[0][] = $p->description;
  611. }
  612. }
  613. $num_jour_semaine = date('w', strtotime($date));
  614. $arr_jour_semaine = [0 => 'dimanche', 1 => 'lundi', 2 => 'mardi', 3 => 'mercredi', 4 => 'jeudi', 5 => 'vendredi', 6 => 'samedi'];
  615. $champs_horaires_point_vente = 'horaires_' . $arr_jour_semaine[$num_jour_semaine];
  616. // datas
  617. foreach ($points_vente as $pv) {
  618. if (count($pv->commandes) && strlen($pv->$champs_horaires_point_vente)) {
  619. $data_add = [$pv->nom];
  620. foreach ($produits as $p) {
  621. if (isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  622. $data_add[] = Commande::getQuantiteProduit($p->id, $pv->commandes);
  623. }
  624. }
  625. $data[] = $data_add;
  626. }
  627. }
  628. $data_add = ['Total'];
  629. foreach ($produits as $p) {
  630. if (isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  631. $data_add[] = Commande::getQuantiteProduit($p->id, $commandes);
  632. }
  633. }
  634. $data[] = $data_add;
  635. return [
  636. 'data' => $data,
  637. 'filename' => $filename
  638. ];
  639. }
  640. public function contentPointVenteCSV($date, $produits, $points_vente, $id_point_vente) {
  641. $data = [];
  642. $production = Production::find()->where('date LIKE \'' . $date . '\'')->one();
  643. $produits_selec = ProductionProduit::findProduits($production->id);
  644. // head
  645. /* $data[0] = ['Client', 'Date commande'] ;
  646. foreach($produits as $p) {
  647. if(isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  648. $data[0][] = $p->description ;
  649. }
  650. } */
  651. // datas
  652. foreach ($points_vente as $pv) {
  653. if ($pv->id == $id_point_vente) {
  654. $filename = 'export_' . $date . '_' . strtolower(str_replace(' ', '-', $pv->nom));
  655. foreach ($pv->commandes as $c) {
  656. $str_user = '';
  657. // username
  658. if ($c->user) {
  659. $str_user = $c->user->prenom . " " . $c->user->nom; //.' - '.date('d/m', strtotime($c->date)) ;
  660. } else {
  661. $str_user = $c->username; //.' - '.date('d/m', strtotime($c->date)) ;
  662. }
  663. // téléphone
  664. if (isset($c->user) && strlen($c->user->telephone)) {
  665. $str_user .= ' (' . $c->user->telephone . ')';
  666. }
  667. $data_add = [$str_user];
  668. // produits
  669. $str_produits = '';
  670. foreach ($produits as $p) {
  671. if (isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  672. $add = false;
  673. foreach ($c->commandeProduits as $cp) {
  674. if ($p->id == $cp->id_produit) {
  675. $str_produits .= $cp->quantite . '' . $p->diminutif . ', ';
  676. $add = true;
  677. }
  678. }
  679. }
  680. }
  681. $data_add[] = substr($str_produits, 0, strlen($str_produits) - 2);
  682. $data_add[] = number_format($c->montant, 2) . ' €';
  683. $data_add[] = $c->commentaire;
  684. $data[] = $data_add;
  685. }
  686. }
  687. }
  688. return [
  689. 'data' => $data,
  690. 'filename' => $filename
  691. ];
  692. }
  693. public function actionAddCommandesAuto($date) {
  694. CommandeAuto::addAll($date, true);
  695. $this->redirect(['index', 'date' => $date]);
  696. }
  697. public function actionChangeState($date, $actif) {
  698. // changement état
  699. $production = Production::find()->where(['date' => $date, 'id_etablissement' => Yii::$app->user->identity->id_etablissement])->one();
  700. $production->actif = $actif;
  701. $production->save();
  702. if ($actif) {
  703. // add commandes automatiques
  704. CommandeAuto::addAll($date);
  705. }
  706. $this->redirect(['index', 'date' => $date]);
  707. }
  708. public function actionChangeLivraison($date, $livraison) {
  709. $production = Production::find()->where(['date' => $date])->one();
  710. $production->livraison = $livraison;
  711. $production->save();
  712. $this->redirect(['index', 'date' => $date]);
  713. }
  714. public function actionAjaxUpdate($id_commande, $produits, $date, $commentaire) {
  715. $commande = Commande::find()->with('production', 'creditHistorique', 'user')->where(['id' => $id_commande])->one();
  716. if ($commande &&
  717. $commande->production->id_etablissement == Yii::$app->user->identity->id_etablissement) {
  718. $commande->init();
  719. $produits = json_decode($produits);
  720. foreach ($produits as $key => $quantite) {
  721. $commande_produit = CommandeProduit::findOne([
  722. 'id_commande' => $id_commande,
  723. 'id_produit' => $key
  724. ]);
  725. if ($quantite) {
  726. if ($commande_produit) {
  727. $commande_produit->quantite = $quantite;
  728. } else {
  729. $produit = Produit::findOne($key);
  730. if ($produit) {
  731. $commande_produit = new CommandeProduit;
  732. $commande_produit->id_commande = $id_commande;
  733. $commande_produit->id_produit = $key;
  734. $commande_produit->quantite = $quantite;
  735. $commande_produit->prix = $produit->prix;
  736. }
  737. }
  738. $commande_produit->save();
  739. } else {
  740. if ($commande_produit)
  741. $commande_produit->delete();
  742. }
  743. }
  744. $commande->date_update = date('Y-m-d H:i:s');
  745. $commande->commentaire = $commentaire;
  746. $commande->save();
  747. // data commande
  748. $json_commande = $commande->getDataJson();
  749. // total point de vente
  750. $point_vente = PointVente::findOne($commande->id_point_vente);
  751. $commandes = Commande::find()
  752. ->with('commandeProduits', 'user')
  753. ->joinWith('production')
  754. ->where(['production.date' => $date])
  755. ->andWhere(['production.id_etablissement' => Yii::$app->user->identity->id_etablissement])
  756. ->orderBy('date ASC')
  757. ->all();
  758. foreach ($commandes as $c)
  759. $c->init();
  760. $point_vente->initCommandes($commandes);
  761. echo json_encode([
  762. 'total_pv' => number_format($point_vente->recettes, 2) . ' €',
  763. 'json_commande' => $json_commande
  764. ]);
  765. die();
  766. }
  767. }
  768. public function actionAjaxDelete($date, $id_commande) {
  769. $commande = Commande::find()
  770. ->with(['production', 'commandeProduits'])
  771. ->where(['id' => $id_commande])
  772. ->one();
  773. $commande->init() ;
  774. // delete
  775. if ($commande) {
  776. // remboursement si l'utilisateur a payé pour cette commande
  777. $montant_paye = $commande->getMontantPaye();
  778. if ($montant_paye > 0.01) {
  779. $commande->creditHistorique(
  780. CreditHistorique::TYPE_REMBOURSEMENT,
  781. $montant_paye,
  782. Yii::$app->user->identity->id_etablissement,
  783. $commande->id_user,
  784. Yii::$app->user->identity->id
  785. );
  786. }
  787. $commande->delete();
  788. CommandeProduit::deleteAll(['id_commande' => $id_commande]);
  789. }
  790. // total point de vente
  791. $point_vente = PointVente::findOne($commande->id_point_vente);
  792. $commandes = Commande::find()
  793. ->with('commandeProduits', 'user')
  794. ->joinWith('production')
  795. ->where(['production.date' => $date])
  796. ->andWhere(['production.id_etablissement' => Yii::$app->user->identity->id_etablissement])
  797. ->orderBy('date ASC')
  798. ->all();
  799. foreach ($commandes as $c)
  800. $c->init();
  801. $point_vente->initCommandes($commandes);
  802. echo json_encode([
  803. 'total_pv' => number_format($point_vente->recettes, 2) . ' €',
  804. ]);
  805. die();
  806. }
  807. public function actionAjaxCreate($date, $id_pv, $id_user, $username, $produits, $commentaire) {
  808. $produits = json_decode($produits);
  809. $point_vente = PointVente::findOne($id_pv);
  810. $production = Production::findOne([
  811. 'date' => $date,
  812. 'id_etablissement' => Yii::$app->user->identity->id_etablissement
  813. ]);
  814. if (preg_match("/^[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])$/", $date) &&
  815. ($id_user || strlen($username)) &&
  816. $point_vente &&
  817. count($produits) &&
  818. $production) {
  819. $commande = new Commande;
  820. $commande->date = date('Y-m-d H:i:s', strtotime($date . ' ' . date('H:i:s')));
  821. $commande->id_point_vente = $id_pv;
  822. $commande->id_production = $production->id;
  823. $commande->type = Commande::TYPE_ADMIN;
  824. $commande->commentaire = $commentaire;
  825. if ($id_user) {
  826. $commande->id_user = $id_user;
  827. // commentaire du point de vente
  828. $point_vente_user = PointVenteUser::find()
  829. ->where(['id_point_vente' => $id_pv, 'id_user' => $id_user])
  830. ->one();
  831. if ($point_vente_user && strlen($point_vente_user->commentaire)) {
  832. $commande->commentaire_point_vente = $point_vente_user->commentaire;
  833. }
  834. } else {
  835. $commande->username = $username;
  836. $commande->id_user = 0;
  837. }
  838. $commande->save();
  839. foreach ($produits as $key => $quantite) {
  840. $produit = Produit::findOne($key);
  841. if ($produit) {
  842. $commande_produit = new CommandeProduit;
  843. $commande_produit->id_commande = $commande->id;
  844. $commande_produit->id_produit = $key;
  845. $commande_produit->quantite = $quantite;
  846. $commande_produit->prix = $produit->prix;
  847. $commande_produit->save();
  848. }
  849. }
  850. // total point de vente
  851. $point_vente = PointVente::findOne($commande->id_point_vente);
  852. $commandes = Commande::find()
  853. ->with('commandeProduits', 'user')
  854. ->joinWith('production')
  855. ->where(['production.date' => $date])
  856. ->andWhere(['production.id_etablissement' => Yii::$app->user->identity->id_etablissement])
  857. ->orderBy('date ASC')
  858. ->all();
  859. foreach ($commandes as $c)
  860. $c->init();
  861. $point_vente->initCommandes($commandes);
  862. // json commande
  863. $commande = Commande::find()
  864. ->with('commandeProduits', 'user')
  865. ->where(['commande.id' => $commande->id])
  866. ->one();
  867. $commande->init();
  868. $produits = [];
  869. foreach ($commande->commandeProduits as $cp) {
  870. $produits[$cp->id_produit] = $cp->quantite;
  871. }
  872. $json_commande = json_encode(['montant' => number_format($commande->montant, 2), 'produits' => $produits]);
  873. $json_commande = $commande->getDataJson();
  874. $str_user = '';
  875. if ($commande->user)
  876. $str_user = $commande->user->nom . ' ' . $commande->user->prenom;
  877. else
  878. $str_user = $commande->username;
  879. $str_commentaire = '';
  880. if (strlen($commande->commentaire)) {
  881. $str_commentaire = ' <span class="glyphicon glyphicon-comment"></span>';
  882. }
  883. $str_label_type_commande = '';
  884. if ($commande->type) {
  885. $str_label_type_commande = ' <span class="label label-warning">vous</span>';
  886. }
  887. echo json_encode([
  888. 'id_commande' => $commande->id,
  889. 'total_pv' => number_format($point_vente->recettes, 2) . ' €',
  890. 'commande' => '<li>'
  891. . '<a class="btn btn-default" href="javascript:void(0);" '
  892. . 'data-pv-id="' . $id_pv . '" '
  893. . 'data-id-commande="' . $commande->id . '" '
  894. . 'data-commande=\'' . $json_commande . '\' '
  895. . 'data-date="' . date('d/m H:i', strtotime($commande->date)) . '">'
  896. . '<span class="montant">' . number_format($commande->montant, 2) . ' €</span>'
  897. . '<span class="user">' . $str_label_type_commande . ' ' . $str_user . '</span>'
  898. . $str_commentaire
  899. . '</a></li>',
  900. ]);
  901. die();
  902. }
  903. }
  904. public function actionAjaxTotalCommandes($date) {
  905. $production = Production::find()
  906. ->where(['date' => $date])
  907. ->andWhere(['id_etablissement' => Yii::$app->user->identity->id_etablissement])
  908. ->one();
  909. if ($production) {
  910. // produits
  911. $produits = Produit::find()
  912. ->where(['id_etablissement' => Yii::$app->user->identity->id_etablissement])
  913. ->orderBy('order ASC')
  914. ->all();
  915. // commandes
  916. $commandes = Commande::find()
  917. ->with('commandeProduits', 'user')
  918. ->joinWith('production')
  919. ->where(['production.date' => $date])
  920. ->andWhere(['production.id_etablissement' => Yii::$app->user->identity->id_etablissement])
  921. ->orderBy('date ASC')
  922. ->all();
  923. $recettes = 0;
  924. $poids_pain = 0;
  925. foreach ($commandes as $c) {
  926. $c->init();
  927. $recettes += $c->montant;
  928. $poids_pain += $c->poids_pain;
  929. }
  930. // produits selec pour production
  931. $produits_selec = ProductionProduit::findProduits($production->id);
  932. $ca_potentiel = 0;
  933. $poids_total = 0;
  934. foreach ($produits_selec as $id_produit_selec => $produit_selec) {
  935. if ($produit_selec['actif']) {
  936. foreach ($produits as $produit) {
  937. if ($produit->id == $id_produit_selec) {
  938. $ca_potentiel += $produit_selec['quantite_max'] * $produit->prix;
  939. $poids_total += $produit_selec['quantite_max'] * $produit->poids / 1000;
  940. }
  941. }
  942. }
  943. }
  944. $html_totaux = $this->renderPartial('_total_commandes.php', [
  945. 'produits' => $produits,
  946. 'commandes' => $commandes,
  947. 'produits_selec' => $produits_selec,
  948. 'recettes_pain' => $recettes,
  949. 'poids_total' => $poids_total,
  950. 'ca_potentiel' => $ca_potentiel,
  951. 'poids_pain' => $poids_pain,
  952. ]);
  953. echo json_encode([
  954. 'html_totaux' => $html_totaux,
  955. ]);
  956. }
  957. die();
  958. }
  959. public function actionAjaxPointVenteLivraison($id_production, $id_point_vente, $bool_livraison) {
  960. $production_point_vente = ProductionPointVente::find()
  961. ->where([
  962. 'id_production' => $id_production,
  963. 'id_point_vente' => $id_point_vente,
  964. ])
  965. ->one();
  966. if ($production_point_vente) {
  967. $production_point_vente->livraison = $bool_livraison;
  968. $production_point_vente->save();
  969. }
  970. die();
  971. }
  972. public function actionStatutPaiement($id_commande) {
  973. $commande = Commande::find()
  974. ->with('commandeProduits', 'production')
  975. ->where(['id' => $id_commande])
  976. ->one();
  977. if ($commande) {
  978. $commande->init();
  979. $html = '';
  980. if ($commande->id_user) {
  981. $user_etablissement = UserEtablissement::find()
  982. ->where([
  983. 'id_user' => $commande->id_user,
  984. 'id_etablissement' => $commande->production->id_etablissement
  985. ])
  986. ->one();
  987. $montant_paye = $commande->getMontantPaye();
  988. //$html .= $commande->montant.' | '.$montant_paye ;
  989. if (abs($commande->montant - $montant_paye) < 0.0001) {
  990. $html .= '<span class="label label-success">Payé</span>';
  991. $buttons_credit = Html::a('Rembourser ' . $commande->getMontantFormat(), 'javascript:void(0);', ['class' => 'btn btn-default btn-xs rembourser', 'data-montant' => $commande->montant, 'data-type' => 'remboursement']);
  992. } elseif ($commande->montant > $montant_paye) {
  993. $montant_payer = $commande->montant - $montant_paye;
  994. $html .= '<span class="label label-danger">Non payé</span> reste <strong>' . number_format($montant_payer, 2) . ' €</strong> à payer';
  995. $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']);
  996. } elseif ($commande->montant < $montant_paye) {
  997. $montant_rembourser = $montant_paye - $commande->montant;
  998. $html .= ' <span class="label label-success">Payé</span> <strong>' . number_format($montant_rembourser, 2) . ' €</strong> à rembourser';
  999. $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']);
  1000. }
  1001. $html .= '<span class="buttons-credit">'
  1002. . 'Crédit pain : <strong>' . number_format($user_etablissement->credit, 2) . ' €</strong><br />'
  1003. . $buttons_credit
  1004. . '</span>';
  1005. // historique
  1006. $historique = CreditHistorique::find()
  1007. ->with('userAction')
  1008. ->where(['id_commande' => $id_commande])
  1009. ->all();
  1010. $html .= '<br /><br /><strong>Historique</strong><br /><table class="table table-condensed table-bordered">'
  1011. . '<thead><tr><th>Date</th><th>Utilisateur</th><th>Action</th><th>- Débit</th><th>+ Crédit</th></tr></thead>'
  1012. . '<tbody>';
  1013. if ($historique && is_array($historique) && count($historique)) {
  1014. foreach ($historique as $h) {
  1015. $html .= '<tr>'
  1016. . '<td>' . date('d/m/Y H:i:s', strtotime($h->date)) . '</td>'
  1017. . '<td>' . Html::encode($h->userAction->nom . ' ' . $h->userAction->prenom) . '</td>'
  1018. . '<td>' . $h->getStrLibelle() . '</td>'
  1019. . '<td>' . ($h->isTypeDebit() ? '- '.$h->getMontant(true) : '') . '</td>'
  1020. . '<td>' . ($h->isTypeCredit() ? '+ '.$h->getMontant(true) : '') . '</td>'
  1021. . '</tr>';
  1022. }
  1023. } else {
  1024. $html .= '<tr><td colspan="4">Aucun résultat</td></tr>';
  1025. }
  1026. $html .= '</tbody></table>';
  1027. } else {
  1028. $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>';
  1029. }
  1030. echo json_encode([
  1031. 'html_statut_paiement' => $html,
  1032. 'json_commande' => $commande->getDataJson()
  1033. ]);
  1034. }
  1035. die();
  1036. }
  1037. public function actionPaiement($id_commande, $type, $montant) {
  1038. $commande = Commande::find()
  1039. ->with('commandeProduits', 'production')
  1040. ->where(['id' => $id_commande])
  1041. ->one();
  1042. $commande->init() ;
  1043. if ($commande) {
  1044. $commande->creditHistorique(
  1045. $type,
  1046. $montant,
  1047. Yii::$app->user->identity->id_etablissement,
  1048. $commande->id_user,
  1049. Yii::$app->user->identity->id
  1050. );
  1051. }
  1052. return $this->actionStatutPaiement($id_commande);
  1053. }
  1054. }