Questions tagged [odoo-8]

Odoo S.A. is the software vendor of the Odoo Apps (formerly OpenERP).

                     Odoo (formerly known as OpenERP)

enter image description here

Odoo was formerly known as OpenERP until May 2014. It was re-branded because version 8 of the software included apps including 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 license of Odoo. As of June 2014, the number of Odoo apps reached more than 4000.

Module development mainly relies around editing Python and XML files. Some application logic (i.e. work-flows 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, Purchase
  • Marketing apps: Mass mailing, Lead automation, Events, Survey, Forum, Live chat, Live support
  • Human Resources apps: Employee directory, Enterprise social network, Leave management, Timesheet, Payroll management, Fleet management
  • Productivity apps: Business intelligence, Instant messaging, Notes

The software is actively programmed, supported, and organized by OpenERP 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 more than 500 official partners.

Internal Links:

2300 questions
5
votes
1 answer

How to call the website side widget in odoo

This is my file which was contain template 'website_fb.fb_shared_post' Qweb.add_template('website_fb_redertemplate.xml'); Below code through create a website side widget so now if call this widget then how to do. I refer the Odoo documentation…
user3208970
5
votes
4 answers

How to link a custom paper format to a pdf report in Odoo 8?

I want to print labels from odoo. For that I created a custom paper format and finding a way to link it to my label report. My label report is a pdf report. (When I create the report I can view it in the default paper format.) this is the code for…
javatar
  • 1,332
  • 1
  • 17
  • 24
5
votes
3 answers

how to import QOH in odoo 8

I want to update my stock in odoo either its by odoo frontend or using backend (postgres query). I have my stock value in csv file. Finally, I want to update quantity on hand in bulk.
user3946530
5
votes
2 answers

In odoo 8 server "--auto-reload" when work

Actually In the command of start odoo 8 server. It will provide "--auto-reload" option But actually i don't know how it works and when to work. Please if give me some guideline for that
Virbhadrasinh
  • 529
  • 6
  • 19
5
votes
1 answer

OpenERP/Odoo model relationship XML syntax

I'm working with OpenERP 7.0. The code below is from the file addons/project/security/project_security.xml Please explain me where the number 4, 6 and 0 are from? Which place in the document I can consult about this?
4
votes
1 answer

Odoo multicolumn index

I need to create a two-column index. I have declared: field_A= fields.Float(string='A', index=True) field_B= fields.Float(string='B', index=True) But that creates two independent indices. I would like to obtain a composite index. Any idea how I…
Dayana
  • 1,500
  • 1
  • 16
  • 29
4
votes
0 answers

Correct way to make comparison based on other models fields

for line in invoice.invoice_line_ids: if line.sale_line_ids: if line.sale_line_ids.qty_avl_stock >= line.sale_line_ids.product_uom_qty: term = _('At warehouse') in a proforma invoice, I want to check…
Chaban33
  • 1,362
  • 11
  • 38
4
votes
1 answer

Odoo : How to display html as menuitem's name?

Question : In a menuitem such as : How can I get the name to be equivalent to "menu item 3e" so…
T.Nel
  • 1,540
  • 2
  • 18
  • 34
4
votes
1 answer

Odoo - Change specific column color in one2many tree view

I am using odoo 10. I have a customer view and in that customer form view i am also showing all order that are associated with that specific customer in one2many tree view (editable). What i want to do is i want to show a button in one2many tree…
Ancient
  • 3,007
  • 14
  • 55
  • 104
4
votes
1 answer

odoo Fill one2many from a model to another model

In order to transfert data from mro.request to mro.order I made a function named action_confirm and also to make transition for my workflow, the creation of a new object worked perfectly also the transfer of data from char,date... but in order…
imad
  • 179
  • 13
4
votes
2 answers

How to fix the dynamic domains issue in Odoo?

I have created a new model named product.service.type. Then, in product.product model, I have also created a Many2many field (named service_type, pointing to product.service.type model). Now I have the model test, which has product_id and…
forvas
  • 9,801
  • 7
  • 62
  • 158
4
votes
1 answer

Read product qty on lines and on warehouses

I need to check in my lines, the products I have, their respective quantities, and know what is the availability of such products in warehouses, the stock.move and stock.picking do something like that, but it's old api, I need a custom method. This…
NeoVe
  • 3,857
  • 8
  • 54
  • 134
4
votes
3 answers

How to add an external jQuery plugin to the list view on Odoo?

I am using Odoo 10e. I want to integrate a jquery plugin into my module. I want to integrate the jQuery plugin jquery-resizable-columns. It simple helps user to resize columns of table on the fly and I want to apply this on a specific model's list…
Ancient
  • 3,007
  • 14
  • 55
  • 104
4
votes
1 answer

How to solve the error when clicking the button for open new form in odoo10?

def create_file(self): opportunity_id = self.convert_to_file() return self.env['trademark.process'].view_file(opportunity_id) I used convert file function to pass some values of current model to trademark.process def convert_to_file(self,…
code_explorer
  • 472
  • 6
  • 18
4
votes
2 answers

Dynamic domain apply while other field's value changed - odoo

class procurement(models.Model) _name="procurement" procurement_line_ids = fields.One2many(comodel_name='procurement.line', inverse_name='procurement_id', string='Procurement Lines') global_procurement = fields.Boolean("Global…