Questions tagged as 'odoo'

0
answers

Create block objects by assigning values to field many2many odoo8

I'm creating a functionality to create instances in bulk from a wizard, assigning values to some many2many fields, but when I try it I get an error: "Expected singleton: modelo3(167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179,...
asked by 24.08.2017 / 11:23
0
answers

Odoo 11 eCommerce Delivery [closed]

I'm working with Odoo v11 I have the eCommerce Delivery module installed and configured, but the shipping method that I created when paying is not displayed in the store. In the total I do not add the price of the shipment. The shipping me...
asked by 26.09.2018 / 18:10
0
answers

Odoo11. Send view to Excel

Currently working with Odoo 11. I have the following case: Suppose we are in the Contacts view, any user can configure this view in their own way, add filter, group, and in this way create a customized view of the information they want to...
asked by 28.04.2018 / 18:40
0
answers

terraform script for odoo deployment

I have the following scrip terraform { required_version = ">=0.10.6"...
asked by 01.05.2018 / 23:14
0
answers

problems with KeyOrror Odoo v8

I have a module to control a bus fleet with several models. Two of them are Lines and Buses . I have a type one2many relationship (one2many bus lines and the corresponding line number2one to buses) . The problem is that the many2one...
asked by 15.03.2017 / 20:50
2
answers

Pass one or several tax_id to odoo 9 (to your native api)

I currently have this: $line_array_product = array( 'order_id' => new xmlrpcval($erp_order_id, "int"), 'type' => new xmlrpcval('Product', "string"), 'product_id' => new xmlrpcval($erp_product_id, "int"), 'price_unit' =...
asked by 01.08.2017 / 12:33
0
answers

Error trying to runbot runbot in odoo container 10

After downloading the addon of runbot when placing it in the addons folder of odoo it stops working, it does not finish loading related to the front end. For its part in the log of the odoo gives me the following error. Traceback (most rece...
asked by 27.12.2018 / 15:11
0
answers

How to find a field many2one of a module related to a one2many from another module in odoo?

An example, my module class catalogoimage (models.Model):     _name = 'tfg.catalogoimage' client = fields.Many2one('tfg.cliente', ondelete='set null', string="Cliente", index=True, help='Cliente al que se le ha realizado el servicio',requ...
asked by 03.01.2019 / 11:21
0
answers

Odoo avoid repeated records in one2many field

I have made a function in a one2many field so that each time an article is selected, it automatically adds two more articles, but given the current code every time the field is updated, it adds the same items again, I need to Just add the articl...
asked by 02.01.2019 / 16:20
0
answers

Odoo, show records for common class

I have two classes: class UYNominaFormFamilia(models.Model): _name = "uy_nomina.formfamilia familiares_ids =fields.One2many('hr.employee.familiar','form_familia_id') employee_id = fields.Many2one('hr.employee', 'Empleado') and class hr...
asked by 09.11.2018 / 20:02