-
Notifications
You must be signed in to change notification settings - Fork 151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Shopping Cart #116
Comments
I wonder if Frappe and Builder could be extended to enable apps to provide builder components that could help close this gap. I'm thinking the |
Yes, indeed, the only limitation is that That's a transaction killer in most b2c cases. |
I wonder if one could "simply import" this There are a couple of thoughts that I want to put down here:
To design the checkout freely with builder:
Checkout: Server Session: either login session or dummy session (email field in checkout form - fingerprint) *
On success
* because even a debounced email input field is unstable (think: user correction), we should create a temporary user based on the (within the time horizon) more stable fingerprint. We can create those users as "throwaway users" garbage collected after say 30 days, bit which can be transformed into "real users" after signup. Of the email If the email / phone ends up matching a real user, the checkout should show a password filed + a login button to establish an authenticated session, instead. So far so good, brainstorming to be continued. |
Hi @blaggacao , there are so many threads with these interesting loose discussions (https://discuss.frappe.io/t/shopping-cart-logic/43263/20) , with something as important as this, that as I said in the webshop telegram group, it's unbelievable that they don't assign someone as repository leader. I saw great input from you, it would be great to have the others involved in this issue or in a single thread. |
I'm currently refactoring frappe/payments#53 - without a repository leader. :-) But my idea is to prepare the groundwork for a checkout feature. |
@blaggacao awesome work, like others you have too, but we need the repository leader to accept your PRs 😅 |
Next round: frappe/frappe#25820 -- step by step, we may be getting there. 🚀 |
@blaggacao awesome! |
I wonder a bit what the way forward would be for Frappe deployments on the shopping cart implementation.
As I currently (2 days into exploring builder) understand it, it's relatively easy to efficiently query all sorts of data from the backend.
Beyond that, the
frappe/webshop
app implents a B2B store component for logged in users.What seems to be missing is an anonymous ("lightweight") checkout experience, that works only with the cuatomer's email or phone number + some memoized browers-local key/coockie to authorize recovery of any ongoing or past transaction, but without formal registration.
The text was updated successfully, but these errors were encountered: