Add JS files
This commit is contained in:
81
modules/EcmReports/javascript/ReportSalesByGroup.js
Normal file
81
modules/EcmReports/javascript/ReportSalesByGroup.js
Normal file
@@ -0,0 +1,81 @@
|
||||
var data = {};
|
||||
|
||||
function SeachTable() {
|
||||
$.each($("#SearchTable").find('input, select'), function (key,input){
|
||||
data[$(input).prop('name')] = $(input).val();
|
||||
});
|
||||
}
|
||||
|
||||
function generateXLS(){
|
||||
Loader(true);
|
||||
|
||||
//console.log(data);
|
||||
|
||||
setTimeout(function () {
|
||||
XLSAjax(data);
|
||||
}, 100);
|
||||
}
|
||||
function generatePDF(){
|
||||
Loader(true);
|
||||
|
||||
setTimeout(function () {
|
||||
PDFAjax(data)
|
||||
}, 100);
|
||||
}
|
||||
|
||||
function XLSAjax(data) {
|
||||
if(data.document_sales_type== null){
|
||||
console.debug(data.document_sales_type);
|
||||
data['document_sales_type[]']=['invoice','invoice_correct','recipe','recipe_correct'];
|
||||
|
||||
}
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: 'index.php?module=EcmReports&action=ReportSalesByGroup&to_pdf=1&to_xls=1',
|
||||
dataType: "html",
|
||||
data: data,
|
||||
async: false,
|
||||
success: function(response){
|
||||
var new_window = window.open(response);
|
||||
Loader(false);
|
||||
},
|
||||
error: function(err) {
|
||||
Loader(false);
|
||||
}
|
||||
});
|
||||
}
|
||||
function PDFAjax(data) {
|
||||
if(data.document_sales_type== null){
|
||||
console.debug(data.document_sales_type);
|
||||
data['document_sales_type[]']=['invoice','invoice_correct','recipe','recipe_correct'];
|
||||
|
||||
}
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: 'index.php?module=EcmReports&action=ReportSalesByGroup&to_pdf=1&to_pdf_gen=1',
|
||||
dataType: "html",
|
||||
data: data,
|
||||
async: false,
|
||||
success: function(response){
|
||||
var new_window = window.open(response);
|
||||
Loader(false);
|
||||
},
|
||||
error: function(err) {
|
||||
Loader(false);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function Loader(status) {
|
||||
if(status) {
|
||||
$('#search-form').css('opacity', '0.3').css('pointer-events', 'none');
|
||||
} else {
|
||||
$('#search-form').css('opacity', '1').css('pointer-events', 'auto');
|
||||
}
|
||||
}
|
||||
|
||||
function init() {
|
||||
SeachTable();
|
||||
}
|
||||
|
||||
init();
|
||||
Reference in New Issue
Block a user