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.

lechatdesnoisettes.js 25KB

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