I'm learning Rental Module for v7 and there is the function definition with "strange arguments" like these:
def _prepare_order_line_procurement(
self, cr, uid, order, line, move_id, date_planned, context=None): ....
It's ok, but then the sentence
res = super(sale_order, self)._prepare_order_line_procurement(
cr, uid, order, line, move_id, date_planned, context=context)
is coming.
Could anybody explain to me, if there is no setting value for these arguments - how can it work?