Questions tagged [openerp-6]

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.

25 questions
0
votes
1 answer

How to customize font and color of an element in OpenERP 6.0

I searched all topic but I can't find way to optimize font and color of a label in OpenERP 6.0. I found this in source code but it is only for tree…
0
votes
0 answers

How to fix warning openerp.wizard on openerp 6

openerp.wizard: The wizard base_report_creator.report_filter.fields uses the deprecated openerp.wizard.interface class. It must use the openerp.osv.TransientModel class instead. What is the correct way to fix this warning?
0
votes
1 answer

How do i install an openerp module from backend

'installable': True, 'auto_install': True, 'application': True, 'active':True, I have added the above to my openerp.py and tried adding the module to an existing module and in both scenarios after that,I tried updating all my modules still the…
Omi Harjani
  • 737
  • 1
  • 8
  • 20
0
votes
1 answer

One2Many count continue ondefault one2many unlink

I need to count the no of records in one2many which i am able to do by using the method: def update_cust(self,cr,uid,ids,context=None): current_obj = self.browse(cr,uid,ids[0]) one2many_ids=self.pool.get('customer.test').search(cr,uid,[],…
Omi Harjani
  • 737
  • 1
  • 8
  • 20
0
votes
1 answer

How do i transfer a value from transient object to a non transient object in openerp 6

class stock_transfer(osv.osv): _inherit="stock.transfer" _columns={ 'psd_allow_logo':fields.boolean('Alow Logo'), } stock_transfer() class indent_report(osv.osv_memory): _inherit = "indent.report" _columns = { …
Omi Harjani
  • 737
  • 1
  • 8
  • 20
0
votes
1 answer

OpenERP logging to db

Is there any way to logging errors to the database? (for example with a special server action) I found the res_log model, but unfortunately I have no idea how can I load it. (actually I use openerp 6.1)
Döme
  • 835
  • 11
  • 23
0
votes
1 answer

Formatting related datetime field

I have a related datetime field 'expected_date' : fields.related('picking_id','date',type='datetime', relation='stock.picking', store=True, string="Date"), Then I want to show that field in some report, but I want to change the format of the…
0
votes
1 answer

create function openerp 6.0

I created a module in openerp 6.0, the problem that openerp 6.0 did not support the same code as openerp 7, this is the function create: if some one can help me to solve the problem: def create(self, cr, uid, vals, context=None): if context is…
Helmi Dhaoui
  • 85
  • 1
  • 2
  • 8
0
votes
1 answer

How to show a message to user on success in openerp

Could somebody please tell me how to show a message when the operation has been completed successfully. I am using openerp v.6 and gtk-client. I don´t want to use osv.except_osv because it has a rollback procedure. I have tried this but it doesn´t…
kamboj
  • 411
  • 1
  • 9
  • 18
0
votes
2 answers

OpenERP 6.1 multiple views with different fields

I would like to create different 'kinds' of purchase order forms in OpenERP with different fields in each. Because of the inheritance model, I am assuming I can't inherit multiple children with disjoint fields. So I decided to create a superset…
Raza Ali
  • 595
  • 1
  • 13
  • 29
1
2