[10.0][MIG]migrate web_widget_image_download

This commit is contained in:
smurf-U
2017-06-24 00:14:06 +05:30
committed by Pedro M. Baeza
parent 120a9a576b
commit 841c78960a
5 changed files with 13 additions and 12 deletions

View File

@@ -2,7 +2,7 @@
* Copyright 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
* License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). */
.openerp .oe_form .oe_form_field_image .oe_form_field_image_controls
.oe_form_binary_file_download {
color: inherit;
.o_form_field_image .o_form_image_controls
.o_form_binary_file_download {
color: #fff;
}

View File

@@ -5,12 +5,11 @@ odoo.define('web_widget_image_download.widget', function (require) {
'use strict';
var core = require('web.core');
var $ = require('$');
core.form_widget_registry.get("image").include({
render_value: function () {
this._super();
var $widget = this.$el.find('.oe_form_binary_file_download');
var $widget = this.$el.find('.o_form_binary_file_download');
this.imgSrc = this.$el.find('img[name="' + this.name + '"]')
.attr('src');
@@ -28,7 +27,7 @@ odoo.define('web_widget_image_download.widget', function (require) {
// Replace with jQuery to keep inheritance intact
if (this.has_custom_image()) {
this.$el.find('.oe_form_binary_file_clear')
this.$el.find('.o_clear_file_button')
.removeClass('col-md-offset-5');
}

View File

@@ -4,9 +4,10 @@
<template>
<t t-extend="FieldBinaryImage">
<t t-jquery=".oe_form_binary_file_edit" t-operation="after">
<t t-jquery=".o_select_file_button" t-operation="after">
<t t-if="widget.has_custom_image()">
<a class="fa fa-download fa-1g col-md-4 oe_form_binary_file_download" title="Download"></a>
<a class="fa fa-download o_form_binary_file_download"
title="Download"/>
</t>
</t>
</t>