[MIG] Migration to 12.0: web_widget_image_webcam

pull/2349/head
Iván Todorovich 2020-03-12 13:17:08 +05:30 committed by OCA-git-bot
parent b6f7a0f3bb
commit 30683492e7
11 changed files with 40 additions and 24 deletions

View File

@ -41,6 +41,7 @@ Contributors
* Siddharth Bhalgami <siddharth.bhalgami@gmail.com>
* Kaushal Prajapati <kbprajapati@live.com>
* Druidoo (<https://www.druidoo.io>)
Maintainer
----------

View File

@ -1,4 +1 @@
# Copyright 2019 Siddharth Bhalgami <siddharth.bhalgami@gmail.com>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
from . import models

View File

@ -1,9 +1,10 @@
# Copyright 2016 Siddharth Bhalgami <siddharth.bhalgami@gmail.com>
# Copyright (C) 2019-Today: Druidoo (<https://www.druidoo.io>)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
{
"name": "Web Widget - Image WebCam",
"summary": "Allows to take image with WebCam",
"version": "11.0.1.0.0",
"version": "12.0.1.0.0",
"category": "web",
"website": "https://github.com/OCA/web",
"author": "Tech Receptives, "

View File

@ -1,4 +1 @@
# Copyright 2019 Siddharth Bhalgami <siddharth.bhalgami@gmail.com>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
from . import ir_config_parameter

View File

@ -1,10 +1,11 @@
# Copyright 2019 Siddharth Bhalgami <siddharth.bhalgami@gmail.com>
# Copyright 2019-Today: Druidoo (<https://www.druidoo.io>)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
from odoo.models import api, Model
from odoo import api, models
class IrConfigParameter(Model):
class IrConfigParameter(models.Model):
_inherit = "ir.config_parameter"
@api.model

View File

@ -0,0 +1,13 @@
By default, the module works with all `major browsers
<https://github.com/jhuckaby/webcamjs#browser-support>`_.
An important note for **Chrome 47+** users - this module only works with websites delivered over SSL / HTTPS.
Visit this for `more info
<https://github.com/jhuckaby/webcamjs#important-note-for-chrome-47>`_.
But, If you still want this module to work with websites without SSL / HTTPS.
Here is the steps to do it easily (Always run in Adobe Flash fallback mode, but it is not desirable).
Set the configuration parameter ``web_widget_image_webcam.flash_fallback_mode`` to ``1``
Its done! Now this module also work with websites without SSL / HTTPS.

View File

@ -0,0 +1,5 @@
* Siddharth Bhalgami <siddharth.bhalgami@gmail.com>
* Kaushal Prajapati <kbprajapati@live.com>
* `Druidoo <https://www.druidoo.io>`_:
* Iván Todorovich

View File

@ -0,0 +1 @@
This module extends the functionality of the image widget and allows to take snapshots with WebCam.

View File

@ -1,13 +1,17 @@
/*
Copyright 2016 Siddharth Bhalgami <siddharth.bhalgami@gmail.com>
Copyright 2019-Today: Druidoo (<https://www.druidoo.io>)
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
*/
.o_form_view.o_form_editable .o_form_field_image .o_form_image_controls
.o_form_binary_file_web_cam {
color: inherit;
}
.o_field_widget.o_field_image .o_form_image_controls > .fa {
margin: 3px;
}
.o_form_view .o_form_field_image .o_form_image_controls > .fa{
margin:3px;
margin: 3px;
}
.live_webcam_outer_div, .webcam_result_outer_div {
padding-left: 20px;

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2016 Siddharth Bhalgami <siddharth.bhalgami@gmail.com>
Copyright 2019-Today: Druidoo (<https://www.druidoo.io>)
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). -->
<template id="template" xml:space="preserve">
@ -12,14 +13,12 @@
<div t-name="WebCamDialog" id="WebCamModal">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="col-md-5 live_webcam_outer_div">
<div id="live_webcam"/>
</div>
<div class="col-md-2 mt64 direction_icon fa fa-angle-right fa-8x"/>
<div class="col-md-5 webcam_result_outer_div">
<div id="webcam_result"/>
</div>
<div class="col-md-5 live_webcam_outer_div">
<div id="live_webcam"/>
</div>
<div class="col-md-2 mt64 direction_icon fa fa-angle-right fa-8x"/>
<div class="col-md-5 webcam_result_outer_div">
<div id="webcam_result"/>
</div>
</div>
</div>

View File

@ -4,12 +4,9 @@
<odoo>
<template id="assets_backend" inherit_id="web.assets_backend">
<xpath expr=".">
<script type="text/javascript"
src="/web_widget_image_webcam/static/src/js/webcam.js"/>
<link rel="stylesheet"
href="/web_widget_image_webcam/static/src/css/web_widget_image_webcam.css"/>
<script type="text/javascript"
src="/web_widget_image_webcam/static/src/js/webcam_widget.js"/>
<script type="text/javascript" src="/web_widget_image_webcam/static/src/js/webcam.js"/>
<script type="text/javascript" src="/web_widget_image_webcam/static/src/js/webcam_widget.js"/>
<link rel="stylesheet" href="/web_widget_image_webcam/static/src/css/web_widget_image_webcam.css"/>
</xpath>
</template>
</odoo>