Files
jikimo_sf/stock_barcode/static/src/components/package_line.xml
qihao.gong@jikimo.com 3c89404543 质量模块和库存扫码
2023-07-24 11:42:15 +08:00

25 lines
1.1 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<templates xml:space="preserve">
<div t-name="stock_barcode.PackageLineComponent" owl="1" t-on-click="select"
class="o_barcode_line list-group-item d-flex flex-row flex-nowrap py-3"
t-attf-class="{{componentClasses}}" t-att-data-package="line.package_id.name">
<div class="o_barcode_line_details flex-grow-1 flex-column flex-nowrap">
<t t-call="stock_barcode.LineSourceLocation"/>
<div>
<i class="fa fa-fw fa-archive"/>
<t t-esc="line.package_id.name"/>
<i class="fa fa-long-arrow-right mx-1"/>
<t t-esc="line.result_package_id.name"/>
</div>
<t t-call="stock_barcode.LineQuantity"/>
<t t-call="stock_barcode.LineOwner"/>
<t t-call="stock_barcode.LineDestinationLocation"/>
</div>
<button t-on-click="openPackage" class="o_line_button o_package_content btn btn-secondary ms-2 ms-sm-4">
<i class="fa fa-2x fa-dropbox"/>
</button>
</div>
</templates>