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.

654 lines
24KB

  1. /* French initialisation for the jQuery UI date picker plugin. */
  2. /* Written by Keith Wood (kbwood{at}iinet.com.au),
  3. Stéphane Nahmani (sholby@sholby.net),
  4. Stéphane Raimbault <stephane.raimbault@gmail.com> */
  5. (function( factory ) {
  6. if ( typeof define === "function" && define.amd ) {
  7. // AMD. Register as an anonymous module.
  8. define([ "../jquery.ui.datepicker" ], factory );
  9. } else {
  10. // Browser globals
  11. factory( jQuery.datepicker );
  12. }
  13. }(function( datepicker ) {
  14. datepicker.regional['fr'] = {
  15. closeText: 'Fermer',
  16. prevText: 'Précédent',
  17. nextText: 'Suivant',
  18. currentText: 'Aujourd\'hui',
  19. monthNames: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin',
  20. 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'],
  21. monthNamesShort: ['janv.', 'févr.', 'mars', 'avril', 'mai', 'juin',
  22. 'juil.', 'août', 'sept.', 'oct.', 'nov.', 'déc.'],
  23. dayNames: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi'],
  24. dayNamesShort: ['dim.', 'lun.', 'mar.', 'mer.', 'jeu.', 'ven.', 'sam.'],
  25. dayNamesMin: ['D','L','M','M','J','V','S'],
  26. weekHeader: 'Sem.',
  27. dateFormat: 'dd/mm/yy',
  28. firstDay: 1,
  29. isRTL: false,
  30. showMonthAfterYear: false,
  31. yearSuffix: ''};
  32. datepicker.setDefaults(datepicker.regional['fr']);
  33. return datepicker.regional['fr'];
  34. }));
  35. $(document).ready(function() {
  36. //chat_scroll() ;
  37. chat_tabs_gamme_saison() ;
  38. //chat_slideshow() ;
  39. $('[data-toggle="tooltip"]').tooltip() ;
  40. chat_systeme_commande() ;
  41. chat_profil_user() ;
  42. }) ;
  43. function chat_profil_user() {
  44. if($('#profil-user').size()) {
  45. if($('#user-no_mail').is(':checked')) {
  46. $('#mails-jours-prod').hide() ;
  47. }
  48. $('#user-no_mail').change(function() {
  49. if($('#user-no_mail').is(':checked')) {
  50. $('#mails-jours-prod').hide() ;
  51. }
  52. else {
  53. $('#mails-jours-prod').fadeIn() ;
  54. }
  55. }) ;
  56. }
  57. }
  58. function chat_event_click_point_vente(id, force) {
  59. if($('.point-vente-'+id).data('code') == 1) {
  60. $('#modal-code #id-point-vente').val(id) ;
  61. $('#modal-code').modal('show') ;
  62. }
  63. else {
  64. $('#commande-id_point_vente').val(id) ;
  65. $('#points-vente .point-vente').removeClass('selected') ;
  66. $('.point-vente-'+id).addClass('selected') ;
  67. $('.point-vente-'+id).hide().fadeIn('fast') ;
  68. var pain = parseInt($('.point-vente-'+id).data('pain')) ;
  69. var vrac = parseInt($('.point-vente-'+id).data('vrac')) ;
  70. if(pain) {
  71. $('#pain .table').show() ;
  72. $('#pain .indisponible').hide() ;
  73. }
  74. else {
  75. $('#pain .table').hide() ;
  76. $('#pain .indisponible').show() ;
  77. }
  78. if(vrac) {
  79. $('#vrac .table').show() ;
  80. $('#vrac .indisponible').hide() ;
  81. }
  82. else {
  83. $('#vrac .table').hide() ;
  84. $('#vrac .indisponible').show() ;
  85. }
  86. $('#produits, .valider-commande, .btn-commentaire, #bar-fixed').fadeIn() ;
  87. // credit pain
  88. chat_systeme_commande_credit_pain_event(chat_systeme_commande_maj_table_prix()) ;
  89. // scroll
  90. if(!force)
  91. boulange_scroll('step-choix-produits') ;
  92. }
  93. }
  94. function chat_init_horaire_point_vente(date) {
  95. $('#points-vente .horaires .jour').hide() ;
  96. var selector_jour = '#points-vente .horaires .jour-'+date.getDay() ;
  97. $(selector_jour).show() ;
  98. // on cache les points de vente si la livraison n'est pas cochée
  99. /*$('#points-vente .point-vente').show() ;
  100. if($('#livraison').val() == 0) {
  101. $('#points-vente .point-vente').hide() ;
  102. $('#points-vente .point-vente').each(function() {
  103. if($(this).find('.nom').html() == 'Le Chat des Noisettes') {
  104. $(this).show() ;
  105. }
  106. }) ;
  107. }*/
  108. // on cache les points de vente qui sont fermés
  109. //$('#points-vente .point-vente').removeClass('disabled') ;
  110. /*$(selector_jour).each(function() {
  111. if($(this).html() == 'Fermé') {
  112. //$(this).parent().parent().parent().addClass('disabled') ;
  113. $(this).parent().parent().parent().hide() ;
  114. }
  115. }) ;*/
  116. }
  117. function chat_base_url() {
  118. return $('meta[name=base-url]').attr('content')+'/' ;
  119. }
  120. function chat_systeme_commande() {
  121. if($('.commande-form').size()) {
  122. // scroll initial
  123. if($('.boulangerie.selected').size())
  124. {
  125. boulange_scroll('step-choix-date') ;
  126. }
  127. // affichage des différentes parties du formulaire
  128. if(!$('#commande-id_production').val()) {
  129. $('#depots, #points-vente, #produits, .valider-commande, #info-horaire-retrait-commande, .btn-commentaire, #bar-fixed').hide() ;
  130. }
  131. else if(!$('#commande-id_point_vente').val()) {
  132. $('#produits, .valider-commande, .btn-commentaire, #bar-fixed').hide() ;
  133. }
  134. // points de vente
  135. if($('#commande-id_point_vente').val())
  136. chat_event_click_point_vente($('#commande-id_point_vente').val(), true) ;
  137. $('#modal-code form').submit(function() {
  138. var id_pv = $('#modal-code #id-point-vente').val() ;
  139. var code = $('#modal-code #code').val() ;
  140. $.get(chat_base_url()+'commande/verif-code-point-vente',{
  141. id_point_vente: id_pv,
  142. code: code
  143. }, function(ok) {
  144. if(ok) {
  145. $('.point-vente-'+id_pv).data('code',0) ;
  146. $('.point-vente-'+id_pv+' .glyphicon').remove() ;
  147. $('input[name="code_point_vente_'+id_pv+'"]').val(code) ;
  148. $('#modal-code').modal('hide') ;
  149. chat_event_click_point_vente($('#modal-code #id-point-vente').val()) ;
  150. }
  151. else {
  152. $('#modal-code .field-code').addClass('has-error') ;
  153. $('#modal-code .help-block-error').hide().fadeIn() ;
  154. }
  155. }) ;
  156. return false ;
  157. }) ;
  158. $('#points-vente .point-vente').click(function() {
  159. var id = parseInt($(this).find('.id').html()) ;
  160. chat_event_click_point_vente(id) ;
  161. }) ;
  162. // datepicker
  163. var dates_production = [] ;
  164. $('#dates div').each(function() {
  165. dates_production.push($(this).find('.date').html()) ;
  166. }) ;
  167. //var var_datepicker = $.datepicker ;
  168. $('#datepicker-production').datepicker({
  169. beforeShowDay: function(date){
  170. var string = $.datepicker.formatDate('dd/mm/yy', date);
  171. for(var i=0; i<dates_production.length; i++) {
  172. //alert(dates_production[i]+' '+string) ;
  173. if(dates_production[i] == string)
  174. return [1] ;
  175. }
  176. return [0] ;
  177. // désactivé car internet explorer plante
  178. //return [ dates_production.indexOf(string) != -1 ] ;
  179. },
  180. onSelect: function(selectedDate) {
  181. // on remet tout les prix à zéro
  182. chat_systeme_commande_reset_table_prix() ;
  183. $('#has-commande-en-cours').hide() ;
  184. var tab_date = selectedDate.split('/') ;
  185. var date = new Date(tab_date[2],tab_date[1]-1,tab_date[0]) ;
  186. // set id production
  187. var id_production = 0 ;
  188. $('#dates div .date').each(function() {
  189. if($(this).html() == selectedDate) {
  190. id_production = $(this).parent().find('.id_production').html() ;
  191. }
  192. });
  193. $('#commande-id_production').val(id_production) ;
  194. // verif si le gars a une commande en cours pour cette production
  195. var has_commande_en_cours = false ;
  196. $('#commandes-en-cours .commande').each(function() {
  197. if($(this).data('idproduction') == id_production) {
  198. //alert('bada') ;
  199. $('#has-commande-en-cours a').attr('href',$(this).data('href')) ;
  200. $('#has-commande-en-cours').show() ;
  201. has_commande_en_cours = true ;
  202. $('#depots, #points-vente, #produits, #info-horaire-retrait-commande').hide() ;
  203. }
  204. }) ;
  205. if(!has_commande_en_cours) {
  206. chat_systeme_commande_produits_dispos(tab_date[2]+'-'+tab_date[1]+'-'+tab_date[0], date) ;
  207. $('#produits, .valider-commande, .btn-commentaire, #bar-fixed').hide() ;
  208. // déselection points de vente
  209. $('#points-vente .point-vente').removeClass('selected') ;
  210. $('#commande-id_point_vente').val('') ;
  211. // affichage points de vente
  212. $('#depots, #points-vente, #info-horaire-retrait-commande').fadeIn() ;
  213. // scroll
  214. boulange_scroll('step-choix-depot') ;
  215. }
  216. }
  217. }) ;
  218. if($('#commande-id_production').val()) {
  219. $("#dates .id_production").each(function() {
  220. if($(this).html() == $('#commande-id_production').val()) {
  221. var tab_date = $(this).parent().find('.date').html().split('/') ;
  222. var date = new Date(tab_date[2],tab_date[1]-1,tab_date[0]);
  223. $('#datepicker-production').datepicker('setDate',date) ;
  224. chat_systeme_commande_produits_dispos(tab_date[2]+'-'+tab_date[1]+'-'+tab_date[0], date) ;
  225. chat_init_horaire_point_vente(date) ;
  226. }
  227. }) ;
  228. }
  229. // tableau produits
  230. $('.commande-form .move-quantity').click(function() {
  231. var vrac = ($(this).parent().parent().parent().parent().parent().parent().parent().attr('id') == 'vrac') ;
  232. if(vrac) {
  233. var quantite = parseInt($(this).parent().parent().find('input.quantity').val()) ;
  234. if($(this).hasClass('moins') && quantite != 0)
  235. quantite -= 500 ;
  236. if($(this).hasClass('plus'))
  237. quantite += 500 ;
  238. $(this).parent().parent().find('input.quantity').val(quantite) ;
  239. chat_systeme_commande_maj_table_prix();
  240. }
  241. else {
  242. var quantite_totale = 0 ;
  243. $('.quantity').each(function() {
  244. quantite_totale += parseInt($(this).val()) ;
  245. }) ;
  246. var quantite = parseInt($(this).parent().parent().find('input.quantity').val()) ;
  247. var quantite_restante = parseInt($(this).parent().parent().parent().find('.quantite-restante .nb').html()) ;
  248. var quantite_max = $(this).parent().parent().parent().parent().data('quantite-max') ;
  249. var no_limit = $(this).parent().parent().parent().parent().data('no-limit') ;
  250. if($(this).hasClass('moins') && quantite != 0) {
  251. quantite -- ;
  252. quantite_restante ++ ;
  253. }
  254. if($(this).hasClass('plus') ){
  255. if(quantite_restante > 0 || no_limit) {
  256. quantite ++ ;
  257. quantite_restante -- ;
  258. }
  259. }
  260. $(this).parent().parent().parent().find('.quantite-restante .nb').html(quantite_restante) ;
  261. if(quantite_restante <= 5 && quantite_restante > 0) {
  262. $(this).parent().parent().parent().find('.quantite-restante').fadeIn() ;
  263. }
  264. else {
  265. $(this).parent().parent().parent().find('.quantite-restante').hide() ;
  266. }
  267. if(quantite_restante == 0 && !no_limit) {
  268. $(this).parent().parent().parent().find('.epuise').fadeIn() ;
  269. }
  270. else {
  271. $(this).parent().parent().parent().find('.epuise').hide() ;
  272. }
  273. $(this).parent().parent().find('input.quantity').val(quantite) ;
  274. chat_systeme_commande_maj_table_prix();
  275. }
  276. }) ;
  277. chat_systeme_commande_maj_table_prix() ;
  278. chat_systeme_commande_credit_pain();
  279. }
  280. // commentaire commande
  281. $('.commande-form .btn-commentaire').click(function() {
  282. if($('.field-commande-commentaire').css('display') == 'none') {
  283. $('.field-commande-commentaire').slideDown() ;
  284. }
  285. else {
  286. $('.field-commande-commentaire').slideUp() ;
  287. }
  288. return false ;
  289. }) ;
  290. // bar fixed
  291. if($('#bar-fixed').size()) {
  292. $(window).scroll(function (event) {
  293. var scroll = $(window).scrollTop() + $(window).height();
  294. var pos_bottom_produits = $('#table-produits').offset().top + $('#table-produits').height() + 100 ;
  295. if(scroll > pos_bottom_produits) {
  296. if(!$('#bar-fixed').hasClass('not-fixed')) {
  297. $('#bar-fixed').addClass('not-fixed') ;
  298. }
  299. }
  300. else {
  301. $('#bar-fixed').removeClass('not-fixed') ;
  302. }
  303. });
  304. }
  305. }
  306. function chat_systeme_commande_produits_dispos(str_date, date) {
  307. // produits dispos à la vente à cette date
  308. $.get(chat_base_url()+'commande/infos-production',{
  309. id_production: $('#commande-id_production').val()
  310. }, function(data) {
  311. if(data.produits_dispos) {
  312. $.each(data.produits_dispos, function( id_produit, produit ) {
  313. if(produit.actif) $('.produit-'+id_produit).show() ;
  314. else $('.produit-'+id_produit).hide() ;
  315. var quantite_restante = produit.quantite_max - produit.quantite_commandee ;
  316. var no_limit = 0 ;
  317. if(!produit.quantite_max)
  318. no_limit = 1 ;
  319. $('.produit-'+id_produit).attr('data-no-limit',no_limit) ;
  320. $('.produit-'+id_produit).attr('data-quantite-max',produit.quantite_max) ;
  321. $('.produit-'+id_produit+' .quantite-restante .nb').html(quantite_restante) ;
  322. if(produit.quantite_max && (!quantite_restante || quantite_restante < 0 || produit.epuise)) {
  323. $('.produit-'+id_produit+' .epuise').show() ;
  324. if(!$('#id-commande').val() && $('.produit-'+id_produit+' .quantity').val() == 0)
  325. {
  326. $('.produit-'+id_produit+' .quantite-restante').hide() ;
  327. $('.produit-'+id_produit+' .input-group').hide() ;
  328. }
  329. }
  330. else {
  331. $('.produit-'+id_produit+' .epuise').hide() ;
  332. $('.produit-'+id_produit+' .input-group').show() ;
  333. $('.produit-'+id_produit+' .quantite-restante .nb').html(quantite_restante) ;
  334. }
  335. if($('.produit-'+id_produit+' .quantite-restante').size()) {
  336. if(parseInt($('.produit-'+id_produit+' .quantite-restante .nb').html()) > 5 ||
  337. parseInt($('.produit-'+id_produit+' .quantite-restante .nb').html()) <= 0) {
  338. $('.produit-'+id_produit+' .quantite-restante').hide() ;
  339. }
  340. else {
  341. $('.produit-'+id_produit+' .quantite-restante').show() ;
  342. }
  343. }
  344. });
  345. }
  346. $('#points-vente .point-vente').hide() ;
  347. // init affichage points de vente
  348. $.each(data.points_vente, function(key, livraison) {
  349. console.log(key+' | '+livraison) ;
  350. if(livraison) {
  351. $('.point-vente-'+key).fadeIn() ;
  352. }
  353. else {
  354. $('.point-vente-'+key).hide() ;
  355. }
  356. }) ;
  357. chat_init_horaire_point_vente(date) ;
  358. }, 'json') ;
  359. }
  360. function chat_systeme_commande_reset_table_prix() {
  361. $('#table-produits tr .colonne-quantite .quantity').each(function() {
  362. $(this).val(0) ;
  363. }) ;
  364. chat_systeme_commande_maj_table_prix() ;
  365. }
  366. function chat_systeme_commande_maj_table_prix() {
  367. // produits pain
  368. var prix = 0 ;
  369. $('.commande-form #table-produits tbody tr').each(function() {
  370. var quantite = parseInt($(this).find('.quantity').val()) ;
  371. var prix_produit = parseFloat($(this).find('.prix').html()) ;
  372. var prix_total_produit = quantite * prix_produit ;
  373. if(prix_total_produit)
  374. $(this).find('.total').html(formate_prix(prix_total_produit)+' €') ;
  375. else
  376. $(this).find('.total').html('--') ;
  377. if(quantite > 0)
  378. prix += prix_total_produit ;
  379. }) ;
  380. $('#total-commande strong').html(formate_prix(prix)+' €') ;
  381. var prix_global = prix ;
  382. // produits vrac
  383. var prix = 0 ;
  384. $('.commande-form #table-produits-vrac tbody tr').each(function() {
  385. var quantite = parseInt($(this).find('.quantity').val()) ;
  386. var prix_produit = parseFloat($(this).find('.prix').html()) ;
  387. var prix_total_produit = quantite/1000 * prix_produit ;
  388. if(prix_total_produit)
  389. $(this).find('.total').html(formate_prix(prix_total_produit)+' €') ;
  390. else
  391. $(this).find('.total').html('--') ;
  392. if(quantite > 0)
  393. prix += prix_total_produit ;
  394. }) ;
  395. $('#total-commande-vrac strong').html(formate_prix(prix)+' €') ;
  396. prix_global += prix ;
  397. $('#total-commande-bottom span').html(formate_prix(prix_global)) ;
  398. if(prix_global)
  399. $('#total-commande-bottom').fadeIn() ;
  400. else
  401. $('#total-commande-bottom').hide() ;
  402. // maj credit pain
  403. chat_systeme_commande_credit_pain_event(prix_global) ;
  404. return prix_global ;
  405. }
  406. function chat_systeme_commande_credit_pain() {
  407. $('input[name=credit_pain]').change(function() {
  408. var prix_global = chat_systeme_commande_maj_table_prix() ;
  409. chat_systeme_commande_credit_pain_event(prix_global) ;
  410. }) ;
  411. }
  412. function chat_systeme_commande_credit_pain_event(prix_global) {
  413. var html = '' ;
  414. var use_credit_pain = $('input[name=credit_pain]').prop('checked') ;
  415. var credit_pain = parseFloat($('#montant-credit-pain').val()) ;
  416. var credit_pain_dispo = credit_pain ;
  417. var montant_paye = 0
  418. if($('#montant-paye').size() && $('#montant-paye').val())
  419. montant_paye = parseFloat($('#montant-paye').val()) ;
  420. if($('#id-commande').size() && $('#id-commande').val()) {
  421. credit_pain_dispo = credit_pain + montant_paye ;
  422. }
  423. var credit_pain_active = $('.point-vente.selected').data('credit-pain') ;
  424. if(credit_pain_active || montant_paye) {
  425. $('#checkbox-credit-pain #info-credit-vide').show() ;
  426. $('#checkbox-credit-pain label').show() ;
  427. $('#checkbox-credit-pain #credit-pain-disabled').hide() ;
  428. if(prix_global > credit_pain_dispo) {
  429. var reste_payer = prix_global - credit_pain_dispo ;
  430. if(use_credit_pain) {
  431. if(montant_paye) {
  432. html += '<span class="montant-paye">'+montant_paye+' € déjà payé</span><br />' ;
  433. }
  434. html += '<strong>'+credit_pain+' €</strong> seront débités<br />' ;
  435. html += 'Restera <strong>'+reste_payer+' €</strong> à payer à la boulangerie' ;
  436. $('#checkbox-credit-pain .info').html(html) ;
  437. }
  438. else {
  439. $('#checkbox-credit-pain .info').html('') ;
  440. }
  441. }
  442. else {
  443. $('#checkbox-credit-pain').removeClass('paiement-impossible') ;
  444. $('input[name=credit_pain]').removeAttr('disabled') ;
  445. if(use_credit_pain) {
  446. var html = '' ;
  447. // à payer
  448. if(prix_global > montant_paye)
  449. {
  450. montant = prix_global - montant_paye ;
  451. if(montant_paye) {
  452. html += '<span class="montant-paye">'+montant_paye+' € déjà payé</span><br />' ;
  453. }
  454. html += '<strong>'+montant+' €</strong> seront débités' ;
  455. $('#checkbox-credit-pain .info').html(html) ;
  456. }
  457. // remboursé
  458. else if(prix_global < montant_paye) {
  459. montant = montant_paye - prix_global ;
  460. if(montant_paye) {
  461. html += '<span class="montant-paye">'+montant_paye+' € déjà payé</span><br />' ;
  462. }
  463. html += '<strong>'+montant+' €</strong> seront remboursés' ;
  464. $('#checkbox-credit-pain .info').html(html) ;
  465. }
  466. else {
  467. if(montant_paye > 0)
  468. $('#checkbox-credit-pain .info').html('<span class="montant-paye">'+montant_paye+' € déjà payé</span>') ;
  469. else
  470. $('#checkbox-credit-pain .info').html('') ;
  471. }
  472. }
  473. else {
  474. $('#checkbox-credit-pain .info').html('')
  475. }
  476. }
  477. }
  478. else {
  479. $('#checkbox-credit-pain #info-credit-vide').hide() ;
  480. $('#checkbox-credit-pain label').hide() ;
  481. $('#checkbox-credit-pain #credit-pain-disabled').show() ;
  482. }
  483. }
  484. function formate_prix(prix) {
  485. return prix.toFixed(2).replace( ".", "," ) ;
  486. }
  487. function chat_slideshow() {
  488. if($('body').hasClass('home')) {
  489. var base_url = $('#base_url').val() ;
  490. $.vegas('slideshow', {
  491. backgrounds:[
  492. //{ src:'./img/background/back2.jpg' },
  493. { src:base_url+'/img/background/four.jpg' },
  494. { src:base_url+'/img/background/gueulard.jpg' }
  495. ],
  496. walk: function() {
  497. $('.vegas-loading').css('display','none') ;
  498. $('.vegas-background').css('position','absolute') ;
  499. }
  500. })('overlay');
  501. }
  502. }
  503. function chat_scroll() {
  504. if($('body').hasClass('home')) {
  505. $('#header nav ul a[href^="#"]').click(function(){
  506. var the_id = $(this).attr("href");
  507. $('html, body').animate({
  508. scrollTop: $(the_id).offset().top - 100
  509. }, 'normal');
  510. return false;
  511. });
  512. $(window).scroll(function() {
  513. chat_event_scroll() ;
  514. }) ;
  515. chat_event_scroll() ;
  516. }
  517. }
  518. function chat_event_scroll() {
  519. var scroll_top = $(window).scrollTop() ;
  520. //console.log(scroll_top + ' '+ ($('#horaires').offset().top-100)) ;
  521. $('#header nav ul a').each(function() {
  522. var top = $($(this).attr('href')).offset().top ;
  523. var test = top + $($(this).attr('href')).height() - 150 ;
  524. //console.log($(this).attr('href')+' : '+scroll_top+ ' | '+ test) ;
  525. if(scroll_top <= top + $($(this).attr('href')).height() - 150) {
  526. $('#header a').removeClass('selec') ;
  527. $(this).addClass('selec') ;
  528. }
  529. }) ;
  530. }
  531. function chat_tabs_gamme_saison() {
  532. $('#tab-gamme-saison a').click(function (e) {
  533. e.preventDefault();
  534. $(this).tab('show');
  535. });
  536. }