Plugin Directory

Changeset 2640171


Ignore:
Timestamp:
12/06/2021 05:32:04 PM (4 years ago)
Author:
wooramn
Message:

Release v 1.0.4

Location:
wc-order-reports
Files:
385 added
4 edited

Legend:

Unmodified
Added
Removed
  • wc-order-reports/trunk/admin/partials/helper/class-wc-order-ajax-helper.php

    r2594703 r2640171  
    242242                        $html.='<tr class="highlighted"><td><a href="'.get_admin_url().'post.php?post='.$order_id.'&action=edit" target="_blank">'.$order_id.'</a></td> <td>'.$order_date.'</td> <td>Product Total</td> <td class="td-align-left">Status: '.$order_status.'</td> <td>'.$qty.'</td> <td>'.$sub_total.'</td> <td>'.$shipping.'</td> <td>'.$discount_amount.'</td> <td>'.$tax.'</td> <td>-'.$row_order["refund_amount"].'</td> <td>'.$f_total.'</td></tr>';
    243243                      }else{
    244                         $html.='<tr class="highlighted"><td><a href="'.get_admin_url().'post.php?post='.$order_id.'&action=edit" target="_blank">'.$order_id.'</a></td> <td>'.$order_date.'</td> <td>Order Total</td> <td class="td-align-left">Status: '.$order_status.'</td> <td>'.$qty.'</td> <td>'.$sub_total.'</td> <td>'.$shipping.'</td> <td>'.$discount_amount.'</td> <td>'.$order_tax.'</td> <td></td> <td>'.$order_total.'</td></tr>';
     244                        $html.='<tr class="highlighted"><td><a href="'.get_admin_url().'post.php?post='.$order_id.'&action=edit" target="_blank">'.$order_id.'</a></td> <td>'.$order_date.'</td> <td>email: '.$billing_email.'</td> <td class="td-align-left">Status: '.$order_status.'</td> <td>'.$qty.'</td> <td>'.$sub_total.'</td> <td>'.$shipping.'</td> <td>'.$discount_amount.'</td> <td>'.$order_tax.'</td> <td></td> <td>'.$order_total.'</td></tr>';
    245245                      }         
    246246
  • wc-order-reports/trunk/admin/partials/helper/class-wc-order-db-helper.php

    r2597215 r2640171  
    151151              }
    152152              if(!isset($f_results[$order_id]['order_date'])){
    153                 $f_results[$order_id]['order_date'] = date('M-d-Y',strtotime($row['order_date']));
     153                $f_results[$order_id]['order_date'] = date('Y-m-d',strtotime($row['order_date']));
    154154              }
    155155              if(!isset($f_results[$order_id]['order_status'])){
  • wc-order-reports/trunk/readme.txt

    r2606255 r2640171  
    11=== Order Reports for WooCommerce ===
    2 Contributors: Ramn
     2Contributors: Ramn, esoftcreator
    33Plugin Name: Order Reports for WooCommerce
    44Donate link:
     
    99WC tested up to: 5.6.0
    1010Requires PHP: 5.6 or Higher
    11 Stable tag: 1.0.3
    12 Version: 1.0.3
     11Stable tag: 1.0.4
     12Version: 1.0.4
    1313License: GPLv2 or later
    1414License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5252
    5353== Changelog ==
     54= 1.0.4  - 06/12/2021 =
     55* Change order date formate to numbers
     56* add email address in view order data
     57
    5458= 1.0.3  - 11/09/2021 =
    5559* bug fix - Display quantity in order status wise sales performance report
  • wc-order-reports/trunk/wc-order-reports.php

    r2597215 r2640171  
    1616 * Plugin URI:        https://wordpress.org/plugins/wc-order-reports
    1717 * Description:       Product sales reports for woocommerce store, order overview, oreder status wise performance, sales report download and show options with product item details, advance reporting
    18  * Version:           1.0.3
     18 * Version:           1.0.4
    1919 * Requires at least: 4.4.0
    2020 * Tested up to: 5.8
     
    3939 */
    4040
    41 define( 'Wc_Order_Reports_VERSION', '1.0.3' );
     41define( 'Wc_Order_Reports_VERSION', '1.0.4' );
    4242if ( ! defined( 'WC_ORDER_REPOSTS_PLUGIN_DIR' ) ) {
    4343    define( 'WC_ORDER_REPOSTS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.