Cs-Cart 4.4.3 Reward Points Bugs

cant use full reward point as payment if the price is $0
cs-cart 4.4.3

Got error:
"Notice Payment method not found. It could've been disabled, or a technical problem occurred. Please choose a payment method and try again."

Note:

if not using full reward point at least $1 and pay the invoice ..

it will sucessful

error only occurred if we use full reward point until the price is 0

error.jpg

cant use full reward point as payment if the price is $0
cs-cart 4.4.3

Got error:
"Notice Payment method not found. It could've been disabled, or a technical problem occurred. Please choose a payment method and try again."

Note:

if not using full reward point at least $1 and pay the invoice ..

it will sucessful

error only occurred if we use full reward point until the price is 0

report this issuse... i notices such scenario on one addon website...

http://forum.cs-cart.com/tracker/

Not sure if it was fixed but we ran into it as well. Helpdesk came thru

Thank you for your message.

In order to fix the issue please replace the following line of the app/functions/fn.cart.php file:

if (isset($cart['payment_id'])) {

with this one:

if (!empty($cart['payment_id'])) {

and check the results.