Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
5008 Widoki

Good morning!

I would like the Contact Reference to appear in the Calendar View of Tasks (in Project app). I modified some parameters more and now the XML looks like this:.

<?xml version="1.0"?>
<calendar color="user_id" date_start="date_deadline" string="Tasks">
                    <field name="ref"/> 
<field name="partner_id"/>
<field name="name"/>
<field name="project_id"/>
</calendar>
But when saving it tells me:

ValidateErrorField(s) `arch` failed against a constraint: Invalid view definitionError details:Field `ref` does not existError context:View `project.task.calendar`[view_id: 1147, xml_id: project.view_task_calendar, model: project.task, parent_id: n/a]


Do you know where "ref" is located? I don't know where is it, and also I don't know where to begin searching! I will highly appreciate your help..
Awatar
Odrzuć
Najlepsza odpowiedź

Hi Sergio,

Because the field ref does not exist in the model project.task. If you want to call a field in the view definition of a model, then that field should be defined in that model. 

Here you want to get the Customer reference which is defined in the res.partner model, ie, Customer. So there is only one field in project.task through which you can reach the Customer, ie, the partner_id field. Through that field you can access the ref field defined in res.partner.

For that, a better option is to define a new related field in project.task, which allows you to access the customer reference and show it in the project.task model.

Inorder to define that new field, you can just create a new custom module, by looking at the Odoo tutorial. And in your module, in the .py file put this:

class project_task(models.Model):

_inherit = 'project.task'

ref = fields.Char(related='partner_id.ref', string='Customer Reference')

Then in the .xml file put this:

<record id="view_task_calendar_inherited" model="ir.ui.view">

<field name="name">project.task.calendar.inherited</field>

<field name="model">project.task</field>

<field name="inherit_id" ref="project.view_task_calendar"/>

<field name="arch" type="xml">

<field name="name" position="before">

<field name="ref" />

</field>

</field>

</record>

This will bring Customer reference in the calender view of project.task

Awatar
Odrzuć
Autor

Thank you a lot! I will try it

Powiązane posty Odpowiedzi Widoki Czynność
0
mar 25
1644
0
sty 25
3827
1
sie 23
15293
change password Rozwiązane
1
sie 23
13912
1
lip 23
10946