[ADD] auction: Added docstring for wizard function.

bzr revid: uco@tinyerp.co.in-20100319120206-479g0fz3eqx4a4e1
This commit is contained in:
uco (OpenERP) 2010-03-19 17:32:06 +05:30
parent e1013773db
commit 13dd810ca6
1 changed files with 18 additions and 0 deletions

View File

@ -27,6 +27,15 @@ class auction_catalog_flagey(osv.osv_memory):
_description = 'Auction Catalog Flagey'
def default_get(self, cr, uid, fields, context):
"""
To get default values for the object.
@param self: The object pointer.
@param cr: A database cursor
@param uid: ID of the user currently logged in
@param fields: List of fields for which we want default values
@param context: A standard dictionary
@return: A dictionary which of fields with values.
"""
res = super(auction_catalog_flagey, self).default_get(cr, uid, fields, context=context)
return res
@ -40,6 +49,15 @@ class auction_catalog_flagey(osv.osv_memory):
pass
def print_report(self, cr, uid, ids, context):
"""
Prints auction catalog flagey report.
@param self: The object pointer.
@param cr: A database cursor
@param uid: ID of the user currently logged in
@param ids: List of IDs selected
@param context: A standard dictionary
@return: Report
"""
datas = {'ids': context.get('active_ids',[])}
return {
'type': 'ir.actions.report.xml',