Fix multiline docstring param

This commit is contained in:
Pedro M. Baeza
2014-08-05 18:47:52 +02:00
parent 4e13e0e3b0
commit a33cfa6936
9 changed files with 70 additions and 71 deletions

View File

@@ -149,19 +149,19 @@ class AccountBankStatement(Model):
"""Add the period_id from the statement line date to the move
preparation. Originaly, it was taken from the statement period_id
:param browse_record st_line: account.bank.statement.line record to \
create the move from.
:param browse_record st_line: account.bank.statement.line record to
create the move from.
:param int/long move_id: ID of the account.move to link the move line
:param float debit: debit amount of the move line
:param float credit: credit amount of the move line
:param int/long currency_id: ID of currency of the move line to \
create
:param float amount_currency: amount of the debit/credit expressed \
in the currency_id
:param int/long account_id: ID of the account to use in the move \
line if different from the statement line account ID
:param int/long analytic_id: ID of analytic account to put on the \
move line
:param int/long currency_id: ID of currency of the move line to
create
:param float amount_currency: amount of the debit/credit expressed
in the currency_id
:param int/long account_id: ID of the account to use in the move
line if different from the statement line account ID
:param int/long analytic_id: ID of analytic account to put on the
move line
:param int/long partner_id: ID of the partner to put on the move line
:return: dict of value to create() the account.move.line
"""