Jun Dolor
Jun Dolor

Reputation: 639

What is value of OpenCart customer_id on oc_oder for guest account

We are using OpenCart. In case of guest checkout, what would be the value of customer_id on oc_order? I would assume that it would be zero?

Upvotes: 1

Views: 222

Answers (1)

Jonid Bendo
Jonid Bendo

Reputation: 890

Yeap you are right.

You can find it specified in catalog/controller/checkout/confirm.php

            elseif (isset($this->session->data['guest'])) {
            $data['customer_id'] = 0;

Upvotes: 1

Related Questions