This moduld allows user to Search by date or number range in List view and Pivot view.
1.Go to Menu: Settings->odooApp->UI Enhance
Setup what you need
2. Go to Menu: Settings->Technical->Parameters->System Parameters
You can find "app_ui_show_search_date" and "app_ui_show_search_number"
Go to Menu: Settings->Technical->Parameters->System Parameters.
Set the Value to "False" if you do not want to show the search. And set "True" to show.
This module changes the line color of records based on condition like state of a record and helps distinguish between different sets of records based on condition.
Set Backgroud color to filed in list view based on condition same as colors and style attributes of tree view.
Just add tree attribute like style and colors with condition you want.
bg_colors="grey:state=='cancel';green:state=='draft';blue:state in ('done');red:state in ('waiting')"
<record id="view_demo_tree" model="ir.ui.view">
<field name="name">demo.tree</field>
<field name="model">demo.model</field>
<field name="arch" type="xml">
<tree bg_colors="grey:state=='cancel';green:state=='draft';blue:state in ('done');red:state in ('waiting')" name="demo_tree">
<field name="name" string="Appointment" />
<field name="state" />
</tree>
</field>
</record>