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

478 lines
14KB

  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) {
  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').fadeIn() ;
  82. }
  83. function chat_init_horaire_point_vente(date) {
  84. $('#points-vente .horaires .jour').hide() ;
  85. var selector_jour = '#points-vente .horaires .jour-'+date.getDay() ;
  86. $(selector_jour).show() ;
  87. // on cache les points de vente si la livraison n'est pas cochée
  88. $('#points-vente .point-vente').show() ;
  89. if($('#livraison').val() == 0) {
  90. $('#points-vente .point-vente').hide() ;
  91. $('#points-vente .point-vente').each(function() {
  92. if($(this).find('.nom').html() == 'Le Chat des Noisettes') {
  93. $(this).show() ;
  94. }
  95. }) ;
  96. }
  97. // on cache les points de vente qui sont fermés
  98. //$('#points-vente .point-vente').removeClass('disabled') ;
  99. $(selector_jour).each(function() {
  100. if($(this).html() == 'Fermé') {
  101. //$(this).parent().parent().parent().addClass('disabled') ;
  102. $(this).parent().parent().parent().hide() ;
  103. }
  104. }) ;
  105. }
  106. function chat_systeme_commande() {
  107. if($('.commande-form').size()) {
  108. // affichage des différentes parties du formulaire
  109. if(!$('#commande-id_production').val()) {
  110. $('.field-commande-id_point_vente, #points-vente, #produits, .valider-commande, #info-horaire-retrait-commande, .btn-commentaire').hide() ;
  111. }
  112. else if(!$('#commande-id_point_vente').val()) {
  113. $('#produits, .valider-commande, .btn-commentaire').hide() ;
  114. }
  115. if($('#commande-id_point_vente').val())
  116. chat_event_click_point_vente($('#commande-id_point_vente').val()) ;
  117. $('#points-vente .point-vente').click(function() {
  118. var id = parseInt($(this).find('.id').html()) ;
  119. chat_event_click_point_vente(id) ;
  120. }) ;
  121. // datepicker
  122. var dates_production = [] ;
  123. $('#dates div').each(function() {
  124. dates_production.push($(this).find('.date').html()) ;
  125. }) ;
  126. //var var_datepicker = $.datepicker ;
  127. $('#datepicker-production').datepicker({
  128. beforeShowDay: function(date){
  129. var string = $.datepicker.formatDate('dd/mm/yy', date);
  130. for(var i=0; i<dates_production.length; i++) {
  131. //alert(dates_production[i]+' '+string) ;
  132. if(dates_production[i] == string)
  133. return [1] ;
  134. }
  135. return [0] ;
  136. // désactivé car internet explorer plante
  137. //return [ dates_production.indexOf(string) != -1 ] ;
  138. },
  139. onSelect: function(selectedDate) {
  140. $('#has-commande-en-cours').hide() ;
  141. var tab_date = selectedDate.split('/') ;
  142. var date = new Date(tab_date[2],tab_date[1]-1,tab_date[0]) ;
  143. // set id production
  144. var id_production = 0 ;
  145. $('#dates div .date').each(function() {
  146. if($(this).html() == selectedDate) {
  147. id_production = $(this).parent().find('.id_production').html() ;
  148. }
  149. });
  150. $('#commande-id_production').val(id_production) ;
  151. // verif si le gars a une commande en cours pour cette production
  152. var has_commande_en_cours = false ;
  153. $('#commandes-en-cours .commande').each(function() {
  154. if($(this).data('idproduction') == id_production) {
  155. //alert('bada') ;
  156. $('#has-commande-en-cours a').attr('href',$(this).data('href')) ;
  157. $('#has-commande-en-cours').show() ;
  158. has_commande_en_cours = true ;
  159. $('.field-commande-id_point_vente, #points-vente, #produits, #info-horaire-retrait-commande').hide() ;
  160. }
  161. }) ;
  162. if(!has_commande_en_cours) {
  163. chat_systeme_commande_produits_dispos(tab_date[2]+'-'+tab_date[1]+'-'+tab_date[0], date) ;
  164. $('#produits, .valider-commande, .btn-commentaire').hide() ;
  165. // déselection points de vente
  166. $('#points-vente .point-vente').removeClass('selected') ;
  167. $('#commande-id_point_vente').val('') ;
  168. // affichage points de vente
  169. $('.field-commande-id_point_vente, #points-vente, #info-horaire-retrait-commande').fadeIn() ;
  170. }
  171. }
  172. }) ;
  173. if($('#commande-id_production').val()) {
  174. $("#dates .id_production").each(function() {
  175. if($(this).html() == $('#commande-id_production').val()) {
  176. var tab_date = $(this).parent().find('.date').html().split('/') ;
  177. var date = new Date(tab_date[2],tab_date[1]-1,tab_date[0]);
  178. $('#datepicker-production').datepicker('setDate',date) ;
  179. chat_systeme_commande_produits_dispos(tab_date[2]+'-'+tab_date[1]+'-'+tab_date[0], date) ;
  180. chat_init_horaire_point_vente(date) ;
  181. }
  182. }) ;
  183. }
  184. // tableau produits
  185. $('.commande-form .move-quantity').click(function() {
  186. var vrac = ($(this).parent().parent().parent().parent().parent().parent().parent().attr('id') == 'vrac') ;
  187. if(vrac) {
  188. var quantite = parseInt($(this).parent().parent().find('input.quantity').val()) ;
  189. if($(this).hasClass('moins') && quantite != 0)
  190. quantite -= 500 ;
  191. if($(this).hasClass('plus'))
  192. quantite += 500 ;
  193. $(this).parent().parent().find('input.quantity').val(quantite) ;
  194. chat_systeme_commande_maj_table_prix();
  195. }
  196. else {
  197. var quantite_totale = 0 ;
  198. $('.quantity').each(function() {
  199. quantite_totale += parseInt($(this).val()) ;
  200. }) ;
  201. if($(this).hasClass('plus') && quantite_totale > 2 && $('#confiance').val() == 0) {
  202. $('html, body').animate({
  203. scrollTop: $('#produits').offset().top - 150
  204. }, 'normal', function() {
  205. $('#mess-limit-quantity').fadeOut('fast',function() {
  206. $(this).fadeIn('fast') ;
  207. })
  208. });
  209. }
  210. else {
  211. var quantite = parseInt($(this).parent().parent().find('input.quantity').val()) ;
  212. var quantite_restante = parseInt($(this).parent().parent().parent().find('.quantite-restante .nb').html()) ;
  213. //alert('bada') ;
  214. if($(this).hasClass('moins') && quantite != 0)
  215. quantite -- ;
  216. if($(this).hasClass('plus')){
  217. if(quantite + 1 <= quantite_restante) {
  218. quantite ++ ;
  219. }
  220. else {
  221. if(quantite_restante <= 5) {
  222. $(this).parent().parent().parent().find('.quantite-restante').hide().fadeIn() ;
  223. }
  224. else {
  225. // alert ?
  226. // ...
  227. }
  228. }
  229. }
  230. $(this).parent().parent().find('input.quantity').val(quantite) ;
  231. chat_systeme_commande_maj_table_prix();
  232. }
  233. }
  234. }) ;
  235. chat_systeme_commande_maj_table_prix() ;
  236. }
  237. // commentaire commande
  238. $('.commande-form .btn-commentaire').click(function() {
  239. if($('.field-commande-commentaire').css('display') == 'none') {
  240. $('.field-commande-commentaire').slideDown() ;
  241. }
  242. else {
  243. $('.field-commande-commentaire').slideUp() ;
  244. }
  245. return false ;
  246. }) ;
  247. }
  248. function chat_systeme_commande_produits_dispos(str_date, date) {
  249. // produits dispos à la vente à cette date
  250. $.get('index.php',{
  251. r: 'commande/infos-production',
  252. date: str_date,
  253. }, function(data) {
  254. if(data.produits_dispos) {
  255. $.each(data.produits_dispos, function( id_produit, produit ) {
  256. if(produit.actif) $('.produit-'+id_produit).show() ;
  257. else $('.produit-'+id_produit).hide() ;
  258. var quantite_restante = produit.quantite_max - produit.quantite_commandee ;
  259. //if(quantite_restante > 0 || !produit.epuise) {
  260. /*if(quantite_restante > 0) {
  261. $('.produit-'+id_produit+' .epuise').hide() ;
  262. $('.produit-'+id_produit+' .input-group').show() ;
  263. $('.produit-'+id_produit+' .quantite-restante .nb').html(quantite_restante) ;
  264. if(parseInt($('.produit-'+id_produit+' .quantite-restante .nb').html()) > 5) {
  265. $('.produit-'+id_produit+' .quantite-restante').hide() ;
  266. }
  267. else {
  268. $('.produit-'+id_produit+' .quantite-restante').show() ;
  269. }
  270. }
  271. else {
  272. $('.produit-'+id_produit+' .epuise').show() ;
  273. $('.produit-'+id_produit+' .quantite-restante').hide() ;
  274. $('.produit-'+id_produit+' .input-group').hide() ;
  275. } */
  276. if((!produit.vrac && (!quantite_restante || quantite_restante < 0 || produit.epuise)) || (produit.vrac && produit.epuise)) {
  277. $('.produit-'+id_produit+' .epuise').show() ;
  278. $('.produit-'+id_produit+' .quantite-restante').hide() ;
  279. $('.produit-'+id_produit+' .input-group').hide() ;
  280. }
  281. else {
  282. $('.produit-'+id_produit+' .epuise').hide() ;
  283. $('.produit-'+id_produit+' .input-group').show() ;
  284. $('.produit-'+id_produit+' .quantite-restante .nb').html(quantite_restante) ;
  285. if(parseInt($('.produit-'+id_produit+' .quantite-restante .nb').html()) > 5) {
  286. $('.produit-'+id_produit+' .quantite-restante').hide() ;
  287. }
  288. else {
  289. $('.produit-'+id_produit+' .quantite-restante').show() ;
  290. }
  291. }
  292. });
  293. }
  294. $('#livraison').val(data.livraison) ;
  295. chat_init_horaire_point_vente(date) ;
  296. }, 'json') ;
  297. }
  298. function chat_systeme_commande_maj_table_prix() {
  299. // produits pain
  300. var prix = 0 ;
  301. $('.commande-form #table-produits tbody tr').each(function() {
  302. var quantite = parseInt($(this).find('.quantity').val()) ;
  303. var prix_produit = parseFloat($(this).find('.prix').html()) ;
  304. var prix_total_produit = quantite * prix_produit ;
  305. if(prix_total_produit)
  306. $(this).find('.total').html(formate_prix(prix_total_produit)+' €') ;
  307. else
  308. $(this).find('.total').html('--') ;
  309. if(quantite > 0)
  310. prix += prix_total_produit ;
  311. }) ;
  312. $('#total-commande strong').html(formate_prix(prix)+' €') ;
  313. var prix_global = prix ;
  314. // produits vrac
  315. var prix = 0 ;
  316. $('.commande-form #table-produits-vrac tbody tr').each(function() {
  317. var quantite = parseInt($(this).find('.quantity').val()) ;
  318. var prix_produit = parseFloat($(this).find('.prix').html()) ;
  319. var prix_total_produit = quantite/1000 * prix_produit ;
  320. if(prix_total_produit)
  321. $(this).find('.total').html(formate_prix(prix_total_produit)+' €') ;
  322. else
  323. $(this).find('.total').html('--') ;
  324. if(quantite > 0)
  325. prix += prix_total_produit ;
  326. }) ;
  327. $('#total-commande-vrac strong').html(formate_prix(prix)+' €') ;
  328. prix_global += prix ;
  329. $('#total-commande-bottom span').html(formate_prix(prix_global)) ;
  330. if(prix_global)
  331. $('#total-commande-bottom').fadeIn() ;
  332. else
  333. $('#total-commande-bottom').hide() ;
  334. }
  335. function formate_prix(prix) {
  336. return prix.toFixed(2).replace( ".", "," ) ;
  337. }
  338. function chat_slideshow() {
  339. if($('body').hasClass('home')) {
  340. var base_url = $('#base_url').val() ;
  341. $.vegas('slideshow', {
  342. backgrounds:[
  343. //{ src:'./img/background/back2.jpg' },
  344. { src:base_url+'/img/background/four.jpg' },
  345. { src:base_url+'/img/background/gueulard.jpg' }
  346. ],
  347. walk: function() {
  348. $('.vegas-loading').css('display','none') ;
  349. $('.vegas-background').css('position','absolute') ;
  350. }
  351. })('overlay');
  352. }
  353. }
  354. function chat_scroll() {
  355. if($('body').hasClass('home')) {
  356. $('#header nav ul a[href^="#"]').click(function(){
  357. var the_id = $(this).attr("href");
  358. $('html, body').animate({
  359. scrollTop: $(the_id).offset().top - 100
  360. }, 'normal');
  361. return false;
  362. });
  363. $(window).scroll(function() {
  364. chat_event_scroll() ;
  365. }) ;
  366. chat_event_scroll() ;
  367. }
  368. }
  369. function chat_event_scroll() {
  370. var scroll_top = $(window).scrollTop() ;
  371. //console.log(scroll_top + ' '+ ($('#horaires').offset().top-100)) ;
  372. $('#header nav ul a').each(function() {
  373. var top = $($(this).attr('href')).offset().top ;
  374. var test = top + $($(this).attr('href')).height() - 150 ;
  375. //console.log($(this).attr('href')+' : '+scroll_top+ ' | '+ test) ;
  376. if(scroll_top <= top + $($(this).attr('href')).height() - 150) {
  377. $('#header a').removeClass('selec') ;
  378. $(this).addClass('selec') ;
  379. }
  380. }) ;
  381. }
  382. function chat_tabs_gamme_saison() {
  383. $('#tab-gamme-saison a').click(function (e) {
  384. e.preventDefault();
  385. $(this).tab('show');
  386. });
  387. }