WooCommerce CSV Export-plugin: verschil tussen versies

Uit De Vliegende Brigade
Naar navigatie springen Naar zoeken springen
(Nieuwe pagina aangemaakt met ' == Zie ook == * WooCommerce CSV Import Suite')
 
 
(4 tussenliggende versies door dezelfde gebruiker niet weergegeven)
Regel 1: Regel 1:
 +
Volledige naam van deze WooCommerce-extentie (dus eigenlijk geen plugin): ''WooCommerce Customer / Order / Coupon Export''
 +
 +
== Order-export - Issues ==
 +
 +
=== Two empty lines ===
 +
 +
The resulting export file contains two empty lines at the top. So far, I have to remove these manually, before I can use the file for import using ''[[WooCommerce CSV Import Suite]]''.
 +
 +
=== order_number missing ===
 +
 +
The column ''order_number'' is empy, while ''order_number_formatted'' is not empty. So far, I have to correct this before import, otherwise an error will occur.
 +
 +
=== Order notes incomplete ===
 +
 +
The ''order notes'' (that describe the history of the order) lack time-stamps & the actors that did something. That's quite problematic, for it destroys the paper trail of an order.
 +
 +
This data is available in a WordPress-site in table <code>wp_comments</code>. E.g.:
 +
 +
<pre>
 +
select
 +
  *
 +
from
 +
  wp_comments
 +
where
 +
  comment_post_id = 65353;
 +
</pre>
 +
 +
== Support ==
 +
 +
Support volgens https://woocommerce.com/document/ordercustomer-csv-export
 +
 +
* https://woocommerce.com/document/ordercustomer-csv-export/#troubleshooting → Link werkt niet
 +
* https://woocommerce.com/document/ordercustomer-csv-export/#faqs → Link werkt niet
 +
* https://woocommerce.com/my-account/create-a-ticket/
 +
** https://woocommerce.com/document/woocommerce-self-service-guide/
  
 
== Zie ook ==
 
== Zie ook ==
  
 
* [[WooCommerce CSV Import Suite]]
 
* [[WooCommerce CSV Import Suite]]
 +
 +
== Bronnen ==
 +
 +
* https://woocommerce.com/document/ordercustomer-csv-export/
 +
* https://woocommerce.com/document/ordercustomer-csv-export-developer-documentation/

Huidige versie van 26 mei 2022 om 14:23

Volledige naam van deze WooCommerce-extentie (dus eigenlijk geen plugin): WooCommerce Customer / Order / Coupon Export

Order-export - Issues

Two empty lines

The resulting export file contains two empty lines at the top. So far, I have to remove these manually, before I can use the file for import using WooCommerce CSV Import Suite.

order_number missing

The column order_number is empy, while order_number_formatted is not empty. So far, I have to correct this before import, otherwise an error will occur.

Order notes incomplete

The order notes (that describe the history of the order) lack time-stamps & the actors that did something. That's quite problematic, for it destroys the paper trail of an order.

This data is available in a WordPress-site in table wp_comments. E.g.:

select
   *
from
   wp_comments
where
   comment_post_id = 65353;

Support

Support volgens https://woocommerce.com/document/ordercustomer-csv-export

Zie ook

Bronnen