Umme Huzaifa How to zoom image in odoo? Here is an example of zooming in on a picture: <div> <field name="image_1920" widget="image" class="oe_avatar" options='{"zoom": true, "preview_image":"image_1920", "zoom_delay": 1000}'/> </di...
Umme Huzaifa How to inherit an action and add a default filter? Solution: Here is an example of how to add default group by States in employee Payslip tree view in odoo 11. <xpath expr="//search" position="inside"> <filter name="state" string="States" domain="[]...
Umme Huzaifa TypeError: strptime() argument 1 must be str, not datetime.date I want to get the month and year from the field date in odoo 13. But I got this error : TypeError: strptime() argument 1 must be str, not datetime.date Here is my code: @api.depends('date_...
Umme Huzaifa How to pass custom field value from sale.order.line to account.move.line in odoo 13? Suppose, You have a field name free_quantity in sale.order.line and you have a filed with the same name in the account.move.line and you want to pass the field value to the account.move.line. Solutio...
Umme Huzaifa How to pass custom field value from purchase.order.line to account.move.line in odoo 13 Suppose, You have a field name free_quantity in purchase.order.line and you have a filed with the same name in the account.move.line and you want to pass the field value to the account.move.line. S...
Abdur Razzak Sorting Functionalities in Odoo 13 To find a needle in a haystack is a hectic task, the same is in case of finding a file or a document while dealing with a huge client base. As Odoo 13 helps in managing large multinational corporation... Odoo13 Sorting
Administrator Odoo: How to send a Inbox message to Specific User? Maybe you can use the odoobot user to send the user a chat message, below is an example. They will get a notification in Odoo and will be able to see it in the discuss app. from odoo import models, fi...
Administrator How to Send Email from Code in Odoo 13 Communication is very important for a business. Email is the fastest way to transfer information. Main advantages of email communication are: - Cheap - Fast - Easy - Convenient - Easy to replicat...