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.

648 satır
23KB

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