mirror of
https://github.com/OCA/reporting-engine.git
synced 2025-02-16 16:30:38 +02:00
[FIX] readme sample
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils 0.15.1: http://docutils.sourceforge.net/" />
|
||||
<meta name="generator" content="Docutils: http://docutils.sourceforge.net/" />
|
||||
<title>Report Async</title>
|
||||
<style type="text/css">
|
||||
|
||||
@@ -418,6 +418,11 @@ report will be sent.</li>
|
||||
<li><strong>Files:</strong> show all files being produced by the job as run by the user.</li>
|
||||
<li><strong>Jobs:</strong> show all jobs triggered by this report as run by the user. Only job queue manager have access to this button.</li>
|
||||
</ul>
|
||||
<p>As additional improvement, you can now generate reports async directly from the form view itself,
|
||||
and not have to go into the “Report Center” specifically to do it. This can be done by pressing
|
||||
<em>Print</em>, you will get a popup asking you if you want to run it Async, and then to verify the email
|
||||
address that it should be sent to. See below sample:</p><br/>
|
||||
<img alt="How It Works" src="sample.gif" style="width: 800px;" /></br>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h1><a class="toc-backref" href="#id2">Bug Tracker</a></h1>
|
||||
@@ -444,6 +449,11 @@ If you spotted it first, help us smashing it by providing a detailed and welcome
|
||||
<li>Tharathip Chaweewongphan <<a class="reference external" href="mailto:tharathipc@ecosoft.co.th">tharathipc@ecosoft.co.th</a>></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a class="reference external" href="https://sunflowerweb.nl">Sunflower IT</a>:<ul>
|
||||
<li>Tom Blauwendraat <<a class="reference external" href="mailto:tom@sunflowerweb.nl">tom@sunflowerweb.nl</a>></li>
|
||||
<li>Kevin Kamau <<a class="reference external" href="mailto:kevin@sunflowerweb.nl">kevin@sunflowerweb.nl</a>></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
|
||||
BIN
report_async/static/description/sample.gif
Normal file
BIN
report_async/static/description/sample.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.2 MiB |
@@ -12,7 +12,7 @@ odoo.define("report_async.ActionMenus", function (require) {
|
||||
|
||||
function validate_email(email) {
|
||||
const res = email.match(
|
||||
/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/
|
||||
/^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/
|
||||
);
|
||||
if (!res) {
|
||||
return false;
|
||||
@@ -25,7 +25,7 @@ odoo.define("report_async.ActionMenus", function (require) {
|
||||
async _executeAction(action) {
|
||||
const self = this;
|
||||
const _super = this._super;
|
||||
const args = arguments; // Dict action
|
||||
const args = arguments;
|
||||
const records = this.props.activeIds;
|
||||
var $content = $(QWeb.render("ReportAsyncConfiguration", {}));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user