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
1 answer

How can I map dates in python using lambdas? I am trying to do this to print Excel sheet in Odoo

I am trying to map keys for Excel sheet using lambdas. But I can't map properly. Please help def _get_lines(self,cr,uid,ids,val, context=None): dict_dat = val od_start = dict_dat['od_start'][0] qry= '' x =…
vbt
  • 795
  • 7
  • 31
0
votes
1 answer

Odoo Invoice number - validating an invoice isn't re-using the internal_number if exists

Dears, Usually, Upon Validating an invoice, it takes a new sequence from sequence (e.g. SAJ/%(year)s/), and in case that invoice has an internal_number (case of canceled invoice set to draft), it should use its internal_number. But the unwanted…
Salim R
  • 343
  • 7
  • 16
0
votes
1 answer

How do I use res.partner ORM to create a Partner Registration functionality

I am currently learning how to use odoo (Using version 8), I am developing a Fuel management system. I noticed there is a module called fleet which I can conveniently use. I would like to add partners in the fleet module so that a user can register…
Philip Mutua
  • 6,016
  • 12
  • 41
  • 84
0
votes
1 answer

add another element to models list [odoo-8] pos javascript

in pos javascript there this code: module.PosModel = Backbone.Model.extend({ ..... ..... models: [ { model: 'res.users', fields: ['name','company_id'], ids: …
Charif DZ
  • 14,415
  • 3
  • 21
  • 40
0
votes
1 answer

Make a form View read-only for specific user groups from front-end in Odoo 8

Is it possible to change the attributes of form view for specific user groups in form view tag, like in form tag, readonly="{('user_group','=','some_group')}"> I need to make a form view read-only for s specific user group but only from front-end.…
Sana Ali
  • 11
  • 5
0
votes
0 answers

Odoo 8: how to prevent wizard from closing after a new one is opened?

I am trying to create a wizard, launched from a button in res.partner's form view, which has two buttons on its footer (besides the 'cancel' one): the first one launches a method that does stuff inside the related res.partner record (but it's not…
SlyK
  • 175
  • 2
  • 14
0
votes
0 answers

Wizard to create stock.picking from another model - Odoo v8

I have this code for the wizard: class generate_stock_picking(models.TransientModel): _name = 'generate.stock.picking' isbns = fields.One2many('order.lines', 'order_id', 'ISBN') production_order = fields.Many2one('bsi.print.order', 'Print…
NeoVe
  • 3,857
  • 8
  • 54
  • 134
0
votes
2 answers

Error during installing of module in odoo

I am currently encountering an error in Odoo. I am using Odoo v.10 and I am looking for loan management module for FREE and I found a module in lower version which is 8 and when I'm installing the module, it gives me an error. Why is this? but I…
law rence
  • 169
  • 1
  • 18
0
votes
1 answer

How do I install odoo v8.0 and development environment on windows 10?

I am trying to install odoo 8.0 in windows 10 OS so far these are the steps I have been following but when I run odoo.py on command line the odoo server is not initializing. Install Odoo for development: Install Pycharm Install Python 2.7 Download…
philip
  • 1
  • 1
  • 5
0
votes
1 answer

Not load res.partner in POS Odoo 8

How to not load data res.partner in POS Odoo? Because row on the res.partner table is a lot and makes load POS so long. Thanks
0
votes
1 answer

create a employee in biometric machine using odoo 8

i am trying to many time create user using odoo 8 custom button using this code please help me. @api.multi def createBioUsers(self): zk = zklib.ZKLib(config.key['ip'], int(config.key['port'])) res = zk.connect() if res == False: …
kh.yasir
  • 25
  • 4
0
votes
1 answer

Give condition for "add an item" tree in odoo 8

i have case about odoo, i was trying to give a condition for create in tree using attr. But, always not working. and here my code before i give a condition : i was trying add…
Scarlett stone
  • 225
  • 1
  • 15
0
votes
1 answer

"AttributeError: 'NoneType' object has no attribute 'fields_view_get'". How to resolve this error in Odoo?

I was trying to develop excel reports using xlwt. Unfortunately I am getting following error i.e "AttributeError: 'NoneType' object has no attribute 'fields_view_get'" from the following code: Xlwt report code in odoo v8. excel file generation…
Shravy
  • 656
  • 1
  • 23
  • 61
0
votes
1 answer

POS order product total

my goal is to add a field in product form view that will show how many time this product was bought with POS. really stuck with this one and would be nice to have an idea how to do this. class Product(models.Model): _inherit =…
Chaban33
  • 1,362
  • 11
  • 38
0
votes
1 answer

How To Integrate Odoo to Fingerprint (Fingerspot)

expert I got task to make odoo (in this case odoo v10) integrate to fingerprint (in thiscase Fingerspot). Could anyone please help me to do this? is there any tutorial / reference for me to try this case ? I would be happy for every answer for this…
Kode Kite
  • 328
  • 5
  • 15
1 2 3
99
100