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

How to give portal access to a model in odoo

I need not loggedin visitors on website module access jobs created on recruitment module in odoo 10 , to see jobs and apply for? Thank you...
mahmoud alaa
  • 101
  • 1
  • 7
0
votes
1 answer

On project task created do not send email

By default subscribers get email messages once the new task in a project is created. How it can be tailored so that unless the projects has checkbox "Send e-mail on new task" checked it will not send e-mails on new task? I know how to add a custom…
0
votes
2 answers

Odoo see only one db to login, but there are more dbs for same odoo user

I installed odoo 10 on CentOS 7. when I run odoo command odoo start or ./usr/bin/odoo open browser, see only one db to login to, but there are many dbs for this odoo user.
mahmoud alaa
  • 101
  • 1
  • 7
0
votes
0 answers

Odoo file upload to "Log internal note"

I would like to allow a user to drag and drop a file onto span defined in data/dragdrop.xml . This span appears in "Log internal note" section. The user should be able to drag and drop files on that "Log internal note" and files automatically upload…
0
votes
1 answer

Sequencing in odoo 10

I am trying to create a sequence in odoo here is my xml file New Connections Sequence ftth.connection
0
votes
1 answer

Odoo loop in create

I have created the following nested loop that allows me to record the payment installments of each invoice, which works perfectly: for num in range(1, int(dues)+1): for data1 in lista: new = Dues.create({ 're_customer':…
jpozzo
  • 141
  • 10
0
votes
1 answer

How to make result from one odoo field to affect the result of another field

I have a time difference field time_diff = fields.Char(string="Time Difference", required=False, ) and a sla field in odoo sla_state = fields.Selection(string="SLA", selection=[('past sla', 'Past SLA'), ('within sla', 'Within SLA'), ],…
0
votes
1 answer

How to convert an array of PIL images into a base64-formatted PDF string?

This function below accepts a JSON string of a bunch of base64-encoded images inside. I need this thing to return a base64-encoded PDF, and it does but it would only give me one page, the first image inside the JSON string... I have this…
user253938
  • 173
  • 17
0
votes
1 answer

Odoo Project Task additional "Create" button

In "Project -> Tasks" Kanban view for each stage there are buttons ("+") to create tasks for that stage. These buttons are for "quick create". But the user asked to have additional button "Create" to open a form for "New task". How to add…
0
votes
2 answers

Odoo kanban "quick create" ("+") button to open "New task" form

In Project tasks kanban view there is a button "+" (for each stage) to "quick create" a task for a stage. How to make this button open not "a quick create" (small form) but instead open a "Task create" form for that stage? So that when the user…
0
votes
0 answers

Multiple quotation table in a single qweb report in ODOO

I am trying to make qweb report that takes multiple quotations of the same customer to be printed in a single paper format in odoo 10. I have just started learning odoo and I want to customize sale_report_templates.xml so please help me with some…
0
votes
2 answers

row of tree views odoo

I am trying to place invisible an entire row in the tree view when the record has an "x" status, the thing is that I can place it invisible by placing the {invisible} attribute in each field but this is not what I want because this allows me to…
jpozzo
  • 141
  • 10
0
votes
1 answer

Generate XLSX(Excel) report in odoo 10 from custom module?

I'm using odoo 10 i created qweb report for stock.production.lot module and i want to create the same report in XLSX format. How can i create XLSX report in odoo 10 for stock.ptoduction.lot Thanks
MOHAMED
  • 101
  • 2
  • 10
0
votes
0 answers

Odoo - Service not starting

I use to work on ubuntu server for Odoo10e and following are few commands which i usually use. sudo service odoo stop sudo service odoo start sudo service odoo status sudo service odoo restart I install pysftp using CLI and then executed command…
Ancient
  • 3,007
  • 14
  • 55
  • 104
0
votes
1 answer

How to translate field values in Odoo 10?

We can see all the translated items using Settings > Application Terms > Translated Terms. But there is no dynamic translated values in the list. All are static values like labels. However, I made some queries in PostgreSQL and I found some…
code_explorer
  • 472
  • 6
  • 18