Hello.
Is there a way to reset the status of a forced voided order to "pending"?![]()
Hello.
Is there a way to reset the status of a forced voided order to "pending"?![]()
***Melay***
Web Developer
Philippines
If you have access to Sql Server Management Studio, or you could do it in the 'Advanced > Run SQL' box in the admin site, but you get no feedback.
replace x with the order number.Code:UPDATE [Orders] SET [TransactionState] = 'PENDING' WHERE [OrderNumber] = x
But what the ramifications of doing this is, who knows!
http://www.esedirect.co.uk
--------------------------------------------------------------------------
Using MS 9.2.0.0 with the following customisations:
Lightbox/Fancybox enlarged images;
Auto-suggest searchbox;
Extra product information shown only to our IP Address (such as supplier info, costs, etc.);
Failed transactions emailed via trigger;
Custom app to show basket contents when customer online;
Orders pushed through to accounting systems.
All the above without source!
Hi Esedirect!
Thanks! I almost forgot about the "Advanced > Run SQL" feature...^_^
I started with that code, but then there were more than that when force voiding an order, I read.
I did this
where -1 means to remove the inventory again when it was restored during the force void (1 is to restore the inventory).Code:aspdnsf_AdjustInventory <orderNumber>,-1
and
This works, the order was back to 'Pending'. But as you've said, I don't know the ramifications of such action. ^_^Code:update Orders set VoidTXCommand=NULL, TransactionState='PENDING', VoidedOn=NULL, IsNew=1 where OrderNumber=<orderNumber>
This is just for simple orders, no coupons or giftcards, or anything else. When I looked at the code, there are more to it than just what I did. More complicated orders, more complicated solution for this problem.
Thanks again.![]()
Last edited by BloomerBeak; 09-15-2010 at 06:46 AM.
***Melay***
Web Developer
Philippines