Skip to content

Commit

Permalink
[ADD]sale_crm_ux: tags for sale order view
Browse files Browse the repository at this point in the history
This module add the tag_ids field to the sale order view
  • Loading branch information
PabloPaezSheridan committed Mar 31, 2021
1 parent f6d28fa commit d302690
Show file tree
Hide file tree
Showing 3 changed files with 121 additions and 0 deletions.
70 changes: 70 additions & 0 deletions sale_crm_ux/README.rst
@@ -0,0 +1,70 @@
.. |company| replace:: ADHOC SA

.. |company_logo| image:: https://raw.githubusercontent.com/ingadhoc/maintainer-tools/master/resources/adhoc-logo.png
:alt: ADHOC SA
:target: https://www.adhoc.com.ar

.. |icon| image:: https://raw.githubusercontent.com/ingadhoc/maintainer-tools/master/resources/adhoc-icon.png

.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: https://www.gnu.org/licenses/agpl
:alt: License: AGPL-3

================
Sale CRM UX
================

#. This module reincorporate the tag field in the sale form. It is not needed in v14

Installation
============

To install this module, you need to:

#. Only need to install the module

Configuration
=============

To configure this module, you need to:

#. Nothing to configure

Usage
=====

To use this module, you need to:

#. Just use the module.

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: http://runbot.adhoc.com.ar/

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

Bugs are tracked on `GitHub Issues
<https://github.com/ingadhoc/sale/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
------

* |company| |icon|

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

Maintainer
----------

|company_logo|

This module is maintained by the |company|.

To contribute to this module, please visit https://www.adhoc.com.ar.
38 changes: 38 additions & 0 deletions sale_crm_ux/__manifest__.py
@@ -0,0 +1,38 @@
##############################################################################
#
# Copyright (C) 2015 ADHOC SA (http://www.adhoc.com.ar)
# All Rights Reserved.
#
# 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.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
'name': 'Sale CRM UX',
'version': '13.0.1.0.0',
'category': 'Sales',
'sequence': 14,
'summary': '',
'author': 'ADHOC SA',
'website': 'www.adhoc.com.ar',
'license': 'AGPL-3',
'depends': [
'sale_crm'
],
'data': [
'views/sale_order_views.xml'
],
'installable': True,
'auto_install': True,
'application': False,
}
13 changes: 13 additions & 0 deletions sale_crm_ux/views/sale_order_views.xml
@@ -0,0 +1,13 @@
<?xml version="1.0"?>
<odoo>
<record model="ir.ui.view" id="view_order_form">
<field name="name">sale.order.form.tag_ids</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form"/>
<field name="arch" type="xml">
<field name="user_id" position="after">
<field name="tag_ids" widget="many2many_tags"/>
</field>
</field>
</record>
</odoo>

0 comments on commit d302690

Please sign in to comment.