124 lines
4.7 KiB
JavaScript
124 lines
4.7 KiB
JavaScript
|
/**
|
||
|
* 2007-2016 PrestaShop
|
||
|
*
|
||
|
* NOTICE OF LICENSE
|
||
|
*
|
||
|
* This source file is subject to the Academic Free License (AFL 3.0)
|
||
|
* that is bundled with this package in the file LICENSE.txt.
|
||
|
* It is also available through the world-wide-web at this URL:
|
||
|
* http://opensource.org/licenses/afl-3.0.php
|
||
|
* If you did not receive a copy of the license and are unable to
|
||
|
* obtain it through the world-wide-web, please send an email
|
||
|
* to license@prestashop.com so we can send you a copy immediately.
|
||
|
*
|
||
|
* DISCLAIMER
|
||
|
*
|
||
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||
|
* versions in the future. If you wish to customize PrestaShop for your
|
||
|
* needs please refer to http://www.prestashop.com for more information.
|
||
|
*
|
||
|
* @author EnvoiMoinsCher <informationapi@boxtale.com>
|
||
|
* @copyright 2007-2016 PrestaShop SA / 2011-2016 EnvoiMoinsCher
|
||
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||
|
* International Registred Trademark & Property of PrestaShop SA
|
||
|
*/
|
||
|
|
||
|
$(document).ready(function () {
|
||
|
if (ordersTodo > 0 && withCheck == 0 && massOrderPassed != 1) {
|
||
|
doOrderRequest();
|
||
|
} else if (massOrderPassed == 1) {
|
||
|
showFinalMessage();
|
||
|
}
|
||
|
$('#selectOrDeselectAll1').click(function () {
|
||
|
selectDeselectAll('#ORDERSTABLE1 tbody input[type="checkbox"]', this);
|
||
|
});
|
||
|
$('#selectOrDeselectAll2').click(function () {
|
||
|
selectDeselectAll('#ORDERSTABLE2 tbody input[type="checkbox"]', this);
|
||
|
});
|
||
|
$('#selectOrDeselectAll3').click(function () {
|
||
|
selectDeselectAll('#ORDERSTABLE3 tbody input[type="checkbox"]', this);
|
||
|
});
|
||
|
$('#ORDERSTABLE1 tbody input[type="checkbox"]').click(function () {
|
||
|
checkboxClick(this, "#selectOrDeselectAll1", 1);
|
||
|
});
|
||
|
$('#ORDERSTABLE2 tbody input[type="checkbox"]').click(function () {
|
||
|
checkboxClick(this, "#selectOrDeselectAll2", 2);
|
||
|
});
|
||
|
$('#ORDERSTABLE3 tbody input[type="checkbox"]').click(function () {
|
||
|
checkboxClick(this, "#selectOrDeselectAll3", 3);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
function doOrderRequest()
|
||
|
{
|
||
|
$.ajax({
|
||
|
url: orderActionUrl,
|
||
|
type: "POST",
|
||
|
dataType: "json",
|
||
|
success: function (res) {
|
||
|
tries = 0;
|
||
|
ordersTodo--;
|
||
|
ordersDone++;
|
||
|
$("#done").html(ordersDone);
|
||
|
if (res.id != '') {
|
||
|
$('#row-' + res.id).remove();
|
||
|
// hide the send array if it is empty
|
||
|
if ($('#ORDERSTABLE1 tbody tr').length == 0) {
|
||
|
$('#orderDo1').hide();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
if (ordersTodo == 0 || res.doOthers == 0) {
|
||
|
showFinalMessage();
|
||
|
return false;
|
||
|
}
|
||
|
doOrderRequest();
|
||
|
},
|
||
|
error: function (jqXHR, textStatus, errorThrown) {
|
||
|
if (tries < 3) {
|
||
|
tries++;
|
||
|
doOrderRequest();
|
||
|
} else {
|
||
|
alert("Une erreur s'est produite pendant l'envoi des commandes : " + errorThrown + ". Veuillez refraîchir la page.");
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
function showFinalMessage()
|
||
|
{
|
||
|
$.ajax({
|
||
|
url: orderResultUrl,
|
||
|
type: "GET",
|
||
|
dataType: "json",
|
||
|
success: function (res) {
|
||
|
var target = "#okResult";
|
||
|
var message = "Les commandes de livraison ont été correctement passées.";
|
||
|
if (res.stats.errors > 0) {
|
||
|
target = "#errorResult";
|
||
|
message = "<p>Les commandes de livraison ont été correctement passées sauf celles-ci.</p>";
|
||
|
for (var i = 0; i < res.errors.length; i++) {
|
||
|
var errorLine = res.errors[i];
|
||
|
message += errorLine.id + " : " + errorLine.message + " <br />";
|
||
|
}
|
||
|
message += "<p>Les commandes qui n'ont pas pu être expédiées seront classées dans le tableau \"<a href=\"index.php?controller=AdminEnvoiMoinsCher&token=" + token + "\" class=\"action_module\">Commandes en attente de livraison</a>\" en filtrant par type de commande \"Commandes à compléter ou invalides\".</p>";
|
||
|
}
|
||
|
message += "<p>La page se rafraichira automatiquement dans 10 secondes</p>";
|
||
|
$("#massStats").remove();
|
||
|
$(target + " span").html(message);
|
||
|
$(target).show();
|
||
|
setTimeout(function () {
|
||
|
window.location.reload();
|
||
|
}, 10000);
|
||
|
|
||
|
},
|
||
|
error: function (jqXHR, textStatus, errorThrown) {
|
||
|
if (tries < 3) {
|
||
|
tries++;
|
||
|
showFinalMessage();
|
||
|
} else {
|
||
|
alert("Une erreur s'est produite pendant l'envoi des commandes : " + errorThrown + ". Veuillez refraîchir la page.")
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
}
|