Questions tagged [odoo-10]

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 was formerly known as OpenERP

enter image description here

Odoo was known as OpenERP until May 2014. It was rebranded because version 8 of the software included apps such as a website builder, e-commerce, point of sale and business intelligence. The software conforms to standard expectations of ERP systems, while providing additional modules beyond the coverage of traditional ERP systems.

Odoo S.A. provides a web site referencing the officially supported modules as well as community modules. Community modules can be referenced for free as long as they respect the open source licence of Odoo. As of June 2014, the number of Odoo apps reached more than 4000.

Module development mainly relies around editing and files. Some application logic (i.e. workflows and data structure) can be changed through the client interface using a developer mode.

The official Odoo apps are organized in 6 groups:

  • Front-end apps: website builder, blog, e-commerce
  • Sales management apps: CRM, point of sales, quotation builder
  • Business operations apps: project management, inventory, manufacturing, accounting and purchase
  • Marketing apps: mass mailing, lead automation, events, survey, forum, live chat
  • Human Resources apps: employee directory, enterprise social network, leaves management, timesheet, fleet management
  • Productivity apps: business intelligence, instant messaging, notes

The software is actively programmed, supported, and organized by Odoo S.A.. Odoo is similar to many open source projects where customized programming, support, and other services are also provided by an active global community and a network of 500 official partners.

Internal Links:

2146 questions
0
votes
1 answer

Backend Theme Error in Odoo 10

Anyone ever encourtered this problem 'Uncaught Error: QWeb2: Template 'theme-switcher' not found' on odoo backend theme enter image description here
bunja
  • 1
  • 1
0
votes
0 answers

Double email or email triggers twice for automated actions

I am using Odoo 10. I have created Automated Action on purchase order update. And there is a condition field in action, so I gave the condition like this object.state=="to approve" . Everything works perfectly only that the mail triggers twice. That…
user3606682
  • 1,945
  • 3
  • 17
  • 24
0
votes
2 answers

Add lines to stock picking move lines

In my method, I delete lines from stock.pickings and want to add different lines from my model. but i get an error AttributeError: 'stock.move' object has no attribute 'get' @api.multi def _action_procurement_create(self): res…
Chaban33
  • 1,362
  • 11
  • 38
0
votes
0 answers

How to add pop-up action when closing a screen in pos

https://i.stack.imgur.com/zaDSX.jpg How do you add a pop up confirmation on the header action buttons in odoo. Attached image with a markup. TIA
Adnan
  • 1
  • 1
0
votes
1 answer

Odoo 10 Quotation QWEB Report

I am trying to delete the part number(default_code) from the description but I can't get it to work, is there a way to delete ir or hide it? Quotation Report
0
votes
3 answers

Name in one2many field form does not same with name in input field

I have created a related field on the custom payroll form and I use odoo 10. I can not get the same name in one2many form field with input field. I have attached picture in below. Hope in here, I want to make the name in black pen same with the name…
Ffs
  • 43
  • 1
  • 7
0
votes
1 answer

create multiple records with odoo 10

Here is my function create(): api.model def set_student_level(self): for record in self: if record.student_ids: for student in record.student_ids: update_student_ids =…
PseudoWithK
  • 321
  • 1
  • 19
0
votes
1 answer
0
votes
1 answer

Data structure in javascript to store all input fields changed in document

I have a document dynamically generated with Odoo. I have n divs that inside can have input box with different type, checkbox, text, number etc etc. For now when the user change one field i make an rpc call to backend and store the value of the…
Dario
  • 732
  • 7
  • 30
0
votes
2 answers

Odoo 10 - ParseError:

Odoo 10 - I am trying to create an attendance module for partners rather than employees. I am copying code from the Attendance Module included in Odoo but am stuck and getting ParseError. The problem seems to be the…
user2379186
  • 421
  • 6
  • 27
0
votes
1 answer

Inheritance id in payment module

I wanna inherit id in payment module and change the properties of the field from read only "yes" to "False". I used a method one in inheritance, created another module and made the changes but it didn't work .
0
votes
1 answer

Calling invoice from wizard

class InvoiceWizard(models.TransientModel): _name = "pos.order.invoice.wizard" date_order = fields.Datetime(string='Date Order', readonly=True) partner_id = fields.Many2one('res.partner', string='Partner') @api.multi def…
Chaban33
  • 1,362
  • 11
  • 38
0
votes
2 answers

Error with recursion

I'm getting RuntimeError: maximum recursion depth exceeded error and it's because of the line "'account_id','not in'" what can i do about it? @api.multi def to_invoice(self): pos_order =…
Chaban33
  • 1,362
  • 11
  • 38
0
votes
0 answers

Odoo 10 python popup window won't trigger when called through method

ok, So here's the code I'm working with. @api.model def _get_company(self): return self.env.user.company_id company_id = fields.Many2one('res.company', string='Company', required=True, default=_get_company, help='The company this user is…
Cristin Meravi
  • 343
  • 2
  • 12
0
votes
1 answer

Odoo 10 mass mailing configure bounces

I'm using Odoo 10 mass mailing module to send newsletters. I have configured it but I don't know how to configure bounced emails. It is registering correctly sent emails, received (except that it is registering bounced as received), opened and…
RVargas
  • 26
  • 5
1 2 3
99
100