تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
3 الردود
5549 أدوات العرض

in projects kanban view we are shown project's end date,

now i want to see the end date in the list view, is this possible???? and how...?

and is it possible to remove/add any columns in the list view????

الصورة الرمزية
إهمال
أفضل إجابة

Hi Brijesh,

You can inherit the project tree view in your custom module and need to add end_date in that. It is possible to remove fields from view by position="replace" keyword in xml.

الصورة الرمزية
إهمال
أفضل إجابة

Hello Brijesh,

Yes, It is possible to add/remove any field(column) from the view. For that you just need to inherit the view.

Here is the example to add a field in view:

<record id="view_project_inherit" model="ir.ui.view">
    <field name="name">project.project.inherit</field>
    <field name="model">project.project</field>
    <field name="inherit_id" ref="project.view_project"/>
    <field name="arch" type="xml">
         <xpath expr="//field[@name='total_hours']" position="before"> 
                <field name="date"/>
         </xpath>
    </field>
</record>

After adding this code in your .xml, update your module.

Here, You can write positions like,

  • inside: placed inside match (default)
  • before: placed before match
  • attributes: used with <attribute> tags to add new
  • replace: replace match
  • after: placed after match

Hope this will help you.

Thank you.

الصورة الرمزية
إهمال
الكاتب

thanks for the answer but as i am a newbie i dont know where to find this file and how to do it, it would be helpful if you can tell me a step by step procedure

الكاتب أفضل إجابة

activate developer mode go to projects->listview from dropdow select manage views now select tree view and select edit there is a field name date select its properties and just remove the invisible tick

its that simple

i hope this is simple

الصورة الرمزية
إهمال

Well of course it will solve your issue but it is not the best way.It will work only for that database.

الكاتب

ok thanks for the advice

المنشورات ذات الصلة الردود أدوات العرض النشاط
11
نوفمبر 19
5199
1
مارس 15
8340
13
سبتمبر 24
47219
1
ديسمبر 20
7432
0
مايو 18
2915