My logs reported the following error when refreshing my order list in ShipStation:

Notice: Undefined property: stdClass::$created in uc_shipstation_export_orders() (line 236 of /var/www/html/pethub.com/sites/all/modules/uc_shipstation/uc_shipstation.module).

In addition, the orders all showed an Order Date of 12/31/1969.

Line 236 has the following line of code:
$order_date = $transaction->created;

Changing it to the following had the desired effect:
$order_date = $transaction->received;

Comments

tomarnold2 created an issue. See original summary.

andrey.troeglazov’s picture

Assigned: Unassigned » andrey.troeglazov

Hello,
thank you,
I`ll check it.

  • andrey.troeglazov committed 314d225 on 7.x-1.x
    Issue #2849651 by tomarnold2, andrey.troeglazov: Undefd prop: stdClass...
andrey.troeglazov’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.