How do I cancel a shipment made by mistake on the wrong order?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
9 年 前
One of our people shipped against the wrong order and we need to change the status on that order back to "Not yet shipped" from "Shipped". Can this be done?

Thanks for any help.

Version nopCommerce 3.10
9 年 前
Not in Admin.  You'll need to use SSMS (or other SQL tool)

UPDATE [Order]
set [ShippingStatusId] = 20
WHERE [Id] = nnnnn

(nnnnn is your Order Id.   NotYetShipped = 20)
9 年 前
Thanks for the help!
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.