Cart FastAPI designed to work with the shopinvader-js-cart library see (https://github.com/shopinvader/shopinvader-js-cart)
Project description
This addon adds a web API on top of the sale.order model to ease the creation of sale orders from Web frontend. The API is designed to work with the shopinvader-js-cart library see (https://github.com/shopinvader/shopinvader-js-cart)
Table of contents
Usage
All the routes under the cart_router must be prefixed with /cart. This is not done in this addon to let the developper mount this router as a sub-app, allowing a specific authentification mechanism.
If mounting the router in the same app as other routers (because it doesn’t need a specific authentification mechanism), just add a prefix:
def _get_app(self): app = super()._get_app() app.include_router(router=cart_router, prefix='/cart') return app
If you want a nested app, just do as follows:
def _get_app(self): app = super()._get_app() app.dependencies_overrides.update( self._get_app_dependencies_overrides() ) cart_app = FastAPI() cart_app.include_router(cart_router) # First copy dependencies overrides from the main app cart_app.dependencies_overrides.update( self._get_app_dependencies_overrides() ) # Then add / modify specific dependencies overrides cart_app.dependencies_overrides.update( self._get_cart_app_dependencies_overrides() ) app.mount("/cart", cart_app) return app
Changelog
16.0.1.0.2 (2023-10-13)
Misc
Bug Tracker
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed feedback.
Do not contact contributors directly about support or help with technical issues.
Credits
Contributors
Laurent Mignon <laurent.mignon@acsone.eu>
Stéphane Bidoul <stephane.bidoul@acsone.eu>
Marie Lejeune <marie.lejeune@acsone.eu>
Simone Orsi <simone.orsi@camptocamp.com>
Maintainers
This module is part of the shopinvader/odoo-shopinvader project on GitHub.
You are welcome to contribute.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file odoo_addon_shopinvader_api_cart-16.0.1.4.0-py3-none-any.whl
.
File metadata
- Download URL: odoo_addon_shopinvader_api_cart-16.0.1.4.0-py3-none-any.whl
- Upload date:
- Size: 23.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2f5a621fe31630da4f1b4a7d3a8b50c07380f58b814a13ff4cafa3653aba96a |
|
MD5 | 79df1009f26d3d8348036f054316316b |
|
BLAKE2b-256 | 1f30c87f8665323689f4987b4830930a590c38820b0bc3c55b4429cdb9f15a15 |