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ů.

519 lines
16KB

  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. // scroll
  83. if(!force)
  84. boulange_scroll('step-choix-produits') ;
  85. }
  86. function chat_init_horaire_point_vente(date) {
  87. $('#points-vente .horaires .jour').hide() ;
  88. var selector_jour = '#points-vente .horaires .jour-'+date.getDay() ;
  89. $(selector_jour).show() ;
  90. // on cache les points de vente si la livraison n'est pas cochée
  91. $('#points-vente .point-vente').show() ;
  92. if($('#livraison').val() == 0) {
  93. $('#points-vente .point-vente').hide() ;
  94. $('#points-vente .point-vente').each(function() {
  95. if($(this).find('.nom').html() == 'Le Chat des Noisettes') {
  96. $(this).show() ;
  97. }
  98. }) ;
  99. }
  100. // on cache les points de vente qui sont fermés
  101. //$('#points-vente .point-vente').removeClass('disabled') ;
  102. $(selector_jour).each(function() {
  103. if($(this).html() == 'Fermé') {
  104. //$(this).parent().parent().parent().addClass('disabled') ;
  105. $(this).parent().parent().parent().hide() ;
  106. }
  107. }) ;
  108. }
  109. function chat_systeme_commande() {
  110. if($('.commande-form').size()) {
  111. // scroll initial
  112. if($('.boulangerie.selected').size())
  113. {
  114. boulange_scroll('step-choix-date') ;
  115. }
  116. else {
  117. boulange_scroll('step-choix-etablissement') ;
  118. }
  119. // affichage des différentes parties du formulaire
  120. if(!$('#commande-id_production').val()) {
  121. $('#depots, #points-vente, #produits, .valider-commande, #info-horaire-retrait-commande, .btn-commentaire, #bar-fixed').hide() ;
  122. }
  123. else if(!$('#commande-id_point_vente').val()) {
  124. $('#produits, .valider-commande, .btn-commentaire, #bar-fixed').hide() ;
  125. }
  126. if($('#commande-id_point_vente').val())
  127. chat_event_click_point_vente($('#commande-id_point_vente').val(), true) ;
  128. $('#points-vente .point-vente').click(function() {
  129. var id = parseInt($(this).find('.id').html()) ;
  130. chat_event_click_point_vente(id) ;
  131. }) ;
  132. // datepicker
  133. var dates_production = [] ;
  134. $('#dates div').each(function() {
  135. dates_production.push($(this).find('.date').html()) ;
  136. }) ;
  137. //var var_datepicker = $.datepicker ;
  138. $('#datepicker-production').datepicker({
  139. beforeShowDay: function(date){
  140. var string = $.datepicker.formatDate('dd/mm/yy', date);
  141. for(var i=0; i<dates_production.length; i++) {
  142. //alert(dates_production[i]+' '+string) ;
  143. if(dates_production[i] == string)
  144. return [1] ;
  145. }
  146. return [0] ;
  147. // désactivé car internet explorer plante
  148. //return [ dates_production.indexOf(string) != -1 ] ;
  149. },
  150. onSelect: function(selectedDate) {
  151. // on remet tout les prix à zéro
  152. chat_systeme_commande_reset_table_prix() ;
  153. $('#has-commande-en-cours').hide() ;
  154. var tab_date = selectedDate.split('/') ;
  155. var date = new Date(tab_date[2],tab_date[1]-1,tab_date[0]) ;
  156. // set id production
  157. var id_production = 0 ;
  158. $('#dates div .date').each(function() {
  159. if($(this).html() == selectedDate) {
  160. id_production = $(this).parent().find('.id_production').html() ;
  161. }
  162. });
  163. $('#commande-id_production').val(id_production) ;
  164. // verif si le gars a une commande en cours pour cette production
  165. var has_commande_en_cours = false ;
  166. $('#commandes-en-cours .commande').each(function() {
  167. if($(this).data('idproduction') == id_production) {
  168. //alert('bada') ;
  169. $('#has-commande-en-cours a').attr('href',$(this).data('href')) ;
  170. $('#has-commande-en-cours').show() ;
  171. has_commande_en_cours = true ;
  172. $('#depots, #points-vente, #produits, #info-horaire-retrait-commande').hide() ;
  173. }
  174. }) ;
  175. if(!has_commande_en_cours) {
  176. chat_systeme_commande_produits_dispos(tab_date[2]+'-'+tab_date[1]+'-'+tab_date[0], date) ;
  177. $('#produits, .valider-commande, .btn-commentaire, #bar-fixed').hide() ;
  178. // déselection points de vente
  179. $('#points-vente .point-vente').removeClass('selected') ;
  180. $('#commande-id_point_vente').val('') ;
  181. // affichage points de vente
  182. $('#depots, #points-vente, #info-horaire-retrait-commande').fadeIn() ;
  183. // scroll
  184. boulange_scroll('step-choix-depot') ;
  185. }
  186. }
  187. }) ;
  188. if($('#commande-id_production').val()) {
  189. $("#dates .id_production").each(function() {
  190. if($(this).html() == $('#commande-id_production').val()) {
  191. var tab_date = $(this).parent().find('.date').html().split('/') ;
  192. var date = new Date(tab_date[2],tab_date[1]-1,tab_date[0]);
  193. $('#datepicker-production').datepicker('setDate',date) ;
  194. chat_systeme_commande_produits_dispos(tab_date[2]+'-'+tab_date[1]+'-'+tab_date[0], date) ;
  195. chat_init_horaire_point_vente(date) ;
  196. }
  197. }) ;
  198. }
  199. // tableau produits
  200. $('.commande-form .move-quantity').click(function() {
  201. var vrac = ($(this).parent().parent().parent().parent().parent().parent().parent().attr('id') == 'vrac') ;
  202. if(vrac) {
  203. var quantite = parseInt($(this).parent().parent().find('input.quantity').val()) ;
  204. if($(this).hasClass('moins') && quantite != 0)
  205. quantite -= 500 ;
  206. if($(this).hasClass('plus'))
  207. quantite += 500 ;
  208. $(this).parent().parent().find('input.quantity').val(quantite) ;
  209. chat_systeme_commande_maj_table_prix();
  210. }
  211. else {
  212. var quantite_totale = 0 ;
  213. $('.quantity').each(function() {
  214. quantite_totale += parseInt($(this).val()) ;
  215. }) ;
  216. if($(this).hasClass('plus') && quantite_totale > 2 && $('#confiance').val() == 0) {
  217. $('html, body').animate({
  218. scrollTop: $('#produits').offset().top - 150
  219. }, 'normal', function() {
  220. $('#mess-limit-quantity').fadeOut('fast',function() {
  221. $(this).fadeIn('fast') ;
  222. })
  223. });
  224. }
  225. else {
  226. var quantite = parseInt($(this).parent().parent().find('input.quantity').val()) ;
  227. var quantite_restante = parseInt($(this).parent().parent().parent().find('.quantite-restante .nb').html()) ;
  228. //alert('bada') ;
  229. if($(this).hasClass('moins') && quantite != 0)
  230. quantite -- ;
  231. if($(this).hasClass('plus')){
  232. if(quantite + 1 <= quantite_restante) {
  233. quantite ++ ;
  234. }
  235. else {
  236. if(quantite_restante <= 5) {
  237. $(this).parent().parent().parent().find('.quantite-restante').hide().fadeIn() ;
  238. }
  239. else {
  240. // alert ?
  241. // ...
  242. }
  243. }
  244. }
  245. $(this).parent().parent().find('input.quantity').val(quantite) ;
  246. chat_systeme_commande_maj_table_prix();
  247. }
  248. }
  249. }) ;
  250. chat_systeme_commande_maj_table_prix() ;
  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. }
  371. function formate_prix(prix) {
  372. return prix.toFixed(2).replace( ".", "," ) ;
  373. }
  374. function chat_slideshow() {
  375. if($('body').hasClass('home')) {
  376. var base_url = $('#base_url').val() ;
  377. $.vegas('slideshow', {
  378. backgrounds:[
  379. //{ src:'./img/background/back2.jpg' },
  380. { src:base_url+'/img/background/four.jpg' },
  381. { src:base_url+'/img/background/gueulard.jpg' }
  382. ],
  383. walk: function() {
  384. $('.vegas-loading').css('display','none') ;
  385. $('.vegas-background').css('position','absolute') ;
  386. }
  387. })('overlay');
  388. }
  389. }
  390. function chat_scroll() {
  391. if($('body').hasClass('home')) {
  392. $('#header nav ul a[href^="#"]').click(function(){
  393. var the_id = $(this).attr("href");
  394. $('html, body').animate({
  395. scrollTop: $(the_id).offset().top - 100
  396. }, 'normal');
  397. return false;
  398. });
  399. $(window).scroll(function() {
  400. chat_event_scroll() ;
  401. }) ;
  402. chat_event_scroll() ;
  403. }
  404. }
  405. function chat_event_scroll() {
  406. var scroll_top = $(window).scrollTop() ;
  407. //console.log(scroll_top + ' '+ ($('#horaires').offset().top-100)) ;
  408. $('#header nav ul a').each(function() {
  409. var top = $($(this).attr('href')).offset().top ;
  410. var test = top + $($(this).attr('href')).height() - 150 ;
  411. //console.log($(this).attr('href')+' : '+scroll_top+ ' | '+ test) ;
  412. if(scroll_top <= top + $($(this).attr('href')).height() - 150) {
  413. $('#header a').removeClass('selec') ;
  414. $(this).addClass('selec') ;
  415. }
  416. }) ;
  417. }
  418. function chat_tabs_gamme_saison() {
  419. $('#tab-gamme-saison a').click(function (e) {
  420. e.preventDefault();
  421. $(this).tab('show');
  422. });
  423. }