Quote Originally Posted by rhodesengr View Post
When I update a GC order from Zencart to "Google Shipped" it updates to shipped but then further updates it it to "Google Canceled". It does not really cancel the order on the Google side but it seems wrong to show as canceled in Zencart. Is there a way to fix this?
Quote Originally Posted by Mircose View Post
hello.. did u find the answer? or anybody else?

I also would like to know

I just found it:

the problem on the responsehandler.php

on the lines:

define('GC_STATE_SHIPPED', 105);
define('GC_STATE_CANCELED', 111);


it should be:
define('GC_STATE_SHIPPED', 102);
define('GC_STATE_CANCELED', 105);