Monday, December 4, 2023
2 changes
1 change
New functionality added to Odoo
A new Flipkart sales module lets businesses import and manage Flipkart orders directly in Odoo. It supports order creation, cancellation updates, fulfillment updates, manual synchronization, and shipment label generation, reducing manual work for teams selling through Flipkart.
Original PR description
Sync:
-Creating sale orders from flipkart
-Cancelling sale order from flipkart
-Update sale order for orders Fulfilled by Flipkart
Others:
-Manual Sync Order from Sale Order
-Manual fetch new orders
-Generate shipment label on validation of Delivery (stock picking)
Related Documentation PR - https://github.com/odoo/documentation/pull/6104
task-31790961 change
Resolved issues and error corrections
The Knowledge app was missing a required dependency on the web_map module, which caused login failures and errors when users uninstalled web_map and then installed Knowledge. This fix adds the missing dependency to ensure the Knowledge app works properly regardless of web_map installation status.
Original PR description
#### Description Uninstalling the web_map module and installing the knowledge module results in a missing dependency error in 16.0 and a blocking screen when trying to log in from 16.1 onwards. This…
#### Description Uninstalling the web_map module and installing the knowledge module results in a missing dependency error in 16.0 and a blocking screen when trying to log in from 16.1 onwards. This commit fixes this issue by adding web_map to the dependencies of the knowledge app, as we are importing MapRenderer from the web_map module. See this [commit](https://github.com/odoo/enterprise/blob/16.0/knowledge/static/src/components/external_embedded_view_insertion/views_renderers_patches.js#L9) Issue is introduced from this [commit](https://github.com/odoo/enterprise/commit/0ffc548c0afa7434f40cccf91df62e5e5172e374#diff-94bdcbce3efa072706e30a6c3110a3b76dc8ce6d0a3e725155308a5cbe0794a2R9) #### Related Task opw-3522134 #### Reproducing the error in 16.0 - [Video](https://drive.google.com/file/d/1tRhJa07iIt46Ec-zj17jseB7Ws5MoqmY/view?usp=share_link) #### Reproducing the error in 16.1 - [Video](https://drive.google.com/file/d/1iM-VcxKCeX5bCKsrNDX6WZVQsrpljH6i/view?usp=share_link) Forward-Port-Of: odoo/enterprise#49199