Reputation: 639
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
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