Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
88 views

I have a running production instance with existing data in my production database. Recently, I encountered an error, and upon investigation, I discovered that some core modules were unexpectedly ...
law rence's user avatar
  • 197
-1 votes
1 answer
43 views

I'm trying to extend file relational_fields.js from the web module in Odoo 13, so that in the request for quotation form, when i start entering a vendor name and the autocomplete options show with a ...
MrWater's user avatar
  • 1,805
0 votes
1 answer
102 views

I created a new Odoo server using a backup .zip file from an already working server, including all the addons. The original server is functioning correctly, but the new one is showing this error. The ...
Joseph's user avatar
  • 3
0 votes
0 answers
48 views

I have Odoo 13 set up with an oca_addons directory and also another directory for my custom module. The oca_addons includes mail_quoted_reply. There are a few other oca_addons installed as well. I ...
Neill's user avatar
  • 711
0 votes
2 answers
213 views

Currently, when trying to print a report where there are more table records than a single page can contain, the table will be split across multiple pages. The split occurs at whatever point reaches ...
Evan's user avatar
  • 13
1 vote
2 answers
326 views

Try to reinstall a set of custom Odoo 13 modules on a new Ubuntu-based virtual machine. For one of the modules (material_purchase_requisitions), I keep encountering the following server error at the ...
Evan's user avatar
  • 13
1 vote
3 answers
128 views

In Odoo 13, when I duplicate a sale order which has invoices linked to it, the new sale order has no invoices linked to it, which is OK. The problem is that in my case, there are a lot of third party ...
forvas's user avatar
  • 10.3k
0 votes
1 answer
125 views

this the view code of journal_id in account move and i need to change it to become editable: <field name="journal_id" invisible="context.get('default_journal_id') and context....
Joseph's user avatar
  • 3
1 vote
0 answers
74 views

i transfered odoo 13 to an new server ubuntu but i get this issue Error: Odoo Server Error Traceback (most recent call last): File "/odoo/odoo-server/odoo/http.py", line 625, in ...
Mohamed Hamed's user avatar
0 votes
0 answers
62 views

I am trying to inherit ExportXlsxWriter init method but my custom code init method not calling. I want to add something in init. Anyone can help ? from odoo.addons.web.controllers.main import ...
Ila Yadav's user avatar
1 vote
1 answer
144 views

