Kryptronic Software Support Forum

You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.

#1 02-18-2011 13:52:58

stuseattle
Member
Registered: 05-25-2009
Posts: 90

Marking all orders sent?

I'm sorry . . I'm sure I asked this before but can't find the response.

Is there any way in CCP6 to mark ALL orders as fulfilled or shipped at once?
We do all of our processing offline which, of course, leaves the online status of orders as  "pending."
We'd like to be able to just go in once a week or month and change them all to completed.

How 'bout in  CCP7?

thanks,

stu

Offline

 

#2 02-18-2011 14:59:46

Dave
Member
Registered: 07-05-2003
Posts: 11233

Re: Marking all orders sent?

Raw DB commands.

CCP6

Code:

UPDATE `ccp0_orders` SET `status` = 'C'

CCP7

Code:

UPDATE `ecom_orders` SET `status` = 'C'

You should probably update the status for the items in the order too.

CCP6

Code:

UPDATE `ccp0_orderitems` SET `shipstatus` = 'S'

CCP7

Code:

UPDATE `ecom_orderitems` SET `shipstatus` = 'S'

Offline

 

Board footer