Skip to content

Commit

Permalink
[ADD] crm_enterprise_remove: Add crm_enterprise_remove to hide releva…
Browse files Browse the repository at this point in the history
…nt enterprise settings.
  • Loading branch information
Brett Wood committed Aug 11, 2016
1 parent b83123a commit b910916
Show file tree
Hide file tree
Showing 5 changed files with 99 additions and 0 deletions.
52 changes: 52 additions & 0 deletions crm_enterprise_remove/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3

================================
CRM - Remove Enterprise Features
================================

This module removes enterprise-only features from all crm views.

Usage
=====

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/149/9.0

Bug Tracker
===========

Bugs are tracked on `GitHub Issues
<https://github.com/OCA/odoo-enterprise-remove/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first,
help us smashing it by providing a detailed and welcomed feedback.

Credits
=======

Images
------

* Odoo Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_.

Contributors
------------

* Brett Wood <bwood@laslabs.com>

Maintainer
----------

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

This module is maintained by the OCA.

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

To contribute to this module, please visit https://odoo-community.org.
3 changes: 3 additions & 0 deletions crm_enterprise_remove/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2016 LasLabs Inc.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
20 changes: 20 additions & 0 deletions crm_enterprise_remove/__openerp__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Copyright 2016 LasLabs Inc.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

{
'name': 'CRM - Remove Enterprise Features',
'version': '9.0.1.0.0',
'category': 'Maintenance',
'website': "https://laslabs.com",
'author': 'LasLabs, Odoo Community Association (OCA)',
'license': 'AGPL-3',
'application': False,
'installable': True,
'depends': [
'crm',
],
'data': [
'views/res_config_view.xml',
]
}
Binary file added crm_enterprise_remove/static/description/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions crm_enterprise_remove/views/res_config_view.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>

<!--
Copyright 2016 LasLabs Inc.
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
-->

<odoo>

<record id="view_sale_config_settings" model="ir.ui.view">
<field name="name">sale settings</field>
<field name="model">sale.config.settings</field>
<field name="inherit_id" ref="crm.view_sale_config_settings"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='module_crm_voip']" position="attributes">
<attribute name="invisible">True</attribute>
</xpath>
<xpath expr="//field[@name='module_website_sign']" position="attributes">
<attribute name="invisible">True</attribute>
</xpath>
</field>
</record>

</odoo>

0 comments on commit b910916

Please sign in to comment.