I am deleting a record from a wizard action and return the same parent action( not wizard action) and showing the tree view properly. But issue is in the latest URL in address bar(After deleting a ...
KbiR's user avatar
  • 4,224
1 vote
1 answer
104 views

I try to within action confirm I will pass data from my module to stock.move and stock.picking so I can create complete cycle from stock.move passing with stock.picking to stock.quant to decrease ...
Abdullah Elshoura's user avatar
0 votes
1 answer
90 views

I need to add another state to a function in account/static/src/js/ tax_group.js line 94 var displayEditWidget = self._isPurchaseDocument() && this.record.data.state === 'draft' && ...
Paul's user avatar
  • 53
0 votes
1 answer
133 views

"I have a variable ot10_total with a value of 1758.92. I successfully added commas to format it using the code <span t-esc="'{0:,.2f}'.format(ot10_total)"/>, and it displays as 1,...
Jubb's user avatar
  • 3
0 votes
1 answer
282 views

In my server Log-file on Odoo.sh (odoo-v13), i often see the following error without understanding exactly what is the reason of that: odoo.exceptions.CacheMiss: ('x_eventcoursetype(6,).x_name', None) ...
S Bonnet's user avatar
  • 1,722
0 votes
1 answer
133 views

When i try to install my -originally in v13 developed custom module- in Odoo v16-apps, i got an error, even for an empty wizard (with a structure which is identical the other wizards definitions found ...
S Bonnet's user avatar
  • 1,722
0 votes
0 answers
125 views

Question: I'm working on an Odoo project where I'm trying to display data from a custom model (brgy.officers) in a table on a website template. However, I'm facing an issue where the data is not ...
ValiantGCoding's user avatar
0 votes
2 answers
415 views

In Odoo13 I have a model that has two Datetime fields. e.g. start_date = fields.Datetime("Start Date") end_date = fields.Datetime("End Date") I try to search for records by ...
Neill's user avatar
  • 711
1 vote
1 answer
105 views

im using odoo13, and want try to make download excel file, heres my models odoo : class CustomExcel(models.TransientModel): _name = 'custom.excel' _rec_name = 'datas_fname' file_name = ...
perl's user avatar
  • 9
0 votes
1 answer
86 views

I have a custom module(odoo13) in which I send data from Kafka producer whenever i save or create data from form view. i have inherited write method here but whenever some onchange or compute method ...
Devam Sanghavi's user avatar
1 vote
1 answer
664 views

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/...
Neill's user avatar
  • 711
1 vote
2 answers
1k views

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 ...
Satish Prajapati's user avatar
1 vote
2 answers
249 views

class DownloadReport(models.Model): _name = "santex.download_report" agency = fields.Many2one("res.partner", string="Agency", domain=...
Selman Faruk Yılmaz's user avatar
1 vote
0 answers
35 views

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 ...
Luis Muskus's user avatar
2 votes
1 answer
157 views

I am using Odoo 13, but this is a QWeb question: I got the following template in QWeb: <template id="my_subtemplate"> <t t-set="foo" t-value="foo + 1"/> ...
forvas's user avatar
  • 10.3k
0 votes
1 answer
73 views

Lets Create a Demo for question ! class Characters(models.Model): _name = "santex.characters" ​licensor_brand = fields.Many2one("santex.licensor_brands", ​domain=&...
Selman Faruk Yılmaz's user avatar
1 vote
1 answer
521 views

I am trying to get the total count of lines of codes in my custom modules. it tried the below command. ./odoo-bin cloc --conf=odoo11.conf -d odoo10 Here odoo.conf addons path to default addons and ...
KbiR's user avatar
  • 4,224
2 votes
2 answers
198 views

We have built a custom controller for a customer which passed products data and loads their products in a custom url. The controllers are basically like this: class CustomProducts(http.Controller): ...
Simon Gottberg's user avatar
0 votes
1 answer
168 views

What im trying to achieve is while confirming a purchase order based on a condition in then order, needs to replace the default route with a custom route. Please share your valuable references or ...
Raihan's user avatar
  • 155
1 vote
1 answer
427 views

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 ...
Sidharth Panda's user avatar
2 votes
0 answers
500 views

I am currently following the UPGRADE process in odoo.sh to migrate to Odoo v15. Because some of the templates have been removed or renamed in v15, I got 100 errors similar to: ValueError: External ID ...
S Bonnet's user avatar
  • 1,722
0 votes
1 answer
443 views

This is the first time I am using Qweb for Odoo XML. My code is not working as intendent due to lack of experience I guess. Thank you very much in advance. I have a selection field : priority = fields....
for-loop's user avatar
1 vote
2 answers
535 views

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 ...
Sidharth Panda's user avatar
0 votes
1 answer
116 views

First of all, everything i make is working on my local computer but this error happen when i tried to update this module inside of a server. I add some fields to res.company class InheritAccountMove(...
Selman's user avatar
  • 360
0 votes
0 answers
89 views

view.xml <record id="fsm_order_form" model="ir.ui.view"> <field name="name">fsm.order.form</field> <field name="model">fsm.order</...
Khaalidi's user avatar
  • 128
0 votes
1 answer
221 views

See this video: https://youtu.be/PW-C3xKFBAE Can anyone tell me how to change this PDF invoice template to a different one? When you click validate in the POS module it automatically downloads a PDF ...
Hassan Yousuf's user avatar
1 vote
1 answer
62 views

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 ...
KbiR's user avatar
  • 4,224
0 votes
1 answer
269 views

Need to assign user groups to a static button used for JS. Setting groups as we do for form's xml button is not working. <?xml version="1.0" encoding="UTF-8" ?> <templates ...
NinjaBat's user avatar
  • 390
0 votes
1 answer
487 views

Odoo ORM api onchange not working on many2many - odoo 13. Trying to update sale_line's m2m field when product is changed in form view. It's not working. @api.onchange("product_id") def ...
NinjaBat's user avatar
  • 390
1 vote
3 answers
456 views

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 ...
Bhavesh Odedra's user avatar
0 votes
1 answer
293 views

I have some custom modules developed from scratch in that Monetory fields are not taking 0 value instead its reverting to previous value. installation : odoo 13.0 exe installation installed on : 13.0....
Sateesh MM's user avatar
1 vote
2 answers
2k views

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 ...
1008_III_Gopalakrishnan.S's user avatar
1 vote
1 answer
2k views

During the upgrade process on odoo.sh on branch BrStaging, there are errors in the log panel. Some obsolete custom Modules or Views are the cause of these errors. To disable or uninstall them, we have ...
S Bonnet's user avatar
  • 1,722
1 vote
1 answer
999 views

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 ...
altela's user avatar
  • 350
1 vote
1 answer
119 views

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?
Luis Muskus's user avatar
0 votes
1 answer
217 views

we have a problem in odoo13. Namely, when a helpdesk ticket comes in, and the submitter enters his email and name, they will get an email that the ticket has been received. But, if an internal Odoo ...
The Agri CULTURE Guy's user avatar
2 votes
0 answers
356 views

I want to set colors based on fields value in pivot view in Odoo, how to set it?
Jaypal Maru's user avatar
0 votes
2 answers
2k views

Since Today (the 30 of September), using Odoo v13 on Odoo.sh, after logging in my odoo account as "ADMIN" or another odoo user, i got this error every minute and all "Odoo internal ...
S Bonnet's user avatar
  • 1,722
1 vote
0 answers
77 views

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 ...
Juraj Bezručka's user avatar
0 votes
1 answer
100 views

I have overridden a method to append some new items to the dictionary of the original method. when I execute my code I have this error: 'bool' object has no attribute 'dict_one' but the original ...
SH EB's user avatar
  • 61

1
2 3 4 5
13