Merge PR #401 into 12.0

Signed-off-by sbidoul
This commit is contained in:
OCA-git-bot
2019-10-24 11:36:58 +00:00

View File

@@ -32,8 +32,10 @@ class ContractContract(models.Model):
self.mandate_id = False
@api.multi
def _prepare_invoice(self, date_ref=False):
invoice_vals = super(ContractContract, self)._prepare_invoice(date_ref)
def _prepare_invoice(self, date_invoice, journal=None):
invoice_vals = super(ContractContract, self)._prepare_invoice(
date_invoice, journal=journal
)
if self.mandate_id:
invoice_vals['mandate_id'] = self.mandate_id.id
elif self.payment_mode_id.payment_method_id.mandate_required: