Odoo 17 Application not appearing in main App drop down menu
<?xml version=”1.0″ encoding=”utf-8″?> <odoo> <data> <!– Tree view for ‘data_to_move’ model –> <record id=”view_data_to_move_tree” model=”data_to_move”> <field name=”name”>data_to_move_tree</field> <field name=”model”>data_to_move</field> <field name=”arch” type=”xml”> <tree string=”Data to Move”> <field name=”name”/> <field name=”id”/> <field name=”write_date”/> </tree> </field> </record> <!– Form view for ‘data_to_move’ model –> <record id=”view_data_to_move_form” model=”data_to_move”> <field name=”name”>data_to_move_form</field> <field name=”model”>data_to_move</field> <field name=”arch” type=”xml”> <form string=”Data to […]
Custom Print Option Not Displaying for Payslip in Odoo
I am trying to create a custom payslip report in Odoo and add it to the print button on the payslip form view. I have followed the steps to create the module, define the report, and bind it to the hr.payslip model, but the new print option does not appear in the interface.
how to display sub-tasks based on a condition
so what i want in general is to display tasks and only display the subtasks if the display_under_tasks is true of the selected project not all the projects
How to Override an Existing Action to Add a Custom Domain
I’m working on an Odoo module where I need to modify an existing action to add a custom domain. Specifically, I want to filter out subtasks based on a custom boolean field display_under_tasks in the project_project model. If display_under_tasks is True, I want to display subtasks in the Kanban and list views. If display_under_tasks is False, subtasks should be hidden.