[IMP] report_async 14.0

This commit is contained in:
KKamaa
2022-04-13 18:40:55 +03:00
parent d717791082
commit 6c5cf35974
12 changed files with 452 additions and 131 deletions

View File

@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="utf-8" ?>
<templates>
<t t-name='ReportAsyncConfiguration'>
<div class="form">
<!-- Async Checkbox -->
<div class="form-group">
<div class="form-check">
<input
type="checkbox"
class="form-check-input"
checked="checked"
id="async_report_checker"
/>
<label class="form-check-label" for="async_report_checker">
Async Report
</label>
</div>
<small id="async-report-checker-help" class="form-text text-muted">
Checker enables async report to be created on the background
via queue job and sent to a below email address.
</small>
</div>
<!-- Email Input -->
<div class="form-group">
<label for="async-user-email">Email Address</label>
<input
type="email"
class="form-control"
id="async-user-email"
aria-describedby="emailHelp"
placeholder="admin@example.com"
/>
<small id="async-user-email-help" class="form-text text-muted">
Email will be used to send the async report after queue job
is done on the background
</small>
</div>
</div>
</t>
</templates>