Wednesday, September 6, 2023
2 changes · master
Enhancements to existing features
Customers can now choose and order combo products directly through the POS self-ordering experience. The update also aligns displayed order totals with the main POS system, reducing pricing discrepancies and improving customer confidence.
Original PR description
Using the POS app, one can buy a combo consisting of multiple products. In this PR we implement this functionality in the `pos_self_order`. A user can now navigate to a combo product, select each combo choice and order the desired combo directly from the `pos_self_order` app. In this commit we also change the values displayed in the orderlines of the `pos_self_order`, such that they better reflect the values that would be shown by the POS for the same respective orderlines. Ex: when buying 5 units of an item that has unit price 138.58, the POS ( and also the invoicing app, etc ) would display a total price of 692.88. The self order now does the same, but before it was showing 692.90 for the same situation. Task: 3437447 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The website configurator can now generate more relevant page text using AI, based on the company and industry information entered by the user. This helps new websites start with content that better matches the business, language, and customer needs instead of generic placeholder copy.
Original PR description
When building a website with the website configurator, you get pages with nice layout. However, the text inside is not adapted to your company, industry or even language. Using a LLM, we could easily get text much more relevant to customer need. The scope of this task should be static page generated with website configurator (homepage, about us, pricing, ...). Later, in other tasks, we want also user to be able to generate text inside the website builder (similar to Wix AI text wizard) This commit implement the bare minimum to generate and replace website content by AI generated sentences based of the information provided by the user in the configurator Please find the PR of the IAP part here : https://github.com/odoo/iap-apps/pull/656 task-3248852