-
Notifications
You must be signed in to change notification settings - Fork 82
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
Add checkout.py class Cart #16
Conversation
Is this a standard Magento API implementation or a custom one ? |
This is a standard Magento API implementation. Here is the I added a sendInfo method to the sales.py Shipment class as well. That Regards, |
@shalabhaggarwal can you please confirm ? |
@sharoonthomas As @iiijjjii says, all the cart related API implementation is a part of core magento API which can be found at http://www.magentocommerce.com/api/soap/checkout/cart/cart.html Also the sendinfo() method on Shipment also is a core API method without documentation which can be found at http://doc-magento.com/_functions/index.html#sendinfo |
Fine, the only issue I have is that this pull request is to master branch while it should have been sent to develop. Either @iiijjjii can send the PR to develop or we can manually merge this tomorrow to develop |
Checkout was added in PR openlabs#16, but never exposed as a module export.
I created a checkout.py file with a class Cart for creating shopping carts and retrieving information from shopping carts.