OpenERP is an open-source enterprise resource planning (ERP) software actively programmed, supported, and organized by OpenERP S.A. OpenERP is an open source alternative to SAP ERP, Oracle E-Business Suite, Microsoft Dynamics, Netsuite, Adempiere, Compiere, OFBiz, Openbravo, and other enterprise resource planning software.
Questions tagged [openerp-6]
25 questions
2
votes
1 answer
OpenERP 6, Aptana - debugger doesn't stop at breakpoint in QR Bar Code Label code
I am trying to debug code for QR Bar Code Labels in OpenERP 6 using Aptana Studio 3. I put a breakpoint in "pyqr" module, file "myfile.py", function "generate_image()", as per attached picture:
Now, when I run OpenERP server from Aptana IDE…

Nash
- 1,043
- 2
- 14
- 33
2
votes
1 answer
How to put product brand in sale order line?
I installed the product_brand module for OpenERP 6.1.
Through web client, I managed to show the product brand in the product list page by inherited the product.product.tree view through debug (developer) mode by inserting the product_brand_id…

user1829383
- 23
- 5
1
vote
1 answer
Modules Openerp 6.1 - Invalid XML for view
I'm doing some homework in Python. I need to create a new module for OpenErp 6.1 and I see the next message in a pop up when I try to install the upgrade:
OpenERP Warning
ValidateError
Error ocurred while validating the field(s) arch: Invalid…

JuanRa
- 11
- 1
1
vote
1 answer
Open ERP 6.1 add field inherited view
I have a parent view id V which is a form F and inside this form a Goup with 3 fields F1, F2 and F3.
My inherited view looks like:
My view

Mark
- 684
- 2
- 9
- 25
1
vote
1 answer
res_model not valid openErp 6.1
Having this py file:
from osv import osv, fields
class my_class(osv.osv_memory):
_name = 'my.class'
_columns = {
'column1': fields.integer('Column1:'),
'column2': fields.integer('Column2:'),
}
my_class()
a viue like:

Mark
- 684
- 2
- 9
- 25
1
vote
0 answers
Is it possible to search using comma(,) in a single search field?
In openerp v6, I have a function field named zone
'zone' : fields.function(_get_zone, string="Zone", type='char', fnct_search=_zone_search),
I haven't create the _zone_search yet, anyone know how to make that function search by multiple input using…

Sembarangan
- 45
- 8
1
vote
1 answer
Datetime value on openerp and postgreSQL
Anyone know how to show same data in a datetime field in openerp 6.1 and postgresql?
When I create data at 7:00 (My timezone is +8:00) the view will show me that the data is 7/8/2015 7:00:00 but when I checked the database it became 6/8/2015…

Sembarangan
- 45
- 8
1
vote
2 answers
Security problems on Ubuntu OpenERP
Hi I have this code with the xml file and cvs and works perfectly on my openerp 7 on windows but I have a virtualbox machine with ubuntu 12 server. I tried to install the same module and brings me an error why? can anyone help me?
security.xml

Leonardo
- 43
- 8
1
vote
1 answer
No such external ID currently defined in the system
** No matching record found for external id 'model_oemedical_lab_group' in field 'Object'**
i am a beginner in openerp. i was tried to do my own customizations
in some simple modules. once i was download the mode called
oemedical
i can't able to…

DINGO
- 15
- 7
1
vote
1 answer
Boolean field required based on state field
I'm trying to make a list of boolean fields required based on a field selection (which is 'the state field').
But, even when I choose Lotissement and check the boolean fields, OpenERP still tells me that the boolean is required, and just doesn't…

user3540754
- 25
- 3
1
vote
2 answers
OpenERP 6.1 datetime formatting
Why does
o.create_order.strftime("%d %B %Y")
returns nothing when
time.strftime("%d %B %Y")
returns the date "10 february 2013"???
o.create_order is a timestamp according to postgresql.
It contains "30/11/2012 09:38:34" as seen on the openErp…

CloseISQ
- 343
- 1
- 6
- 18
0
votes
1 answer
Convert two fields to tabs in an inherited view
-edited with full code-
I have parent view:
WPA Publication View Form
wpa.publication
form

Mark
- 684
- 2
- 9
- 25
0
votes
1 answer
connect openerp 6.1 to google spreadsheet api
I am unable to authenticate oauth2.0 using openerp xml-rpc, right now i am using the cmd quickstart google spreadsheet api code to read and write from openerp once i have acquired the token using another script,
script for generating a valid…

Omi Harjani
- 737
- 1
- 8
- 20
0
votes
1 answer
print multiple reports using a single method openerp 6.1
I'm trying to print multiple invoices using a single method, i have tried in two ways so far,from within openerp using a button and method called on that and by externally defining a python script that invokes the print externally but the script…

Omi Harjani
- 737
- 1
- 8
- 20
0
votes
1 answer
openErp 6.1 AttributeError: 'NoneType' object has no attribute '_columns' at custom module installation
I'm trying to solve an installation problem on a custom module in openERP 6.1.
I'm getting this error:
Server Traceback (most recent call last):
File "C:\Archivos de programa\OpenERP…

Tricoman
- 25
- 7