[account_payment] : structured reference type is not reflected when importing from...
[odoo/odoo.git] / addons / account_payment / wizard / account_payment_order.py
index f4d695a..28aa4a6 100644 (file)
@@ -87,6 +87,7 @@ class payment_order_create(osv.osv_memory):
                     'order_id': payment.id,
                     'partner_id': line.partner_id and line.partner_id.id or False,
                     'communication': line.ref or '/',
+                    'state': line.invoice and line.invoice.reference_type != 'none' and 'structured' or 'normal',
                     'date': date_to_pay,
                     'currency': (line.invoice and line.invoice.currency_id.id) or line.journal_id.currency.id or line.journal_id.company_id.currency_id.id,
                 }, context=context)