Submit
Path:
~
/
/
usr
/
local
/
sitepad
/
editor
/
site-data
/
plugins
/
kkart-pro
/
assets
/
js
/
admin
/
File Content:
reports.js
jQuery(function( $ ) { function showTooltip( x, y, contents ) { $( '<div class="chart-tooltip">' + contents + '</div>' ).css( { top: y - 16, left: x + 20 }).appendTo( 'body' ).fadeIn( 200 ); } var prev_data_index = null; var prev_series_index = null; $( '.chart-placeholder' ).bind( 'plothover', function ( event, pos, item ) { if ( item ) { if ( prev_data_index !== item.dataIndex || prev_series_index !== item.seriesIndex ) { prev_data_index = item.dataIndex; prev_series_index = item.seriesIndex; $( '.chart-tooltip' ).remove(); if ( item.series.points.show || item.series.enable_tooltip ) { var y = item.series.data[item.dataIndex][1], tooltip_content = ''; if ( item.series.prepend_label ) { tooltip_content = tooltip_content + item.series.label + ': '; } if ( item.series.prepend_tooltip ) { tooltip_content = tooltip_content + item.series.prepend_tooltip; } tooltip_content = tooltip_content + y; if ( item.series.append_tooltip ) { tooltip_content = tooltip_content + item.series.append_tooltip; } if ( item.series.pie.show ) { showTooltip( pos.pageX, pos.pageY, tooltip_content ); } else { showTooltip( item.pageX, item.pageY, tooltip_content ); } } } } else { $( '.chart-tooltip' ).remove(); prev_data_index = null; } }); $( '.kkart_sparkline.bars' ).each( function() { var chart_data = $( this ).data( 'sparkline' ); var options = { grid: { show: false } }; // main series var series = [{ data: chart_data, color: $( this ).data( 'color' ), bars: { fillColor: $( this ).data( 'color' ), fill: true, show: true, lineWidth: 1, barWidth: $( this ).data( 'barwidth' ), align: 'center' }, shadowSize: 0 }]; // draw the sparkline $.plot( $( this ), series, options ); }); $( '.kkart_sparkline.lines' ).each( function() { var chart_data = $( this ).data( 'sparkline' ); var options = { grid: { show: false } }; // main series var series = [{ data: chart_data, color: $( this ).data( 'color' ), lines: { fill: false, show: true, lineWidth: 1, align: 'center' }, shadowSize: 0 }]; // draw the sparkline $.plot( $( this ), series, options ); }); var dates = $( '.range_datepicker' ).datepicker({ changeMonth: true, changeYear: true, defaultDate: '', dateFormat: 'yy-mm-dd', numberOfMonths: 1, minDate: '-20Y', maxDate: '+1D', showButtonPanel: true, showOn: 'focus', buttonImageOnly: true, onSelect: function() { var option = $( this ).is( '.from' ) ? 'minDate' : 'maxDate', date = $( this ).datepicker( 'getDate' ); dates.not( this ).datepicker( 'option', option, date ); } }); var a = document.createElement( 'a' ); if ( typeof a.download === 'undefined' ) { $( '.export_csv' ).hide(); } // Export $( '.export_csv' ).click( function() { var exclude_series = $( this ).data( 'exclude_series' ) || ''; exclude_series = exclude_series.toString(); exclude_series = exclude_series.split( ',' ); var xaxes_label = $( this ).data( 'xaxes' ); var groupby = $( this ) .data( 'groupby' ); var index_type = $( this ).data( 'index_type' ); var export_format = $( this ).data( 'export' ); var csv_data = ''; var s, series_data, d; if ( 'table' === export_format ) { $( this ).offsetParent().find( 'thead tr,tbody tr' ).each( function() { $( this ).find( 'th, td' ).each( function() { var value = $( this ).text(); value = value.replace( '[?]', '' ).replace( '#', '' ); csv_data += '"' + value + '"' + ','; }); csv_data = csv_data.substring( 0, csv_data.length - 1 ); csv_data += '\n'; }); $( this ).offsetParent().find( 'tfoot tr' ).each( function() { $( this ).find( 'th, td' ).each( function() { var value = $( this ).text(); value = value.replace( '[?]', '' ).replace( '#', '' ); csv_data += '"' + value + '"' + ','; if ( $( this ).attr( 'colspan' ) > 0 ) { for ( i = 1; i < $(this).attr('colspan'); i++ ) { csv_data += '"",'; } } }); csv_data = csv_data.substring( 0, csv_data.length - 1 ); csv_data += '\n'; }); } else { if ( ! window.main_chart ) { return false; } var the_series = window.main_chart.getData(); var series = []; csv_data += '"' + xaxes_label + '",'; $.each( the_series, function( index, value ) { if ( ! exclude_series || $.inArray( index.toString(), exclude_series ) === -1 ) { series.push( value ); } }); // CSV Headers for ( s = 0; s < series.length; ++s ) { csv_data += '"' + series[s].label + '",'; } csv_data = csv_data.substring( 0, csv_data.length - 1 ); csv_data += '\n'; // Get x axis values var xaxis = {}; for ( s = 0; s < series.length; ++s ) { series_data = series[s].data; for ( d = 0; d < series_data.length; ++d ) { xaxis[series_data[d][0]] = []; // Zero values to start for ( var i = 0; i < series.length; ++i ) { xaxis[series_data[d][0]].push(0); } } } // Add chart data for ( s = 0; s < series.length; ++s ) { series_data = series[s].data; for ( d = 0; d < series_data.length; ++d ) { xaxis[series_data[d][0]][s] = series_data[d][1]; } } // Loop data and output to csv string $.each( xaxis, function( index, value ) { var date = new Date( parseInt( index, 10 ) ); if ( 'none' === index_type ) { csv_data += '"' + index + '",'; } else { if ( groupby === 'day' ) { csv_data += '"' + date.getUTCFullYear() + '-' + parseInt( date.getUTCMonth() + 1, 10 ) + '-' + date.getUTCDate() + '",'; } else { csv_data += '"' + date.getUTCFullYear() + '-' + parseInt( date.getUTCMonth() + 1, 10 ) + '",'; } } for ( var d = 0; d < value.length; ++d ) { var val = value[d]; if ( Math.round( val ) !== val ) { val = parseFloat( val ); val = val.toFixed( 2 ); } csv_data += '"' + val + '",'; } csv_data = csv_data.substring( 0, csv_data.length - 1 ); csv_data += '\n'; } ); } csv_data = 'data:text/csv;charset=utf-8,\uFEFF' + encodeURIComponent( csv_data ); // Set data as href and return $( this ).attr( 'href', csv_data ); return true; }); });
Submit
FILE
FOLDER
Name
Size
Permission
Action
api-keys.js
3907 bytes
0644
api-keys.min.js
2203 bytes
0644
backbone-modal.js
3564 bytes
0644
backbone-modal.min.js
2245 bytes
0644
kkart-clipboard.js
858 bytes
0644
kkart-clipboard.min.js
327 bytes
0644
kkart-enhanced-select.js
9265 bytes
0644
kkart-enhanced-select.min.js
5366 bytes
0644
kkart-orders.js
1988 bytes
0644
kkart-orders.min.js
1153 bytes
0644
kkart-product-export.js
3627 bytes
0644
kkart-product-export.min.js
1973 bytes
0644
kkart-product-import.js
2643 bytes
0644
kkart-product-import.min.js
1484 bytes
0644
kkart-setup.js
10238 bytes
0644
kkart-setup.min.js
6519 bytes
0644
kkart-shipping-classes.js
8147 bytes
0644
kkart-shipping-classes.min.js
4565 bytes
0644
kkart-shipping-zone-methods.js
15463 bytes
0644
kkart-shipping-zone-methods.min.js
8723 bytes
0644
kkart-shipping-zones.js
9138 bytes
0644
kkart-shipping-zones.min.js
4852 bytes
0644
kkart_admin.js
13768 bytes
0644
kkart_admin.min.js
8261 bytes
0644
marketplace-suggestions.js
15910 bytes
0644
marketplace-suggestions.min.js
6252 bytes
0644
meta-boxes-coupon.js
2029 bytes
0644
meta-boxes-coupon.min.js
1177 bytes
0644
meta-boxes-order.js
46662 bytes
0644
meta-boxes-order.min.js
28628 bytes
0644
meta-boxes-product-variation.js
33142 bytes
0644
meta-boxes-product-variation.min.js
17982 bytes
0644
meta-boxes-product.js
22161 bytes
0644
meta-boxes-product.min.js
13440 bytes
0644
meta-boxes.js
2532 bytes
0644
meta-boxes.min.js
1750 bytes
0644
network-orders.js
2340 bytes
0644
network-orders.min.js
1217 bytes
0644
product-ordering.js
2306 bytes
0644
product-ordering.min.js
1510 bytes
0644
quick-edit.js
6895 bytes
0644
quick-edit.min.js
4435 bytes
0644
reports.js
6463 bytes
0644
reports.min.js
3251 bytes
0644
settings-views-html-settings-tax.js
12267 bytes
0644
settings-views-html-settings-tax.min.js
6142 bytes
0644
settings.js
5488 bytes
0644
settings.min.js
3633 bytes
0644
system-status.js
3577 bytes
0644
system-status.min.js
1967 bytes
0644
term-ordering.js
4268 bytes
0644
term-ordering.min.js
2245 bytes
0644
users.js
3855 bytes
0644
users.min.js
1881 bytes
0644
N4ST4R_ID | Naxtarrr