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
2 answers

Odoo website controller update html/template

Hi I'd like to make a button visible/invisible from inside a website Controller. @http.route(['/shop/cart/update_json'], type='json', auth="public", methods=['POST'], website=True) def cart_update_json(self, product_id, line_id=None, add_qty=None,…
Jesse
  • 727
  • 13
  • 44
0
votes
2 answers

odoo V8 External ID not found in the system on custom invoice report

I am creating a module for Odoo V8 that prints a customized report, but for some reason it does not find some of the templates defined in the module and so far I do not know why. Here is the content of the report (invoice): Invoice
0
votes
2 answers

context doesn't update value of type

I have these 2 buttons in form view:
0
votes
1 answer

How Receipt Ref gets its value when a pos order is placed

In odoo 8,there is a field named Receipt Ref (technical name pos_referance. I want to know about how this value is created. For eg: If pos_referance is 27574-004-04-0003 , what does 27574 , 004 , 04 and 0003stands for ?
vbt
  • 795
  • 7
  • 31
0
votes
0 answers

Odoo 8 strange behavious using new api to inherit old api model

I added two fields to stock.picking using new api: class StockPicking(models.Model): _inherit = "stock.picking" address = fields.Char(related='partner_id.street', string="Address") sector = fields.Char(related="partner_id.sector",…
Kenly
  • 24,317
  • 7
  • 44
  • 60
0
votes
1 answer

Check if many2many contain a value

I want to check if a value is contained in a many2many field my_own_m2m = fields.Many2many("a.table", string="My Own Many2many") I tried with for value in my_own_m2m : if (value.id == self.env.ref('some_external_id').id): …
strike_noir
  • 4,080
  • 11
  • 57
  • 100
0
votes
2 answers

Clean Many2one field

hello I have a many2one object and would like to delete the data found in another many2one, but the method does not work
0
votes
2 answers

Add Product ean13 barcode in Quotation line item search (Odoo 8)

I want to know how to proceed for adding in the search a product by barcode (ean 13) in sale quotations. Like the image here, I have only the name of the product and product internal reference. I try to override the model product.product like this…
0
votes
1 answer

how to raise exception if same product selects in on2many in odoo8

Haii frds... I am not getting how to raise exception when same product is selected in one2many. In sale order line--> Order_line when i selected one product for example Book&pen In other time when i select the same product(Book&pen) its raise an…
0
votes
1 answer

Modify payment lines pos odoo 8

someone have any idea how i should modify the payment-lines in the POS,I want to add a type of credit card(like a many2one, I did it) but every time I add a line my option change to the first and also when the order is finished not save the value in…
limfit
  • 37
  • 8
0
votes
1 answer

how to write the list of numbers in increasing order using python

i have a list a1 = ['1', '5-10', '12', '18', '23', '100-110', '16-17', '20'] i want this list of elements in increasing order like a1 = ['1','5-10','12','16-17','18','20','23','100-110'] please anyone help me to arrange this case = ['1',…
0
votes
1 answer

How to use "if condition" in RML-Odoo v8

I want to use condition to print certain terms and conditions according to value set. For example, there are 10 "Terms and Conditions" for payment. The default rate is "rate1" but if "rate2" is choosen, conditions no 3 and 4 should be change to…
Lekha
  • 11
  • 4
0
votes
1 answer

How to configure alerts for employee contract expiration in odoo

How do i configure the system to email me when an employees contract is going to expire? For example I need to get an email 30 days before the expiration. i tried to create an automated action following some tutorial but i don't find the filed …
Dhouha
  • 661
  • 1
  • 8
  • 27
0
votes
1 answer

Computed field default based on other field

preload = fields.Boolean(related='project_id.preload', string='Preload Templates') part_template_ids = fields.Many2many( 'project.part.template', string='Part Templates', required=True, default='_default_part_template_ids') def…
Chaban33
  • 1,362
  • 11
  • 38
0
votes
2 answers

Default value for tree

I am using Odoo v8. Currently I created a pop up (do_action function) with a tree inside. This is the view. mcu.record.popup.form
strike_noir
  • 4,080
  • 11
  • 57
  • 100