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

Hi,

I would like to display the same field two times (both times in a readonly way, so it is only for display purposes) in one formview but on different pages in a notebook.


I noticed a strange error/bug/feature: the first instance is displaying the field label but with empty data, the second instance displaying the field without issues. 

In the debug mode I cannot get mouse over tooltip for the first field instance only for the second.

It is a limitation of the view engine or some bug? How can I circumvent this if it is a limitaion?

Regards


Awatar
Odrzuć
Najlepsza odpowiedź

It's not possible to show "same" field twice in a single form view. Possible ways can be,

1. Don't show that field in notebook pages. Just show it to top of Form view. Just like in Sale order form, Quotation No. field.

2. Make an another field ( kind of field.function ) which will have value of that X.  After that you can use that field Y to another page of notebook. ( Here I would like to mention that this way is not good )

Field "Y" definition in py file can be,

 @api.one
@api.depends( 'X' )
def get_X_name( self ):
if self.X:   
self.Y = self.X
Y = fields.Char( 'AB', compute=get_X_name , store=True )

Hope this helps,

Awatar
Odrzuć
Najlepsza odpowiedź

Try to create a function field and store to it the value of the original field and then put the original field in the first page and the function field in the other page

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
3
lip 25
8878
1
maj 25
1132
1
mar 25
1438
0
sty 24
1821
1
lut 22
24001