Subversion Repositories wpShopGermany4

Rev

Rev 4943 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<table style="width:auto !important;" class="widefat fixed tags" border="0" cellspacing="0" cellpadding="0">
        <thead>
                <tr>
                        <th class="manage-column">
                                <a id="name" class="sortable <?php if($this->view['filter']['sort'] == 'name' && $this->view['filter']['order'] == 'orderup') { echo 'active orderdown'; } elseif($this->view['filter']['sort'] == 'name' && $this->view['filter']['order'] == 'orderdown'){ echo 'active orderup'; } ?>" href="/">
                                        <span><?php echo __('Produkt', 'wpsg')?></span>
                                        <span class="sorting-indicator"></span>
                                </a>
                        </th>
                        <th class="manage-column th-right">
                                <a id="total" class="sortable <?php if($this->view['filter']['sort'] == 'total' && $this->view['filter']['order'] == 'orderup') { echo 'active orderdown'; } elseif($this->view['filter']['sort'] == 'total' && $this->view['filter']['order'] == 'orderdown'){ echo 'active orderup'; } ?>" href="/">
                                        <span><?php echo __('Umsatz in', 'wpsg').' '.$this->get_option('wpsg_currency'); ?></span>
                                        <span class="sorting-indicator"></span>
                                </a>
                        </th>
                        <th class="manage-column th-right">
                                <a id="percent-sales" class="sortable <?php if($this->view['filter']['sort'] == 'percent-sales' && $this->view['filter']['order'] == 'orderup') { echo 'active orderdown'; } elseif($this->view['filter']['sort'] == 'percent-sales' && $this->view['filter']['order'] == 'orderdown'){ echo 'active orderup'; } ?>" href="/">
                                        <span><?php echo __('Prozent (Umsatz)', 'wpsg')?></span>
                                        <span class="sorting-indicator"></span>
                                </a>
                        </th>
                        <th class="manage-column th-right">
                                <a id="amount" class="sortable <?php if($this->view['filter']['sort'] == 'amount' && $this->view['filter']['order'] == 'orderup') { echo 'active orderdown'; } elseif($this->view['filter']['sort'] == 'amount' && $this->view['filter']['order'] == 'orderdown'){ echo 'active orderup'; } ?>" href="/">
                                        <span><?php echo __('Menge', 'wpsg')?></span>
                                        <span class="sorting-indicator"></span>
                                </a>
                        </th>
                        <th class="manage-column th-right">
                                <a id="percent-amount" class="sortable <?php if($this->view['filter']['sort'] == 'percent-amount' && $this->view['filter']['order'] == 'orderup') { echo 'active orderdown'; } elseif($this->view['filter']['sort'] == 'percent-amount' && $this->view['filter']['order'] == 'orderdown'){ echo 'active orderup'; } ?>" href="/">
                                        <span><?php echo __('Prozent (Menge)', 'wpsg')?></span>
                                        <span class="sorting-indicator"></span>
                                </a>
                        </th>
                </tr>
        </thead>
        <tbody class="the-list">
                <?php foreach ($this->view['chart']['data']['records'] as $data) { ?>
                <tr class="alternate">
                        <td><strong><?php echo wpsg_hspc($data['name']); ?></strong></td>
                        <td class="td-right"><?php echo wpsg_ff($data['total']); ?></td>
                        <td class="td-right"><?php echo wpsg_ff($data['percent-sales']); ?></td>
                        <td class="td-right"><?php echo wpsg_hspc($data['amount']); ?></td>
                        <td class="td-right"><?php echo wpsg_ff($data['percent-amount']); ?></td>
                </tr>
                <?php } ?>
        </tbody>
</table>

<script type="text/javascript">

jQuery(document).ready(function(){

        jQuery('.sortable').bind('click', function(){ 

                var order = '';
                if(jQuery(this).hasClass('orderup'))
                {
                        jQuery('#wpsg_statistics_order').val('orderup');
                }
                else
                {
                        jQuery('#wpsg_statistics_order').val('orderdown');
                }

                jQuery('#wpsg_statistics_sort').val(jQuery(this).attr('id'));
                
                jQuery.ajax( {
                        url: '<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_statistics&noheader=1&do=sorting',
                        type: 'post',
                        data: jQuery('#wpsg_statistics_form').serialize(),
                        success: function(data) {
                                jQuery('#table-data').html(data);
                                
                        }
                } );
                
                return false;
        });

});

</script>