136 lines
3.4 KiB
JavaScript
Executable File
136 lines
3.4 KiB
JavaScript
Executable File
//START:
|
|
$(document).ready(
|
|
|
|
function() {
|
|
// confirm exit
|
|
window.onbeforeunload = confirmExit;
|
|
// prevent submit by enter press
|
|
lockEnter();
|
|
// parent info
|
|
$("#parent_name").change(
|
|
function() {
|
|
$(".loading_panel").css("display", "block");
|
|
setTimeout(function() {
|
|
getParentInfo($("#parent_id").val(), 'Accounts');
|
|
}, 1000);
|
|
|
|
});
|
|
// categories
|
|
getCategoriesList();
|
|
// its vat free change
|
|
$("#no_tax").change(function() {
|
|
// calculate totals
|
|
var count = $('#' + itemsTable + '_T tr').length - 1; // -1 -
|
|
// thead row
|
|
for (var index = 0; index != count; index++)
|
|
calculateRow(index);
|
|
});
|
|
$("#stock").change(function() {
|
|
$("#stock_id").val(($("#stock :selected").val()));
|
|
});
|
|
$("#currency_id").change(function() {
|
|
getNBPCurrencyExchange($("#currency_id :selected").val());
|
|
|
|
});
|
|
|
|
$("#ecmpaymentcondition_name").change(
|
|
function() {
|
|
$(".loading_panel").css("display", "block");
|
|
setTimeout(function() {
|
|
calculatePaymentDate($("#ecmpaymentcondition_id").val());
|
|
$(".loading_panel").css("display", "none");
|
|
|
|
});
|
|
});
|
|
$('#paid_val').change(function() {
|
|
calculateTotal();
|
|
});
|
|
$('#prepaid').change(function() {
|
|
calculateTotal();
|
|
});
|
|
// searchProductInput change
|
|
$('#searchProductsInput').keyup(function() {
|
|
searchProducts();
|
|
});
|
|
DrawHeaders();
|
|
|
|
if (($("#new_number").val() == true)
|
|
&& ($("#duplicate").val() != true) && ($("#is_correct").val() != true) && ($("#is_wz").val() != true)) {
|
|
generateNumber();
|
|
|
|
} else if (($("#new_number").val() == true)
|
|
&& ($("#duplicate").val() == true)) {
|
|
generateNumber();
|
|
getParentInfo($("#parent_id").val(),
|
|
'Accounts');
|
|
getItems();
|
|
} else if (($("#new_number").val() == true)
|
|
&& ($("#is_correct").val() == true)) {
|
|
generateNumberCorrect();
|
|
getParentInfo($("#parent_id").val(),
|
|
'Accounts');
|
|
getItems();
|
|
}else if (($("#new_number").val() == true)
|
|
&& ($("#is_wz").val() == true)) {
|
|
generateNumber();
|
|
|
|
getParentInfo($("#parent_id").val(),
|
|
'Accounts');
|
|
getItemsFromWZ();
|
|
} else {
|
|
getParentInfo($("#parent_id").val(),
|
|
'Accounts');
|
|
getItems();
|
|
}
|
|
|
|
// handle setItems
|
|
setITEMS = function() {
|
|
var formname = 'EditView';
|
|
if (check_form_(formname) == true) {
|
|
SetTab('ITEMS');
|
|
}
|
|
};
|
|
|
|
});
|
|
|
|
// handle save
|
|
var check_form_ = check_form;
|
|
check_form = function(formname) {
|
|
window.onbeforeunload = null;
|
|
if (items.length == 0) {
|
|
alert("Brak produktów");
|
|
return false;
|
|
}
|
|
$(".loading_panel").css("display", "block");
|
|
// calculate totals
|
|
var count = $('#' + itemsTable + '_T tr').length - 1; // -1 - thead row
|
|
for (var index = 0; index != count; index++)
|
|
calculateRow(index);
|
|
|
|
$("#total_netto").val($("#t_netto").val());
|
|
$("#total_brutto").val($("#left").text());
|
|
$("#discount").val($("#disc").val());
|
|
$("#position_list").val(JSON.stringifyNoSecurity(items));
|
|
if (check_form_(formname) == false) {
|
|
window.onbeforeunload = confirmExit;
|
|
$(".loading_panel").css("display", "none");
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
|
|
};
|
|
function confirmExit() {
|
|
return "";
|
|
}
|
|
|
|
function lockEnter() {
|
|
// prevent default
|
|
$(window).keydown(function(event) {
|
|
if (event.keyCode == 13 && $(":focus").prop('tagName')!='TEXTAREA') {
|
|
event.preventDefault();
|
|
return false;
|
|
}
|
|
});
|
|
}
|