[IMP] Purchase : add a docstring for the method create_procurement_purchase_order

bzr revid: sebastien.beau@akretion.com.br-20110824221806-ue02asb0afk5mol7
This commit is contained in:
sebastien beau 2011-08-25 00:18:06 +02:00
parent 0757ae25ab
commit c1d843e460
1 changed files with 7 additions and 0 deletions

View File

@ -762,6 +762,13 @@ class procurement_order(osv.osv):
return len(res) and res[0] or 0 #TO CHECK: why workflow is generated error if return not integer value
def create_procurement_purchase_order(self, cr, uid, procurement, po_vals, line, context=None):
""" Create the purchase order from the procurement
:params procurement: the procurement object generating the purchase order
:params dict po_vals: the values of the purchase order
:params dict line: the values of the purchase order line
:return: purchase order id
:rtype: int
"""
po_vals.update({'order_line': [(0,0,line)]})
return self.pool.get('purchase.order').create(cr, uid, po_vals, context=context)