Jump to content

the best way to store shopping cart and retrieve it although the user has checkout

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
4 replies to this topic

#1
yonghan

yonghan

    Learning Programmer

  • Members
  • PipPipPip
  • 99 posts
Hi all,suppose i want the customer able to update his/her shopping cart although they had checkout and got the information about the products they had bought by email.What should i do to achieve it?Thanks a lot...

#2
Orjan

Orjan

    Writes binary right handed and hex left handed

  • Moderators
  • 3,299 posts
I would let the user fetch an open order back to cart status, and then, on check out, modify the order instead of create a new one. also, I would have the order have an mark to not be let to be processed for delivery during this activity.
__________________________________________
I study Information Systems at Karlstad University when I'm not on CodeCall

#3
yonghan

yonghan

    Learning Programmer

  • Members
  • PipPipPip
  • 99 posts
What if the customer had checkout Orjan?And they close the browser?

#4
Orjan

Orjan

    Writes binary right handed and hex left handed

  • Moderators
  • 3,299 posts
two ways to go, either consider the editing of an order as a cancallation and put a new checkout needed, or let them edit it for a while and if not sent back in, consider it unchanged and forward it for processing anyway.
__________________________________________
I study Information Systems at Karlstad University when I'm not on CodeCall

#5
yonghan

yonghan

    Learning Programmer

  • Members
  • PipPipPip
  • 99 posts
Ok,thanks Orjan..