$(document).ready(function() { chat_calendar() ; chat_datepicker() ; chat_vrac() ; chat_email_masse() ; $('button[data-toggle=popover]').popover() ; chat_ordre_produits() ; chat_index_commandes_liste_produits() ; chat_index_commandes_points_vente() ; chat_btn_plus_moins() ; chat_commandeauto() ; }) ; function chat_commandeauto() { // dates $('#commandeautoform-date_debut, #commandeautoform-date_fin').datepicker() ; } function chat_index_commandes_points_vente() { $('#commandes-points-vente .liste-commandes a').unbind('click').click(function() { var id_pv = $(this).data('pv-id') ; // affiche la commande var id_commande = $(this).data('id-commande') ; chat_index_commandes_affiche_commande(id_commande) ; }) ; $('#commandes-points-vente .bloc-point-vente').each(function() { var id_pv = $(this).data('id-pv') ; // edit $('#point-vente-'+id_pv+' .btn-edit').unbind('click').click(function() { // boutons $('#point-vente-'+id_pv+' .buttons-edit-remove').hide() ; $('#point-vente-'+id_pv+' .buttons-save-cancel').show() ; $('#point-vente-'+id_pv+' .tr-total').hide() ; // inputs chat_index_commandes_inputs_commande(id_pv, true) ; }) ; // remove $('#point-vente-'+id_pv+' .btn-remove').unbind('click').click(function() { var id_commande = $(this).data('id-commande') ; $(this).attr('disabled', 'disabled') ; $.get('index.php',{ r: 'commande/ajax-delete', date: $('#date-production').val(), id_commande: id_commande }, function(data) { $('#point-vente-'+id_pv+' .btn-remove').removeAttr('disabled') ; if($('#point-vente-'+id_pv+' .liste-commandes li').size()) { if($('#point-vente-'+id_pv+' .liste-commandes li:last-child a').is('.active')) { var commande_next = $('#point-vente-'+id_pv+' .liste-commandes a.active').parent().prev().find('a') ; } else { var commande_next = $('#point-vente-'+id_pv+' .liste-commandes a.active').parent().next().find('a') ; } $('#point-vente-'+id_pv+' .liste-commandes a.active').parent().remove() ; if($('#point-vente-'+id_pv+' .liste-commandes li').size()) { chat_index_commandes_affiche_commande(commande_next.data('id-commande')) ; } else { $('#point-vente-'+id_pv+' .liste-commandes').hide() ; $('#point-vente-'+id_pv+' .creer-commande').trigger('click') ; } } chat_index_commandes_maj_recap_pv(id_pv, data.total_pv) ; chat_index_commandes_maj_total_commandes() ; chat_alert('success','Commande supprimée') ; }, 'json') ; }); // cancel $('#point-vente-'+id_pv+' .btn-cancel').unbind('click').click(function() { $('#point-vente-'+id_pv+' .buttons-edit-remove').show() ; $('#point-vente-'+id_pv+' .buttons-save-cancel').hide() ; chat_index_commandes_affiche_commande($(this).data('id-commande')) ; }) ; // save $('#point-vente-'+id_pv+' .btn-save').unbind('click').click(function() { var tab_produits = {} ; var cpt_produits = 0 ; $('#point-vente-'+id_pv+' .table-produits tr').each(function() { tab_produits[$(this).data('id-produit')] = $(this).find('.quantite').val() ; if($(this).find('.quantite').val()) cpt_produits ++ ; }) ; if(cpt_produits) { // création if($(this).hasClass('is-create')) { if($('#point-vente-'+id_pv+' .user-id').val() || $('#point-vente-'+id_pv+' .username').val().length) { $(this).attr('disabled', 'disabled') ; $.get('index.php',{ r: 'commande/ajax-create', date: $('#date-production').val(), id_pv: id_pv, id_user: $('#point-vente-'+id_pv+' .user-id').val(), username: $('#point-vente-'+id_pv+' .username').val(), produits: JSON.stringify(tab_produits) }, function(data) { $('#point-vente-'+id_pv+' .btn-save').removeAttr('disabled') ; $('#point-vente-'+id_pv+' .btn-save').removeClass('is-create') ; $('#point-vente-'+id_pv+' .liste-commandes').append(data.commande) ; chat_index_commandes_points_vente() ; chat_index_commandes_maj_recap_pv(id_pv, data.total_pv) ; $('#point-vente-'+id_pv+' .buttons-edit-remove').show() ; $('#point-vente-'+id_pv+' .buttons-save-cancel').hide() ; $('#point-vente-'+id_pv+' .btn-create').removeClass('is-create') ; $('#point-vente-'+id_pv+' .user-id').val(0) ; $('#point-vente-'+id_pv+' .user-id').val('') ; chat_index_commandes_affiche_commande(data.id_commande) ; chat_alert('success', 'Commande créée') ; }, 'json') ; } else { chat_alert('danger', 'Veuillez choisir ou saisir un nom d\'utilisateur') ; } } // modification else { var id_commande = $(this).data('id-commande') ; $(this).attr('disabled', 'disabled') ; $.get('index.php',{ r: 'commande/ajax-update', id_commande: id_commande, produits: JSON.stringify(tab_produits), date: $('#date-production').val() }, function(data) { $('#point-vente-'+id_pv+' .btn-save').removeAttr('disabled') ; $('#point-vente-'+id_pv+' a[data-id-commande='+id_commande+']').data('commande',data.json_commande); $('#point-vente-'+id_pv+' a[data-id-commande='+id_commande+'] .montant').html(data.total_commande) ; chat_index_commandes_affiche_commande(id_commande) ; chat_index_commandes_maj_recap_pv(id_pv, data.total_pv) ; $('#point-vente-'+id_pv+' .buttons-edit-remove').show() ; $('#point-vente-'+id_pv+' .buttons-save-cancel').hide() ; chat_alert('success','Commande modifiée') ; }, 'json') ; } } else { chat_alert('danger', 'Veuillez saisir au moins un produit') ; } chat_index_commandes_maj_total_commandes() ; }) ; // create $('.creer-commande').unbind('click').click(function() { var id_pv = $(this).data('pv-id') ; $('#point-vente-'+id_pv+' .liste-commandes a.active').removeClass('active') ; $('#point-vente-'+id_pv+' .tr-total').hide() ; $('#point-vente-'+id_pv+' .buttons-edit-remove').hide() ; $('#point-vente-'+id_pv+' .the-title').hide() ; $('#point-vente-'+id_pv+' .buttons-save-cancel').show() ; $('#point-vente-'+id_pv+' .choix-user').show() ; $('#point-vente-'+id_pv+' .choix-user .user-id').val(0) ; $('#point-vente-'+id_pv+' .choix-user .username').val('') ; $('#point-vente-'+id_pv+' .commentaire').hide() ; $('#point-vente-'+id_pv+' .btn-save').addClass('is-create'); if($('#point-vente-'+id_pv+' .liste-commandes li').size() == 0) { $('#point-vente-'+id_pv+' .btn-cancel').hide() ; } else { $('#point-vente-'+id_pv+' .btn-cancel').show() ; } chat_index_commandes_inputs_commande(id_pv, false) ; $('#point-vente-'+id_pv+' .title-user').show() ; }) ; }) ; $('#commandes-points-vente .liste-commandes').each(function() { $(this).find('a:first').trigger('click') ; }) ; } function chat_index_commandes_maj_total_commandes() { $.get('index.php',{ r: 'commande/ajax-total-commandes', date: $('#date-production').val() }, function(data) { $('#bloc-totaux').html(data.html_totaux) ; }, 'json') ; } function chat_index_commandes_maj_recap_pv(id_pv, total) { $('#point-vente-'+id_pv+' .recap-pv .recettes').html(total) ; var nb_commandes = $('#point-vente-'+id_pv+' .liste-commandes li').size() ; if(nb_commandes == 0) { $('#point-vente-'+id_pv+' .recap-pv .commandes').html('Aucune commande') ; $('#point-vente-'+id_pv+' .recap-pv .recettes').hide() ; } else if(nb_commandes == 1) { $('#point-vente-'+id_pv+' .recap-pv .commandes').html('1 commande') ; $('#point-vente-'+id_pv+' .recap-pv .recettes').show() ; } else { $('#point-vente-'+id_pv+' .recap-pv .commandes').html(nb_commandes+' commandes') ; $('#point-vente-'+id_pv+' .recap-pv .recettes').show() ; } $('#btn-point-vente-'+id_pv+' .badge').html(nb_commandes) ; } function chat_index_commandes_inputs_commande(id_pv, use_quantite) { $('#point-vente-'+id_pv+' .table-produits tr').each(function() { var quantite = '' ; if(use_quantite) quantite = $(this).find('.td-commande').html() ; var id_produit = $(this).data('id-produit') ; $(this).find('.td-commande').html('