Paypal Express Conversion Map For Cs-Cart 3X

Hello,

I'am using Paypal express (Not Regular Paypal) checkout for version 3X. When a customer purchases is automatically set the status as "Shipped". For some reason I don't see a conversion map for Paypal Express like there is for the regular paypal checkout. Anyone have any ideas on how to map or change the statues when using Express checkout?

Warm regards

Unfortunately this version does not have statuses map. All statuses are hardcoded in the following file

payments/paypal_express.php

search by

$pp_response['order_status']

Unfortunately this version does not have statuses map. All statuses are hardcoded in the following file

payments/paypal_express.php

search by

$pp_response['order_status']

Thank you, I did find the file. Just need to find which area is for an approved order. Currently when its approved it marks it as shipped

What is the status letter of the Shipped status?

http://prntscr.com/klwlp4

What is the status letter of the Shipped status?

http://prntscr.com/klwlp4

Hello,

Thank you for your response!

The letter for shipped is "P"

The Letter for what we would like it marked as is "G"

The letter "P" is for "Processed" in default install so the system is working as it should. There is no "G" in default install so you will need to make code changes in order to change "Processed" orders to whatever "G" stands for.

In the mentioned file replace two times

$pp_response['order_status'] = 'P';

with

$pp_response['order_status'] = 'G';

Then check the result