|
@ -3,19 +3,11 @@ |
|
|
# |
|
|
# |
|
|
# Authors: Laurent Mignon |
|
|
# Authors: Laurent Mignon |
|
|
# Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu) |
|
|
# Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu) |
|
|
# All Rights Reserved |
|
|
|
|
|
# |
|
|
|
|
|
# WARNING: This program as such is intended to be used by professional |
|
|
|
|
|
# programmers who take the whole responsibility of assessing all potential |
|
|
|
|
|
# consequences resulting from its eventual inadequacies and bugs. |
|
|
|
|
|
# End users who are looking for a ready-to-use solution with commercial |
|
|
|
|
|
# guarantees and support are strongly advised to contact a Free Software |
|
|
|
|
|
# Service Company. |
|
|
|
|
|
# |
|
|
# |
|
|
# This program is free software: you can redistribute it and/or modify |
|
|
# This program is free software: you can redistribute it and/or modify |
|
|
# it under the terms of the GNU Affero General Public License as |
|
|
|
|
|
# published by the Free Software Foundation, either version 3 of the |
|
|
|
|
|
# License, or (at your option) any later version. |
|
|
|
|
|
|
|
|
# it under the terms of the GNU Affero General Public License as published |
|
|
|
|
|
# by the Free Software Foundation, either version 3 of the License, or |
|
|
|
|
|
# (at your option) any later version. |
|
|
# |
|
|
# |
|
|
# This program is distributed in the hope that it will be useful, |
|
|
# This program is distributed in the hope that it will be useful, |
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
@ -53,7 +45,7 @@ class HelpOnline(models.TransientModel): |
|
|
ir_model = self.env['ir.model'] |
|
|
ir_model = self.env['ir.model'] |
|
|
description = self.env[model]._description |
|
|
description = self.env[model]._description |
|
|
res = ir_model.name_search(model, operator='=') |
|
|
res = ir_model.name_search(model, operator='=') |
|
|
if(res): |
|
|
|
|
|
|
|
|
if res: |
|
|
description = res[0][1] |
|
|
description = res[0][1] |
|
|
name = self._get_view_name(model, view_type, domain, context) |
|
|
name = self._get_view_name(model, view_type, domain, context) |
|
|
if self.page_exists(name): |
|
|
if self.page_exists(name): |
|
|