Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

611 lines
20KB

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