Daily updates from Odoo
Monday, June 15, 2020
4 changes
Resolved issues and error corrections
The CRM interface now shows the list view before the kanban view in the relevant activity menu. This makes records easier to scan in table form first, matching the intended workflow and reducing extra navigation for users.
Original PR description
main changes are in the crm (community) module. I just inverted list and kanban views in order to display the tree view first.
Fixed an issue that could cause an error when opening sales and purchase reports. The report now uses the correct date field for filtering, helping users access reporting information reliably.
Original PR description
Purpose: Getting traceback while access reports in sales and purchase. LINKS PR #10862 TaskID - 2263566
Disabling Snailmail for customer invoices now also disables the related follow-up report postal sending feature. This prevents users from seeing a “Send by Post” option that should no longer be available after Snailmail is turned off.
Original PR description
Issue - Install "Accounting" module - Go to Accounting->Settings - Disable "Snailmail" checkbox in "Customer Invoices" section - Go to Accounting->Customer->Follow-up Reports The button "SEND BY POST" is still available. Cause The "Snailmail" checkbox is related to the field "module_snailmail_account", and by disabling it, it will uninstall the module "snailmail_account" and his dependencies. Since "snailmail_account_followup" module depends only on ['snailmail', 'account_followup'], it will not be uninstalled. Solution Replacing 'snailmail' by 'snailmail_account' in dependencies of 'snailmail_account_followup'. opw-2252999
The Timesheet reporting grids by employee and by task now show the Today button and navigation arrows again. This restores quick date navigation, making it easier for users to review timesheet information without manual workarounds.
Original PR description
Purpose: - Purpose of this commit is to display lost 'Today' button and arrows on timesheet by employee and by task grid view. Task- 2267581