Well as promised here is the php for integrating with the SOP order system (using 7.5).
Use at your own risk - we have noticed many more unrelated orders having the same master number ever since we started using this.
MS seems to think this is because we haven't updated to the latest service pack (our current login shows 7.50g3), and updating for us seems to be a problem as our server has version 8 installed (you can tell the guy before me knew what he was doing *sigh*).
Sorry for lack of documentation - though if you're trying to use this I would assume you're versed enough in php to figure it out.
Basically to submit the order:
Instantiate the class GPIntegrate
Then call the enter order function:
If you find anything that could be improved let me know, so that I can update ours as well.
Cheers to you all - and hope you find it usefull.
Use at your own risk - we have noticed many more unrelated orders having the same master number ever since we started using this.
MS seems to think this is because we haven't updated to the latest service pack (our current login shows 7.50g3), and updating for us seems to be a problem as our server has version 8 installed (you can tell the guy before me knew what he was doing *sigh*).
Sorry for lack of documentation - though if you're trying to use this I would assume you're versed enough in php to figure it out.
Basically to submit the order:
Instantiate the class GPIntegrate
Code:
$obj = new GPIntegrate();
Code:
$obj->EnterOrder($connectionClass, $item_array, $customerDataClass);
If you find anything that could be improved let me know, so that I can update ours as well.
Cheers to you all - and hope you find it usefull.