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

Cannot create unbalanced journal entry in Odoo

I am using odoo version 12.0+e . Whenever I go to POS and Close a Session by Hitting the "validate closing & post entries" button it shows loading screen and after a few minutes it shows "Cannot create unbalanced journal entry." error. I am…
Repose Foods
  • 1
  • 1
  • 1
0
votes
0 answers

Dynamic Report page height Odoo 10

I am using a receipt printer with odoo invoices. I know there is a POS module but I don't want to use that. Sometimes the height of the paper is short and sometimes it's more than it is required. The printer prints extra white paper which is really…
Omeed Totakhel
  • 487
  • 1
  • 10
  • 32
0
votes
1 answer

How do only search view in odoo

I need only search view and remove save button. If you search and bring the necessary data, but I need not to show the save and new button, that is, it only allows me to consult according to the selected client. I try the next: This function search…
0
votes
1 answer

Odoo 8 module fec not available after update

I have Odoo 8 installed on my synology NAS. It is working properly and I wanted to install an additional module for FEC (l10n_fr_fec) and downloaded the module and placed the downloaded files in the dedicated /addons folder next to all other…
0
votes
1 answer

How to update Destination Location of selected lines in Odoo V8

I have a problem in the Function Python for updating the destination location of selected lines in a Delivery order. This is my javascript for selecting lines (in the JS, i call the function update_locations()) : openerp.web_one2many_selectable =…
0
votes
1 answer

Where is the Odoo-10's CSV binary field value gets stored in postgres?

I have created a binary field in Odoo-10 that is supposed to store CSV file on server. But when I am checking it's table at postgres instead of getting binary data in that column, I am getting something like this Where is…
0
votes
0 answers

method execute after custom execption

I have a custom exception after a condition, in the background of this method I was creating in object customers, but I have a condition when the customers phone hasn't found it he shows me a list in exception when he shows me the exception the…
z1M
  • 21
  • 1
0
votes
1 answer

How to count and sum checked record in tree view and then set this result in form field. Odoo 8

I need count and sum the check record from tree view. I have the tree view: My code is: class summary_bidding_group(models.Model): _name = 'summary.bidding.group' _description = 'Summary Bidding Group' check_contract =…
0
votes
0 answers

how to customize one2many field in odoo

i made a new object called cmms.piece it has one2many fields called piece_line. It contains 2 fields (product_id, product_qty). I want to insert that line to cmms.intervention But it shows error Uncaught TypeError: Type is not a constructor odoo. My…
Dhouha
  • 661
  • 1
  • 8
  • 27
0
votes
1 answer

How to add a list of product in a view?

i'm using odoo 8 and i want to know how to add a page that contains list of product and theire quantity in a view, to mention in a request for intervention which products we are going to modify. In that way we can estimate how costs every…
Dhouha
  • 661
  • 1
  • 8
  • 27
0
votes
0 answers

odoo allow existing user to signup using google login

I am trying to integrate a google login with my odoo website, I was successful in logging in new users but I was not able to login using existing user can anyone guide me if i had done anything wrong. From the comments i am trying to include what i…
Midhun Mohan
  • 552
  • 5
  • 18
0
votes
1 answer

_compute_qty: unexisting method in product_uom class Odoo 10

I'm trying to upgrade own custom module from odoo8 to odoo10. i got this error: AttributeError: 'product.uom' object has no method '_compute_qty' @api.model def _prepare_purchase_order_line(self, po, item): po_line_obj =…
Damby Green
  • 116
  • 1
  • 9
0
votes
1 answer

How can I add required columns in odoo Many2many form view?

I am having a Many2many field on a form view, field is supposed to show 5 columns but it shows only 3 in my case. All 5 fields are available there on other model. but still not able to get the solution. Help appreciated. I am using Odoo v-10. Here…
0
votes
1 answer

Odoo: How to count in Tree View when group_by?

I'm trying to count plan_payment_number in tree view when group_by, but SUM by default in Odoo v8. I need only count plan_payment_number. This is what I have now: And this is what I need: I tried with count = "true". My code on the tree…
0
votes
1 answer

Disable or hide save button in Odoo

I'm trying to hide the save button from the top of a form in Odoo v8. Or instead I need to overwrite the save button. I tried with write = "false". My code on the form view: