Saturday, August 26, 2023
6 changes · master
Miscellaneous changes
Before this PR quantity_percentage field was not editable in list view Issue: - when trying to edit quantity field in milestone , it's not editable in list view Fix - when trying to edit quantity field in milestone it becomes editable by making field readonly false task-3444728 Forward-Port-Of: odoo/odoo#130344
Original PR description
Before this PR quantity_percentage field was not editable in list view Issue: - when trying to edit quantity field in milestone , it's not editable in list view Fix - when trying to edit quantity field in milestone it becomes editable by making field readonly false task-3444728 Forward-Port-Of: odoo/odoo#130344
Steps: - install sale module. - create product with product type as course - Generate a sale order containing the newly created product. - link the sale order to any project task, and then attempt to view the tasks stat button by clicking. However, encounter an unexpected traceback or error message during this action. Issue: In the sale module quotation view, the traceback is occurring when clicking on the tasks stat button Fix: Improved action_view_task method in sale_order mo
Original PR description
Steps: - install sale module. - create product with product type as course - Generate a sale order containing the newly created product. - link the sale order to any project task, and then attempt to view the tasks stat button by clicking. However, encounter an unexpected traceback or error message during this action. Issue: In the sale module quotation view, the traceback is occurring when clicking on the tasks stat button Fix: Improved action_view_task method in sale_order model to handle missing sales order lines with 'service' products. Set default project ID when no suitable sales order line is found, preventing errors and ensuring smooth functionality. Refactor involved using conditional expressions for better readability and maintaining default behavior. task-3436556 Forward-Port-Of: odoo/odoo#129703
Steps: - Install project - run project tour Issue: - no description while adding the column Cause: - the description was not present in the project tour for column Fix: - added description for adding a column in the tour task-3388985 Forward-Port-Of: odoo/odoo#128815
Original PR description
Steps: - Install project - run project tour Issue: - no description while adding the column Cause: - the description was not present in the project tour for column Fix: - added description for adding a column in the tour task-3388985 Forward-Port-Of: odoo/odoo#128815
Steps to reproduce: 1. install l10n_de_pos_res_cert 2. set up pos in German company 3. enable restaurant on pos 4. enable bill splitting 5. open pos 6. select items 7. select the split bill button 8. select item Traceback: ``` TypeError: Cannot read properties of null (reading 'state') ``` The issue is `add_orderline` method is called in `_updateNewOrder` where the orderline does not have an order. to avoid the issue we should only check for the state of the order, when there is
Original PR description
Steps to reproduce: 1. install l10n_de_pos_res_cert 2. set up pos in German company 3. enable restaurant on pos 4. enable bill splitting 5. open pos 6. select items 7. select the split bill button 8. select item Traceback: ``` TypeError: Cannot read properties of null (reading 'state') ``` The issue is `add_orderline` method is called in `_updateNewOrder` where the orderline does not have an order. to avoid the issue we should only check for the state of the order, when there is an order in the line. opw-3471269 Forward-Port-Of: odoo/enterprise#46369 Forward-Port-Of: odoo/enterprise#46077
Steps: - Install timesheet and planning apps. - Add a shift from current user's employee. - Go to timesheet `All Timesheet` menu. - Search on other employees or add a filter to search something Issue: - Empty line for current user display even though we are searching for other data. Cause: - Empty lines from planning does not take search view domain into account. Fix: - Add search domain to not display empty line when user search for other data. task-3429380 Forward-Port-Of:
Original PR description
Steps: - Install timesheet and planning apps. - Add a shift from current user's employee. - Go to timesheet `All Timesheet` menu. - Search on other employees or add a filter to search something Issue: - Empty line for current user display even though we are searching for other data. Cause: - Empty lines from planning does not take search view domain into account. Fix: - Add search domain to not display empty line when user search for other data. task-3429380 Forward-Port-Of: odoo/enterprise#44249
Steps: - Install timesheet app. - Go to my timesheet menu. - Open search view. Issue: - My timesheet should not contain employee related filters. Cause: - Replace the element in wrong inherited view. Fix: - Replace the element in right inherited view. task-3429380 Forward-Port-Of: odoo/enterprise#44097
Original PR description
Steps: - Install timesheet app. - Go to my timesheet menu. - Open search view. Issue: - My timesheet should not contain employee related filters. Cause: - Replace the element in wrong inherited view. Fix: - Replace the element in right inherited view. task-3429380 Forward-Port-Of: odoo/enterprise#44097