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
0
votes
0 answers

how to run code part from an active configuration button Radio

how to run code part from an active configuration button Radio I already created button radio class PurchaseConfig(models.TransientModel): _inherit = 'purchase.config.settings' groupe_purchase_grouping = fields.Selection([ (0, 'Active'), …
KAKA RECARDO
  • 115
  • 9
0
votes
1 answer

In Odoo, how do I open a record in form view with the pager enabled?

In Odoo, I can open a record in form view by using a button to trigger an action on the data model: @openerp.api.multi def open_record_in_form_view(self): return { 'type': 'ir.actions.act_window', 'res_model': 'model.name', …
Monica For CEO
  • 499
  • 6
  • 20
0
votes
0 answers

RuntimeError maximum recursion

UPDATE updated my question. @api.multi def write(self, vals): result = super(PosQuotation, self).write(vals) if 'state' in vals: for rec in self: if rec.state != "delivery_success": continue …
Chaban33
  • 1,362
  • 11
  • 38
0
votes
1 answer

How to call function by using defaults

I am trying to call a function by using '_defaults' but it is not working. Here 'employee_id' is the employee field of 'hr.payslip' and 'onchange_employee_id' is function. def onchange_employee_id(self, cr, uid, ids, date_from, date_to,…
phani
  • 121
  • 1
  • 15
0
votes
2 answers

Select one row based on Month and Year in sql

I have a table like this: ID | Cost | Month | Year | InMonth | InYear | -------------------------------------------------------- 1081| 13000 | 5 | 2017 | 10 | 2016 | 1081| 13500 | 9 | 2016 | 10 | …
0
votes
1 answer

How to display many2many field in kanban view ,without color label

I have to try to display my field many2many in view kanban but don't work for me. my field is my code :attribute_value_ids
Karara Mohamed
  • 923
  • 1
  • 6
  • 19
0
votes
1 answer

How to Display / Restrict the part of many2one records to list in odoo?

view.xml I want to display the job_position which is matched with the similar companies of planning_id(job_position.company_id=planning_id.company). I tried with…
Mani
  • 2,675
  • 2
  • 20
  • 42
0
votes
2 answers

Fetching the complete 'date' field was not coming form 'hr.employee' model

I am trying to get the data from 'date' field that 'date' field is in 'hr.employee' to 'hr.payslip'.I create a function for that task. Code: class employee_datecheck(models.Model): _inherit = 'hr.payslip' @api.onchange('employee_id') …
phani
  • 121
  • 1
  • 15
0
votes
1 answer

Accessing data of a field from custom widget

In a custom widget, is the data of a field that we turned into widget available to be used inside the widget? For example if I make a custom widget for a one2many field, when I display that field using XML like this
strike_noir
  • 4,080
  • 11
  • 57
  • 100
0
votes
0 answers

Odoo function is not working

This V8 code. class project_fill_assign(models.Model): _inherit='project.task' @api.onchange('project_id') @api.constrains('project_id') def _assing_of_persons(self): logg = logging.getLogger(__name__) …
phani
  • 121
  • 1
  • 15
0
votes
0 answers

How can we create functions in odoo

I want to create functions for odoo 7 version fields but main thing is that new functions I want to create in odoo 8.please any one help me If any Example it is Good.
phani
  • 121
  • 1
  • 15
0
votes
1 answer

Create Condition for selection field in odoo 8

I have a problem when i was try to create a condition for selection field. I not have idea how to create condition for selection field. So, here my code : _columns = { 'choose': fields.selection(( ('first','First'), …
Scarlett stone
  • 225
  • 1
  • 15
0
votes
1 answer

Odoo v.8 I like seeing sale orders of which i am follower

I tried Domain ---------> ('message_follower_ids', 'in', [user.partner_id.id]) but it does not work ValueError: "name 'user' is not defined" while evaluating "[('message_partner_ids', 'in', [user.partner_id.id])]"
Eduardo
  • 9
  • 2
0
votes
2 answers

Can't add a new field to res.company odoo 8

M using odoo 8 running on windows, i inhereted the res.company model, and added few columns class res_ company(models.Model): _name = "res.company" _inherit = "res.company" manager_name = fields.Char() but it when i restart odoo, i…
Jihane Hemicha
  • 115
  • 1
  • 2
  • 13
0
votes
1 answer

Condition to display a header button only after a customer have been saved

I have tried so many ways to display "Offer Letter" button only when a customer is saved. But it seems i am not getting the condition right here:
Ropo
  • 144
  • 1
  • 13
1 2 3
99
100