Skip to content

Commit

Permalink
[REL] Migration product_website_categ_search rename as website_sale_u…
Browse files Browse the repository at this point in the history
…x to V11. (#74)

[ADD] views folder
[FIX] update README
  • Loading branch information
ValentinoDefelice authored and jjscarafia committed Jun 29, 2018
1 parent 63df3c2 commit 5ce2804
Show file tree
Hide file tree
Showing 5 changed files with 158 additions and 0 deletions.
70 changes: 70 additions & 0 deletions website_sale_ux/README.rst
Original file line number Diff line number Diff line change
@@ -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

===============
Website Sale UX
===============

This module add search by public_categ_ids on product website category.

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

To install this module, you need to:

#. Just install this module.

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

To configure this module, you need to:

#. No configuration needed.

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/website/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.
4 changes: 4 additions & 0 deletions website_sale_ux/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
##############################################################################
# For copyright and license notices, see __manifest__.py file in module root
# directory
##############################################################################
37 changes: 37 additions & 0 deletions website_sale_ux/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
##############################################################################
#
# 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': 'Website Sale UX',
'category': 'base.module_category_knowledge_management',
'version': '11.0.1.0.0',
'author': 'ADHOC SA',
'website': 'www.adhoc.com.ar',
'license': 'AGPL-3',
'depends': [
'product',
'website_sale',
],
'test': [],
'demo': [],
'data': [
'views/product_template_views.xml',
],
'installable': True,
}
34 changes: 34 additions & 0 deletions website_sale_ux/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_website_categ_search
#
# Translators:
# Nicolas Mac Rouillon <nmr@ingadhoc.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-06 12:19+0000\n"
"PO-Revision-Date: 2017-04-06 12:19+0000\n"
"Last-Translator: Nicolas Mac Rouillon <nmr@ingadhoc.com>, 2017\n"
"Language-Team: Spanish (https://www.transifex.com/adhoc/teams/46451/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#. module: product_website_categ_search
#: model:ir.ui.view,arch_db:product_website_categ_search.product_template_search_view
msgid ""
"<?xml version=\"1.0\"?>\n"
"<field name=\"attribute_line_ids\" position=\"before\">\n"
" <field name=\"public_categ_ids\"/>\n"
" </field>\n"
" "
msgstr ""
"<?xml version=\"1.0\"?>\n"
"<field name=\"attribute_line_ids\" position=\"before\">\n"
" <field name=\"public_categ_ids\"/>\n"
" </field>\n"
" "
13 changes: 13 additions & 0 deletions website_sale_ux/views/product_template_views.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record model="ir.ui.view" id="product_template_search_view">
<field name="name">product.template.product.search</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_search_view"/>
<field name="arch" type="xml">
<field name="attribute_line_ids" position="before">
<field name="public_categ_ids"/>
</field>
</field>
</record>
</odoo>

0 comments on commit 5ce2804

Please sign in to comment.