Questions tagged [odoo-13]

Use this tag for version specific questions about Odoo 13 - the suite of open-source business applications written in Python. When using this tag also include the more generic [odoo] tag where possible.

616 questions
1
vote
1 answer

In Odoo 13, XML-RPC, how can I update a field for multiple records?

I'm attempting to update a field for multiple records. The Odoo 13 Developer API document reads that it is possible, but does not give an example how. https://www.odoo.com/documentation/13.0/developer/api/odoo.html#update-records "Multiple records…
Neill
  • 711
  • 2
  • 13
  • 32
1
vote
2 answers

How can I add a chatter for many2many fields (tags) in Odoo 16?

I want to add chatter for Tags. But odoo does not support tracking of many2many fields. What should i do? Any Suggestions. I tried to put tracking=true on tag_ids field but it does not work. I am stuck here. Please give your suggestions.
1
vote
2 answers

How can i update One2many field on Create method?

class DownloadReport(models.Model): _name = "santex.download_report" agency = fields.Many2one("res.partner", string="Agency", domain="[('is_company', '=', True), '|'…
1
vote
0 answers

Similar behavior to joining two fields Odoo13, it's possible?

I have two fields: language and level, I need to implement a behavior similar to the one in the attached image, where when choosing the language and its level they are added at the bottom as a label and the record is saved in the database, language…
1
vote
1 answer

creation of Manufacturing Order from Sale Order

I know the functional flow of the sale order in which a MO is created for a product that is configured to be manufactured in product master Below I have descried in brief the Functional flow: when we create a product and set it as manufacturing we…
Sidharth Panda
  • 404
  • 3
  • 17
1
vote
2 answers

Add Image in Email From field

In odoo 13 i have a field example: birthday_picture = fields.Image(string='Birthday Picture') i want to add birthday_picture image to be added in email template also which i declared in xml, i have added tag and added still the image is not…
Sidharth Panda
  • 404
  • 3
  • 17
1
vote
1 answer

How to find all leaf and non leafe records and update them on each non leaf records in odoo 13

In the employee profile, I added a Many2one field which relates to the employee table itself (known as Reporting of the current employee) and another field is a Many2one with a foreign key of Reporting manager field. And I have another field…
KbiR
  • 4,047
  • 6
  • 37
  • 103
1
vote
3 answers

one2many field view - attribute

I have the following wizard structure [ field name and data type ] Type :- Selection :- Type 1 and Type 2 Route :- One2many When Users select Type 1, I want to allow them to add records in the Route table. While on the Type 2, I want to make Route…
Bhavesh Odedra
  • 10,990
  • 12
  • 33
  • 58
1
vote
2 answers

Odoo 13:- HTTP controller type ="http" request type application/json not accepted

I write a odoo program in python, this way request type text/plain is working. And application/json request work in any other odoo version(Odoo 15,Odoo 16) .But odoo 13 application/json request not working. My odoo python controller code…
1
vote
1 answer

Odoo 15 Find tax_ids Inside the account.move.line (Invoice) Model

Good day, hope everything's well. I'm trying to find the value of tax_ids (Many2many field) inside the account.move.line model but i can't seems to find anything. I already access the psql of the database but i cant find tax_ids too. I accessed that…
altela
  • 306
  • 2
  • 13
1
vote
1 answer

Insert divs in top timelene view odoo 13

I am trying to place some buttons/div on top of a dashboard, but the view is not qweb and if I try to add a div it does not render it. How do I get it to add those buttons on top of that board?
1
vote
0 answers

How to set colors for columns in Odoo pivot view?

I want to set colors based on fields value in pivot view in Odoo, how to set it?
1
vote
0 answers

Odoo drop down action for a specific domain

In Odoo13 I have an act_window action for multiple records in list (tree) view. It is supposed to change ownership on leads using a custom wizard. The ownership can only be changed on leads, not on opportunities. I would like to hide this action…
Juraj Bezručka
  • 512
  • 5
  • 21
1
vote
1 answer

How to identify corresponding picks of a delivery with backorders odoo 13

This is more of a functional qus. Consider the scenario Multi-step route is configured(pick and deliver) A huge order is delivered with back-orders, let's say in 3 partial deliveries Now, the sale has 6 entries (3 for pick and 3 for WH/OUT) Is…
NinjaBat
  • 370
  • 4
  • 20
1
vote
1 answer

Getting id from URL to filling wizard form, Odoo

I want to get id from url when i click the button. This is URL, id is 69: http://localhost:8069/web#id=69&cids=1&menu_id=385&action=507&model=inventory.menu&view_type=form I need to get this id in many2one field. This is my wizard py file: from…
Enes Kara
  • 81
  • 6