Get move line return line instead of res

Revert changeset-84d97de
This commit is contained in:
Raimon Esteve 2017-09-04 11:31:07 +02:00
parent c65a7d286a
commit c721cf52b7
1 changed files with 15 additions and 0 deletions

View File

@ -412,6 +412,21 @@ diff -r 2b9489aee936 trytond/trytond/modules/account_invoice/invoice.py
def _credit(self):
'''
Index: trytond/trytond/modules/account_payment_type/invoice.py
===================================================================
--- a/trytond/trytond/modules/account_payment_type/invoice.py 2016-05-31 15:12:13.270350897 +0200
+++ b/trytond/trytond/modules/account_payment_type/invoice.py 2016-05-31 15:12:13.266350897 +0200
@@ -82,7 +82,7 @@
return self.company.party.customer_payment_type.id
def _get_move_line(self, date, amount):
- res = super(Invoice, self)._get_move_line(date, amount)
+ line = super(Invoice, self)._get_move_line(date, amount)
if self.payment_type:
- res['payment_type'] = self.payment_type
- return res
+ line.payment_type = self.payment_type
+ return line
Index: trytond/trytond/modules/analytic_invoice/invoice.py
===================================================================
--- a/trytond/trytond/modules/analytic_invoice/invoice.py 2016-09-01 12:04:30.270350897 +0200