foodsoft/public/javascripts/ordering.js

206 lines
6.9 KiB
JavaScript
Raw Normal View History

2009-01-06 11:49:19 +01:00
// JavaScript that handles the dynamic ordering quantities on the ordering page.
//
// In a JavaScript block on the actual view, define the article data by calls to setData().
// You should also set the available group balance through setGroupBalance(amount).
//
// Call setDecimalSeparator(char) to overwrite the default character "." with a localized value.
var modified = false // indicates if anything has been clicked on this page
var groupBalance = 0; // available group money
var decimalSeparator = "."; // default decimal separator
var toleranceIsCostly = true; // default tolerance behaviour
2009-01-06 11:49:19 +01:00
// Article data arrays:
var price = new Array();
var unit = new Array(); // items per order unit
var itemTotal = new Array(); // total item price
2011-06-13 16:23:56 +02:00
var quantityOthers = new Array();
2009-01-06 11:49:19 +01:00
var toleranceOthers = new Array();
var itemsAllocated = new Array(); // how many items the group has been allocated and should definitely get
var quantityAvailable = new Array(); // stock_order. how many items are currently in stock
2009-01-06 11:49:19 +01:00
function setDecimalSeparator(character) {
2011-06-13 16:23:56 +02:00
decimalSeparator = character;
2009-01-06 11:49:19 +01:00
}
function setToleranceBehaviour(value) {
toleranceIsCostly = value;
}
2009-01-06 11:49:19 +01:00
function setGroupBalance(amount) {
2011-06-13 16:23:56 +02:00
groupBalance = amount;
2009-01-06 11:49:19 +01:00
}
function addData(itemPrice, itemUnit, itemSubtotal, itemQuantityOthers, itemToleranceOthers, allocated, available) {
2011-06-13 16:23:56 +02:00
i = price.length;
price[i] = itemPrice;
unit[i] = itemUnit;
itemTotal[i] = itemSubtotal;
quantityOthers[i] = itemQuantityOthers;
toleranceOthers[i] = itemToleranceOthers;
itemsAllocated[i] = allocated;
quantityAvailable[i] = available;
2009-01-06 11:49:19 +01:00
}
function increaseQuantity(item) {
2011-06-13 16:23:56 +02:00
value = Number($('#q_' + item).val()) + 1;
update(item, value, $('#t_' + item).val());
2009-01-06 11:49:19 +01:00
}
function decreaseQuantity(item) {
2011-06-13 16:23:56 +02:00
value = Number($('#q_' + item).val()) - 1;
2009-01-06 11:49:19 +01:00
if (value >= 0) {
2011-06-13 16:23:56 +02:00
update(item, value, $('#t_' + item).val());
2009-01-06 11:49:19 +01:00
}
}
function increaseTolerance(item) {
2011-06-13 16:23:56 +02:00
value = Number($('#t_' + item).val()) + 1;
update(item, $('#q_' + item).val(), value);
2009-01-06 11:49:19 +01:00
}
function decreaseTolerance(item) {
2011-06-13 16:23:56 +02:00
value = Number($('#t_' + item).val()) - 1;
2009-01-06 11:49:19 +01:00
if (value >= 0) {
2011-06-13 16:23:56 +02:00
update(item, $('#q_' + item).val(), value);
2009-01-06 11:49:19 +01:00
}
}
function update(item, quantity, tolerance) {
2011-06-13 16:23:56 +02:00
// set modification flag
modified = true
// update hidden input fields
$('#q_' + item).val(quantity);
$('#t_' + item).val(tolerance);
// calculate how many units would be ordered in total
units = calcUnits(unit[item], quantityOthers[item] + Number(quantity), toleranceOthers[item] + Number(tolerance));
if (unitCompletedFromTolerance(unit[item], quantityOthers[item] + Number(quantity), toleranceOthers[item] + Number(tolerance))) {
$('#units_' + item).html('<span style="color:grey">' + String(units) + "</span>");
} else {
$('#units_' + item).html(String(units));
}
// update used/unused quantity
available = Math.max(0, units * unit[item] - quantityOthers[item]);
q_used = Math.min(available, quantity);
// ensure that at least the amout of items this group has already been allocated is used
if (quantity >= itemsAllocated[item] && q_used < itemsAllocated[item]) {
q_used = itemsAllocated[item];
}
$('#q_used_' + item).html(String(q_used));
$('#q_unused_' + item).html(String(quantity - q_used));
$('#q_total_' + item).html(String(Number(quantity) + quantityOthers[item]));
// update used/unused tolerance
if (unit[item] > 1) {
available = Math.max(0, available - q_used - toleranceOthers[item]);
t_used = Math.min(available, tolerance);
$('#t_used_' + item).html(String(t_used));
$('#t_unused_' + item).html(String(tolerance - t_used));
$('#t_total_' + item).html(String(Number(tolerance) + toleranceOthers[item]));
}
// update total price
if(toleranceIsCostly == true) {
itemTotal[item] = price[item] * (Number(quantity) + Number(tolerance));
} else {
itemTotal[item] = price[item] * (Number(quantity));
}
2011-06-13 16:23:56 +02:00
$('#price_' + item + '_display').html(asMoney(itemTotal[item]));
// update missing units
missing_units = unit[item] - (((quantityOthers[item] + Number(quantity)) % unit[item]) + Number(tolerance) + toleranceOthers[item])
if (missing_units < 0) {
missing_units = 0;
}
$('#missing_units_' + item).html(String(missing_units));
2009-01-06 11:49:19 +01:00
// update balance
updateBalance();
2011-06-13 16:23:56 +02:00
}
2009-01-06 11:49:19 +01:00
function increaseStockQuantity(item) {
2011-06-13 16:23:56 +02:00
value = Number($('#q_' + item).val()) + 1;
if (value <= quantityAvailable[item] - quantityOthers[item]) {
updateStockQuantity(item, value);
}
}
function decreaseStockQuantity(item) {
2011-06-13 16:23:56 +02:00
value = Number($('#q_' + item).val()) - 1;
if (value >= 0) {
updateStockQuantity(item, value);
}
}
function updateStockQuantity(item, quantity) {
2011-06-13 16:23:56 +02:00
// set modification flag
modified = true
2011-06-13 16:23:56 +02:00
// update hidden input fields
$('#q_' + item).val() = quantity;
2011-06-13 16:23:56 +02:00
// update used/unused quantity
available = Math.max(0, quantityAvailable[item] - quantityOthers[item]);
q_used = Math.min(available, quantity);
2011-06-13 16:23:56 +02:00
// ensure that at least the amout of items this group has already been allocated is used
if (quantity >= itemsAllocated[item] && q_used < itemsAllocated[item]) {
q_used = itemsAllocated[item];
}
$('#q_used_' + item).html(String(q_used));
$('#q_total_' + item).html(String(Number(quantity) + quantityOthers[item]));
2011-06-13 16:23:56 +02:00
// update total price
itemTotal[item] = price[item] * (Number(quantity));
$('#price_' + item + '_display').html(asMoney(itemTotal[item]));
// update balance
updateBalance();
}
2009-01-06 11:49:19 +01:00
function asMoney(amount) {
2011-06-13 16:23:56 +02:00
return String(amount.toFixed(2)).replace(/\./, ",");
2009-01-06 11:49:19 +01:00
}
function calcUnits(unitSize, quantity, tolerance) {
units = Math.floor(quantity / unitSize)
remainder = quantity % unitSize
2011-06-13 16:23:56 +02:00
return units + ((remainder > 0) && (remainder + tolerance >= unitSize) ? 1 : 0)
2009-01-06 11:49:19 +01:00
}
function unitCompletedFromTolerance(unitSize, quantity, tolerance) {
remainder = quantity % unitSize
return (remainder > 0 && (remainder + tolerance >= unitSize));
}
function updateBalance() {
// update total price and order balance
total = 0;
for (i = 0; i < itemTotal.length; i++) {
total += itemTotal[i];
2011-06-13 16:23:56 +02:00
}
$('#total_price').html(asMoney(total));
2009-01-06 11:49:19 +01:00
balance = groupBalance - total;
2011-06-13 16:23:56 +02:00
$('#new_balance').html(asMoney(balance));
$('#total_balance').val(asMoney(balance));
2009-01-06 11:49:19 +01:00
// determine bgcolor and submit button state according to balance
if (balance < 0) {
bgcolor = '#FF0000';
2011-06-13 16:23:56 +02:00
$('#submit_button').disabled = true;
2009-01-06 11:49:19 +01:00
} else {
bgcolor = '';
2011-06-13 16:23:56 +02:00
$('#submit_button').disabled = false;
2009-01-06 11:49:19 +01:00
}
// update bgcolor
for (i = 0; i < itemTotal.length; i++) {
2011-06-13 16:23:56 +02:00
$('#ltd_price_' + i).css('background-color', bgcolor);
}
}
2009-01-06 11:49:19 +01:00
function confirmSwitchOrder() {
2011-06-13 16:23:56 +02:00
return (!modified || confirm('Änderungen an dieser Bestellung gehen verloren, wenn zu einer anderen Bestellung gewechselt wird.'))
2009-01-06 11:49:19 +01:00
}