Daily updates from Odoo
Friday, January 23, 2026
2 changes · master
Resolved issues and error corrections
This update fixes an issue where VAT import taxes were generating incorrect journal entries. The change in account 33312 has been addressed by updating the default account for three VAT tax types (tax_purchase_import_10, tax_purchase_import_8, tax_purchase_import_5), ensuring accurate financial reporting.
Original PR description
Due to the change of account 33312 from liability to payable, the journal entries generated when creating bills with VAT import taxes were incorrect. This fix updates the default account on the following taxes: - tax_purchase_import_10 - tax_purchase_import_8 - tax_purchase_import_5 task-5695253 Forward-Port-Of: odoo/odoo#245082 Forward-Port-Of: odoo/odoo#244434
This update fixes an issue where the payment button wasn't appearing on appointment bookings when prices were set via pricelists. The fix ensures the system correctly checks for updated prices, allowing users to complete payment during the booking process. This improves the user experience and ensures accurate pricing.
Original PR description
…t price modified by pricelists **Steps to reproduce:** - Install Appointmeent, Website and Sale - Create a new appointment type - Set up up front payment with 0.0 per booking default price - Set up pricelist according to quantity on the product of the up front payment - Ensure the pricelist is active for the website - Book the appointment on the website - Pay button is not shown when booking on the website (only shows `Confirm Appointment` which bypasses the payment) **Issue:** Payment step button only checks for `appointment_type.product_id.lst_price` (disabled when the price is 0.0), even if pricelists change it to a higher value. **Fix:** Replace the button logic in template in the `website_appointment_sale` module to check for `_get_combination_info` with given quantity. opw-5429963