Questions tagged [odoo-12]

Odoo is a suite of open-source business apps written in Python and released under the LGPL license since version 9 (previously AGPL). It is used by 2 million users worldwide to manage companies of all different sizes. The main Odoo components are the server, 260 core modules (also called official modules) and around 4000 community modules. ODOO 12 is the newly updated version so far in the ODOO series.

934 questions
0
votes
1 answer

Is there a way to make a selection field multi selectable with checkboxes?

in Odoo 12 I'm trying to make a series of fields visible by check box, however I want a separate selection for visible in form view and in kanban view. Is there a way to make these checkbox selections and multi-selectable? Python field…
Cristin Meravi
  • 343
  • 2
  • 12
0
votes
1 answer

How to get Product name with single Attribute e.g: Product1(color)

Req is i have created a Product called Product1 and i have given 2 attributes for that i.e. color,fitting,size. I have defined a field in sale.order product_id = fields.Many2one('product.product', string="Product") As per the standard we are…
iam supreeth
  • 497
  • 4
  • 16
0
votes
0 answers

Migrate Odoo module with script

My problem: I want to migrate lots of modules from OpenERP7 to Odoo 12. I was thinking about reading the file and perform the migrations for fields, class names etc. all by searching on strings like "class" "def", "field". There must be a better way…
JordyRitzen
  • 592
  • 5
  • 21
0
votes
1 answer

odoo12: set different images for different screen sizes

I'm new to developing for Odoo 12 and want to know how to set different images for mobile and non-mobile divices. In Odoo 10 (previous edition) I could use the classes 'visible-md, visible-lg, visible-sm, and visible-xs' to control this. But this…
Cristin Meravi
  • 343
  • 2
  • 12
0
votes
1 answer

Right to Left in Arabic language in odoo12 in Windows OS is not working

I have followed the steps in odoo 12 documentation to implement rtl in odoo 12 But it is not working in Windows but it is well worked in linux OS Help me with it!
0
votes
1 answer

Odoo 12 Amount in Words

How to use the num2words library in Odoo 12 to show Total Amount in Invoice reports? I found num2words function in /base/models/res_currency.py @api.multi def amount_to_text(self, amount): self.ensure_one() def _num2words(number, lang): …
Uros Kalajdzic
  • 349
  • 1
  • 6
  • 19
0
votes
2 answers

Odoo 12 num2words Amount To Text

I'm new in this community and I setting up Odoo Community version for my little comapny. I does all the things just doesn't know how to set up num2words to show Total Amount in Invoice Reports! I found num2words api in res_currency.py in…
Uros Kalajdzic
  • 349
  • 1
  • 6
  • 19
0
votes
1 answer

Converting report from odoo 11 to odoo 12

I am trying to convert report from odoo 11 to odoo 12, i have ran through the code trying to see this "list" with the problem but i cant seem to note it. returned data from report.py return { 'doc_ids': partner_ids, 'doc_model':…
0
votes
1 answer

Can not install OAuth2 Authentication odoo12

I have a problem with installing OAuth2 Authentication in odoo 12. Error: Element '' cannot be located in parent view How can I fix this? And how do I show the google login button on login view?
0
votes
1 answer

How make my custom module visible in app switcher odoo12 through code

I am new to the odoo and I developed a small custom module in odoo12. The problem is I am not able to see my custom module in the app switcher page after installing the module. (Below I gave the image link, where I am not able to see the module I…
Aram1289
  • 115
  • 1
  • 1
  • 6
0
votes
0 answers

How to hide custom Action from More Dropdown depending on an attribute?

I have added some custom options to the Actions Dropdown using:
Jack
  • 59
  • 7
0
votes
1 answer

How to reactivate the accounting engine in odoo 11 or 12?

recently i install odoo 11 and the odoo 12 latest version , i have some custom module based on "account_accountent" module, so when i do some search i found this article : Are Accounting Features Removed (click link to see all details) (a part of…
Ma7
  • 244
  • 4
  • 18
0
votes
0 answers

Recalculate taxes on programatically created invoice in Odoo 12

In odoo I have created an invoice with correct invoice line items ( including tax ). I am using a node module for this which calls the /web/dataset/call_kw endpoint in odoo. My problem is, that the tax on the invoice is not updated after adding the…
0
votes
0 answers

Odoo: External API: TypeError: cannot marshal objects

with our slightly modified Odoo (V12), we are trying to fetch Data via external API from odoo. while fetching res.partner we get following Error: TypeError: cannot marshal objects the fetched Object has the following…
Jack
  • 59
  • 7
-1
votes
2 answers

How to hide import button in odoo tree view (Odoo v12)

I am working with Odoo v12 and I need to hide the "import" button in a tree view but keeping the create button. I have tried so far with . But the import button is still showing. How can I hide the import button?
Ernesto Ruiz
  • 736
  • 9
  • 31