內容簡介
## 摘要:
這個外掛用於提供 WooCommerce 訂單管理功能,為 WooCommerce 商店提供詳細報告和分析。
## 問題與答案:
1. 什麼是這個外掛的主要目的?
- 這個外掛的主要目的是提供 WooCommerce 訂單管理功能,為 WooCommerce 商店提供詳細報告和分析。
2. 哪些篩選選項可以幫助管理員用戶搜索 WooCommerce 訂單的詳細信息?
- 管理員用戶可以使用日期範圍過濾器和訂單狀態過濾器,包括其他篩選選項如分類多選、產品多選等。
3. 請說明訂單摘要報告中包含哪些數據?
- 訂單編號、訂單日期、姓名、電話、電子郵件、付款方式、運送地址、運送方式、運費總額、訂單總額、狀態以及備註。
4. 分類銷售報告中會展示哪些數據?
- SKU、產品名稱、訂單數量、該產品的總銷售額、對應分類以及訂單號。
5. 產品銷售報告中將展示哪些數據?
- 產品名稱、訂單號、創建日期、SKU、本次訂單中產品數量、總價、相關分類、收貨人姓名、收貨人電子郵件、收貨人電話、收貨地址。
6. 產品每筆訂單銷售報告中將展示哪些數據?
- SKU、產品名稱、本次訂單中的數量、該產品本次訂單的總銷售額、對應分類以及訂單號。
外掛標籤
開發者團隊
② 後台搜尋「Order Management for WooCommerce」→ 直接安裝(推薦)
原文外掛簡介
Powerful reporting and analytics tools for WooCommerce order management.
Detail Description
General
Admin user will get a date range filter and order status filter using that user can search the details of the woocommerce orders. Other filters like Categories Multi Select, Products Multi Select are provided on specific reports. Filter of Group By Category is provided in Products Sold Per Order. Filter of show Deleted only is provided in Product Sold Report where if item or product is deleted in woocommerce then its data will be shown only.
Orders Summary
A table will be shown with the following data:
1. Order Number: ($order->get_order_number())
2. Date: (gmdate(‘d-m-Y’, strtotime($order->get_date_created())))
3. Name: ($order->get_shipping_first_name().’ ‘.$order->get_shipping_last_name())
4. Phone: ($order->get_billing_phone())
5. Email: ($order->get_billing_email())
6. Payment Method: ($order->get_payment_method_title())
7. Shipping Address: ($order->get_shipping_address_1().’ ‘.$order->get_shipping_address_2())
8. Shipping Method: ($order->get_shipping_method())
9. Shipping Total: ($order->get_shipping_total())
10. Total: ($order->get_total())
11. Status: ($order->get_status())
12. Notes: ($order->get_customer_note())
Categories Sold
A table will be shown with the following data:
1. SKU: Product SKU
2. Product: Product name
3. Quantity: Quantity orders in all orders (specific filters)
4. Gross Sales: Gross Sales of this product in all orders (specific filters)
5. Categories: Product belongs to these categories
6. Orders: Order numbers with link to backend detail page.
Product Sold
A table will be shown with the following data:
1. Products: Product name
2. Orders: Order number
3. Created Date: Date on which order created (Y-m-d)
4. SKU: Product SKU
5. Quantity: Product qty ordered in this order only
6. Total: Product Total in that order
7. Categories: Product belongs to these categories
8. Name: Name of person to ship to ($order->get_shipping_first_name().’ ‘.$order->get_shipping_last_name())
9. Email: Email of person billed ($order->get_billing_email())
10. Phone: Phone of person billed ($order->get_billing_phone())
11. Address: Shipping Address, State, ZipCode / PostCode
Product Sold Per Order
A table will be shown with the following data:
1. SKU: Product SKU
2. Product: Product name
3. Quantity: Quantity in this order
4. Gross Sales: Gross Sales of this product in this order
5. Categories: Product belongs to these categories
6. Orders: Order number with link to backend detail page.
Notes
All data should be cross-verified as there could be some mistakes in calculations.
If you have too many orders and the date range is large like one 6 months or 1 year etc
it will take sometime to load depending on your server load and specs plus memory allocated to wordpress application (your site) matter alot here when doing large queries
Source Code
The source code for the compressed JavaScript libraries files used in this plugin can be found in the admin/js/full directory within the plugin folder.
The minified JavaScript files are located in the admin/js/min directory.
Script Loading
This plugin conditionally loads minified or full JavaScript files based on the SCRIPT_DEBUG constant.
When SCRIPT_DEBUG is set to true, the full JavaScript files are loaded from admin/js/full/.
When SCRIPT_DEBUG is set to false, the minified JavaScript files are loaded from admin/js/min/.
To enable script debugging, define SCRIPT_DEBUG as true in your wp-config.php file:
define( ‘SCRIPT_DEBUG’, true );
