27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<templates id="template" xml:space="preserve">
|
|
<t t-name="quality.TabletImageField" t-inherit="web.ImageField" t-inherit-mode="primary" owl="1">
|
|
<xpath expr="//button[hasclass('o_select_file_button')]" position="replace">
|
|
<div class="position-absolute start-100 bottom-100 ms-2" id="picture_button">
|
|
<button class="btn btn-primary o_select_file_button" barcode_trigger="measure">Take a Picture</button>
|
|
</div>
|
|
</xpath>
|
|
<xpath expr="//img" position="attributes">
|
|
<attribute name="t-on-click">openModal</attribute>
|
|
</xpath>
|
|
</t>
|
|
|
|
<t t-name="quality.ImagePreviewDialog" owl="1">
|
|
<Dialog title="'Preview'" size="'lg'">
|
|
<div class="o_viewer_img_wrapper">
|
|
<div class="o_viewer_zoomer">
|
|
<img alt="Viewer" class="o_viewer_img" t-att-src="props.src"/>
|
|
</div>
|
|
</div>
|
|
<t t-set-slot="footer">
|
|
<button class="btn btn-primary" t-on-click.stop="props.close">Close</button>
|
|
</t>
|
|
</Dialog>
|
|
</t>
|
|
</templates>
|