Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
2 Răspunsuri
4003 Vizualizări

How to add image previews without using many2many or binary fields. i need to open the image when clicking on it

Imagine profil
Abandonează
Cel mai bun răspuns

I am new to Odoo, can you tell me where to write these codes? Can I do this easily?

Imagine profil
Abandonează
Cel mai bun răspuns

Hi,

Please try like below.

_inherit = ["image.mixin"]
_order = "sequence, id"

name = fields.Char("Name", required=True)
sequence = fields.Integer(default=10, index=True)
image_1920 = fields.Image(required=True)
related_document_id = fields.Many2one("your model", "Template", index=True, ondelete="cascade", invisible=True)
can_image_1024_be_zoomed = fields.Boolean(compute="_compute_can_image_1024_be_zoomed", store=True)
Then define a kanban view for image and add the below view for getting its preview.

For getting the preview.

https://ibb.co/kxSrxqH

Regards

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
1
feb. 24
1310
2
dec. 21
12994
0
oct. 20
4236
0
aug. 25
86
1
aug. 25
2029