forked from Yaltik/golem
[FIX]GOLEM Activity Registration : correct invoice view
This commit is contained in:
parent
9f36b0a365
commit
3c4ba1beae
@ -1,6 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
# Copyright 2018 Fabien Bourgeois <fabien@yaltik.com>
|
# Copyright 2018-2019 Fabien Bourgeois <fabien@yaltik.com>
|
||||||
# Copyright 2018 Youssef El Ouahby <youssef@yaltik.com>
|
# Copyright 2018 Youssef El Ouahby <youssef@yaltik.com>
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
@ -20,7 +20,7 @@
|
|||||||
'name': 'GOLEM Activity Member Registration Payments',
|
'name': 'GOLEM Activity Member Registration Payments',
|
||||||
'summary': 'GOLEM Activities Member Registration Payments',
|
'summary': 'GOLEM Activities Member Registration Payments',
|
||||||
'description': 'GOLEM Activities Member Registration Payments',
|
'description': 'GOLEM Activities Member Registration Payments',
|
||||||
'version': '10.0.0.7.0',
|
'version': '10.0.0.7.1',
|
||||||
'category': 'GOLEM',
|
'category': 'GOLEM',
|
||||||
'author': 'Fabien Bourgeois',
|
'author': 'Fabien Bourgeois',
|
||||||
'license': 'AGPL-3',
|
'license': 'AGPL-3',
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
# Copyright 2017-2018 Fabien Bourgeois <fabien@yaltik.com>
|
# Copyright 2017-2019 Fabien Bourgeois <fabien@yaltik.com>
|
||||||
# Copyright 2018 Youssef El Ouahby <youssef@yaltik.com>
|
# Copyright 2018 Youssef El Ouahby <youssef@yaltik.com>
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
@ -156,10 +156,14 @@ class GolemActivityRegistrationInvoicing(models.TransientModel):
|
|||||||
if not self.invoice_id:
|
if not self.invoice_id:
|
||||||
uerr = _('There is no generated invoice.')
|
uerr = _('There is no generated invoice.')
|
||||||
raise UserError(uerr)
|
raise UserError(uerr)
|
||||||
|
search_view_id = self.env.ref('account.view_account_invoice_filter')
|
||||||
|
form_view_id = self.env.ref('account.invoice_form')
|
||||||
|
tree_view_ref = self.env.ref('account.invoice_tree', False)
|
||||||
return {
|
return {
|
||||||
'type': 'ir.actions.act_window',
|
'type': 'ir.actions.act_window',
|
||||||
'name': _('Generated invoice'),
|
'name': _('Generated invoice'),
|
||||||
'view_mode': 'form,tree',
|
'view_mode': 'form',
|
||||||
|
'view_id': form_view_id.id,
|
||||||
'res_model': 'account.invoice',
|
'res_model': 'account.invoice',
|
||||||
'res_id': self[0].invoice_id.id
|
'res_id': self[0].invoice_id.id
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user