Browse Source

[IMP] Make it good-looking, update known issues, fix templates.

pull/555/head
Jairo Llopis 7 years ago
parent
commit
9efc5a6d29
  1. 7
      web_advanced_search_x2x/README.rst
  2. 16
      web_advanced_search_x2x/static/src/css/web_advanced_search_x2x.less
  3. 9
      web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js
  4. 1
      web_advanced_search_x2x/views/templates.xml

7
web_advanced_search_x2x/README.rst

@ -37,10 +37,9 @@ Note that you can stack searching for properties: Simply add another advanced se
Known issues / Roadmap
======================
* When you use *is [not] equal to* search system and click on an option with
the mouse, the search dropdown gets hidden and you have to reopen it and
reapply the filter. As a workaround, use the keyboard to select the option
you want.
* When you use *is in selection* search system and choose a domain, it gets
immediately applied, so to add a new condition, you will have to use again
the *Filters* menu.
Credits
=======

16
web_advanced_search_x2x/static/src/css/web_advanced_search_x2x.less

@ -0,0 +1,16 @@
.openerp {
.oe-search-options {
.searchview_extended_prop_value {
.oe_form {
.ui-autocomplete-input {
.form-control();
}
.oe_m2o_drop_down_button {
top: 6px;
right: 2px;
}
}
}
}
}

9
web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js

@ -119,13 +119,8 @@ odoo.define('web_advanced_search_x2x.search_filters', function (require) {
x2x_autocomplete_open: function()
{
var widget = this._x2x_field.$input.autocomplete("widget");
widget.on('click', 'li', function(e)
{
widget.trigger(
'menuselect',
{item: jQuery(e.currentTarget)}
);
e.stopPropagation();
widget.on('click', 'li', function(event) {
event.stopPropagation();
});
},
get_domain: function () {

1
web_advanced_search_x2x/views/templates.xml

@ -5,6 +5,7 @@
<template id="assets_backend" name="web_advanced_search_x2x assets" inherit_id="web.assets_backend">
<xpath expr="." position="inside">
<link rel="stylesheet" href="/web_advanced_search_x2x/static/src/css/web_advanced_search_x2x.less"/>
<script type="text/javascript" src="/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js"/>
</xpath>
</template>

Loading…
Cancel
Save